{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/hQy7oxW6LuEflWAxiC4y/DjYIg64lcmhSpmRYW7sv/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (5b26096)\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,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import CMSSlideshow from\"https://framerusercontent.com/modules/MvMI8rlAwWI6W41vb7x5/p6kNl6EzOF1Bt2ct5h4G/CMSSlideshow.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import ContactSectionStandard from\"#framer/local/canvasComponent/bJfVQtZQJ/bJfVQtZQJ.js\";import FooterDark from\"#framer/local/canvasComponent/i11OWVddw/i11OWVddw.js\";import HorizontalPadding from\"#framer/local/canvasComponent/nHcbOk1Gl/nHcbOk1Gl.js\";import VerticalPadding from\"#framer/local/canvasComponent/QRFMHuze1/QRFMHuze1.js\";import PopUpButton,*as PopUpButtonInfo from\"#framer/local/canvasComponent/REoHyeK4C/REoHyeK4C.js\";import Navigation from\"#framer/local/canvasComponent/TakIFHXDu/TakIFHXDu.js\";import ReviewCard from\"#framer/local/canvasComponent/WGzFsIQE2/WGzFsIQE2.js\";import CloseOverlay from\"#framer/local/canvasComponent/YrhWkdrNU/YrhWkdrNU.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/yzcqyPrfY/yzcqyPrfY.js\";import{withTags}from\"#framer/local/codeFile/JQEfqx_/Contact_Button.js\";import{withTags as withTags1}from\"#framer/local/codeFile/hjYm7vu/Pop_Up_Button.js\";import Reviews from\"#framer/local/collection/fv6kTS2pi/fv6kTS2pi.js\";import*as sharedStyle4 from\"#framer/local/css/BUNfLHS8F/BUNfLHS8F.js\";import*as sharedStyle2 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle5 from\"#framer/local/css/MVDThtqhF/MVDThtqhF.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle3 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const VideoFonts=getFonts(Video);const HorizontalPaddingFonts=getFonts(HorizontalPadding);const VerticalPaddingFonts=getFonts(VerticalPadding);const ButtonFonts=getFonts(Button);const ButtonWithTags1j87e7sWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"tDFENiGkn\",override:withTags,scopeId:\"augiA20Il\"}),ButtonInfo);const ButtonWithTagshuyud5WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"PlJ1COD0l\",override:withTags,scopeId:\"augiA20Il\"}),ButtonInfo);const PhosphorFonts=getFonts(Phosphor);const ButtonWithTagsigmcrdWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"enGNT3cGz\",override:withTags,scopeId:\"augiA20Il\"}),ButtonInfo);const PopUpButtonFonts=getFonts(PopUpButton);const PopUpButtonWithTags1126vuwbWithMappedReactProps1k0t3gWithVariantAppearEffect=withVariantAppearEffect(withMappedReactProps(withCodeBoundaryForOverrides(PopUpButton,{nodeId:\"Ukr3OByn9\",override:withTags1,scopeId:\"augiA20Il\"}),PopUpButtonInfo));const ReviewCardFonts=getFonts(ReviewCard);const CMSSlideshowFonts=getFonts(CMSSlideshow);const TickerFonts=getFonts(Ticker);const ContactSectionStandardFonts=getFonts(ContactSectionStandard);const EmbedFonts=getFonts(Embed);const FooterDarkFonts=getFonts(FooterDark);const CloseOverlayFonts=getFonts(CloseOverlay);const breakpoints={i9dT9bj9d:\"(min-width: 810px) and (max-width: 1199px)\",VK4fN25lk:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-icwBt\";const variantClassNames={i9dT9bj9d:\"framer-v-1wqniqx\",VK4fN25lk:\"framer-v-1a150w2\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:90,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:85};const transition3={damping:60,delay:.2,mass:1,stiffness:800,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:85};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:\"VK4fN25lk\",Tablet:\"i9dT9bj9d\"};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,xv2KO15q2dLG7jAoBo,Dzd1BNn8adLG7jAoBo,bfw46dByMdLG7jAoBo,TQS8j8QuwdLG7jAoBo,LT9bhyZXddLG7jAoBo,oTl8ovv8GdLG7jAoBo,J5Epxpy4qdLG7jAoBo,iddLG7jAoBo,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const c3MIMUEEr3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const g7XSiXbum3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const LyU4y90i81wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const elementId=useRouteElementId(\"fmPPSAqRX\");const elementId1=useRouteElementId(\"ScG0w7Byc\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"mMuNVCd1D\");const ref4=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId3=useRouteElementId(\"g3JEtdT4Q\");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: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-no7pcn-container\",layoutScroll:true,nodeId:\"nEI7LouR3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{__framer__targets:[{ref:ref1,target:\"Men6Lvl6v\"}],Nk6lENSSP:resolvedLinks[1],variant:\"i1WvX20SZ\"},VK4fN25lk:{__framer__targets:[{ref:ref1,target:\"Men6Lvl6v\"}],Nk6lENSSP:resolvedLinks[2],variant:\"i1WvX20SZ\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"Ygm8gcNwG\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"nEI7LouR3\",layoutId:\"nEI7LouR3\",Nk6lENSSP:resolvedLinks[0],style:{width:\"100%\"},variant:\"RAeDDyBqt\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2hjzsv\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lnfecn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"z5ljyGSFM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"z5ljyGSFM\",isMixedBorderRadius:false,layoutId:\"z5ljyGSFM\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/g7FclEcIFtF9yIa84sEkWN7PMM.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/D3jd75uQ0wlaGJWDIsQenwVPll8.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c1vdsq\",\"data-framer-name\":\"BG\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6bnuk4\",\"data-framer-name\":\"Padding Horizontal Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{height:532,y:(componentViewport?.y||0)+0+0+0+134+0},VK4fN25lk:{height:530.8,y:(componentViewport?.y||0)+0+0+0+134.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:459,y:(componentViewport?.y||0)+0+0+0+170.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dn6d61-container\",nodeId:\"ouC_Yq1X3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"ouC_Yq1X3\",layoutId:\"ouC_Yq1X3\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aif57t\",\"data-framer-name\":\"Padding Vertical Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+0+0+134+0+0+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+0+0+134.6+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+0+0+170.5+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t6q2x2-container\",nodeId:\"kwvR84xLZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"kwvR84xLZ\",layoutId:\"kwvR84xLZ\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13o4toy\",\"data-framer-name\":\"Container Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bzkq9l\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1le3ysn\",\"data-framer-name\":\"Column \",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:[\"We \",/*#__PURE__*/_jsx(\"strong\",{children:\"rent\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"buy\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"let\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"furnish\"}),\" homes for expats who are ready to enjoy\",/*#__PURE__*/_jsx(\"br\",{}),\"the Amsterdam life\"]})})}),className:\"framer-o2dak0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfog81\",\"data-framer-name\":\"Column Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:\"We know. The Amsterdam housing market is harsh. Very harsh. Especially when you're moving from another country and don't know where to start. But don't worry, you're not alone. We are foreigners ourselves and have been helping expats find their new home for over 7 years. We know the ins and outs and will guide you every step of the way. Our goal is to take away your stress and turn this into a fun and rewarding journey. We can't wait to start!\"})}),className:\"framer-oje1bj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-msqb3e\",\"data-framer-name\":\"Button Wrapper\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+0+0+134+0+0+128+0+0+0+0+100+136+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+0+0+134.6+0+0+128+0+0+0+98.8+0+136+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+170.5+0+0+128+0+0+0+0+27+136+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j87e7s-container\",nodeId:\"tDFENiGkn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{HQP771fcn:resolvedLinks1[1]},VK4fN25lk:{HQP771fcn:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonWithTags1j87e7sWithMappedReactProps1v1ipky,{CO4J1eH2a:\"Get in contact\",height:\"100%\",HQP771fcn:resolvedLinks1[0],id:\"tDFENiGkn\",kEnovjZ9O:false,layoutId:\"tDFENiGkn\",PUYN3VnBA:\"House\",TWjDpfG1q:false,variant:\"aZCmuXluE\",width:\"100%\",zDnqOywMb:false})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fmPPSAqRX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":fmPPSAqRX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":fmPPSAqRX\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+0+0+134+0+0+128+0+0+0+0+100+136+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+0+0+134.6+0+0+128+0+0+0+98.8+0+136+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+170.5+0+0+128+0+0+0+0+27+136+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9uc88d-container\",nodeId:\"dfaISutfZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{HQP771fcn:resolvedLinks2[1]},VK4fN25lk:{HQP771fcn:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{CO4J1eH2a:\"Discover\",height:\"100%\",HQP771fcn:resolvedLinks2[0],id:\"dfaISutfZ\",kEnovjZ9O:true,layoutId:\"dfaISutfZ\",PUYN3VnBA:\"ArrowDown\",TWjDpfG1q:false,variant:\"gYtPRUDTQ\",width:\"100%\",zDnqOywMb:true})})})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+0+0+134+0+0+404},VK4fN25lk:{y:(componentViewport?.y||0)+0+0+0+134.6+0+0+402.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+0+0+170.5+0+0+331,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rge6vd-container\",nodeId:\"vt9qOuMl7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"vt9qOuMl7\",layoutId:\"vt9qOuMl7\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{height:532,y:(componentViewport?.y||0)+0+0+0+134+0},VK4fN25lk:{height:530.8,y:(componentViewport?.y||0)+0+0+0+134.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:459,y:(componentViewport?.y||0)+0+0+0+170.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uhwdo3-container\",nodeId:\"yX9l84PSL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"yX9l84PSL\",layoutId:\"yX9l84PSL\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ote2iz\",\"data-framer-name\":\"Target Group Section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y7dyft\",\"data-framer-name\":\"Padding Horizontal Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{height:915.6},VK4fN25lk:{height:1732.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:874.6,y:(componentViewport?.y||0)+0+800+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1utd9ix-container\",nodeId:\"dDRJ_VHki\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"dDRJ_VHki\",layoutId:\"dDRJ_VHki\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n25f1o\",\"data-framer-name\":\"Padding Vertical Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+800+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rncwic-container\",nodeId:\"y7jf8pam2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"y7jf8pam2\",layoutId:\"y7jf8pam2\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d68j7b\",\"data-framer-name\":\"Container Large\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-126i525\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsmsny\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VK4fN25lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-237d0de8-41df-4bc7-80a9-374b17b53684, rgb(158, 145, 123))\"},children:\"WHO IS OUR SERVICE FOR\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-237d0de8-41df-4bc7-80a9-374b17b53684, rgb(158, 145, 123))\"},children:\"WHO IS OUR SERVICE FOR\"})}),className:\"framer-6aedxk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Whether you're looking to rent, buy, or let. \",/*#__PURE__*/_jsx(\"br\",{}),\"We are ready to go!\"]})})},VK4fN25lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Whether you're looking to rent, buy, or let. \",/*#__PURE__*/_jsx(\"br\",{}),\"We are ready to go!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whether you're looking to rent, buy, or let. We are ready to go!\"})}),className:\"framer-104qwd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VK4fN25lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"We are here to make your journey fun, smooth, and rewarding.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We are here to make your journey fun, smooth, and rewarding.\"})}),className:\"framer-1gkeapd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m2p8nb\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VK4fN25lk:{y:(componentViewport?.y||0)+0+800+0+0+0+0+128+0+0+0+321.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+800+0+0+0+0+128+0+0+0+321.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-huyud5-container\",nodeId:\"PlJ1COD0l\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{HQP771fcn:resolvedLinks3[1]},VK4fN25lk:{HQP771fcn:resolvedLinks3[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonWithTagshuyud5WithMappedReactProps1v1ipky,{CO4J1eH2a:\"Get in contact\",height:\"100%\",HQP771fcn:resolvedLinks3[0],id:\"PlJ1COD0l\",kEnovjZ9O:false,layoutId:\"PlJ1COD0l\",PUYN3VnBA:\"House\",TWjDpfG1q:false,variant:\"aZCmuXluE\",width:\"100%\",zDnqOywMb:false})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkfbes\",\"data-framer-name\":\"Info Wrapper\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GQQoRpvFC\"},motionChild:true,nodeId:\"gzuqeIbnt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ad0srz framer-lux5qc\",\"data-framer-name\":\"Target Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-btpp2g\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Rent\"})}),className:\"framer-cx9p0q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",children:\"I'm moving to Amsterdam or live here already and looking for a home to rent.\"})}),className:\"framer-11u3shv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4aab1f\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-174do2r\",\"data-styles-preset\":\"MVDThtqhF\",children:\"More info\"})}),className:\"framer-1na3yfw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7js69v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AtDc7z2a7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(182, 173, 158))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"AtDc7z2a7\",layoutId:\"AtDc7z2a7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IKuWlTiUM\"},motionChild:true,nodeId:\"SzRAeTiFC\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-phk6a1 framer-lux5qc\",\"data-framer-name\":\"Target Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6rz39k\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Buy\"})}),className:\"framer-lzok8o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",children:\"I'm moving to Amsterdam or live here already and looking for a home to buy.\"})}),className:\"framer-1xwu03q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhbwj4\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-174do2r\",\"data-styles-preset\":\"MVDThtqhF\",children:\"More info\"})}),className:\"framer-1bzlrra\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbvoah-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ip7vr_SdL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(182, 173, 158))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"Ip7vr_SdL\",layoutId:\"Ip7vr_SdL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SB04WZqga\"},motionChild:true,nodeId:\"oakq0LfWg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1v4cl9y framer-lux5qc\",\"data-framer-name\":\"Target Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12u23v6\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Let\"})}),className:\"framer-15scqc5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",children:\"I'm a homeowner and want to rent out my property.\"})}),className:\"framer-7f6dv2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mt40fv\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-174do2r\",\"data-styles-preset\":\"MVDThtqhF\",children:\"More info\"})}),className:\"framer-1g15g6u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qemnmr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QGMeckafT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(182, 173, 158))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"QGMeckafT\",layoutId:\"QGMeckafT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GcfJYMJkV\"},motionChild:true,nodeId:\"whgfzLmvC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1kdrhku framer-lux5qc\",\"data-framer-name\":\"Target Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htbv2h\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"B2B\"})}),className:\"framer-1dbnfrl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",children:\"I'm looking for a housing service for my team.\"})}),className:\"framer-ykebs3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvj43u\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-174do2r\",\"data-styles-preset\":\"MVDThtqhF\",children:\"More info\"})}),className:\"framer-tbc6iy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jodzw5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bWIdoxo3u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(182, 173, 158))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"bWIdoxo3u\",layoutId:\"bWIdoxo3u\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+800+0+0+0+0+787.6},VK4fN25lk:{y:(componentViewport?.y||0)+0+800+0+0+0+0+1604.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+800+0+0+0+0+746.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1npylr9-container\",nodeId:\"arU6Paw2f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"arU6Paw2f\",layoutId:\"arU6Paw2f\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{height:915.6},VK4fN25lk:{height:1732.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:874.6,y:(componentViewport?.y||0)+0+800+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13nsviq-container\",nodeId:\"jXGsLlkK_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"jXGsLlkK_\",layoutId:\"jXGsLlkK_\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8n9xkv\",\"data-framer-name\":\"About Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djdroc\",\"data-framer-name\":\"Padding Horizontal Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+1715.6+0+0+0},VK4fN25lk:{height:1469.6,y:(componentViewport?.y||0)+0+2532.4+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1061.6,y:(componentViewport?.y||0)+0+1674.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zy1p8a-container\",nodeId:\"ae6Aa0MxQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"ae6Aa0MxQ\",layoutId:\"ae6Aa0MxQ\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nmr58r\",\"data-framer-name\":\"Padding Vertical Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+1715.6+0+0+0+0+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+2532.4+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+1674.6+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltkt4n-container\",nodeId:\"xEh9huySM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"xEh9huySM\",layoutId:\"xEh9huySM\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7eukb\",\"data-framer-name\":\"Container Large\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h1zb1y\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-goh4h3\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"ABOUT US\"})}),className:\"framer-1hu7ww3\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:\"Foreigners ourselves\"})}),className:\"framer-1b9onmh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:\"We get it. New country, new language, new everything! It's a lot and we've been there!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:\"We're Lyna & Wassily, foreigners ourselves, who call the Netherlands home. We speak your language (literally, we know Dutch, English, Spanish, Russian, French, and Cambodian) and believe clear communication, trust, and proper expectation management are crucial for a great house hunt experience.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:\"With 7 years of experience, we understand the challenges of moving to a new country. We'll help you navigate not just the housing market, but also Dutch customs and rules. We go the extra mile to ensure a smooth, stress-free experience. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},children:\"We can't wait to start the search!\"})]}),className:\"framer-cy0tti\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10apbyl\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined},{href:{webPageId:\"LTZQAY2Vb\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+1715.6+0+0+0+0+128+0+0+765.6+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+2532.4+0+0+0+0+128+0+0+0+765.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1674.6+0+0+0+0+128+0+0+765.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-igmcrd-container\",nodeId:\"enGNT3cGz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{HQP771fcn:resolvedLinks4[1]},VK4fN25lk:{HQP771fcn:resolvedLinks4[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonWithTagsigmcrdWithMappedReactProps1v1ipky,{CO4J1eH2a:\"Get in contact\",height:\"100%\",HQP771fcn:resolvedLinks4[0],id:\"enGNT3cGz\",kEnovjZ9O:false,layoutId:\"enGNT3cGz\",PUYN3VnBA:\"House\",TWjDpfG1q:false,variant:\"aZCmuXluE\",width:\"100%\",zDnqOywMb:false})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9jg00\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1715.6+0+0+0+0+128+152.8+0),pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/9Wk4XwtYFrazAZusEiDo20qPnw.jpeg\"}},VK4fN25lk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2532.4+0+0+0+0+128+0+853.6+-70),pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/9Wk4XwtYFrazAZusEiDo20qPnw.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1674.6+0+0+0+0+128+152.8+0),pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/9Wk4XwtYFrazAZusEiDo20qPnw.jpeg\"},className:\"framer-1ouldbu\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+1715.6+0+0+0+0+933.6},VK4fN25lk:{y:(componentViewport?.y||0)+0+2532.4+0+0+0+0+1341.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+1674.6+0+0+0+0+933.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4n1qu-container\",nodeId:\"rJvZUm1GD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"rJvZUm1GD\",layoutId:\"rJvZUm1GD\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+1715.6+0+0+0},VK4fN25lk:{height:1469.6,y:(componentViewport?.y||0)+0+2532.4+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1061.6,y:(componentViewport?.y||0)+0+1674.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qxoww-container\",nodeId:\"A_sanZzKe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"A_sanZzKe\",layoutId:\"A_sanZzKe\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:904,children:/*#__PURE__*/_jsx(Container,{className:\"framer-126vuwb-container\",layoutScroll:true,nodeId:\"Ukr3OByn9\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PopUpButtonWithTags1126vuwbWithMappedReactProps1k0t3gWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"rKFT9zuam\"},{ref:ref3,target:\"aZgek5Y_3\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Ukr3OByn9\",layoutId:\"Ukr3OByn9\",UYdfH9Fmm:\"https://cal.com/amsterdam-life-homes/intake\",variant:\"aZgek5Y_3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-179ovnw\",\"data-framer-name\":\"Review Section\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwup3m\",\"data-framer-name\":\"Padding Horizontal Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{height:1166.6,y:(componentViewport?.y||0)+0+2777.2+0+0+0},VK4fN25lk:{height:1268.6,y:(componentViewport?.y||0)+0+4002+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:993,y:(componentViewport?.y||0)+0+2736.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zcgcii-container\",nodeId:\"mXhRQwJeN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"mXhRQwJeN\",layoutId:\"mXhRQwJeN\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uulto\",\"data-framer-name\":\"Padding Vertical Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+2777.2+0+0+0+0+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+4002+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+2736.2+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u7zwzm-container\",nodeId:\"utlFmuTkA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"tQYNx6wqH\"},VK4fN25lk:{variant:\"JmLi96lZ_\"}},children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"utlFmuTkA\",layoutId:\"utlFmuTkA\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18p7hur\",\"data-framer-name\":\"Container Large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jiacy\",\"data-framer-name\":\"Content Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dcuqr6\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VK4fN25lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(255, 73, 1))\"},children:\"REVIEWS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(255, 73, 1))\"},children:\"REVIEWS\"})}),className:\"framer-1x5trif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VK4fN25lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Don't just take \",/*#__PURE__*/_jsx(\"br\",{}),\"our word for it\u2026\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Don't just take our word for it\u2026\"})}),className:\"framer-196uxzw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VK4fN25lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:[\"We believe that the true measure of our success lies in the satisfaction of our clients. \",/*#__PURE__*/_jsx(\"br\",{}),\"95% of our business comes from referrals.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We believe that the true measure of our success lies in the satisfaction of our clients. \",/*#__PURE__*/_jsx(\"br\",{}),\"95% of our business comes from referrals.\"]})}),className:\"framer-f3wzy6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.google.com/search?sca_esv=330785570d1616d3&sca_upv=1&uds=ADvngMjcH0KdF7qGWtwTBrP0nt7d2VWt3jBUj0jnYX9UaWz_ocjty2qUVTYboTdm0ptkqLgjpkAn3RjncskIOWHH89RCO5O-zKW1pLiCMMgMQVqZDZ818JTM6ro5aOij6j6ueznvtlJsFXa7sIebtrbhp_X_1beEJA&si=ACC90nwjPmqJHrCEt6ewASzksVFQDX8zco_7MgBaIawvaF4-7nq9MGajAmlZ838Wuz5i_cbPGy-N97ux84noiEANqZa-0RA3yAfhE2KYiW-CwOuSAGUOj8A%3D&q=Amsterdam+Life+Homes+Reviews&sa=X&ved=2ahUKEwj28KSo7aiHAxWF-AIHHariC1EQ3PALegQIRxAF&biw=1494&bih=765&dpr=1.5\",motionChild:true,nodeId:\"mRsYlJOwP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jek5x1 framer-lux5qc\",\"data-framer-name\":\"User reviews\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-198pw3h\",\"data-framer-name\":\"Reviews\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m12jgb\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jkabbd\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qpv0e1\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rwumh8\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_21126_93718)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_21126_93718\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1msvlkp\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l91o9y\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_21126_94721)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_21126_94721\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10f511b\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bacl56\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_21126_97355)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_21126_97355\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ojnvz9\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y946cq\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_21126_94961)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_21126_94961\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-maqxt7\",\"data-framer-name\":\"Star icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-96xnqa\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><path d=\"M 0 20 L 0 0 L 20 0 L 20 20 Z\" fill=\"transparent\"></path><path d=\"M 9.538 1.61 C 9.709 1.199 10.291 1.199 10.462 1.61 L 12.528 6.577 C 12.6 6.751 12.763 6.869 12.95 6.884 L 18.312 7.314 C 18.756 7.349 18.935 7.903 18.598 8.192 L 14.512 11.692 C 14.369 11.814 14.307 12.005 14.351 12.188 L 15.599 17.421 C 15.702 17.853 15.232 18.195 14.852 17.963 L 10.261 15.159 C 10.101 15.062 9.899 15.062 9.739 15.159 L 5.148 17.963 C 4.769 18.195 4.298 17.853 4.401 17.421 L 5.649 12.188 C 5.693 12.005 5.631 11.814 5.488 11.692 L 1.402 8.192 C 1.065 7.903 1.244 7.349 1.688 7.314 L 7.051 6.884 C 7.237 6.869 7.4 6.751 7.472 6.577 Z\" fill=\"rgb(254,200,75)\"></path></g></svg>',svgContentId:8706244434,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\"},children:\"Check our Google Reviews\"})}),className:\"framer-10w3jzw\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ch5fod-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mSF1q1fba\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{itemAmount:2},VK4fN25lk:{itemAmount:1}},children:/*#__PURE__*/_jsx(CMSSlideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, rgb(182, 173, 158))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-50,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:12,collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmdye0\",\"data-framer-name\":\"Review Collection List\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dLG7jAoBo\",data:Reviews,type:\"Collection\"},select:[{collection:\"dLG7jAoBo\",name:\"xv2KO15q2\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"Dzd1BNn8a\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"bfw46dByM\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"TQS8j8Quw\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"LT9bhyZXd\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"oTl8ovv8G\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"J5Epxpy4q\",type:\"Identifier\"},{collection:\"dLG7jAoBo\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bfw46dByM:bfw46dByMdLG7jAoBo,Dzd1BNn8a:Dzd1BNn8adLG7jAoBo,id:iddLG7jAoBo,J5Epxpy4q:J5Epxpy4qdLG7jAoBo,LT9bhyZXd:LT9bhyZXddLG7jAoBo,oTl8ovv8G:oTl8ovv8GdLG7jAoBo,TQS8j8Quw:TQS8j8QuwdLG7jAoBo,xv2KO15q2:xv2KO15q2dLG7jAoBo},index)=>{xv2KO15q2dLG7jAoBo??=\"\";Dzd1BNn8adLG7jAoBo??=\"\";oTl8ovv8GdLG7jAoBo??=\"\";J5Epxpy4qdLG7jAoBo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dLG7jAoBo-${iddLG7jAoBo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{J5Epxpy4q:J5Epxpy4qdLG7jAoBo},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ld6u5s\",\"data-framer-name\":\"Review Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tonbq-container\",inComponentSlot:true,nodeId:\"imrF9uFBm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{Bv5uEvKkI:Dzd1BNn8adLG7jAoBo,fIJYxY6xm:oTl8ovv8GdLG7jAoBo,height:\"100%\",hHKWhkghy:equals(LT9bhyZXddLG7jAoBo,\"BxhqNUAIy\"),i4fqNJOvn:isSet(TQS8j8QuwdLG7jAoBo),id:\"imrF9uFBm\",irucDYdmb:equals(LT9bhyZXddLG7jAoBo,\"vWIQd3KzM\"),layoutId:\"imrF9uFBm\",MhTXfVRlv:equals(LT9bhyZXddLG7jAoBo,\"wxu3e757r\"),pPqS8yQ93:xv2KO15q2dLG7jAoBo,style:{width:\"100%\"},TexTDyKLe:equals(LT9bhyZXddLG7jAoBo,\"V1n73ChvN\"),width:\"100%\",xGR5cpvym:toResponsiveImage(TQS8j8QuwdLG7jAoBo),zTnf7dpR4:toDateString(bfw46dByMdLG7jAoBo,activeLocaleCode)})})})})})},iddLG7jAoBo);})})})})})],direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},endLayers:[],fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"mSF1q1fba\",intervalControl:1.5,itemAmount:3,layoutId:\"mSF1q1fba\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:10,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},randomize:false,startFrom:0,startLayers:[],style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+2777.2+0+0+0+0+1038.6},VK4fN25lk:{y:(componentViewport?.y||0)+0+4002+0+0+0+0+1140.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+2736.2+0+0+0+0+865,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vuyass-container\",nodeId:\"yvHaSFlg3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"yvHaSFlg3\",layoutId:\"yvHaSFlg3\",style:{width:\"100%\"},variant:\"vYCxijtWU\",VLJ7OkvVi:false,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{height:1166.6,y:(componentViewport?.y||0)+0+2777.2+0+0+0},VK4fN25lk:{height:1268.6,y:(componentViewport?.y||0)+0+4002+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:993,y:(componentViewport?.y||0)+0+2736.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r5tgqk-container\",nodeId:\"TCyJIQeoW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"TCyJIQeoW\",layoutId:\"TCyJIQeoW\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b6ya9n\",\"data-framer-name\":\"Company Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cw55\",\"data-framer-name\":\"Padding Horizontal Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+3943.8+0+0+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+5270.6+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:456,y:(componentViewport?.y||0)+0+3729.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3gptu0-container\",nodeId:\"dZhlKZeKT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"dZhlKZeKT\",layoutId:\"dZhlKZeKT\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ukewo\",\"data-framer-name\":\"Padding Vertical Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+3943.8+0+0+0+0+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+5270.6+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+3729.2+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v0xptd-container\",nodeId:\"QXK9r2ex4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"QXK9r2ex4\",layoutId:\"QXK9r2ex4\",style:{width:\"100%\"},variant:\"JmLi96lZ_\",VLJ7OkvVi:true,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qqep1i\",\"data-framer-name\":\"Container Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j4le49\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-237d0de8-41df-4bc7-80a9-374b17b53684, rgb(158, 145, 123))\"},children:\"OUR CLIENTS WORK AT\"})}),className:\"framer-1ua1tni\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15tw2bt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SCCO9YQLI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"SCCO9YQLI\",layoutId:\"SCCO9YQLI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:16.5,intrinsicWidth:63.5,pixelHeight:33,pixelWidth:127,src:\"https://framerusercontent.com/images/YctUDHKURL45tWW7G2MvA1pcY.svg\"},className:\"framer-59mkb2\",\"data-framer-name\":\"ING_Group_N_V_Logo\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-176jv3w\",\"data-framer-name\":\"Atlassian_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 259 33\"><g transform=\"translate(0.788 0.499)\"><path d=\"M 0 0.001 L 258.068 0.001 L 258.068 32.001 L 0 32.001 Z\" fill=\"transparent\"></path><g><defs><linearGradient id=\"idss12127336276_3g208\" x1=\"0.7840531274536955\" x2=\"0.21594687254630457\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0,0,0)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 9.384 14.586 C 9.193 14.336 8.885 14.204 8.572 14.238 C 8.259 14.272 7.987 14.467 7.855 14.753 L 0.099 30.266 C -0.045 30.553 -0.03 30.894 0.138 31.168 C 0.307 31.442 0.605 31.608 0.926 31.609 L 11.726 31.609 C 12.084 31.616 12.411 31.409 12.558 31.083 C 14.885 26.304 13.475 18.959 9.384 14.586 Z\" fill=\"url(#idss12127336276_3g208)\"></path></g><path d=\"M 15.076 0.497 C 11.142 6.549 10.689 14.226 13.882 20.699 L 19.115 31.083 C 19.271 31.398 19.591 31.598 19.942 31.6 L 30.742 31.6 C 31.049 31.575 31.325 31.403 31.484 31.138 C 31.642 30.873 31.663 30.549 31.54 30.266 L 16.653 0.497 C 16.508 0.193 16.201 0 15.864 0 C 15.528 0 15.221 0.193 15.076 0.497 Z M 243.258 17.033 L 251.101 31.609 L 258.069 31.609 L 258.069 5.592 L 252.525 5.592 L 252.525 22.381 L 250.427 17.511 L 244.128 5.591 L 235.378 5.591 L 235.378 31.609 L 240.921 31.609 L 240.921 11.766 Z M 200.117 5.591 L 194.058 5.591 L 194.058 31.609 L 200.117 31.609 L 200.117 5.592 Z M 187.066 23.915 C 187.066 19.36 184.652 17.225 177.837 15.757 C 174.076 14.925 173.168 14.094 173.168 12.89 C 173.168 11.384 174.511 10.749 176.991 10.749 C 180.002 10.749 182.975 11.661 185.785 12.928 L 185.785 6.978 C 183.087 5.749 180.147 5.14 177.183 5.195 C 170.449 5.195 166.965 8.125 166.965 12.918 C 166.965 16.741 168.748 19.805 175.715 21.152 C 179.873 22.022 180.748 22.696 180.748 24.082 C 180.748 25.468 179.873 26.3 176.925 26.3 C 173.385 26.235 169.916 25.297 166.826 23.57 L 166.826 29.827 C 168.924 30.854 171.696 32.001 176.862 32.001 C 184.146 32.001 187.037 28.756 187.037 23.924 M 161.842 23.915 C 161.842 19.36 159.452 17.225 152.618 15.757 C 148.857 14.925 147.944 14.094 147.944 12.89 C 147.944 11.384 149.292 10.749 151.768 10.749 C 154.778 10.749 157.746 11.661 160.556 12.928 L 160.556 6.978 C 157.858 5.749 154.918 5.14 151.954 5.195 C 145.225 5.195 141.736 8.125 141.736 12.918 C 141.736 16.741 143.519 19.805 150.492 21.152 C 154.649 22.022 155.519 22.696 155.519 24.082 C 155.519 25.468 154.649 26.3 151.696 26.3 C 148.157 26.235 144.688 25.297 141.598 23.57 L 141.598 29.827 C 143.701 30.854 146.472 32.001 151.634 32.001 C 158.922 32.001 161.808 28.756 161.808 23.924 M 100.799 25.984 L 100.799 5.592 L 94.701 5.592 L 94.701 31.609 L 107.155 31.609 L 109.114 25.984 Z M 82.925 31.609 L 82.925 11.212 L 90.132 11.212 L 90.132 5.592 L 70.092 5.592 L 70.092 11.212 L 76.826 11.212 L 76.826 31.609 L 82.924 31.609 Z M 61.252 5.591 L 53.262 5.591 L 44.181 31.609 L 51.135 31.609 L 52.425 27.227 C 55.592 28.157 58.96 28.157 62.126 27.227 L 63.412 31.609 L 70.342 31.609 L 61.252 5.592 Z M 57.257 22.538 C 56.125 22.54 54.998 22.379 53.911 22.061 L 57.257 10.705 L 60.602 22.061 C 59.515 22.38 58.389 22.541 57.257 22.539 Z M 128.622 5.591 L 120.632 5.591 L 111.552 31.609 L 118.481 31.609 L 119.772 27.227 C 122.938 28.157 126.306 28.157 129.473 27.227 L 130.759 31.609 L 137.688 31.609 L 128.622 5.592 Z M 124.627 22.538 C 123.495 22.54 122.368 22.38 121.282 22.061 L 124.627 10.705 L 127.973 22.06 C 126.886 22.38 125.759 22.54 124.627 22.538 Z M 221.948 5.591 L 213.958 5.591 L 204.877 31.609 L 211.807 31.609 L 213.093 27.227 C 216.26 28.157 219.627 28.157 222.794 27.227 L 224.08 31.609 L 231.014 31.609 L 221.948 5.592 Z M 217.953 22.538 C 216.821 22.54 215.694 22.379 214.608 22.061 L 217.953 10.705 L 221.298 22.06 C 220.212 22.379 219.085 22.54 217.953 22.538 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:12127336276,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4z50eb\",\"data-framer-name\":\"Booking_com_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 190 33\"><g transform=\"translate(0.768 0.5)\"><path d=\"M 0 0 L 188.601 0 L 188.601 32 L 0 32 Z\" fill=\"transparent\"></path><g transform=\"translate(18.241 0.397)\"><g><path d=\"M 55.821 2.863 C 55.819 2.105 56.118 1.378 56.653 0.841 C 57.187 0.304 57.913 0.001 58.671 0 C 60.251 0 61.532 1.281 61.532 2.861 C 61.532 4.441 60.251 5.722 58.671 5.722 C 57.094 5.719 55.819 4.439 55.821 2.862 Z M 100.858 21.897 C 100.856 21.14 101.155 20.412 101.689 19.875 C 102.223 19.338 102.949 19.035 103.706 19.033 C 105.287 19.033 106.568 20.315 106.568 21.896 C 106.568 23.476 105.287 24.758 103.706 24.758 C 102.13 24.754 100.856 23.474 100.858 21.898 Z M 8.976 20.66 C 6.517 20.66 4.809 18.708 4.809 15.918 C 4.809 13.128 6.517 11.178 8.975 11.178 C 11.448 11.178 13.175 13.128 13.175 15.918 C 13.175 18.752 11.484 20.66 8.975 20.66 Z M 8.976 7.01 C 3.775 7.01 0 10.757 0 15.918 C 0 21.078 3.775 24.825 8.976 24.825 C 14.196 24.825 17.986 21.079 17.986 15.918 C 17.986 10.758 14.196 7.01 8.976 7.01 Z M 50.293 16.363 C 50.112 16.014 49.883 15.691 49.613 15.405 L 49.455 15.238 L 49.621 15.08 C 49.86 14.828 50.104 14.53 50.339 14.184 L 54.929 7.361 L 49.357 7.361 L 45.909 12.698 C 45.713 12.984 45.319 13.128 44.729 13.128 L 43.943 13.128 L 43.943 3.039 C 43.943 1.021 42.686 0.747 41.328 0.747 L 39.001 0.747 L 39.005 24.564 L 43.942 24.564 L 43.942 17.42 L 44.405 17.42 C 44.968 17.42 45.351 17.485 45.527 17.79 L 48.25 22.931 C 49.01 24.326 49.769 24.564 51.195 24.564 L 54.979 24.564 L 52.161 19.903 L 50.292 16.363 Z M 74.261 6.972 C 71.749 6.972 70.147 8.087 69.249 9.031 L 68.949 9.334 L 68.844 8.922 C 68.58 7.912 67.691 7.355 66.353 7.355 L 64.14 7.355 L 64.154 24.557 L 69.057 24.557 L 69.057 16.629 C 69.057 15.853 69.158 15.181 69.363 14.567 C 69.909 12.71 71.431 11.555 73.334 11.555 C 74.864 11.555 75.463 12.362 75.463 14.45 L 75.463 21.942 C 75.463 23.723 76.287 24.557 78.07 24.557 L 80.403 24.557 L 80.395 13.617 C 80.395 9.269 78.274 6.972 74.26 6.972 Z M 58.736 7.363 L 56.411 7.363 L 56.426 20.663 L 56.425 24.561 L 58.905 24.561 C 58.937 24.561 58.962 24.564 58.993 24.564 L 60.149 24.561 L 61.299 24.561 L 61.299 24.554 L 61.307 24.554 L 61.317 9.974 C 61.317 8.214 60.474 7.362 58.735 7.362 Z M 28.235 20.66 C 25.777 20.66 24.065 18.708 24.065 15.918 C 24.065 13.128 25.777 11.178 28.235 11.178 C 30.703 11.178 32.435 13.128 32.435 15.918 C 32.435 18.752 30.744 20.66 28.235 20.66 Z M 28.235 7.01 C 23.029 7.01 19.255 10.757 19.255 15.918 C 19.255 21.078 23.029 24.825 28.235 24.825 C 33.45 24.825 37.247 21.079 37.247 15.918 C 37.247 10.758 33.45 7.01 28.235 7.01 Z\" fill=\"rgb(0,0,0)\"></path></g></g><g transform=\"translate(100.34 7.33)\"><g><g><path d=\"M 51.24 13.727 C 48.783 13.727 47.07 11.775 47.07 8.985 C 47.07 6.195 48.783 4.245 51.24 4.245 C 53.707 4.245 55.44 6.195 55.44 8.985 C 55.44 11.819 53.749 13.727 51.24 13.727 Z M 51.24 0.077 C 46.035 0.077 42.26 3.824 42.26 8.985 C 42.26 14.145 46.035 17.892 51.24 17.892 C 56.455 17.892 60.251 14.146 60.251 8.985 C 60.251 3.825 56.455 0.077 51.24 0.077 Z M 8.635 12.97 C 5.954 12.97 5 10.632 5 8.44 C 5 7.474 5.244 4.327 8.377 4.327 C 9.935 4.327 12.01 4.773 12.01 8.602 C 12.01 12.213 10.173 12.971 8.635 12.971 Z M 14.555 0.383 C 13.625 0.383 12.909 0.754 12.55 1.432 L 12.414 1.695 L 12.187 1.498 C 11.396 0.813 9.977 0 7.672 0 C 3.087 0 0 3.444 0 8.569 C 0 13.687 3.194 17.264 7.764 17.264 C 9.325 17.264 10.559 16.9 11.537 16.16 L 11.915 15.876 L 11.915 16.354 C 11.915 18.651 10.429 19.919 7.736 19.919 C 6.427 19.919 5.236 19.6 4.439 19.311 C 3.398 18.997 2.789 19.257 2.367 20.301 L 1.978 21.264 L 1.427 22.67 L 1.768 22.852 C 3.492 23.767 5.736 24.312 7.764 24.312 C 11.94 24.312 16.816 22.175 16.816 16.16 L 16.834 0.383 Z\" fill=\"rgb(0,0,0)\"></path></g></g></g><g transform=\"translate(0.398 1.152)\"><g><path d=\"M 8.557 19.708 L 4.566 19.704 L 4.566 14.932 C 4.566 13.912 4.961 13.382 5.836 13.26 L 8.557 13.26 C 10.5 13.26 11.755 14.485 11.757 16.467 C 11.755 18.502 10.531 19.707 8.557 19.708 Z M 4.566 6.835 L 4.566 5.578 C 4.566 4.478 5.031 3.956 6.052 3.888 L 8.094 3.888 C 9.846 3.888 10.894 4.937 10.894 6.691 C 10.894 8.028 10.177 9.588 8.158 9.588 L 4.566 9.588 Z M 13.655 11.597 L 12.933 11.192 L 13.563 10.653 C 14.296 10.023 15.523 8.607 15.523 6.161 C 15.523 2.417 12.62 0.001 8.126 0.001 L 2.997 0.001 L 2.413 0 C 1.077 0.048 0.015 1.137 0 2.473 L 0 23.721 L 2.354 23.721 C 2.36 23.723 2.361 23.721 2.364 23.723 L 8.227 23.721 C 13.223 23.721 16.447 21.001 16.447 16.79 C 16.447 14.522 15.407 12.583 13.655 11.597 Z M 182.096 6.273 C 180.045 6.281 178.109 7.219 176.832 8.823 L 176.477 9.273 L 176.198 8.769 C 175.29 7.113 173.727 6.273 171.554 6.273 C 169.275 6.273 167.746 7.544 167.036 8.3 L 166.571 8.803 L 166.392 8.141 C 166.133 7.189 165.285 6.664 164 6.664 L 161.939 6.664 L 161.919 23.799 L 166.602 23.799 L 166.602 16.235 C 166.602 15.573 166.684 14.917 166.85 14.231 C 167.298 12.404 168.526 10.438 170.591 10.634 C 171.864 10.756 172.486 11.74 172.486 13.641 L 172.486 23.799 L 177.202 23.799 L 177.202 16.235 C 177.202 15.407 177.279 14.787 177.466 14.165 C 177.845 12.421 179.128 10.632 181.12 10.632 C 182.562 10.632 183.095 11.448 183.095 13.642 L 183.095 21.294 C 183.095 23.025 183.867 23.799 185.597 23.799 L 187.801 23.799 L 187.805 12.86 C 187.805 8.49 185.882 6.272 182.096 6.272 Z M 139.49 17.85 C 139.477 17.867 137.461 19.991 134.808 19.991 C 132.392 19.991 129.95 18.508 129.95 15.198 C 129.95 12.339 131.843 10.341 134.553 10.341 C 135.433 10.341 136.434 10.657 136.591 11.187 L 136.614 11.277 C 136.974 12.479 138.067 12.543 138.282 12.543 L 140.847 12.546 L 140.847 10.304 C 140.847 7.345 137.085 6.273 134.553 6.273 C 129.139 6.273 125.21 10.043 125.21 15.233 C 125.21 20.423 129.096 24.187 134.454 24.187 C 139.102 24.187 141.631 21.132 141.654 21.101 L 141.789 20.935 L 139.758 17.565 Z\" fill=\"rgb(0,0,0)\"></path></g></g></g></svg>',svgContentId:9210374822,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1018h19\",\"data-framer-name\":\"Deliverect_Logo_Primary\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 167 33\"><g transform=\"translate(0.444 0.5)\"><path d=\"M 0 0 L 166.4 0 L 166.4 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 25.023 5.652 L 25.023 16.084 C 25.023 21.239 20.563 25.418 15.061 25.418 C 9.558 25.418 5.099 21.24 5.099 16.084 C 5.099 10.929 9.559 6.751 15.061 6.751 L 16.168 6.751 L 16.168 12.973 L 15.061 12.973 C 13.227 12.973 11.741 14.366 11.741 16.084 C 11.741 17.802 13.227 19.195 15.061 19.195 C 16.894 19.195 18.381 17.802 18.381 16.085 L 18.381 2.434 C 17.29 2.201 16.177 2.084 15.061 2.084 C 6.808 2.085 0.116 8.353 0.116 16.085 C 0.116 23.817 6.806 30.085 15.06 30.085 C 23.313 30.085 30.003 23.817 30.003 16.085 C 30.003 11.94 28.078 8.217 25.022 5.653 L 25.022 5.652 Z M 61.081 23.596 C 62.903 23.596 64.27 22.828 64.998 21.832 L 67.701 23.312 C 66.305 25.245 64.027 26.412 61.051 26.412 C 56.041 26.412 52.791 23.197 52.791 18.93 C 52.791 14.662 56.041 11.447 60.808 11.447 C 65.575 11.447 68.43 14.861 68.43 18.958 C 68.43 19.385 68.37 19.84 68.309 20.238 L 56.222 20.238 C 56.738 22.458 58.652 23.596 61.081 23.596 Z M 65.12 17.736 C 64.664 15.288 62.75 14.236 60.777 14.236 C 58.317 14.236 56.647 15.601 56.192 17.736 Z M 70.556 5.804 L 73.836 5.804 L 73.836 26.042 L 70.556 26.042 Z M 76.153 7.72 C 76.153 6.639 77.093 5.756 78.248 5.756 C 79.401 5.756 80.342 6.638 80.342 7.72 C 80.342 8.802 79.402 9.682 78.248 9.682 C 77.094 9.682 76.153 8.772 76.153 7.72 Z M 76.608 11.817 L 79.888 11.817 L 79.888 26.042 L 76.608 26.042 Z M 97.295 11.817 L 91.373 26.042 L 87.577 26.042 L 81.656 11.817 L 85.24 11.817 L 89.491 22.628 L 93.712 11.817 L 97.296 11.817 Z M 105.549 23.596 C 107.37 23.596 108.737 22.828 109.466 21.832 L 112.169 23.312 C 110.773 25.245 108.494 26.412 105.518 26.412 C 100.508 26.412 97.258 23.197 97.258 18.93 C 97.258 14.662 100.508 11.447 105.275 11.447 C 110.043 11.447 112.898 14.861 112.898 18.958 C 112.898 19.385 112.837 19.84 112.776 20.238 L 100.69 20.238 C 101.206 22.458 103.12 23.596 105.549 23.596 Z M 109.587 17.736 C 109.132 15.288 107.218 14.236 105.245 14.236 C 102.785 14.236 101.115 15.601 100.66 17.736 Z M 122.581 11.56 L 122.581 14.89 C 120.425 14.747 117.904 15.686 117.904 18.873 L 117.904 26.043 L 114.624 26.043 L 114.624 11.818 L 117.904 11.818 L 117.904 14.208 C 118.815 12.274 120.668 11.562 122.581 11.562 L 122.581 11.561 Z M 131.285 23.596 C 133.106 23.596 134.474 22.828 135.202 21.832 L 137.905 23.312 C 136.509 25.245 134.231 26.412 131.255 26.412 C 126.244 26.412 122.995 23.197 122.995 18.93 C 122.995 14.662 126.244 11.447 131.012 11.447 C 135.779 11.447 138.634 14.861 138.634 18.958 C 138.634 19.385 138.573 19.84 138.513 20.238 L 126.426 20.238 C 126.942 22.458 128.856 23.596 131.285 23.596 Z M 135.324 17.736 C 134.868 15.288 132.955 14.236 130.981 14.236 C 128.521 14.236 126.851 15.601 126.396 17.736 Z M 139.924 18.929 C 139.924 14.689 143.356 11.446 147.942 11.446 C 150.918 11.446 153.498 12.896 154.714 15.116 L 151.889 16.652 C 151.221 15.315 149.734 14.462 147.911 14.462 C 145.238 14.462 143.204 16.368 143.204 18.929 C 143.204 21.489 145.238 23.395 147.911 23.395 C 149.733 23.395 151.221 22.514 151.95 21.205 L 154.775 22.712 C 153.499 24.96 150.918 26.411 147.942 26.411 C 143.356 26.411 139.924 23.138 139.924 18.928 Z M 161.334 14.775 L 161.334 21.604 C 161.334 23.424 162.61 23.395 165.1 23.282 L 165.1 26.042 C 160.059 26.611 158.055 25.302 158.055 21.603 L 158.055 14.775 L 155.26 14.775 L 155.26 11.815 L 158.055 11.815 L 158.055 7.568 L 161.334 7.568 L 161.334 11.817 L 165.1 11.817 L 165.1 14.776 L 161.334 14.776 Z M 47.633 5.804 L 47.633 12.88 C 46.303 11.974 44.652 11.446 42.853 11.446 C 38.42 11.446 34.837 14.69 34.837 18.929 C 34.837 23.168 38.42 26.412 42.854 26.412 C 47.287 26.412 50.871 23.14 50.871 18.929 L 50.871 5.805 L 47.634 5.805 Z M 42.853 23.424 C 40.181 23.424 38.116 21.518 38.116 18.929 C 38.116 16.339 40.181 14.434 42.854 14.434 C 45.526 14.434 47.591 16.339 47.591 18.929 C 47.591 21.519 45.525 23.424 42.854 23.424 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:10108185151,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-99fz8j\",\"data-framer-name\":\"Unilever_text_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 151 33\"><g transform=\"translate(0.949 0.5)\"><path d=\"M 0.001 0 L 149.581 0 L 149.581 32 L 0.001 32 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\"><path d=\"M 19.264 12.01 C 19.019 11.229 18.304 9.475 18.109 8.18 C 17.679 5.313 19.179 3.425 20.556 2.993 C 22.1 2.562 22.704 3.337 23.302 5.141 C 24.075 7.887 24.162 11.486 23.902 16.638 C 23.563 23.676 20.042 32.175 11.29 31.998 C 3.735 31.834 0.391 26.94 0.044 19.475 C -0.12 15.955 0.132 12.437 1.589 7.462 C 2.362 4.797 3.052 3.849 5.451 3.338 C 7.336 2.994 7.167 4.965 6.74 7.29 C 5.8 12.437 5.363 14.922 5.71 20.761 C 6.047 26.941 8.886 29.345 11.976 29.345 C 16.61 29.434 18.668 25.572 19.531 19.988 C 20.211 15.527 19.697 13.381 19.264 12.01 Z M 118.085 18.104 C 119.891 18.104 120.408 20.238 119.977 21.532 C 119.546 22.817 118.003 24.282 115.602 24.709 C 115.085 23.419 114.826 18.104 118.085 18.104 Z M 84.535 21.013 C 84.535 19.56 83.758 18.357 82.823 18.357 C 82.041 18.357 80.246 19.212 80.246 21.96 C 80.246 24.113 81.011 25.133 81.361 25.571 C 83.843 24.795 84.536 22.731 84.536 21.013 Z M 57.84 3.509 C 57.719 2.132 56.64 1.195 55.18 1.195 C 53.551 1.195 52.017 2.904 52.18 5.051 C 52.285 6.466 53.119 7.631 54.758 7.631 C 56.64 7.631 58.012 5.486 57.84 3.509 Z M 71.798 8.549 C 71.648 6.149 71.068 5.066 69.778 5.155 C 68.069 5.258 67.279 10.635 67.628 16.288 C 67.851 19.976 68.4 20.544 68.912 20.508 C 69.858 20.451 72.126 13.863 71.798 8.549 Z M 128.73 17.584 C 127.666 21.996 124.442 28.487 119.63 28.487 C 118.516 28.487 116.542 28.055 116.542 26.94 C 116.542 25.737 124.099 25.571 124.099 19.817 C 124.099 17.674 122.126 14.667 119.206 14.667 C 115.344 14.667 111.577 18.876 111.577 24.711 C 111.577 29.941 114.827 31.659 118.088 31.659 C 123.755 31.659 127.188 27.022 128.989 23.163 C 129.851 25.738 130.357 31.659 132.511 31.659 C 133.366 31.659 133.971 31.229 135.002 28.916 C 137.57 23.161 140.062 16.553 143.497 16.553 C 144.781 16.553 144.012 18.876 147.1 18.876 C 148.556 18.876 149.582 17.674 149.582 16.295 C 149.582 14.319 147.783 12.779 145.039 12.779 C 136.97 12.779 135.259 24.882 133.97 24.882 C 131.823 24.882 132.51 15.182 130.962 15.182 C 129.588 15.181 128.914 16.818 128.73 17.584 Z M 60.072 27.88 C 61.359 27.88 63.571 27.463 65.312 24.675 C 64.316 22.464 63.606 17.995 63.507 16.369 C 62.995 8.05 66.201 0.224 69.709 0.007 C 72.282 -0.149 74.339 2.287 74.576 6.231 C 75.209 16.598 71.756 20.925 70.028 24.659 C 70.32 26.107 72.776 28.571 75.092 28.571 C 75.947 28.571 76.982 28.141 77.242 27.794 C 77.003 26.987 76.886 26.148 76.894 25.306 C 76.894 19.298 80.758 14.233 84.106 14.233 C 86.766 14.233 88.311 17.751 88.311 20.073 C 88.311 22.815 85.991 25.051 82.561 27.197 C 83.165 27.794 84.274 28.227 85.223 28.227 C 90.119 28.227 92.681 22.303 94.577 16.894 C 94.919 15.862 95.524 14.406 96.723 14.406 C 98.783 14.406 99.645 27.967 103.068 27.967 C 104.533 27.967 105.731 24.961 105.731 22.65 C 105.731 20.931 105.131 20.759 105.131 18.27 C 105.131 15.526 106.591 13.21 108.57 13.21 C 109.77 13.21 110.204 14.406 110.204 15.862 C 110.204 21.357 106.25 31.572 100.422 31.572 C 96.038 31.572 96.38 24.018 94.836 24.018 C 93.112 24.018 90.709 31.657 82.22 31.657 C 80.841 31.657 79.385 30.971 78.186 29.594 C 76.13 30.971 74.408 31.572 72.433 31.572 C 69.261 31.572 67.885 28.309 66.601 28.309 C 65.053 28.309 63.341 31.657 58.187 31.657 C 54.067 31.657 53.381 26.169 51.925 26.169 C 50.635 26.169 48.661 31.657 46.517 31.657 C 42.907 31.657 42.142 22.133 38.96 22.133 C 36.472 22.133 28.609 31.805 26.474 31.584 C 25.616 31.495 25.254 30.854 25.344 29.994 C 25.466 28.807 26.488 25.628 26.902 24.125 C 27.596 21.515 28.233 18.655 28.589 17.742 C 28.942 16.822 29.895 16.166 30.659 16.236 C 31.045 16.273 31.16 16.991 31.279 17.586 C 31.714 19.707 32.319 21.871 33.001 21.871 C 34.207 21.871 38.188 14.231 40.505 14.231 C 43.342 14.231 43.681 26.25 47.542 26.25 C 48.832 26.25 49.779 24.708 50.634 22.814 C 50.722 19.634 51.58 15.094 54.154 15.094 C 55.957 15.094 56.817 19.124 55.525 22.648 C 55.522 26.851 58.265 27.881 60.072 27.881 Z\" fill=\"rgb(0,0,0)\"></path></g></g></svg>',svgContentId:9596457105,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8q5k98\",\"data-framer-name\":\"Bloomreach\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 149 33\"><g transform=\"translate(0.174 0.5)\"><path d=\"M 0 0 L 148.175 0 L 148.175 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 53.507 7.678 L 53.507 22.185 L 51.191 22.185 L 51.191 7.678 Z M 95.412 16.212 L 95.412 22.215 L 93.096 22.215 L 93.096 16.577 C 93.156 15.297 92.121 14.2 90.841 14.17 C 89.561 14.109 88.464 15.145 88.433 16.425 L 88.433 22.215 L 86.086 22.215 L 86.086 16.577 C 86.128 15.979 85.929 15.389 85.535 14.937 C 85.141 14.485 84.582 14.209 83.984 14.17 L 83.74 14.17 C 82.46 14.17 81.393 15.236 81.424 16.516 L 81.424 22.185 L 79.076 22.185 L 79.076 12.219 L 81.392 12.219 L 81.392 13.377 C 82.124 12.524 83.221 12.006 84.348 12.037 C 85.675 11.998 86.929 12.642 87.67 13.743 C 88.496 12.643 89.8 12.008 91.175 12.036 C 93.404 11.947 95.284 13.678 95.381 15.906 C 95.411 15.998 95.411 16.09 95.411 16.212 Z M 103.062 12.036 L 103.062 14.505 C 100.806 14.352 99.679 15.51 99.679 17.035 L 99.679 22.215 L 97.363 22.215 L 97.363 12.22 L 99.679 12.22 L 99.679 13.622 C 100.502 12.616 101.751 12.007 103.062 12.037 Z M 113.606 18.04 L 105.744 18.04 C 106.053 19.425 107.312 20.389 108.73 20.326 C 109.895 20.363 110.982 19.738 111.534 18.711 L 113.485 19.533 C 112.631 21.301 110.833 22.429 108.883 22.398 C 106.048 22.52 103.641 20.326 103.519 17.491 L 103.519 17.217 C 103.491 15.871 103.998 14.57 104.93 13.598 C 105.861 12.627 107.14 12.065 108.486 12.037 L 108.7 12.037 C 110.027 12.016 111.307 12.526 112.256 13.453 C 113.206 14.379 113.747 15.646 113.759 16.973 C 113.698 17.309 113.667 17.674 113.606 18.04 Z M 105.744 16.273 L 111.504 16.273 C 111.168 14.993 110.01 14.078 108.7 14.078 C 107.33 14.051 106.114 14.953 105.744 16.273 Z M 125.37 12.22 L 125.37 22.185 L 123.054 22.185 L 123.054 20.844 C 122.23 21.84 120.994 22.403 119.702 22.368 C 116.898 22.368 114.825 20.234 114.825 17.187 C 114.825 14.139 116.898 12.006 119.702 12.006 C 120.991 11.985 122.222 12.545 123.054 13.53 L 123.054 12.189 L 125.37 12.219 Z M 123.054 17.217 C 123.115 15.572 121.835 14.2 120.22 14.139 L 120.128 14.139 C 118.422 14.23 117.142 15.693 117.233 17.4 C 117.329 18.958 118.57 20.199 120.128 20.295 C 121.774 20.295 123.085 18.955 123.085 17.309 C 123.054 17.279 123.054 17.248 123.054 17.217 Z M 127.016 17.217 C 126.988 15.871 127.495 14.569 128.427 13.598 C 129.359 12.626 130.638 12.065 131.984 12.037 L 132.166 12.037 C 134.3 11.975 136.22 13.255 137.043 15.237 L 134.879 15.967 C 134.429 14.9 133.385 14.205 132.227 14.2 C 130.643 14.2 129.332 15.45 129.332 17.034 L 129.332 17.217 C 129.261 18.823 130.5 20.184 132.105 20.265 C 133.368 20.319 134.523 19.557 134.97 18.375 L 137.073 19.198 C 136.281 21.179 134.33 22.459 132.197 22.428 C 130.854 22.464 129.553 21.963 128.58 21.036 C 127.608 20.11 127.045 18.834 127.016 17.491 Z M 148.166 16.425 L 148.166 22.215 L 145.85 22.215 L 145.85 16.791 C 145.942 15.419 144.905 14.261 143.534 14.17 L 143.29 14.17 C 141.888 14.14 140.73 15.267 140.7 16.669 L 140.7 22.185 L 138.384 22.185 L 138.384 7.678 L 140.7 7.678 L 140.7 13.5 C 142.224 11.732 144.905 11.52 146.673 13.012 C 147.652 13.872 148.199 15.123 148.166 16.426 Z M 41.195 12.92 L 41.195 7.678 L 38.879 7.678 L 38.879 22.185 L 41.195 22.185 L 41.195 21.484 C 42.037 22.03 43.026 22.306 44.029 22.276 C 44.699 22.276 45.37 22.154 45.979 21.91 C 48.601 20.722 49.759 17.644 48.57 15.053 C 48.056 13.899 47.134 12.977 45.98 12.463 C 45.359 12.219 44.697 12.095 44.03 12.097 C 43.054 12.097 42.048 12.371 41.195 12.92 Z M 43.785 20.234 C 42.709 20.235 41.717 19.651 41.195 18.71 C 40.708 17.774 40.708 16.66 41.195 15.724 C 41.696 14.762 42.701 14.171 43.785 14.2 C 45.456 14.251 46.775 15.638 46.742 17.309 C 46.681 18.893 45.401 20.204 43.786 20.234 Z M 55.225 17.21 C 55.165 14.315 57.511 11.907 60.406 11.846 C 63.301 11.786 65.709 14.132 65.77 17.027 C 65.83 19.923 63.484 22.33 60.589 22.391 L 60.497 22.391 C 57.678 22.483 55.318 20.273 55.225 17.454 Z M 60.497 20.227 C 62.174 20.288 63.575 18.947 63.637 17.271 C 63.697 15.595 62.357 14.193 60.68 14.132 C 59.004 14.072 57.602 15.412 57.541 17.088 L 57.541 17.18 C 57.481 18.795 58.791 20.166 60.406 20.227 Z M 66.926 17.21 C 66.866 14.284 69.182 11.907 72.108 11.846 C 75.033 11.786 77.411 14.102 77.471 17.027 C 77.532 19.953 75.216 22.33 72.291 22.391 L 72.199 22.391 C 69.38 22.483 67.02 20.273 66.927 17.454 L 66.927 17.21 Z M 72.199 20.227 C 73.875 20.288 75.277 18.947 75.339 17.271 C 75.399 15.595 74.059 14.193 72.382 14.132 C 70.706 14.072 69.304 15.412 69.242 17.088 L 69.242 17.18 C 69.182 18.795 70.492 20.166 72.108 20.227 Z M 16.031 32 C 24.884 32 32.061 24.837 32.061 16 C 32.061 7.163 24.884 0 16.031 0 C 7.176 0 0.001 7.163 0.001 16 C 0.001 24.837 7.177 32 16.031 32 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 19.306 12.676 L 18.514 14.657 C 19.367 15.206 19.885 16.151 19.854 17.157 C 19.824 18.741 18.484 19.96 16.929 19.93 C 15.344 19.9 14.125 18.558 14.156 17.004 C 14.186 15.509 15.374 14.294 16.868 14.23 L 17.6 12.189 C 14.916 11.762 12.394 13.589 11.962 16.272 C 11.927 16.525 11.906 16.779 11.901 17.034 L 11.901 22.184 L 14.156 22.184 L 14.156 21.392 C 14.998 21.938 15.987 22.215 16.99 22.185 C 19.733 22.276 21.988 20.112 22.08 17.37 L 22.08 17.156 C 22.14 15.266 21.043 13.499 19.306 12.676 Z M 11.931 12.432 C 12.579 11.785 13.344 11.268 14.186 10.909 L 14.186 7.679 L 11.931 7.679 Z\" fill=\"rgb(241,239,235)\"></path></g></svg>',svgContentId:11538230075,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yaupp1\",\"data-framer-name\":\"ABN_AMRO_Logo_new_colors\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 126 33\"><path d=\"M 24.415 1.406 L 1.82 1.406 L 1.82 20.297 L 13.117 31.594 L 13.117 8.905 L 24.414 20.202 L 24.414 1.406 Z M 119.917 3.02 C 115.361 3.02 115.36 6.342 115.36 9.855 C 115.36 13.367 115.361 16.689 119.917 16.689 C 124.474 16.689 124.475 13.367 124.475 9.855 C 124.475 6.342 124.474 3.02 119.917 3.02 Z M 35.902 3.304 L 32.294 16.5 L 34.952 16.5 L 35.712 13.557 L 39.51 13.557 L 40.268 16.5 L 43.211 16.5 L 39.604 3.304 Z M 45.489 3.304 L 45.489 16.5 L 50.331 16.5 C 51.47 16.5 54.414 16.31 54.414 12.988 C 54.414 11.185 53.939 9.95 51.946 9.666 C 53.465 9.381 54.225 8.24 54.225 6.721 C 54.225 3.873 52.515 3.304 50.427 3.304 L 45.49 3.304 Z M 57.642 3.304 L 57.642 16.5 L 60.204 16.5 L 60.204 6.818 L 60.299 6.818 L 63.907 16.5 L 67.515 16.5 L 67.515 3.304 L 64.951 3.304 L 64.951 12.417 L 61.439 3.304 Z M 78.147 3.304 L 74.539 16.5 L 77.198 16.5 L 77.958 13.557 L 81.755 13.557 L 82.513 16.5 L 85.456 16.5 L 81.755 3.304 Z M 87.64 3.304 L 87.64 16.5 L 90.3 16.5 L 90.3 6.343 L 90.394 6.343 L 92.767 16.5 L 95.424 16.5 L 97.988 6.343 L 97.988 16.5 L 100.645 16.5 L 100.645 3.304 L 96.373 3.304 L 94.191 12.323 L 92.101 3.303 L 87.641 3.303 Z M 104.253 3.399 L 104.253 16.5 L 107.007 16.5 L 107.007 10.993 L 107.765 10.993 C 109.854 10.993 109.76 12.323 109.76 13.938 C 109.76 14.792 109.664 15.646 110.044 16.5 L 112.703 16.5 C 112.418 15.93 112.417 13.463 112.417 12.608 C 112.417 10.235 110.614 10.044 110.044 10.044 C 111.848 9.759 112.512 8.526 112.512 6.818 C 112.512 4.539 111.279 3.398 109.38 3.398 L 104.253 3.398 Z M 119.917 5.108 C 121.436 5.108 121.627 6.532 121.627 9.949 C 121.627 13.367 121.531 14.79 119.917 14.79 C 118.398 14.79 118.208 13.367 118.208 9.95 C 118.208 6.532 118.398 5.108 119.917 5.108 Z M 48.243 5.298 L 49.953 5.298 C 50.902 5.298 51.566 6.058 51.566 7.007 C 51.566 8.241 50.711 8.717 50.142 8.717 L 48.242 8.717 L 48.242 5.297 Z M 107.007 5.298 L 108.24 5.298 C 109.094 5.298 109.664 5.773 109.664 7.007 C 109.664 7.861 109.379 8.905 108.24 8.905 L 107.007 8.905 L 107.007 5.297 Z M 37.515 5.868 L 38.939 11.564 L 36.282 11.564 Z M 79.76 5.868 L 81.184 11.564 L 78.527 11.564 Z M 71.896 7.118 L 70.152 8.865 L 71.898 10.609 L 73.643 8.863 Z M 48.243 10.709 L 49.856 10.709 C 51.28 10.709 51.66 11.469 51.66 12.609 C 51.66 14.412 50.331 14.507 49.762 14.507 L 48.242 14.507 L 48.242 10.71 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9042919340,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8vmksk\",\"data-framer-name\":\"Cartier_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 33\"><path d=\"M 24.716 1.409 C 23.674 1.409 22.636 1.541 21.627 1.801 C 21.627 1.801 15.863 3.23 9.51 9.164 C 9.51 9.164 6.48 12.235 4.335 16.19 C 4.335 16.19 2.105 20.313 1.768 23.763 C 1.768 23.763 1.432 27.634 3.62 29.612 C 3.62 29.612 6.144 31.926 11.656 31.463 C 11.656 31.463 15.106 31.043 18.85 28.686 C 18.85 28.686 20.66 27.508 21.838 26.414 C 21.838 26.414 21.291 28.392 22.09 29.822 C 22.09 29.822 22.848 31.169 24.573 31.463 C 24.573 31.463 25.835 31.715 27.644 31.043 C 27.644 31.043 28.78 30.537 29.537 30.159 C 29.537 30.159 31.094 29.317 32.609 28.139 C 32.609 28.139 32.314 29.317 32.987 30.327 C 32.987 30.327 33.787 31.463 35.259 31.589 C 35.259 31.589 39.214 31.884 44.726 25.109 L 40.856 31.337 L 44.389 31.295 L 47.461 25.993 C 47.461 25.993 50.659 20.523 51.331 19.851 C 51.331 19.851 52.973 17.663 55.455 17.158 L 57.095 17.284 C 57.095 17.284 57.769 17.621 57.769 18.378 L 56.549 18.168 C 56.549 18.168 55.834 18.252 55.455 19.009 C 55.455 19.009 55.118 19.724 55.287 20.439 C 55.287 20.439 55.497 21.029 56.044 21.239 L 56.423 21.365 L 57.643 21.197 C 57.643 21.197 59.789 20.397 62.733 16.695 L 62.061 17.915 L 59.578 22.165 L 56.675 27.298 C 56.675 27.298 55.834 28.981 56.212 29.99 C 56.212 29.99 56.591 30.958 57.853 31.21 L 60.588 31 C 60.588 31 62.145 30.537 63.407 29.443 L 65.217 27.971 C 65.217 27.971 67.404 26.12 69.382 23.931 L 69.255 24.1 C 69.255 24.1 67.53 27.256 67.235 28.307 C 67.235 28.307 66.563 30.537 68.119 31.421 L 69.886 31.589 C 69.886 31.589 71.359 31.379 72.832 30.327 L 75.23 28.265 C 75.23 28.265 77.291 26.33 78.385 24.942 C 78.385 24.942 77.838 26.204 77.712 27.129 C 77.712 27.129 77.292 30.075 80.026 31.253 L 82.593 31.463 C 82.593 31.463 83.603 31.379 85.159 30.832 C 85.159 30.832 88.778 29.654 93.869 24.984 C 93.869 24.984 96.435 22.627 98.244 20.524 L 91.85 31.253 L 95.006 31.253 L 97.362 27.298 L 100.391 22.375 C 100.391 22.375 102.116 19.64 105.272 17.873 C 105.272 17.873 106.534 17.116 107.502 16.947 C 107.502 16.947 108.512 16.737 108.722 17.242 C 108.722 17.242 107.291 16.947 106.955 18.42 C 106.955 18.42 106.618 19.893 107.796 20.355 C 107.796 20.355 108.68 20.65 109.395 20.145 C 109.395 20.145 110.026 19.682 110.237 18.799 C 110.237 18.799 110.405 17.915 109.984 17.284 C 109.984 17.284 109.479 16.527 108.301 16.443 C 108.301 16.443 106.997 16.4 104.388 18.125 C 104.388 18.125 102.453 19.388 101.653 20.187 L 103.799 16.527 L 100.602 16.527 C 100.602 16.527 97.572 21.66 92.229 26.077 C 92.229 26.077 87.012 30.327 84.067 30.453 C 84.067 30.453 81.205 30.663 80.911 28.476 C 80.911 28.476 80.743 27.171 81.5 25.32 C 81.5 25.32 83.267 25.488 85.623 24.731 C 85.623 24.731 87.853 24.016 89.704 22.754 C 89.704 22.754 91.682 21.407 92.397 19.977 C 92.397 19.977 93.239 18.377 92.271 17.032 C 92.271 17.032 90.504 15.306 86.675 16.905 C 86.675 16.905 82.72 18.546 79.775 22.459 L 79.018 23.595 L 78.933 23.721 L 76.83 26.161 L 74.684 28.307 C 74.684 28.307 72.075 30.874 70.771 30.117 C 70.771 30.117 70.266 29.78 70.266 28.981 C 70.266 28.981 70.266 28.181 70.856 27.213 L 76.956 16.611 L 74.22 16.611 C 74.22 16.611 72.705 19.093 70.938 21.449 C 70.938 21.449 67.488 26.035 63.744 28.686 C 63.744 28.686 61.177 30.664 59.747 29.99 C 59.747 29.99 59.115 29.696 59.157 28.897 C 59.157 28.897 59.2 28.013 60.041 26.793 L 66.016 16.611 L 69.339 16.569 L 69.76 16.148 L 66.394 16.148 L 69.971 9.795 L 66.941 9.837 C 66.941 9.837 64.838 13.413 63.239 15.559 C 63.239 15.559 60.294 19.429 57.853 20.482 C 57.853 20.482 58.274 19.935 58.316 19.093 L 58.274 18.42 C 58.274 18.42 58.106 17.536 57.264 17.116 L 56.507 16.906 L 55.077 17.032 C 55.077 17.032 53.393 17.41 51.837 18.757 L 53.141 16.569 L 50.111 16.569 C 50.111 16.569 47.377 21.449 43.801 25.615 C 43.801 25.615 39.131 31 36.564 30.369 C 36.564 30.369 35.806 29.99 35.764 29.065 C 35.764 29.065 35.764 28.139 36.564 26.835 L 42.664 16.527 L 39.635 16.569 L 38.667 18.252 L 38.037 19.472 C 38.037 19.472 38.163 19.093 38.037 18.294 C 38.037 18.294 37.784 16.401 35.975 16.022 L 34.545 15.896 C 34.545 15.896 30.925 15.853 26.802 19.472 C 26.802 19.472 23.984 21.996 21.838 25.825 C 21.838 25.825 17.546 29.822 13.002 30.705 C 13.002 30.705 8.963 31.547 7.238 29.738 C 7.238 29.738 5.345 27.802 5.345 24.437 C 5.345 24.437 5.387 20.44 8.248 15.012 C 8.248 15.012 11.278 10.552 13.128 8.532 C 13.128 8.532 17.841 3.357 22.721 2.053 C 22.721 2.053 26.718 1.001 28.948 2.811 C 28.948 2.811 30.842 4.367 31.01 7.523 L 32.104 5.672 C 32.104 5.672 33.492 3.484 34.712 2.222 C 34.712 2.222 33.576 2.726 32.188 2.895 C 32.188 2.895 30.463 3.105 29.621 2.6 C 29.621 2.6 27.747 1.416 24.716 1.409 Z M 34.99 16.277 C 36.223 16.283 36.857 16.863 36.857 16.863 C 38.33 18.21 37.152 20.734 37.152 20.734 C 34.88 25.446 31.556 28.307 31.556 28.307 L 29.536 29.738 C 26.381 31.295 25.034 30.201 25.034 30.201 C 23.941 29.275 24.404 27.171 24.404 27.171 C 24.698 25.741 25.876 23.679 25.876 23.679 L 28.148 20.355 C 30.209 18.083 32.566 16.905 32.566 16.905 C 33.535 16.428 34.345 16.274 34.99 16.277 Z M 89.115 16.647 C 89.157 16.647 89.199 16.649 89.24 16.653 C 89.24 16.653 89.913 16.737 90.207 17.073 C 90.207 17.073 90.502 17.494 90.417 18.336 C 90.417 18.336 90.207 20.566 87.725 22.67 C 87.725 22.67 84.905 25.068 81.625 24.984 L 82.255 23.679 C 82.255 23.679 83.685 20.902 85.789 18.757 C 85.789 18.757 87.803 16.664 89.115 16.647 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 76.324 11.94 C 76.324 11.94 76.324 12.487 76.744 12.908 C 76.744 12.908 77.124 13.287 77.712 13.287 C 77.712 13.287 78.259 13.287 78.638 12.908 C 78.638 12.908 79.017 12.488 79.017 11.94 L 78.637 10.973 C 78.637 10.973 78.217 10.593 77.712 10.593 C 77.712 10.593 77.123 10.593 76.745 10.973 C 76.745 10.973 76.324 11.351 76.324 11.94 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11964838949,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y0g6lw\",\"data-framer-name\":\"HubSpot_Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 110 33\"><g transform=\"translate(0.369 0.498)\"><path d=\"M 0 0.002 L 109.419 0.002 L 109.419 32.002 L 0 32.002 Z\" fill=\"transparent\"></path><path d=\"M 11.851 5.136 L 11.851 13.885 L 3.812 13.885 L 3.812 5.136 L 0.001 5.136 L 0.001 26.02 L 3.815 26.02 L 3.815 17.556 L 11.85 17.556 L 11.85 26.02 L 15.665 26.02 L 15.665 5.136 Z M 27.873 19.27 C 27.873 21.013 26.46 22.426 24.717 22.426 C 22.974 22.426 21.561 21.013 21.561 19.27 L 21.561 10.325 L 17.943 10.325 L 17.943 19.27 C 17.943 23.008 20.973 26.038 24.71 26.038 C 28.448 26.038 31.478 23.008 31.478 19.27 L 31.478 10.325 L 27.873 10.325 Z M 54.682 11.246 C 54.682 9.412 55.895 8.831 57.223 8.831 C 58.295 8.831 59.709 9.646 60.635 10.635 L 63.004 7.842 C 61.821 6.242 59.422 5.136 57.457 5.136 C 53.532 5.136 50.693 7.436 50.693 11.246 C 50.693 18.317 59.335 16.073 59.335 20.031 C 59.335 21.251 58.15 22.329 56.794 22.329 C 54.654 22.329 53.96 21.283 52.977 20.176 L 50.347 22.911 C 52.03 24.975 54.105 26.024 56.589 26.024 C 60.319 26.024 63.319 23.698 63.319 20.06 C 63.319 12.21 54.675 14.65 54.675 11.246 M 108.146 22.684 C 106.009 22.684 105.401 21.759 105.401 20.343 L 105.401 14.072 L 108.725 14.072 L 108.725 10.894 L 105.401 10.894 L 105.401 6.702 L 101.732 8.349 L 101.732 21.122 C 101.732 24.389 103.986 26.036 107.077 26.036 C 107.562 26.044 108.047 26.005 108.524 25.92 L 109.419 22.625 C 108.995 22.658 108.571 22.676 108.146 22.681 M 41.646 10.429 C 39.853 10.429 38.602 10.949 37.392 12.135 L 37.392 5.262 L 33.769 5.262 L 33.769 18.002 C 33.769 22.772 37.217 26.04 41.092 26.04 C 45.39 26.04 49.172 22.714 49.172 18.236 C 49.172 13.814 45.692 10.432 41.645 10.432 M 41.623 22.392 C 40.139 22.415 38.758 21.637 38.009 20.356 C 37.261 19.074 37.261 17.489 38.009 16.208 C 38.758 14.926 40.139 14.148 41.623 14.171 C 43.893 14.171 45.734 16.012 45.734 18.282 C 45.734 20.553 43.893 22.393 41.623 22.393 Z M 80.995 18.046 C 80.995 13.56 77.222 10.242 72.915 10.242 C 69.041 10.242 65.593 13.509 65.593 18.279 L 65.593 31.028 L 69.216 31.028 L 69.216 24.144 C 70.424 25.328 71.676 25.851 73.466 25.851 C 77.513 25.851 80.995 22.469 80.995 18.046 Z M 77.564 18 C 77.564 20.271 75.723 22.113 73.451 22.113 C 71.18 22.113 69.339 20.271 69.339 18 C 69.339 15.729 71.18 13.888 73.451 13.888 C 75.723 13.888 77.564 15.729 77.564 18 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 92.703 10.067 L 92.703 6.426 C 93.685 5.967 94.314 4.983 94.319 3.899 L 94.319 3.815 C 94.318 2.267 93.064 1.013 91.516 1.012 L 91.431 1.012 C 89.883 1.013 88.629 2.267 88.628 3.815 L 88.628 3.899 C 88.633 4.983 89.262 5.967 90.244 6.426 L 90.244 10.066 C 88.861 10.278 87.559 10.851 86.469 11.728 L 76.485 3.952 C 76.556 3.695 76.594 3.432 76.598 3.166 C 76.601 1.888 75.833 0.734 74.654 0.243 C 73.474 -0.248 72.114 0.019 71.209 0.921 C 70.304 1.824 70.031 3.182 70.519 4.364 C 71.006 5.545 72.157 6.316 73.435 6.318 C 73.981 6.315 74.518 6.17 74.99 5.895 L 84.823 13.546 C 83.015 16.277 83.063 19.835 84.944 22.516 L 81.954 25.508 C 81.712 25.431 81.461 25.39 81.207 25.386 C 79.775 25.387 78.615 26.549 78.615 27.981 C 78.615 29.413 79.776 30.574 81.208 30.574 C 82.64 30.574 83.802 29.414 83.803 27.982 C 83.8 27.728 83.759 27.477 83.681 27.235 L 86.639 24.275 C 89.282 26.31 92.913 26.486 95.74 24.715 C 98.567 22.945 99.994 19.602 99.317 16.335 C 98.639 13.069 96.001 10.569 92.703 10.068 Z M 91.477 22.041 C 90.372 22.071 89.302 21.653 88.51 20.883 C 87.718 20.112 87.271 19.054 87.271 17.949 C 87.271 16.844 87.718 15.786 88.51 15.016 C 89.302 14.245 90.372 13.828 91.477 13.858 C 93.675 13.941 95.414 15.747 95.415 17.946 C 95.416 20.146 93.679 21.953 91.481 22.038\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:11599978447,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5bxvdm\",\"data-framer-name\":\"Schneider_Electric_2007\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 107 33\"><path d=\"M 13.179 5.647 C 10.807 4.594 9.393 4.186 7.989 4.186 C 6.516 4.186 5.572 4.714 5.572 5.529 C 5.572 7.99 13.921 7.297 13.921 12.99 C 13.921 16.129 11.287 17.953 7.628 17.953 C 4.758 17.953 3.344 17.21 1.716 16.37 L 1.716 12.848 C 4.064 14.404 5.502 14.954 7.313 14.954 C 8.883 14.954 9.73 14.404 9.73 13.446 C 9.73 10.766 1.382 11.748 1.382 5.886 C 1.382 3.06 3.824 1.188 7.628 1.188 C 9.464 1.188 11.12 1.573 13.178 2.458 L 13.178 5.647 Z M 24.868 17.205 C 23.476 17.709 22.299 17.95 21.125 17.95 C 17.237 17.95 14.723 15.686 14.723 12.24 C 14.723 8.857 17.334 6.468 20.981 6.468 C 22.107 6.468 23.547 6.756 24.699 7.185 L 24.699 9.775 C 23.787 9.29 22.732 9.025 21.868 9.025 C 19.781 9.025 18.438 10.279 18.438 12.215 C 18.438 14.177 19.758 15.469 21.748 15.469 C 22.586 15.469 23.332 15.277 24.868 14.702 Z M 55.184 10.971 C 55.326 9.434 56.219 8.546 57.586 8.546 C 58.93 8.546 59.841 9.46 59.984 10.971 Z M 57.346 6.471 C 53.934 6.471 51.505 8.881 51.505 12.272 C 51.505 15.688 54.031 17.95 57.923 17.95 C 58.786 17.95 60.871 17.95 62.858 16.48 L 62.858 14.318 C 61.231 15.478 60.154 15.876 58.765 15.876 C 56.572 15.876 55.231 14.742 55.109 12.805 L 63.054 12.805 C 63.219 8.762 60.564 6.471 57.346 6.471 Z M 64.398 17.749 L 67.872 17.749 L 67.872 6.676 L 64.398 6.676 Z M 77.538 14.722 C 76.814 15.373 76.213 15.634 75.471 15.634 C 73.836 15.634 72.801 14.288 72.801 12.271 C 72.801 10.061 73.836 8.786 75.586 8.786 C 76.213 8.786 77.031 9.074 77.538 9.436 Z M 77.538 1.392 L 77.538 7.162 C 76.6 6.707 75.664 6.468 74.653 6.468 C 71.485 6.468 69.293 8.81 69.293 12.198 C 69.293 15.514 71.485 17.953 74.457 17.953 C 75.637 17.953 76.547 17.644 77.538 16.853 L 77.538 17.745 L 81.011 17.745 L 81.011 1.392 Z M 86.153 10.971 C 86.297 9.434 87.185 8.546 88.55 8.546 C 89.896 8.546 90.816 9.46 90.96 10.971 Z M 88.313 6.471 C 84.901 6.471 82.477 8.881 82.477 12.272 C 82.477 15.688 85.003 17.95 88.891 17.95 C 89.752 17.95 91.841 17.95 93.833 16.48 L 93.833 14.318 C 92.204 15.478 91.125 15.876 89.73 15.876 C 87.549 15.876 86.202 14.742 86.08 12.805 L 94.022 12.805 C 94.186 8.762 91.53 6.471 88.312 6.471 Z\" fill=\"rgb(0,0,0)\"></path><g transform=\"translate(64.151 1.217)\"><path d=\"M 35.071 8.629 L 35.121 8.629 C 36.153 6.325 37.307 5.244 38.647 5.244 C 39.341 5.244 39.939 5.509 40.947 6.254 L 39.991 9.324 C 39.079 8.749 38.48 8.508 37.929 8.508 C 36.654 8.508 35.839 9.709 35.071 11.74 L 35.071 16.517 L 31.593 16.517 L 31.593 5.447 L 35.071 5.447 Z M 3.883 0.8 C 4.209 1.66 3.623 2.86 2.576 3.478 C 1.526 4.095 0.416 3.899 0.092 3.039 C -0.238 2.177 0.346 0.976 1.395 0.362 C 2.443 -0.258 3.554 -0.062 3.883 0.8 Z\" fill=\"rgb(0,0,0)\"></path></g><path d=\"M 37.38 10.701 C 37.38 7.701 35.34 6.471 33.327 6.471 C 31.959 6.471 30.834 7.049 29.827 8.323 L 29.78 8.323 L 29.78 1.393 L 26.303 1.393 L 26.303 17.716 L 29.78 17.716 L 29.78 10.701 C 30.593 9.524 31.288 9.021 32.103 9.021 C 33.184 9.021 33.903 9.791 33.903 11.444 L 33.903 15.334 C 35.069 14.734 36.255 14.367 37.379 14.23 L 37.379 10.701 Z M 46.1 6.468 C 44.685 6.468 43.603 6.994 42.497 8.26 L 42.497 6.676 L 39.02 6.676 L 39.02 14.2 C 40.224 14.32 41.76 14.872 42.496 15.784 L 42.496 10.613 C 43.409 9.242 44.058 8.785 44.922 8.785 C 45.907 8.785 46.655 9.435 46.655 10.996 L 46.655 17.719 L 50.131 17.719 L 50.131 10.709 C 50.131 7.447 47.828 6.467 46.1 6.467 Z M 52.052 20.9 L 48.013 20.9 L 48.013 23.77 L 51.91 23.77 L 51.91 25 L 48.013 25 L 48.013 27.961 L 52.173 27.961 L 52.173 29.191 L 46.66 29.191 L 46.66 19.67 L 52.053 19.67 L 52.053 20.9 Z M 55.351 29.198 L 56.589 29.198 L 56.589 19.668 L 55.35 19.668 L 55.35 29.198 Z M 62.714 23.86 C 63.591 23.86 64.135 24.465 64.176 25.414 L 61.025 25.414 C 61.195 24.422 61.766 23.86 62.715 23.86 Z M 61.003 26.24 L 65.41 26.24 C 65.41 23.916 64.349 22.795 62.686 22.795 C 60.961 22.795 59.763 24.07 59.763 25.972 C 59.763 27.71 60.845 29.315 62.793 29.315 C 63.855 29.315 64.541 29.079 65.302 28.575 L 65.302 27.37 C 64.567 27.851 63.855 28.128 63.106 28.128 C 61.907 28.128 61.196 27.485 61.003 26.24 Z M 73.49 24.563 C 72.778 24.076 72.303 23.933 71.761 23.933 C 70.629 23.933 69.844 24.802 69.844 26.074 C 69.844 27.37 70.679 28.151 71.968 28.151 C 72.498 28.151 73.004 28.014 73.628 27.735 L 73.628 28.955 C 73.211 29.152 72.417 29.315 71.761 29.315 C 69.888 29.315 68.587 28.027 68.587 26.185 C 68.587 24.107 69.775 22.795 71.677 22.795 C 72.403 22.795 72.891 22.965 73.49 23.227 Z M 79.127 22.915 L 81.113 22.915 L 81.113 24.03 L 79.127 24.03 L 79.127 27.253 C 79.127 27.99 79.661 28.203 80.022 28.203 C 80.469 28.203 80.931 28.047 81.432 27.738 L 81.432 28.898 C 80.998 29.138 80.331 29.315 79.922 29.315 C 78.575 29.315 77.894 28.478 77.894 27.345 L 77.894 24.03 L 76.803 24.03 L 76.803 23.892 L 79.127 21.618 Z M 85.844 22.915 L 85.844 24.368 L 85.869 24.368 C 86.5 23.256 87.1 22.795 87.684 22.795 C 88.188 22.795 88.659 23.031 89.178 23.522 L 88.523 24.612 C 88.146 24.24 87.659 23.983 87.365 23.983 C 86.513 23.983 85.844 24.849 85.844 25.922 L 85.844 29.198 L 84.608 29.198 L 84.608 22.915 Z M 101.857 24.563 C 101.142 24.076 100.667 23.933 100.122 23.933 C 98.992 23.933 98.214 24.802 98.214 26.074 C 98.214 27.37 99.05 28.151 100.331 28.151 C 100.862 28.151 101.365 28.014 101.997 27.735 L 101.997 28.955 C 101.571 29.152 100.776 29.315 100.122 29.315 C 98.251 29.315 96.945 28.027 96.945 26.185 C 96.945 24.107 98.139 22.795 100.04 22.795 C 100.767 22.795 101.251 22.965 101.857 23.227 Z M 92.458 29.198 L 93.695 29.198 L 93.695 22.915 L 92.458 22.915 Z\" fill=\"rgb(0,0,0)\"></path><g transform=\"translate(26.841 15.987)\"><path d=\"M 66.896 4.671 C 67.016 4.974 66.806 5.403 66.433 5.621 C 66.058 5.841 65.662 5.771 65.549 5.466 C 65.436 5.16 65.641 4.734 66.017 4.516 C 66.388 4.294 66.783 4.365 66.896 4.671 Z M 11.515 5.179 C 11.297 5.179 11.205 5.215 11.116 5.315 C 11.081 5.353 11.066 5.393 11.054 5.471 L 9.944 9.679 C 9.684 11.155 7.872 12.629 5.509 12.629 L 2.224 12.629 L 2.794 10.466 L 4.904 10.466 C 5.106 10.47 5.299 10.383 5.429 10.229 C 5.496 10.158 5.54 10.07 5.557 9.974 L 6.433 6.298 C 6.691 4.821 8.251 3.19 10.613 3.19 L 13.978 3.19 L 13.548 5.18 L 11.515 5.18 Z M 12.273 7.743 L 12.649 6.382 L 16.066 6.382 C 16.488 4.408 16.156 2.579 14.958 1.382 C 12.533 -1.043 7.461 -0.219 3.682 3.396 C 3.116 3.945 2.6 4.544 2.14 5.185 L 4.197 5.185 L 3.719 6.549 L 1.261 6.549 C 1.025 6.979 0.805 7.406 0.637 7.839 L 3.552 7.839 L 3.085 9.203 L 0.221 9.203 C -0.269 11.287 0.043 13.231 1.275 14.465 C 3.67 16.859 8.727 16.018 12.503 12.403 C 13.134 11.792 13.704 11.121 14.203 10.399 L 11.56 10.399 L 11.963 9.038 L 15.053 9.038 C 15.28 8.605 15.489 8.176 15.651 7.743 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:9920731447,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s8kh0o\",\"data-framer-name\":\"Uber_logo_2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 93 33\"><g transform=\"translate(0.59 0.5)\"><path d=\"M 0 0 L 92.179 0 L 92.179 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 5.303 22.854 C 5.693 23.888 6.232 24.772 6.921 25.506 C 7.607 26.238 8.443 26.812 9.371 27.191 C 10.314 27.581 11.341 27.775 12.449 27.775 C 13.528 27.775 14.539 27.573 15.483 27.169 C 16.414 26.773 17.255 26.192 17.955 25.461 C 18.673 24.704 19.231 23.809 19.595 22.831 C 19.985 21.813 20.179 20.674 20.179 19.416 L 20.179 0 L 24.899 0 L 24.899 31.46 L 20.224 31.46 L 20.224 28.54 C 19.181 29.644 17.918 30.517 16.517 31.101 C 15.093 31.701 13.557 32 11.91 32 C 10.232 32 8.666 31.708 7.213 31.124 C 5.795 30.563 4.51 29.713 3.438 28.629 C 2.374 27.55 1.535 26.255 0.921 24.742 C 0.307 23.228 0 21.543 0 19.685 L 0 0 L 4.719 0 L 4.719 19.416 C 4.719 20.674 4.913 21.82 5.303 22.854 Z M 33.033 0 L 33.033 11.46 C 34.082 10.411 35.316 9.566 36.673 8.966 C 38.052 8.352 39.55 8.045 41.168 8.045 C 42.846 8.045 44.418 8.359 45.887 8.989 C 47.313 9.59 48.61 10.46 49.707 11.551 C 50.798 12.648 51.668 13.945 52.269 15.371 C 52.899 16.839 53.213 18.397 53.213 20.045 C 53.223 21.644 52.902 23.228 52.269 24.697 C 51.664 26.114 50.794 27.403 49.707 28.494 C 48.61 29.585 47.313 30.455 45.887 31.056 C 44.419 31.686 42.846 32 41.167 32 C 39.55 32 38.044 31.693 36.651 31.078 C 35.285 30.483 34.043 29.637 32.988 28.584 L 32.988 31.461 L 28.494 31.461 L 28.494 0 Z M 33.55 23.146 C 33.942 24.087 34.515 24.942 35.235 25.663 C 35.959 26.386 36.813 26.965 37.752 27.371 C 38.73 27.795 39.787 28.009 40.853 28.001 C 41.904 28.006 42.945 27.792 43.909 27.371 C 44.843 26.968 45.691 26.388 46.404 25.663 C 47.115 24.934 47.686 24.081 48.089 23.146 C 48.509 22.187 48.719 21.154 48.719 20.045 C 48.719 18.936 48.509 17.895 48.089 16.921 C 47.69 15.978 47.118 15.117 46.404 14.382 C 45.694 13.659 44.845 13.086 43.909 12.697 C 42.942 12.291 41.902 12.084 40.853 12.09 C 39.804 12.084 38.764 12.291 37.797 12.697 C 36.856 13.089 36.001 13.662 35.28 14.382 C 34.554 15.112 33.974 15.974 33.572 16.922 C 33.15 17.909 32.936 18.972 32.943 20.045 C 32.943 21.154 33.145 22.187 33.55 23.146 Z M 55.774 15.416 C 56.354 14.007 57.193 12.719 58.246 11.618 C 59.305 10.517 60.573 9.639 61.976 9.034 C 63.415 8.404 64.973 8.09 66.65 8.09 C 68.298 8.09 69.827 8.39 71.235 8.989 C 72.643 9.589 73.856 10.419 74.875 11.483 C 75.894 12.547 76.688 13.805 77.257 15.259 C 77.827 16.712 78.111 18.292 78.111 20 L 78.111 21.483 L 59.46 21.483 C 59.603 22.391 59.907 23.267 60.358 24.068 C 61.24 25.645 62.648 26.862 64.336 27.506 C 65.19 27.836 66.096 28 67.056 28 C 69.782 28 71.984 26.877 73.662 24.63 L 76.942 27.056 C 75.829 28.563 74.383 29.793 72.718 30.652 C 71.04 31.521 69.152 31.955 67.055 31.955 C 65.347 31.955 63.752 31.655 62.269 31.056 C 60.826 30.483 59.511 29.627 58.403 28.539 C 57.304 27.452 56.426 26.163 55.819 24.742 C 55.19 23.288 54.875 21.708 54.875 20 C 54.875 18.382 55.175 16.854 55.775 15.416 Z M 62.089 13.64 C 60.815 14.704 59.969 16.12 59.549 17.888 L 73.527 17.888 C 73.137 16.12 72.306 14.704 71.033 13.64 C 69.759 12.577 68.269 12.045 66.561 12.045 C 64.853 12.045 63.362 12.577 62.089 13.64 Z M 86.605 14.157 C 85.647 15.206 85.167 16.629 85.167 18.427 L 85.167 31.461 L 80.627 31.461 L 80.627 8.539 L 85.122 8.539 L 85.122 11.371 C 85.67 10.464 86.434 9.707 87.347 9.169 C 88.261 8.629 89.347 8.359 90.605 8.359 L 92.178 8.359 L 92.178 12.584 L 90.291 12.584 C 88.792 12.584 87.564 13.109 86.605 14.157 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:9473594178,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d383mv\",\"data-framer-name\":\"Google_2015_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95 33\"><g transform=\"translate(0.34 0.5)\"><path d=\"M 0 0 L 94.609 0 L 94.609 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 40.262 16.41 C 40.262 20.852 36.787 24.125 32.522 24.125 C 28.258 24.125 24.783 20.852 24.783 16.41 C 24.783 11.937 28.258 8.696 32.523 8.696 C 36.787 8.696 40.262 11.937 40.262 16.41 Z M 36.874 16.41 C 36.874 13.635 34.86 11.736 32.522 11.736 C 30.185 11.736 28.172 13.635 28.172 16.41 C 28.172 19.158 30.185 21.085 32.522 21.085 C 34.86 21.085 36.874 19.155 36.874 16.41 Z M 56.957 16.41 C 56.957 20.852 53.482 24.125 49.218 24.125 C 44.954 24.125 41.479 20.852 41.479 16.41 C 41.479 11.94 44.954 8.696 49.219 8.696 C 53.482 8.696 56.957 11.937 56.957 16.41 Z M 53.569 16.41 C 53.569 13.635 51.555 11.736 49.219 11.736 C 46.881 11.736 44.867 13.635 44.867 16.41 C 44.867 19.158 46.881 21.085 49.218 21.085 C 51.555 21.085 53.569 19.155 53.569 16.41 Z M 72.957 9.162 L 72.957 23.012 C 72.957 28.71 69.597 31.036 65.625 31.036 C 61.885 31.036 59.635 28.536 58.787 26.49 L 61.737 25.263 C 62.262 26.518 63.549 28 65.622 28 C 68.164 28 69.74 26.431 69.74 23.478 L 69.74 22.368 L 69.622 22.368 C 68.863 23.304 67.402 24.122 65.559 24.122 C 61.702 24.122 58.168 20.762 58.168 16.438 C 58.168 12.084 61.702 8.696 65.559 8.696 C 67.399 8.696 68.859 9.513 69.622 10.421 L 69.74 10.421 L 69.74 9.165 L 72.957 9.165 Z M 69.98 16.438 C 69.98 13.722 68.168 11.736 65.862 11.736 C 63.524 11.736 61.566 13.722 61.566 16.438 C 61.566 19.127 63.524 21.085 65.862 21.085 C 68.168 21.085 69.98 19.127 69.98 16.438 Z M 78.262 1.043 L 78.262 23.653 L 74.957 23.653 L 74.957 1.042 L 78.262 1.042 Z M 91.138 18.95 L 93.768 20.703 C 92.918 21.958 90.874 24.122 87.34 24.122 C 82.957 24.122 79.684 20.734 79.684 16.407 C 79.684 11.819 82.985 8.692 86.961 8.692 C 90.964 8.692 92.922 11.878 93.562 13.6 L 93.914 14.477 L 83.601 18.747 C 84.391 20.296 85.618 21.085 87.34 21.085 C 89.065 21.085 90.262 20.236 91.138 18.95 Z M 83.044 16.174 L 89.938 13.311 C 89.559 12.348 88.418 11.677 87.075 11.677 C 85.354 11.677 82.957 13.197 83.045 16.174 Z M 12.276 14.403 L 12.276 11.13 L 23.305 11.13 C 23.413 11.7 23.468 12.376 23.468 13.106 C 23.468 15.562 22.798 18.598 20.634 20.762 C 18.529 22.953 15.841 24.122 12.279 24.122 C 5.677 24.122 0.126 18.744 0.126 12.142 C 0.126 5.542 5.677 0.164 12.279 0.164 C 15.931 0.164 18.533 1.597 20.488 3.465 L 18.178 5.775 C 16.776 4.46 14.878 3.438 12.276 3.438 C 7.455 3.438 3.684 7.323 3.684 12.144 C 3.684 16.964 7.454 20.85 12.275 20.85 C 15.402 20.85 17.183 19.594 18.325 18.453 C 19.249 17.528 19.858 16.206 20.098 14.401 L 12.276 14.404 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:11646979693,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n2s9r6\",\"data-framer-name\":\"Adyen_Corporate_Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 33\"><g transform=\"translate(0.348 0.5)\"><path d=\"M 0 0 L 98.821 0 L 98.821 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 13.909 7.295 L 0.292 7.295 L 0.292 11.672 L 9.24 11.672 C 9.824 11.672 10.213 12.158 10.213 12.644 L 10.213 20.328 L 8.267 20.328 C 7.731 20.326 7.297 19.892 7.295 19.356 L 7.295 13.812 L 3.501 13.812 C 2.571 13.808 1.679 14.176 1.021 14.833 C 0.364 15.491 -0.004 16.383 0 17.313 L 0 21.203 C -0.004 22.133 0.364 23.026 1.021 23.683 C 1.678 24.341 2.571 24.709 3.501 24.705 L 17.411 24.705 L 17.411 10.796 C 17.415 9.866 17.047 8.973 16.389 8.316 C 15.732 7.659 14.839 7.291 13.909 7.295 Z M 30.541 20.328 L 28.596 20.328 C 28.06 20.327 27.625 19.893 27.623 19.356 L 27.623 7.295 L 23.83 7.295 C 22.9 7.291 22.007 7.659 21.35 8.316 C 20.692 8.973 20.324 9.866 20.328 10.796 L 20.328 21.204 C 20.324 22.134 20.692 23.027 21.35 23.684 C 22.007 24.341 22.9 24.709 23.83 24.705 L 37.739 24.705 L 37.739 0 L 30.444 0 Z M 50.869 20.328 L 48.924 20.328 C 48.388 20.327 47.953 19.893 47.951 19.356 L 47.951 7.295 L 40.656 7.295 L 40.656 21.204 C 40.652 22.134 41.02 23.027 41.678 23.684 C 42.335 24.341 43.228 24.709 44.158 24.705 L 50.869 24.705 L 50.869 26.845 L 40.949 26.845 L 40.949 31.903 L 54.662 31.903 C 55.592 31.907 56.485 31.539 57.142 30.881 C 57.8 30.224 58.167 29.331 58.163 28.401 L 58.163 7.295 L 50.868 7.295 L 50.868 20.328 Z M 74.991 7.295 L 60.985 7.295 L 60.985 21.204 C 60.981 22.134 61.349 23.026 62.006 23.684 C 62.664 24.341 63.556 24.709 64.486 24.705 L 78.202 24.705 L 78.202 20.328 L 69.252 20.328 C 68.716 20.326 68.282 19.892 68.28 19.356 L 68.28 11.672 L 70.225 11.672 C 70.809 11.672 71.198 12.158 71.198 12.644 L 71.198 18.189 L 74.991 18.189 C 75.921 18.193 76.814 17.825 77.471 17.167 C 78.129 16.51 78.496 15.617 78.492 14.687 L 78.492 10.797 C 78.496 9.867 78.129 8.974 77.471 8.317 C 76.814 7.659 75.921 7.291 74.991 7.295 Z M 95.319 7.295 L 81.41 7.295 L 81.41 24.705 L 88.705 24.705 L 88.705 11.672 L 90.65 11.672 C 91.234 11.672 91.623 12.158 91.623 12.644 L 91.623 24.705 L 98.918 24.705 L 98.918 10.796 C 98.82 8.851 97.264 7.295 95.319 7.295 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:10668961642,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dvdj65\",\"data-framer-name\":\"Logo_of_the_United_Nations\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 33\"><g transform=\"translate(0.5 0.5)\"><path d=\"M 0 0 L 103.351 0 L 103.351 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 50.64 2.204 L 53.286 2.204 L 53.286 10.613 C 53.286 12.094 52.838 13.232 51.908 13.989 C 49.821 15.539 46.965 15.539 44.878 13.989 C 43.948 13.232 43.5 12.094 43.5 10.613 L 43.5 2.204 L 46.153 2.204 L 46.153 10.613 C 46.153 11.473 46.361 12.063 46.773 12.439 C 47.746 13.197 49.11 13.197 50.083 12.439 C 50.495 12.06 50.667 11.439 50.667 10.613 Z M 59.117 7.339 C 58.453 7.305 57.827 7.653 57.506 8.235 L 57.506 14.955 L 54.946 14.955 L 54.946 5.478 L 57.326 5.478 L 57.395 6.546 C 58.053 5.718 59.06 5.247 60.117 5.272 C 60.917 5.233 61.7 5.518 62.287 6.064 C 62.839 6.616 63.115 7.546 63.115 8.89 L 63.115 14.92 L 60.565 14.92 L 60.565 8.925 C 60.565 8.305 60.426 7.892 60.185 7.684 C 59.891 7.429 59.505 7.304 59.117 7.34 Z M 64.837 3.031 C 64.837 2.684 64.973 2.35 65.217 2.101 C 65.821 1.618 66.68 1.618 67.284 2.101 C 67.541 2.34 67.679 2.68 67.663 3.031 C 67.663 3.379 67.528 3.713 67.284 3.961 C 66.68 4.445 65.82 4.445 65.216 3.961 C 64.973 3.713 64.837 3.379 64.838 3.031 Z M 67.56 5.478 L 67.56 14.955 L 65.01 14.955 L 65.01 5.478 Z M 74.142 14.921 C 73.654 15.086 73.141 15.168 72.625 15.161 C 71.902 15.189 71.193 14.957 70.627 14.507 C 70.144 14.092 69.903 13.368 69.903 12.336 L 69.903 7.339 L 68.49 7.339 L 68.49 5.478 L 69.903 5.478 L 69.903 3.134 L 72.453 3.134 L 72.453 5.478 L 74.078 5.478 L 74.078 7.339 L 72.453 7.339 L 72.453 12.094 C 72.409 12.381 72.498 12.673 72.695 12.887 C 72.911 13.023 73.162 13.095 73.418 13.093 C 73.557 13.099 73.695 13.087 73.831 13.059 C 73.97 13.059 74.073 13.025 74.142 13.025 Z M 83.308 13.438 C 82.942 13.926 82.471 14.327 81.93 14.61 C 81.216 14.978 80.423 15.167 79.62 15.161 C 78.14 15.161 76.967 14.713 76.14 13.817 C 75.316 12.943 74.87 11.778 74.9 10.577 L 74.9 10.234 C 74.838 8.951 75.27 7.693 76.107 6.719 C 76.917 5.786 78.111 5.278 79.345 5.341 C 80.725 5.341 81.762 5.753 82.447 6.616 C 83.132 7.478 83.514 8.614 83.514 9.992 L 83.514 11.061 L 77.484 11.061 C 77.545 11.624 77.801 12.148 78.208 12.542 C 78.641 12.93 79.212 13.129 79.793 13.093 C 80.683 13.144 81.538 12.742 82.067 12.025 L 83.307 13.438 Z M 79.31 7.34 C 78.83 7.307 78.366 7.514 78.069 7.892 C 77.757 8.305 77.555 8.79 77.484 9.303 L 81.007 9.303 L 81.007 9.097 C 81.007 8.639 80.862 8.193 80.593 7.822 C 80.262 7.473 79.789 7.295 79.31 7.34 Z M 90.579 14.99 L 90.44 13.99 C 90.162 14.348 89.81 14.643 89.407 14.853 C 87.96 15.524 86.24 15.076 85.305 13.784 C 84.617 12.771 84.278 11.561 84.338 10.338 L 84.338 10.166 C 84.338 8.716 84.648 7.546 85.306 6.651 C 85.935 5.762 86.975 5.254 88.063 5.306 C 88.943 5.265 89.79 5.65 90.337 6.341 L 90.337 1.515 L 92.887 1.515 L 92.887 14.989 L 90.58 14.989 Z M 86.856 10.338 C 86.819 11.008 86.962 11.676 87.27 12.272 C 87.536 12.8 88.095 13.113 88.684 13.065 C 89.378 13.097 90.025 12.718 90.337 12.098 L 90.337 8.342 C 90.044 7.701 89.388 7.304 88.684 7.342 C 88.089 7.305 87.53 7.632 87.27 8.169 C 86.963 8.789 86.82 9.477 86.856 10.168 Z M 53.976 17.472 L 53.976 30.256 L 51.363 30.256 L 46.227 21.814 L 46.227 30.256 L 43.575 30.256 L 43.575 17.47 L 46.227 17.47 L 51.363 25.912 L 51.363 17.47 L 53.977 17.47 Z M 61.391 30.256 C 61.258 29.987 61.176 29.695 61.149 29.396 C 60.882 29.703 60.552 29.95 60.182 30.119 C 58.948 30.666 57.513 30.479 56.46 29.635 C 55.857 29.133 55.515 28.383 55.532 27.598 C 55.495 26.693 55.908 25.829 56.634 25.288 C 57.358 24.738 58.461 24.462 59.908 24.462 L 61.046 24.462 L 61.046 23.911 C 61.07 23.524 60.946 23.142 60.701 22.842 C 60.419 22.563 60.027 22.424 59.632 22.463 C 58.736 22.463 58.288 22.843 58.288 23.601 L 55.738 23.601 C 55.753 22.759 56.161 21.972 56.841 21.474 C 57.692 20.86 58.722 20.545 59.771 20.578 C 60.746 20.538 61.705 20.83 62.493 21.404 C 63.217 21.956 63.562 22.782 63.562 23.92 L 63.562 27.92 C 63.562 28.36 63.596 28.798 63.665 29.23 C 63.72 29.528 63.813 29.817 63.94 30.091 L 63.94 30.264 L 61.39 30.256 Z M 59.295 28.499 C 59.68 28.494 60.058 28.399 60.399 28.223 C 60.664 28.072 60.889 27.859 61.054 27.603 L 61.054 25.948 L 60.02 25.948 C 59.493 25.909 58.969 26.056 58.539 26.362 C 58.238 26.622 58.062 26.999 58.055 27.397 C 58.047 27.692 58.159 27.977 58.365 28.188 C 58.634 28.388 58.96 28.497 59.295 28.499 L 59.296 28.499 Z M 70.083 30.187 C 69.857 30.261 69.627 30.318 69.393 30.359 C 69.119 30.399 68.843 30.423 68.566 30.429 C 67.843 30.456 67.135 30.223 66.568 29.774 C 66.085 29.359 65.844 28.636 65.844 27.603 L 65.844 22.602 L 64.422 22.602 L 64.422 20.745 L 65.836 20.745 L 65.836 18.402 L 68.386 18.402 L 68.386 20.745 L 69.997 20.745 L 69.997 22.602 L 68.385 22.602 L 68.385 27.356 C 68.341 27.643 68.43 27.935 68.627 28.149 C 68.844 28.285 69.095 28.356 69.351 28.356 C 69.489 28.361 69.628 28.35 69.764 28.322 C 69.902 28.322 70.005 28.286 70.074 28.286 L 70.083 30.186 Z M 71.151 18.298 C 71.151 17.951 71.287 17.617 71.53 17.368 C 72.134 16.884 72.994 16.884 73.598 17.368 C 74.114 17.895 74.114 18.737 73.598 19.264 C 72.993 19.746 72.135 19.746 71.53 19.264 C 71.261 19.018 71.118 18.662 71.143 18.298 Z M 73.838 20.745 L 73.838 30.255 L 71.28 30.255 L 71.28 20.745 Z M 75.288 25.605 L 75.288 25.432 C 75.254 24.18 75.67 22.957 76.46 21.986 C 77.253 21.055 78.356 20.606 79.77 20.606 C 81.22 20.606 82.319 21.054 83.112 21.986 C 83.903 22.957 84.319 24.18 84.284 25.432 L 84.284 25.604 C 84.315 26.857 83.896 28.079 83.102 29.049 C 82.309 29.979 81.207 30.427 79.793 30.427 C 78.343 30.427 77.243 29.979 76.451 29.049 C 75.661 28.077 75.245 26.855 75.279 25.603 L 75.289 25.605 Z M 77.84 25.396 L 77.84 25.569 C 77.81 26.252 77.965 26.931 78.288 27.534 C 78.624 28.044 79.194 28.35 79.804 28.35 C 80.414 28.35 80.984 28.044 81.32 27.534 C 81.622 26.924 81.776 26.25 81.768 25.569 L 81.768 25.396 C 81.792 24.714 81.638 24.038 81.32 23.434 C 81.027 22.878 80.429 22.553 79.803 22.607 C 79.181 22.568 78.592 22.889 78.288 23.433 C 77.973 24.038 77.819 24.714 77.84 25.396 Z M 89.71 22.641 C 89.037 22.607 88.407 22.97 88.099 23.569 L 88.099 30.254 L 85.547 30.254 L 85.547 20.745 L 87.924 20.745 L 88.028 21.847 C 88.683 21.014 89.693 20.542 90.752 20.573 C 91.563 20.53 92.358 20.816 92.956 21.366 C 93.508 21.916 93.783 22.846 93.783 24.191 L 93.783 30.256 L 91.233 30.256 L 91.233 24.19 C 91.233 23.57 91.095 23.157 90.855 22.949 C 90.523 22.717 90.121 22.607 89.717 22.639 L 89.71 22.639 Z M 100.607 27.598 C 100.612 27.317 100.467 27.054 100.227 26.908 C 99.748 26.639 99.222 26.464 98.677 26.391 C 97.815 26.23 96.994 25.902 96.259 25.424 C 95.629 25.004 95.263 24.286 95.292 23.529 C 95.303 22.726 95.669 21.969 96.291 21.461 C 96.981 20.874 97.875 20.565 99.082 20.565 C 100.29 20.565 101.287 20.84 102.011 21.427 C 102.7 21.952 103.1 22.773 103.088 23.64 L 100.538 23.64 C 100.551 23.307 100.427 22.982 100.193 22.744 C 99.883 22.493 99.489 22.37 99.091 22.399 C 98.736 22.372 98.382 22.469 98.091 22.674 C 97.877 22.854 97.751 23.118 97.746 23.398 C 97.742 23.679 97.886 23.941 98.126 24.088 C 98.552 24.324 99.019 24.476 99.503 24.536 C 100.398 24.706 101.26 25.02 102.055 25.466 C 102.743 25.88 103.088 26.568 103.088 27.5 C 103.081 28.32 102.684 29.088 102.019 29.568 C 101.295 30.118 100.332 30.394 99.091 30.394 C 97.781 30.394 96.747 30.05 96.057 29.36 C 95.413 28.818 95.025 28.03 94.989 27.189 L 97.406 27.189 C 97.408 27.613 97.613 28.01 97.958 28.257 C 98.318 28.484 98.74 28.592 99.165 28.567 C 100.095 28.637 100.615 28.291 100.615 27.6 Z M 30.032 28.91 C 29.038 29.397 27.908 29.531 26.827 29.29 C 26.092 29.122 25.376 28.879 24.691 28.564 L 23.174 27.945 C 21.855 27.532 20.447 27.495 19.108 27.84 L 18.969 27.84 C 17.635 27.461 16.216 27.497 14.903 27.945 C 14.387 28.118 13.903 28.358 13.388 28.565 C 12.701 28.884 11.985 29.138 11.251 29.323 C 10.171 29.561 9.042 29.428 8.047 28.945 L 7.908 28.875 C 7.874 28.875 7.874 28.875 7.874 28.909 C 8.536 29.592 9.372 30.081 10.292 30.323 C 10.909 30.488 11.552 30.535 12.187 30.46 C 13.152 30.329 14.072 29.975 14.876 29.426 L 16.326 28.46 C 16.866 28.112 17.522 27.99 18.151 28.12 C 18.496 28.153 18.22 28.326 18.186 28.36 C 17.317 28.778 16.496 29.286 15.733 29.876 C 15.216 30.255 14.283 31.151 14.283 31.151 L 14.971 31.738 L 15.73 30.909 C 16.661 29.943 17.73 29.119 18.9 28.463 C 18.992 28.395 19.118 28.395 19.21 28.463 C 20.381 29.119 21.449 29.943 22.38 30.909 L 23.139 31.738 L 23.827 31.151 L 22.377 29.876 C 21.617 29.286 20.797 28.778 19.93 28.359 C 19.86 28.326 19.62 28.153 19.965 28.119 C 20.596 27.99 21.252 28.114 21.792 28.463 L 23.242 29.43 C 24.045 29.979 24.965 30.333 25.929 30.463 C 26.564 30.538 27.207 30.492 27.824 30.326 C 28.732 30.057 29.562 29.572 30.242 28.912 C 30.223 28.893 30.198 28.881 30.172 28.878 L 30.036 28.912 M 33.412 25.915 C 32.975 26.248 32.485 26.505 31.962 26.674 C 31.223 26.891 30.457 27.007 29.687 27.017 C 28.696 27.047 27.707 27.127 26.724 27.259 C 26.654 27.259 26.62 27.259 26.654 27.225 C 27.512 26.873 28.204 26.207 28.588 25.363 L 29.555 23.399 L 29.555 23.331 C 29.488 23.365 28.522 24.191 28.075 24.606 L 26.462 26.19 C 25.734 26.812 24.874 27.261 23.947 27.5 L 23.913 27.5 L 23.879 27.534 L 25.726 27.981 C 26.523 28.216 27.343 28.366 28.172 28.429 C 30.262 28.635 32.297 27.684 33.48 25.949 C 33.48 25.913 33.446 25.913 33.41 25.913 M 36.444 21.295 C 35.953 21.888 35.372 22.4 34.721 22.812 C 34.166 23.188 33.577 23.512 32.963 23.779 C 32.18 24.095 31.448 24.525 30.791 25.055 L 30.654 25.159 C 30.619 25.159 30.619 25.159 30.619 25.123 C 30.619 25.088 31.654 24.056 31.963 21.885 C 32.008 21.106 32.123 20.333 32.308 19.575 L 32.308 19.506 C 31.592 20.393 31.033 21.395 30.654 22.47 L 30.034 24.227 C 29.785 25.018 29.348 25.738 28.759 26.322 L 28.689 26.39 L 28.689 26.425 C 28.759 26.425 28.827 26.39 28.896 26.39 L 30.895 25.977 C 31.993 25.8 33.033 25.363 33.928 24.703 C 34.846 24.039 35.59 23.165 36.098 22.153 C 36.228 21.883 36.343 21.606 36.444 21.324 C 36.511 21.257 36.478 21.257 36.444 21.29 M 37.752 16.122 C 37.434 17.065 36.89 17.917 36.168 18.602 C 35.347 19.404 34.587 20.266 33.894 21.181 C 33.894 21.215 33.824 21.181 33.859 21.147 C 34.135 20.196 34.206 19.197 34.065 18.217 C 33.928 17.39 33.581 16.494 33.48 15.495 L 33.446 15.461 C 33.446 15.495 33.411 15.529 33.411 15.564 C 33.204 16.214 33.065 16.884 32.998 17.563 C 32.963 18.389 33.101 19.458 33.032 20.285 C 32.962 21.252 32.893 22.25 32.447 23.11 L 32.447 23.18 L 34.513 21.905 C 35.364 21.367 36.102 20.669 36.686 19.848 C 37.432 18.79 37.827 17.524 37.814 16.23 L 37.814 16.091 C 37.788 16.095 37.763 16.107 37.744 16.126\" fill=\"rgb(0,0,0)\"></path><path d=\"M 35.546 16.678 C 35.552 16.402 35.54 16.126 35.511 15.851 C 35.443 14.884 34.856 14.093 34.339 13.272 C 33.989 12.744 33.678 12.191 33.409 11.618 C 33.39 11.6 33.365 11.588 33.339 11.585 C 33.337 11.769 33.349 11.953 33.375 12.135 C 33.549 13.529 33.895 14.895 34.408 16.202 C 34.709 17.014 34.827 17.882 34.751 18.746 C 34.751 18.815 34.751 18.815 34.785 18.849 C 35.096 18.401 35.717 17.78 36.095 17.299 C 36.475 16.816 38.542 14.473 37.546 11.233 C 37.504 11.089 37.446 10.95 37.374 10.819 L 37.34 10.855 C 37.34 13.196 36.202 14.197 35.754 15.782 C 35.667 16.076 35.598 16.375 35.548 16.678 M 35.581 11.854 L 35.375 11.301 L 35.235 10.996 C 34.889 10.369 34.407 9.827 33.823 9.412 C 33.347 9.012 32.93 8.547 32.582 8.032 L 32.479 8.032 C 32.513 8.136 32.824 9.17 33.03 9.652 C 33.37 10.319 33.787 10.943 34.271 11.514 L 34.374 11.651 C 34.96 12.441 35.417 13.319 35.728 14.253 C 35.735 14.26 35.743 14.263 35.752 14.263 L 36.339 12.471 C 36.548 11.837 36.719 11.191 36.855 10.537 C 37.063 8.987 36.579 7.022 35.683 5.919 C 35.664 5.938 35.652 5.963 35.649 5.989 L 35.683 6.126 L 35.753 6.334 C 35.936 7.173 35.948 8.041 35.786 8.884 C 35.66 9.554 35.603 10.235 35.616 10.916 C 35.616 11.019 35.683 11.883 35.683 11.916 C 35.683 11.947 35.649 11.916 35.615 11.916 M 32.817 3.204 C 33.104 3.474 33.327 3.804 33.472 4.171 C 33.714 4.756 33.782 5.621 33.955 6.266 L 34.266 7.402 C 34.266 7.438 34.231 7.472 34.197 7.438 C 33.674 6.815 33.043 6.291 32.334 5.892 C 31.871 5.611 31.463 5.249 31.128 4.823 L 30.956 4.582 C 30.942 4.568 30.921 4.563 30.902 4.571 C 30.896 4.573 30.891 4.577 30.887 4.581 L 30.887 4.685 C 31.052 5.457 31.42 6.172 31.955 6.753 C 32.403 7.167 32.885 7.546 33.333 7.924 C 33.927 8.432 34.481 8.984 34.988 9.578 C 34.988 9.578 35.022 9.614 35.022 9.578 L 35.022 9.027 L 35.056 7.373 L 35.056 6.822 C 35.058 6.256 34.955 5.696 34.751 5.168 C 34.407 4.321 33.771 3.624 32.959 3.204 C 32.925 3.17 32.856 3.17 32.787 3.134 C 32.789 3.161 32.802 3.186 32.822 3.204 M 29.276 1.592 C 29.756 2.049 30.184 2.558 30.553 3.109 C 30.886 3.654 31.291 4.152 31.758 4.589 C 32.068 4.901 32.999 5.624 33.24 5.831 C 33.206 5.555 32.756 3.591 31.552 2.625 C 30.853 2.067 30.042 1.667 29.173 1.453 L 29.173 1.523 Z M 9.976 28.429 C 10.781 28.366 11.576 28.216 12.348 27.981 L 14.21 27.533 L 14.244 27.533 C 14.244 27.524 14.24 27.515 14.234 27.509 C 14.228 27.503 14.219 27.499 14.21 27.499 L 14.174 27.499 C 13.239 27.252 12.369 26.805 11.624 26.189 L 10.013 24.638 L 8.532 23.363 L 8.532 23.433 C 8.669 23.639 9.186 24.777 9.499 25.396 C 9.872 26.248 10.568 26.917 11.433 27.257 C 11.467 27.291 11.433 27.291 11.363 27.291 C 10.38 27.158 9.391 27.078 8.4 27.051 C 7.63 27.04 6.865 26.924 6.126 26.706 C 5.603 26.536 5.112 26.279 4.675 25.946 L 4.605 25.946 C 5.29 26.913 6.246 27.656 7.352 28.081 C 8.198 28.349 9.085 28.466 9.972 28.426 M 9.178 26.392 C 9.248 26.392 9.281 26.427 9.384 26.427 L 9.384 26.392 L 9.317 26.324 C 8.739 25.731 8.303 25.015 8.042 24.229 L 7.422 22.472 C 7.042 21.397 6.482 20.395 5.766 19.508 L 5.766 19.578 C 5.963 20.334 6.09 21.107 6.146 21.887 C 6.456 24.022 7.491 25.057 7.491 25.091 C 7.491 25.125 7.491 25.161 7.455 25.125 L 7.318 25.022 C 6.661 24.493 5.93 24.064 5.148 23.747 C 4.532 23.48 3.943 23.157 3.388 22.78 C 2.737 22.37 2.156 21.858 1.666 21.265 L 1.632 21.265 C 1.732 21.546 1.847 21.822 1.977 22.091 C 2.498 23.105 3.254 23.98 4.182 24.641 C 5.06 25.33 6.107 25.77 7.213 25.916 C 7.869 26.089 8.523 26.261 9.178 26.4 M 3.631 21.92 L 5.698 23.195 C 5.717 23.176 5.729 23.152 5.732 23.126 C 5.284 22.23 5.215 21.266 5.147 20.301 C 5.077 19.439 5.215 18.406 5.181 17.579 C 5.116 16.887 4.979 16.203 4.773 15.539 C 4.773 15.506 4.739 15.472 4.739 15.437 L 4.706 15.472 C 4.636 16.472 4.258 17.368 4.119 18.194 C 3.982 19.174 4.052 20.172 4.325 21.123 C 4.361 21.158 4.291 21.193 4.291 21.158 C 3.607 20.236 2.846 19.374 2.017 18.58 C 1.296 17.906 0.752 17.066 0.431 16.133 C 0.413 16.114 0.39 16.102 0.364 16.098 C 0.328 16.098 0.364 16.167 0.364 16.236 C 0.359 17.53 0.756 18.795 1.5 19.854 C 2.07 20.677 2.796 21.379 3.637 21.922 M 3.258 18.889 C 3.292 18.855 3.292 18.855 3.292 18.786 C 3.209 17.918 3.339 17.042 3.671 16.236 C 4.157 14.921 4.504 13.558 4.706 12.17 C 4.706 11.997 4.739 11.686 4.739 11.618 C 4.706 11.618 4.706 11.618 4.706 11.652 C 4.436 12.227 4.126 12.78 3.774 13.308 C 3.223 14.065 2.672 14.892 2.602 15.858 C 2.568 16.132 2.568 16.41 2.602 16.684 C 2.602 16.703 2.587 16.718 2.568 16.718 L 2.568 16.684 L 2.327 15.857 C 1.843 14.271 0.742 13.279 0.742 10.929 L 0.707 10.895 C 0.639 11.032 0.604 11.171 0.537 11.307 C -0.465 14.547 1.569 16.89 1.987 17.374 C 2.404 17.858 2.954 18.441 3.262 18.889 M 1.81 12.442 L 2.395 14.234 C 2.414 14.234 2.429 14.219 2.429 14.2 C 2.752 13.282 3.205 12.413 3.773 11.622 L 3.876 11.483 C 4.353 10.908 4.769 10.284 5.117 9.623 C 5.324 9.14 5.635 8.107 5.668 8.003 L 5.565 8.003 C 5.218 8.518 4.801 8.982 4.325 9.381 C 3.721 9.8 3.224 10.355 2.874 11.001 C 2.84 11.104 2.771 11.208 2.737 11.311 L 2.53 11.897 C 2.53 11.897 2.495 11.967 2.495 11.897 C 2.495 11.828 2.565 11.035 2.565 10.898 C 2.565 10.211 2.495 9.527 2.355 8.854 C 2.193 8.01 2.205 7.143 2.389 6.304 C 2.396 6.231 2.42 6.161 2.458 6.098 C 2.458 6.064 2.492 5.995 2.492 5.96 C 2.492 5.924 2.492 5.926 2.458 5.892 C 1.562 6.994 1.044 8.993 1.252 10.51 C 1.423 11.164 1.596 11.818 1.804 12.444 M 3.043 7.412 L 3.078 9.067 L 3.078 9.583 L 3.112 9.583 C 3.598 8.971 4.141 8.406 4.732 7.895 L 6.11 6.724 C 6.649 6.142 7.022 5.426 7.19 4.651 L 7.19 4.549 L 7.156 4.549 L 6.984 4.789 C 6.662 5.215 6.265 5.577 5.812 5.859 C 4.985 6.376 4.434 6.754 3.95 7.409 C 3.916 7.444 3.881 7.444 3.916 7.375 L 4.226 6.237 C 4.398 5.583 4.468 4.722 4.709 4.142 C 4.862 3.779 5.084 3.451 5.364 3.175 L 5.364 3.099 C 5.294 3.099 5.261 3.133 5.191 3.169 C 4.365 3.598 3.718 4.306 3.365 5.167 C 3.14 5.688 3.034 6.253 3.055 6.82 L 3.055 7.405 M 4.882 5.785 L 6.385 4.55 C 6.842 4.103 7.247 3.606 7.592 3.068 C 7.949 2.509 8.377 2 8.867 1.553 L 8.97 1.448 L 8.97 1.38 C 8.096 1.578 7.282 1.98 6.593 2.552 C 5.316 3.552 4.903 5.514 4.87 5.79 M 18.73 16.477 C 18.832 16.339 18.59 16.236 18.521 16.477 C 18.452 16.719 18.626 16.65 18.729 16.477 Z M 21.348 10.412 C 21.245 10.377 20.865 10.825 20.934 10.896 C 21.115 10.777 21.259 10.609 21.348 10.412 Z M 21.418 10.343 C 21.485 10.377 21.728 10.24 21.693 10.204 C 21.659 10.169 21.348 10.032 21.348 10.101 C 21.338 10.188 21.363 10.275 21.418 10.343 Z M 26.069 14.616 C 26.208 14.582 26.172 14.374 26.069 14.374 C 25.966 14.374 25.827 14.546 25.863 14.546 C 25.898 14.546 26 14.65 26.069 14.616 Z M 24.38 10.03 C 24.277 10.03 24.243 10.135 24.346 10.203 C 24.428 10.229 24.517 10.216 24.588 10.169 C 24.669 10.132 24.723 10.052 24.725 9.963 C 24.725 9.858 24.588 9.721 24.655 9.652 C 24.723 9.582 24.828 9.687 24.897 9.652 C 24.962 9.619 25.003 9.552 25.001 9.479 C 25.001 9.411 24.967 9.204 24.828 9.204 C 24.689 9.204 24.552 9.479 24.552 9.479 C 24.518 9.556 24.518 9.644 24.552 9.721 C 24.588 9.858 24.552 10.031 24.38 10.031 Z M 26.654 10.062 C 26.713 10.272 26.782 10.479 26.862 10.682 C 26.896 10.785 26.932 11.166 26.999 11.13 C 27.067 11.095 27.069 10.888 27.035 10.785 C 26.997 10.54 26.94 10.298 26.862 10.062 C 26.827 9.923 26.586 9.407 26.517 9.442 C 26.447 9.475 26.62 9.786 26.654 9.925 C 26.688 10.063 26.62 9.994 26.654 10.063 M 25.45 4.205 C 25.553 4.238 25.553 4.032 25.38 3.895 C 25.208 3.758 24.932 3.825 25.001 3.895 C 25.137 4.017 25.287 4.121 25.45 4.205 Z M 20.28 2.723 C 20.039 2.585 20.247 2.378 20.074 2.24 C 19.886 2.166 19.672 2.206 19.524 2.343 C 19.351 2.551 19.73 2.482 19.833 2.551 C 19.936 2.621 20.281 2.861 20.316 2.827 C 20.329 2.81 20.332 2.787 20.326 2.767 C 20.319 2.746 20.303 2.73 20.282 2.723 M 21.66 2.033 C 21.35 1.895 20.21 1.895 20.248 2.206 C 20.288 2.517 20.903 2.206 21.075 2.206 C 21.248 2.206 21.936 2.171 21.66 2.034 Z M 18.522 15.333 C 18.455 15.3 18.352 15.367 18.316 15.3 C 18.281 15.232 18.213 15.264 18.213 15.3 C 18.193 15.359 18.206 15.425 18.247 15.472 C 18.326 15.539 18.443 15.539 18.522 15.472 C 18.557 15.433 18.557 15.373 18.522 15.334 Z M 17.868 13.026 C 17.971 13.026 17.971 12.956 18.007 12.956 C 18.042 12.956 18.007 13.026 18.11 13.026 C 18.213 13.026 18.316 12.784 18.007 12.784 C 17.765 12.784 17.799 13.026 17.868 13.026 Z M 18.282 13.301 C 18.11 13.266 18.144 13.369 18.007 13.369 C 17.799 13.404 17.971 13.232 17.903 13.163 C 17.868 13.129 17.765 13.301 17.731 13.404 C 17.731 13.474 17.731 13.611 17.799 13.644 L 18.455 13.714 C 18.592 13.714 18.455 13.335 18.282 13.301 Z M 16.145 15.54 C 16.215 15.54 16.248 15.334 16.215 15.23 C 16.181 15.127 15.973 15.197 15.973 15.264 C 16.001 15.371 16.061 15.468 16.145 15.54 Z M 13.389 15.54 C 13.389 15.472 13.389 15.197 13.319 15.127 C 13.25 15.057 13.25 15.161 13.217 15.161 C 13.183 15.161 13.181 15.024 13.147 15.024 C 13.113 15.024 13.147 15.23 13.217 15.367 C 13.286 15.504 13.389 15.712 13.389 15.54 Z M 13.319 14.921 C 13.388 14.721 13.422 14.511 13.423 14.301 C 13.431 14.181 13.38 14.064 13.286 13.989 C 13.25 13.989 13.286 14.092 13.32 14.265 C 13.302 14.44 13.267 14.613 13.216 14.782 C 13.216 14.816 13.286 14.989 13.32 14.921 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 9.803 22.64 C 13.552 26.391 19.191 27.514 24.091 25.485 C 28.991 23.457 32.186 18.676 32.186 13.373 C 32.186 8.069 28.991 3.288 24.091 1.26 C 19.191 -0.769 13.552 0.354 9.803 4.105 C 7.339 6.56 5.955 9.895 5.955 13.373 C 5.955 16.85 7.339 20.185 9.803 22.64 Z M 6.53 13.644 L 8.53 13.644 C 8.562 14.661 8.736 15.668 9.047 16.637 C 8.937 16.606 8.832 16.56 8.735 16.5 C 8.598 16.43 8.495 16.534 8.459 16.534 C 8.322 16.534 8.149 16.43 8.149 16.534 C 8.149 16.637 8.287 16.569 8.287 16.638 C 8.287 16.708 7.942 16.706 7.908 16.569 C 7.874 16.432 7.805 16.293 7.771 16.466 C 7.737 16.638 7.599 16.603 7.529 16.638 C 7.486 16.685 7.462 16.746 7.46 16.809 C 7.46 16.879 7.288 16.845 7.288 16.948 C 7.288 17.051 7.391 17.087 7.426 17.19 C 7.462 17.293 7.563 17.362 7.496 17.396 C 7.428 17.43 7.46 17.362 7.391 17.396 C 7.321 17.43 7.701 18.465 7.771 18.429 C 7.841 18.394 7.666 18.086 7.666 17.946 C 7.654 17.844 7.71 17.745 7.805 17.704 C 7.908 17.636 8.184 18.118 8.288 18.049 C 8.393 17.979 8.255 17.912 8.358 17.876 C 8.461 17.841 8.772 18.324 8.875 18.187 C 8.945 18.084 9.012 18.255 9.012 18.29 C 9.115 18.463 9.288 18.463 9.391 18.67 C 9.494 18.876 9.736 19.256 9.908 19.256 C 10.081 19.256 9.978 19.083 10.047 19.083 C 10.117 19.083 10.184 19.323 10.287 19.463 C 10.36 19.568 10.472 19.643 10.598 19.669 C 10.838 19.979 11.116 20.289 11.391 20.599 L 9.978 22.012 C 7.787 19.77 6.552 16.766 6.532 13.631 M 17.938 10.771 L 17.799 10.841 C 17.61 10.927 17.436 11.043 17.284 11.184 L 15.87 9.772 C 16.68 9.051 17.712 8.631 18.795 8.58 L 18.795 10.578 C 18.547 10.603 18.304 10.661 18.072 10.751 C 18.128 10.65 18.197 10.557 18.278 10.475 C 18.142 10.553 18.025 10.659 17.933 10.786 M 16.861 14.06 L 16.861 14.129 C 16.861 14.059 16.827 14.026 16.792 13.957 C 16.758 13.921 16.724 13.887 16.689 13.887 L 16.523 13.887 L 16.455 13.921 L 15.972 13.921 C 15.904 13.921 15.868 13.921 15.868 13.887 C 15.835 13.75 16.041 13.853 16.18 13.439 C 16.213 13.405 16.213 13.336 16.247 13.302 L 16.283 13.232 L 16.317 13.197 L 16.35 13.163 C 16.405 13.11 16.482 13.085 16.558 13.094 L 16.628 13.094 L 16.695 13.164 L 16.798 13.37 C 16.834 13.405 16.868 13.405 16.868 13.44 C 16.92 13.465 16.967 13.5 17.006 13.542 L 17.04 13.578 L 17.04 13.612 C 17.074 13.645 17.074 13.645 17.11 13.645 L 17.247 13.645 C 17.316 13.612 17.316 13.645 17.351 13.645 L 17.351 13.681 C 17.351 13.715 17.351 13.715 17.316 13.751 C 17.316 13.784 17.282 13.784 17.282 13.818 C 17.247 13.853 17.212 13.888 17.179 13.888 C 17.121 13.88 17.063 13.868 17.006 13.853 C 16.971 13.853 16.937 13.853 16.937 13.887 L 16.937 14.06 M 13.154 17.369 C 13.056 17.177 13.009 16.963 13.017 16.748 C 13.01 16.537 12.946 16.332 12.832 16.155 C 12.792 16.021 12.768 15.882 12.762 15.742 C 12.762 15.5 12.556 15.57 12.556 15.5 C 12.556 15.431 12.727 15.5 12.727 15.431 C 12.651 15.257 12.517 15.114 12.348 15.027 C 12.176 14.957 12.245 14.854 12.245 14.751 C 12.26 14.654 12.235 14.555 12.176 14.476 C 12.142 14.336 12.176 14.096 12.348 14.096 C 12.418 14.096 12.521 14.164 12.624 14.096 C 12.727 14.026 12.659 13.819 12.659 13.647 L 13.626 13.647 C 13.626 13.786 13.662 13.958 13.662 14.095 C 13.592 14.131 13.559 14.2 13.592 14.234 C 13.626 14.268 13.662 14.303 13.696 14.268 C 13.867 15.273 14.322 16.207 15.008 16.961 L 13.594 18.374 C 13.483 18.254 13.379 18.127 13.284 17.994 L 13.284 17.891 C 13.284 17.651 13.112 17.512 13.044 17.306 M 11.802 14.962 C 11.709 14.531 11.652 14.093 11.63 13.652 L 12.456 13.652 C 12.389 13.757 12.216 13.86 12.181 13.963 C 12.145 14.066 11.941 14.411 12.078 14.548 C 12.388 14.893 12.008 15.031 11.802 14.962 Z M 11.975 20.062 L 11.802 20.234 L 11.56 19.994 C 11.699 19.93 11.863 19.957 11.975 20.062 Z M 14.112 11.197 C 14.076 11.197 14.076 11.233 14.042 11.233 C 13.939 11.336 13.664 11.3 13.697 11.405 C 13.731 11.51 14.457 11.163 14.457 11.233 C 14.457 11.302 14.145 11.405 13.939 11.508 C 13.733 11.611 13.664 11.784 13.319 11.784 C 13.146 11.784 13.077 11.921 13.009 12.024 C 12.916 12.154 12.835 12.293 12.767 12.438 C 12.771 12.653 12.724 12.866 12.629 13.058 L 11.629 13.058 C 11.699 11.29 12.396 9.605 13.594 8.303 L 15.008 9.716 C 14.664 10.181 14.364 10.677 14.112 11.197 Z M 15.42 10.164 L 16.661 11.405 L 16.523 11.405 C 16.386 11.405 16.386 11.3 16.283 11.3 C 16.075 11.336 16.041 11.405 16.007 11.37 C 15.854 11.229 15.679 11.112 15.49 11.025 C 15.264 10.95 15.018 10.963 14.8 11.06 C 14.766 11.06 14.766 11.094 14.732 11.094 C 14.972 10.784 15.216 10.474 15.42 10.164 Z M 13.697 12.68 C 13.697 12.817 13.664 12.956 13.664 13.093 L 12.94 13.093 C 12.912 12.984 12.938 12.869 13.01 12.783 C 13.093 12.64 13.262 12.57 13.422 12.611 C 13.516 12.621 13.609 12.644 13.697 12.68 Z M 14.318 14.3 L 14.388 14.403 C 14.457 14.473 14.524 14.54 14.594 14.506 C 14.685 14.489 14.778 14.489 14.869 14.506 C 14.963 14.543 15.046 14.602 15.111 14.679 C 15.181 14.782 15.317 14.712 15.421 14.782 C 15.523 14.851 15.627 14.92 15.49 14.988 C 15.353 15.056 15.627 15.196 15.662 15.196 C 15.698 15.196 15.732 15.126 15.732 15.024 C 15.732 14.988 15.799 14.851 15.904 14.884 C 16.009 14.919 16.317 15.299 16.42 15.161 C 16.523 15.021 16.455 14.851 16.489 14.781 C 16.491 14.744 16.522 14.714 16.559 14.712 C 16.641 14.875 16.745 15.025 16.868 15.16 L 15.456 16.574 C 14.858 15.947 14.462 15.155 14.318 14.3 Z M 15.42 9.37 L 14.042 7.958 C 15.344 6.762 17.028 6.068 18.795 6 L 18.795 7.999 C 17.539 8.04 16.338 8.528 15.411 9.377 M 13.618 7.55 L 12.207 6.137 C 13.994 4.451 16.339 3.48 18.795 3.41 L 18.795 5.409 C 16.87 5.471 15.032 6.23 13.625 7.546 M 13.212 7.924 C 11.903 9.335 11.146 11.169 11.078 13.092 L 9.08 13.092 C 9.149 10.638 10.118 8.295 11.802 6.509 Z M 11.075 13.644 C 11.075 14.014 11.111 14.384 11.178 14.748 C 11.144 14.748 11.144 14.644 11.041 14.679 C 10.938 14.715 10.558 15.367 10.387 15.646 C 10.248 15.886 10.455 16.404 10.248 16.576 C 10.048 16.644 9.838 16.679 9.628 16.679 L 9.594 16.679 C 9.258 15.725 9.072 14.726 9.043 13.715 L 11.075 13.645 Z M 18.76 25.913 C 15.627 25.852 12.634 24.609 10.379 22.433 L 11.791 21.02 C 13.675 22.81 16.153 23.843 18.751 23.92 Z M 18.76 23.363 C 16.31 23.29 13.971 22.322 12.187 20.641 L 12.429 20.399 C 12.481 20.442 12.539 20.477 12.601 20.502 C 12.751 20.578 12.921 20.602 13.085 20.572 C 13.224 20.538 13.499 20.296 13.672 20.296 C 13.844 20.296 14.12 20.366 14.292 20.262 C 14.465 20.159 14.187 19.814 14.084 19.642 C 14.05 19.606 14.05 19.572 14.017 19.538 C 15.369 20.679 17.071 21.324 18.84 21.365 Z M 18.76 20.784 C 16.992 20.716 15.306 20.02 14.005 18.821 L 15.417 17.408 C 16.081 18.012 16.888 18.439 17.761 18.648 C 17.451 18.786 17.313 18.992 17.348 19.165 C 17.384 19.337 17.14 19.44 17.14 19.648 C 17.14 19.856 17.416 19.993 17.451 20.199 C 17.485 20.302 17.727 20.475 17.935 20.612 C 18.192 20.686 18.462 20.709 18.728 20.682 Z M 18.69 18.028 C 18.587 17.959 18.518 18.098 18.381 18.165 C 17.436 18.028 16.551 17.622 15.831 16.994 L 17.243 15.582 C 17.676 15.935 18.203 16.151 18.76 16.202 C 18.76 16.27 18.83 16.339 18.83 16.478 C 18.83 16.616 18.726 16.684 18.76 16.753 C 18.794 16.823 19.105 16.753 19.139 16.65 C 19.173 16.547 19.035 16.478 19.002 16.375 C 18.966 16.305 18.966 16.27 18.932 16.202 L 19.036 16.202 C 19.141 16.208 19.245 16.196 19.346 16.167 C 19.383 16.164 19.413 16.134 19.414 16.097 C 19.414 16.064 19.45 16.03 19.45 15.994 C 19.45 15.959 19.484 15.96 19.484 15.927 L 19.519 15.961 C 19.553 16.03 19.622 16.236 19.689 16.202 C 19.758 16.168 19.795 15.857 19.759 15.788 C 19.689 15.696 19.689 15.57 19.759 15.478 C 19.759 15.443 19.795 15.237 19.862 15.271 C 19.93 15.305 19.862 15.479 19.862 15.546 C 19.862 15.651 19.932 15.788 20.035 15.719 C 20.105 15.685 20.173 15.582 20.243 15.616 C 20.312 15.649 20.07 15.719 20.035 15.788 C 19.999 15.858 20.138 15.891 20.105 15.927 C 20.07 15.962 20.035 15.927 20.001 15.961 C 19.967 15.994 20.071 16.202 20.001 16.236 C 19.931 16.27 19.69 16.339 19.622 16.375 C 19.555 16.41 19.483 16.339 19.519 16.305 C 19.555 16.272 19.519 16.133 19.449 16.133 C 19.38 16.133 19.38 16.167 19.38 16.236 C 19.38 16.306 19.45 16.409 19.45 16.442 C 19.45 16.476 19.346 16.512 19.277 16.546 C 19.204 16.655 19.111 16.748 19.002 16.821 C 18.898 16.891 18.691 16.891 18.691 16.96 C 18.691 17.03 18.795 17.03 18.829 17.063 C 18.899 17.166 18.932 17.305 18.795 17.374 C 18.658 17.444 18.485 17.269 18.415 17.304 C 18.345 17.34 18.312 17.511 18.278 17.717 C 18.244 17.924 18.657 17.993 18.863 17.89 C 19.002 17.822 18.966 17.614 19.105 17.545 C 19.243 17.475 19.208 17.338 19.346 17.374 C 19.486 17.409 19.45 17.269 19.586 17.269 C 19.724 17.269 19.726 17.374 19.898 17.408 C 20.173 17.478 20.173 17.683 20.208 17.58 C 20.241 17.477 20.277 17.408 20.07 17.339 C 19.864 17.269 19.76 17.029 19.932 17.099 C 20.138 17.201 20.31 17.201 20.346 17.305 C 20.381 17.408 20.586 17.374 20.621 17.477 C 20.655 17.65 20.794 17.477 20.691 17.374 C 20.588 17.271 20.621 17.235 20.691 17.166 C 20.76 17.096 20.794 17.201 20.897 17.063 C 21 16.924 20.862 16.96 20.827 16.891 C 20.794 16.821 20.827 16.442 20.967 16.511 C 21.105 16.581 21.242 16.478 21.173 16.442 C 21.103 16.407 21.207 16.202 21.242 16.202 C 21.277 16.202 21.242 16.339 21.276 16.375 C 21.31 16.41 21.654 16.27 21.69 16.442 C 21.725 16.615 21.448 16.718 21.379 16.718 C 21.242 16.718 21.137 16.857 21.034 16.994 C 20.931 17.131 20.828 17.166 20.897 17.304 C 20.967 17.444 21.103 17.408 21.242 17.339 C 21.381 17.269 21.482 17.166 21.552 17.132 C 21.69 17.062 21.793 17.477 21.724 17.545 C 21.654 17.612 21.517 17.65 21.448 17.717 C 21.25 17.837 21.026 17.909 20.794 17.925 C 20.655 17.959 20.655 17.993 20.621 18.131 C 20.588 18.271 19.967 18.165 19.828 18.165 C 19.69 18.165 19.932 17.855 19.725 17.89 L 19.105 17.993 C 19.071 17.993 18.863 18.165 18.691 18.028 Z M 20.518 21.232 C 20.694 21.308 20.848 21.427 20.966 21.577 C 21.07 21.75 21.103 21.819 21.034 21.992 C 20.862 22.301 20.931 22.507 21.276 22.612 C 21.482 22.68 21.551 22.888 21.69 23.025 C 20.924 23.226 20.138 23.342 19.346 23.37 L 19.346 21.37 C 19.726 21.335 20.138 21.3 20.518 21.231 Z M 19.346 20.82 L 19.346 20.578 C 19.795 20.508 19.69 20.784 20.001 20.681 C 20.099 20.65 20.205 20.677 20.276 20.751 C 19.965 20.756 19.654 20.779 19.346 20.82 Z M 19.346 25.953 L 19.346 23.914 C 20.389 23.885 21.421 23.699 22.409 23.364 C 22.437 23.39 22.474 23.402 22.512 23.397 C 22.649 23.388 22.78 23.341 22.891 23.26 C 23.222 23.129 23.535 22.955 23.821 22.743 C 24.729 22.281 25.565 21.689 26.303 20.986 L 27.715 22.398 C 25.469 24.59 22.479 25.856 19.342 25.944 M 24.923 7.92 L 25.407 7.437 C 25.533 7.58 25.703 7.676 25.89 7.712 C 26.038 7.721 26.157 7.84 26.166 7.988 C 26.201 8.16 26.372 8.23 26.544 8.263 C 26.717 8.297 26.82 8.505 26.959 8.505 C 27.097 8.505 27.544 9.125 27.716 9.332 C 27.819 9.435 27.958 9.608 28.061 9.469 C 28.164 9.33 28.164 9.366 28.234 9.332 C 28.764 10.517 29.062 11.793 29.11 13.091 L 27.102 13.091 C 27.096 12.638 27.039 12.186 26.932 11.746 C 27.002 11.607 27.037 11.453 27.035 11.298 C 27.04 11.253 27.023 11.209 26.989 11.18 C 26.955 11.15 26.91 11.139 26.866 11.149 C 26.837 11.156 26.812 11.172 26.793 11.195 C 26.722 10.936 26.629 10.682 26.517 10.438 C 26.483 10.299 26.447 10.128 26.414 9.99 C 26.414 9.956 26.344 9.92 26.275 9.851 C 26.225 9.733 26.168 9.618 26.103 9.508 C 26.208 9.438 26.241 9.266 26.103 9.3 C 25.897 9.335 26.035 9.197 25.966 9.127 C 25.896 9.058 25.896 9.127 25.863 9.163 C 25.595 8.75 25.296 8.358 24.967 7.991 L 24.967 7.957 C 24.897 7.957 24.897 7.922 24.931 7.922 M 26.138 19.604 C 26.069 19.467 26.035 19.294 25.966 19.156 C 25.93 19.019 25.655 19.019 25.655 19.088 C 25.66 19.226 25.649 19.365 25.621 19.501 L 25.621 19.538 L 24.897 18.814 C 26.208 17.404 26.967 15.568 27.035 13.644 L 29.033 13.644 C 28.969 16.089 27.999 18.422 26.311 20.192 L 26.208 20.089 C 26.234 19.924 26.209 19.756 26.138 19.605 M 24.483 20.988 C 24.588 20.816 24.794 20.505 24.897 20.332 C 25.001 20.16 24.622 19.92 24.414 19.849 C 24.206 19.778 24.206 19.676 24.206 19.504 C 24.318 19.422 24.422 19.33 24.517 19.228 L 25.929 20.642 C 25.463 21.08 24.956 21.473 24.414 21.813 C 24.378 21.744 24.62 21.503 24.689 21.399 C 24.759 21.296 24.414 21.159 24.482 20.987 M 25.344 12.749 C 25.171 12.509 25.414 12.473 25.654 12.37 C 25.792 12.302 25.964 12.406 25.964 12.336 C 25.975 12.24 26.025 12.153 26.101 12.095 C 26.185 12.057 26.257 11.997 26.309 11.922 C 26.309 11.992 26.343 12.061 26.343 12.13 C 26.277 12.245 26.241 12.376 26.24 12.509 C 26.24 12.612 26.24 12.749 26.343 12.509 C 26.343 12.473 26.377 12.473 26.377 12.439 C 26.432 12.653 26.456 12.873 26.447 13.094 L 24.965 13.094 L 24.965 13.06 C 25.068 12.888 25.448 12.921 25.344 12.749 Z M 25.619 9.924 C 25.619 9.933 25.616 9.942 25.609 9.949 C 25.603 9.955 25.594 9.959 25.585 9.959 C 25.55 9.993 25.378 9.717 25.378 9.924 C 25.378 10.13 25.447 10.199 25.585 10.234 C 25.725 10.27 25.653 10.338 25.758 10.372 C 25.81 10.381 25.857 10.405 25.895 10.441 C 26.058 10.819 26.185 11.211 26.274 11.613 C 26.223 11.639 26.176 11.674 26.137 11.716 C 26.067 11.786 26.101 11.922 26.034 12.026 C 25.929 12.198 25.895 12.303 25.619 12.233 C 25.447 12.163 25.585 11.958 25.619 11.785 C 25.653 11.613 25.723 11.647 25.723 11.543 C 25.723 11.44 25.378 11.06 25.205 11.198 C 25.033 11.338 25.068 11.474 24.93 11.613 C 24.862 11.682 24.793 11.682 24.69 11.613 C 24.586 11.543 24.55 11.474 24.586 11.406 C 24.622 11.339 24.345 11.026 24.241 10.889 C 24.108 10.719 23.906 10.618 23.691 10.613 C 23.504 10.292 23.283 9.992 23.034 9.717 L 24.448 8.304 C 24.908 8.786 25.303 9.328 25.619 9.915 M 23.242 10.883 L 23.172 10.986 C 23.139 11.055 22.966 10.916 22.931 10.952 C 22.896 10.987 23.173 11.331 22.897 11.228 C 22.622 11.124 22.794 11.124 22.794 11.02 C 22.794 10.915 22.552 10.849 22.691 10.78 C 22.83 10.71 22.691 10.607 22.828 10.571 C 22.965 10.536 22.931 10.401 22.758 10.365 C 22.586 10.33 22.622 10.744 22.518 10.676 C 22.417 10.647 22.313 10.635 22.208 10.641 L 22.691 10.157 C 22.744 10.185 22.804 10.197 22.863 10.191 C 22.947 10.442 23.075 10.676 23.243 10.881 M 22.691 17.876 C 22.912 17.906 23.131 17.952 23.345 18.014 C 23.482 18.084 23.587 18.221 23.69 18.048 C 23.897 17.736 24.038 17.384 24.103 17.015 C 24.173 16.498 24.069 16.325 24 16.325 C 23.93 16.325 23.793 16.464 23.655 16.464 C 23.587 16.464 23.587 16.601 23.587 16.704 C 23.587 16.807 23.448 16.912 23.415 16.843 C 23.381 16.773 23.31 16.807 23.345 16.877 C 23.381 16.946 23.07 16.912 22.931 16.843 C 22.725 16.74 23.173 16.74 23.379 16.567 C 23.559 16.415 23.733 16.254 23.896 16.084 C 24 15.913 24 15.704 24.172 15.568 C 24.344 15.431 24.62 15.465 24.656 15.257 C 24.691 15.049 24.725 15.084 24.828 15.12 C 24.931 15.155 25.897 15.084 25.897 14.775 C 25.897 14.636 25.69 14.465 25.484 14.43 C 25.345 14.43 25.311 14.154 25.242 14.017 C 25.174 13.872 25.093 13.733 25 13.603 L 26.451 13.603 C 26.381 15.371 25.685 17.057 24.486 18.359 L 24.452 18.324 L 24.452 18.187 C 24.486 17.911 24.28 17.463 24.211 17.531 C 24.141 17.599 24.211 17.601 24.004 17.911 C 23.935 18.014 23.832 18.187 23.695 18.187 C 23.558 18.187 23.556 18.117 23.35 18.151 C 23.168 18.186 22.981 18.186 22.799 18.151 C 22.469 18.045 22.156 17.894 21.867 17.703 C 21.903 17.669 22.006 17.739 22.006 17.636 C 22.006 17.532 22.557 17.842 22.696 17.876 M 28.105 22.046 L 26.693 20.64 C 28.483 18.756 29.516 16.277 29.593 13.679 L 31.626 13.679 C 31.561 16.817 30.305 19.814 28.111 22.059 M 31.617 13.091 L 29.584 13.091 C 29.552 11.609 29.199 10.151 28.549 8.818 L 28.585 8.784 C 28.722 8.645 27.931 7.612 27.792 7.509 C 27.632 7.369 27.481 7.219 27.337 7.063 C 27.057 6.789 26.803 6.489 26.58 6.167 L 28.061 4.684 C 30.275 6.93 31.545 9.939 31.607 13.092 M 19.35 0.826 C 22.489 0.896 25.488 2.136 27.758 4.306 L 26.378 5.678 C 26.311 5.644 26.241 5.61 26.275 5.541 C 26.345 5.438 26.172 5.438 26.138 5.161 C 26.059 4.883 25.873 4.648 25.621 4.506 C 25.449 4.403 25.345 4.266 25.173 4.196 C 25.001 4.127 24.656 3.921 24.483 3.99 C 24.373 4.029 24.257 4.052 24.14 4.058 C 22.675 3.275 21.045 2.85 19.384 2.818 Z M 19.35 3.406 C 20.823 3.45 22.27 3.815 23.589 4.474 C 23.629 4.7 23.724 4.913 23.864 5.094 C 23.942 5.264 24.034 5.424 24.14 5.578 C 24.243 5.681 24.174 5.888 24.207 6.061 C 24.207 6.129 24.277 6.198 24.312 6.268 L 24.312 6.543 C 24.312 6.577 24.449 6.577 24.552 6.508 C 24.656 6.438 24.725 6.301 24.863 6.337 C 25.003 6.372 25.173 6.647 25.276 6.82 L 24.622 7.475 C 24.552 7.338 24.483 7.165 24.519 7.165 C 24.554 7.165 24.622 7.199 24.656 7.199 C 24.794 7.199 24.552 7.096 24.552 7.062 C 24.449 6.957 24.449 6.82 24.312 6.717 C 24.175 6.614 23.967 6.682 23.898 6.545 C 23.763 6.3 23.574 6.088 23.347 5.925 C 23.311 5.925 23.622 6.303 23.519 6.372 C 23.416 6.442 23.036 6.131 23.002 6.2 C 22.968 6.27 23.416 6.442 23.553 6.579 C 23.623 6.648 23.759 6.854 23.898 7.027 C 22.584 6.033 20.996 5.467 19.35 5.407 L 19.35 3.405 Z M 19.35 5.955 C 21.118 6.025 22.803 6.722 24.104 7.92 L 22.692 9.333 C 21.766 8.509 20.588 8.023 19.35 7.955 Z M 19.35 8.534 C 20.435 8.59 21.468 9.015 22.278 9.739 L 22.209 9.809 L 22.141 9.775 C 21.969 9.705 21.624 10.05 21.693 10.085 C 21.763 10.118 21.899 9.947 21.969 9.981 L 22.003 9.981 L 21.418 10.601 C 21.245 10.671 21.073 10.808 21.073 10.911 L 21.073 10.946 L 20.865 11.158 L 20.762 11.054 C 20.598 10.918 20.411 10.813 20.21 10.744 C 20.307 10.668 20.369 10.556 20.383 10.434 C 20.383 10.228 20.313 10.295 20.21 10.4 C 20.107 10.505 20.004 10.537 19.935 10.64 C 19.759 10.572 19.572 10.538 19.384 10.537 L 19.384 8.538 Z M 19.108 11.084 C 19.132 11.143 19.119 11.211 19.074 11.256 C 19.004 11.326 18.799 11.083 18.764 11.29 C 18.694 11.498 18.902 11.395 18.902 11.428 C 19.003 11.558 19.151 11.645 19.314 11.67 C 19.453 11.67 19.659 11.67 19.659 11.807 C 19.659 11.877 19.832 11.877 19.866 11.946 C 19.866 12.049 19.97 12.221 20.038 12.186 C 20.106 12.15 20.21 12.221 20.246 12.291 C 20.281 12.36 20.246 12.394 20.21 12.461 C 20.107 12.566 20.314 12.531 20.349 12.737 C 20.384 12.943 20.177 12.807 20.141 12.945 C 20.073 13.048 20.004 13.117 19.935 13.221 C 19.901 13.254 19.97 13.324 20.005 13.29 C 20.038 13.256 20.107 13.151 20.21 13.151 C 20.314 13.151 20.417 13.53 20.521 13.566 C 20.626 13.601 20.589 13.738 20.625 13.772 C 20.66 13.806 20.452 13.772 20.486 13.842 C 20.52 13.91 20.728 13.944 20.728 14.047 C 20.705 14.163 20.605 14.249 20.486 14.254 C 20.383 14.254 20.21 14.014 20.21 14.081 C 20.21 14.149 20.28 14.357 20.383 14.357 C 20.486 14.357 20.728 14.254 20.625 14.392 C 20.521 14.531 20.555 14.737 20.486 14.737 C 20.416 14.737 20.383 14.737 20.452 14.84 C 20.48 14.949 20.454 15.064 20.382 15.15 C 20.304 15.196 20.204 15.182 20.142 15.116 C 20.142 15.081 20.349 15.081 20.349 14.977 C 20.349 14.874 20.246 14.84 20.038 14.91 C 19.935 14.944 19.901 14.874 19.832 14.874 C 19.762 14.874 19.556 15.116 19.556 15.15 L 19.556 15.322 C 19.559 15.445 19.523 15.566 19.453 15.667 C 19.329 15.695 19.201 15.707 19.074 15.701 C 18.516 15.685 17.981 15.479 17.557 15.116 C 17.643 15.072 17.737 15.049 17.833 15.046 C 17.936 15.081 17.97 15.013 18.039 14.977 C 18.109 14.942 18.281 15.047 18.384 14.977 C 18.488 14.908 18.729 14.462 18.694 14.357 C 18.658 14.252 18.936 14.081 18.902 14.047 C 18.868 14.013 18.832 14.081 18.832 14.047 C 18.832 14.013 18.902 14.013 18.832 13.875 C 18.763 13.736 18.66 13.805 18.591 13.805 C 18.487 13.738 18.315 13.703 18.281 13.738 C 18.247 13.773 18.143 13.668 18.109 13.703 C 18.054 13.706 18.009 13.751 18.006 13.806 C 17.97 13.875 18.039 13.944 18.039 14.014 C 18.006 14.15 17.798 14.254 17.798 14.357 C 17.798 14.46 17.695 14.392 17.661 14.427 C 17.627 14.46 17.661 14.529 17.591 14.529 C 17.522 14.529 17.419 14.702 17.351 14.84 C 17.247 14.702 17.143 14.53 17.041 14.392 C 17.11 14.357 17.179 14.323 17.213 14.357 C 17.316 14.427 17.73 13.703 17.661 13.497 C 17.591 13.29 17.488 13.427 17.385 13.461 C 17.282 13.495 17.282 13.393 17.315 13.358 C 17.35 13.322 17.799 13.324 17.557 13.185 C 17.454 13.117 17.179 13.117 17.213 13.015 C 17.247 12.911 17.385 13.015 17.419 13.015 C 17.591 13.082 17.695 12.737 17.798 12.737 C 17.97 12.737 17.902 12.394 17.73 12.497 C 17.558 12.6 17.488 12.567 17.419 12.669 C 17.349 12.773 17.179 12.909 17.179 12.773 C 17.179 12.703 17.558 12.497 17.627 12.393 C 17.703 12.315 17.761 12.221 17.797 12.118 C 17.833 12.013 18.315 11.946 18.418 11.876 C 18.497 11.805 18.547 11.707 18.557 11.601 C 18.557 11.498 18.418 11.531 18.384 11.462 C 18.35 11.392 18.557 11.462 18.557 11.359 C 18.557 11.256 18.384 11.359 18.315 11.289 C 18.315 11.256 18.315 11.256 18.35 11.222 C 18.593 11.132 18.85 11.085 19.108 11.083 L 19.178 11.083 Z M 18.795 0.826 L 18.795 2.825 C 16.197 2.901 13.718 3.935 11.835 5.726 L 10.42 4.313 C 12.674 2.138 15.668 0.895 18.8 0.833 M 9.98 4.727 L 11.394 6.139 C 9.603 8.023 8.57 10.501 8.493 13.099 L 6.495 13.099 C 6.591 9.976 7.83 6.997 9.976 4.727\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:10502645821,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ybjiyb\",\"data-framer-name\":\"Yandex_Logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 33\"><g transform=\"translate(-0.278 0.5)\"><path d=\"M 0.452 0 L 89.452 0 L 89.452 32 L 0.452 32 Z\" fill=\"transparent\"></path><path d=\"M 10.166 32.24 L 10.166 21.96 L 17.716 0.18 L 14.511 0.18 L 8.614 17.575 L 3.5 3.193 L 0 3.193 L 6.948 21.843 L 6.948 32.24 Z M 24.061 28.227 C 23.484 29.112 22.394 29.843 21.292 29.843 C 19.664 29.843 18.895 28.304 18.895 25.946 C 18.895 23.306 19.754 21.562 23.689 21.562 L 24.061 21.562 Z M 27.189 27.612 L 27.189 17.985 C 27.189 13.025 25.189 11.486 21.574 11.486 C 19.51 11.486 17.639 12.332 16.703 13.101 L 17.305 15.909 C 18.369 14.973 19.754 14.127 21.369 14.127 C 23.164 14.127 24.061 15.255 24.061 17.947 L 24.061 19.165 L 23.612 19.165 C 17.882 19.165 15.639 21.921 15.639 26.317 C 15.639 30.343 17.639 32.534 20.561 32.534 C 22.356 32.534 23.484 31.752 24.381 30.624 L 24.586 30.624 C 24.625 31.15 24.753 31.804 24.868 32.24 L 27.548 32.24 C 27.311 30.709 27.191 29.162 27.188 27.612 Z M 34.303 16.357 C 35.033 15.345 36.162 14.332 37.508 14.332 C 38.725 14.332 39.418 14.858 39.418 16.396 L 39.418 32.24 L 42.622 32.24 L 42.622 16.114 C 42.622 12.986 41.199 11.486 38.52 11.486 C 36.61 11.486 35.072 12.742 34.495 13.512 L 34.303 13.512 L 34.303 11.73 L 31.123 11.73 L 31.123 32.24 L 34.303 32.24 Z M 51.967 32.534 C 53.633 32.534 54.774 31.752 55.672 30.624 L 55.877 30.624 L 56.12 32.24 L 58.479 32.24 L 58.479 3.193 L 55.299 3.193 L 55.299 12.255 C 54.697 11.807 53.685 11.486 52.71 11.486 C 48.596 11.486 45.75 15.178 45.75 22.779 C 45.75 29.112 47.955 32.534 51.967 32.534 Z M 55.3 28.266 C 54.774 29.073 53.928 29.843 52.339 29.843 C 50.019 29.843 49.134 26.92 49.134 22.126 C 49.134 17.946 50.352 14.088 52.903 14.088 C 53.967 14.088 54.659 14.409 55.3 15.063 Z M 73.387 30.868 L 72.657 28.433 C 71.849 28.997 70.541 29.804 68.759 29.804 C 66.234 29.804 64.939 27.369 64.939 22.741 L 73.464 22.741 L 73.464 20.985 C 73.464 14.037 71.234 11.486 67.824 11.486 C 63.478 11.486 61.645 16.28 61.645 22.856 C 61.645 29.163 64.247 32.534 68.465 32.534 C 70.503 32.534 72.092 31.881 73.387 30.868 Z M 67.824 14.088 C 69.644 14.088 70.221 16.639 70.221 20.138 L 64.978 20.138 C 65.183 16.486 65.875 14.088 67.824 14.088 Z M 84.154 11.768 L 81.347 19.203 L 78.707 11.768 L 75.425 11.768 L 79.283 21.638 L 75.015 32.24 L 78.143 32.24 L 81.232 23.792 L 84.398 32.24 L 87.692 32.24 L 83.424 21.357 L 87.244 11.768 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:11330975731,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dkyu2k\",\"data-framer-name\":\"miro_logo_vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85 33\"><g transform=\"translate(0.58 0.5)\"><path d=\"M 0.276 0 L 83.889 0 L 83.889 32 L 0.276 32 Z\" fill=\"transparent\"></path><path d=\"M 73.353 9.26 C 79.511 9.26 83.58 13.644 83.58 20.269 C 83.58 26.894 79.497 31.32 73.353 31.32 C 66.958 31.32 62.695 26.894 62.695 20.269 C 62.695 13.644 66.972 9.261 73.353 9.261 Z M 40.515 9.704 L 40.515 30.864 L 35.917 29.892 L 35.917 10.632 Z M 58.933 9.204 L 58.933 14.172 L 56.286 14.672 C 54.016 15.115 52.538 16.328 52.538 19.027 L 52.538 30.863 L 47.941 29.893 L 47.941 18.313 C 47.941 12.559 51.229 10.86 56.286 9.661 Z M 10.045 9.261 C 11.856 9.261 14.057 10.289 15.311 12.145 C 16.565 10.46 18.655 9.347 21.232 9.318 C 24.465 9.275 28.492 11.36 28.492 17.613 L 28.492 30.863 L 23.894 29.893 L 23.894 17.613 C 23.894 15.515 22.417 14.015 20.229 14.015 C 18.042 14.015 16.565 15.515 16.565 17.613 L 16.565 30.863 L 11.967 29.893 L 11.967 17.613 C 11.967 15.515 10.491 14.015 8.303 14.015 C 6.088 14.015 4.597 15.515 4.597 17.613 L 4.597 30.863 L 0 29.893 L 0 10.631 L 4.597 9.703 L 4.597 11.887 C 5.913 10.22 7.922 9.252 10.045 9.26 Z M 73.353 13.73 C 69.787 13.73 67.39 16.328 67.39 20.269 C 67.39 24.209 69.787 26.851 73.353 26.851 C 76.683 26.851 78.884 24.21 78.884 20.269 C 78.884 16.329 76.684 13.729 73.354 13.729 Z M 38.313 0.409 C 39.985 0.409 41.1 1.608 41.1 3.407 C 41.1 5.206 39.985 6.405 38.314 6.405 C 36.572 6.405 35.416 5.206 35.416 3.407 C 35.416 1.608 36.572 0.409 38.314 0.409 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:10416281460,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13gtxv6\",\"data-framer-name\":\"Dyson_logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85 33\"><g transform=\"translate(0.309 0.5)\"><path d=\"M 0 0 L 84.032 0 L 84.032 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 11.883 15.873 C 11.887 16.887 11.486 17.862 10.769 18.579 C 10.052 19.296 9.077 19.697 8.063 19.693 C 7.049 19.697 6.074 19.296 5.357 18.579 C 4.64 17.862 4.239 16.887 4.243 15.873 C 4.239 14.859 4.64 13.884 5.357 13.167 C 6.074 12.45 7.049 12.049 8.063 12.053 L 11.883 12.053 Z M 16.127 0.17 L 11.883 0.17 L 11.883 7.894 L 8.063 7.894 C 5.946 7.892 3.916 8.732 2.419 10.229 C 0.922 11.726 0.083 13.756 0.085 15.873 C 0.083 17.99 0.923 20.02 2.42 21.517 C 3.917 23.014 5.947 23.853 8.064 23.851 C 10.181 23.853 12.211 23.013 13.708 21.517 C 15.204 20.02 16.044 17.99 16.042 15.873 L 16.042 7.893 Z M 58.313 19.692 C 59.327 19.696 60.302 19.295 61.019 18.578 C 61.736 17.861 62.137 16.886 62.133 15.872 C 62.137 14.858 61.736 13.884 61.019 13.167 C 60.301 12.45 59.327 12.049 58.313 12.053 C 57.299 12.049 56.324 12.45 55.607 13.167 C 54.89 13.884 54.489 14.859 54.493 15.873 C 54.578 17.995 56.276 19.693 58.313 19.693 Z M 50.419 15.872 C 50.417 13.755 51.257 11.725 52.754 10.228 C 54.251 8.731 56.281 7.892 58.398 7.894 C 60.515 7.892 62.546 8.731 64.043 10.228 C 65.54 11.725 66.379 13.756 66.377 15.873 C 66.379 17.99 65.539 20.021 64.042 21.518 C 62.545 23.015 60.514 23.855 58.397 23.852 C 56.28 23.854 54.249 23.014 52.753 21.517 C 51.256 20.02 50.416 17.989 50.419 15.872 Z M 79.703 15.873 C 79.703 13.836 78.005 12.138 75.968 12.138 C 73.931 12.138 72.233 13.836 72.233 15.873 L 72.233 23.512 L 68.074 23.512 L 68.074 15.872 C 68.072 13.755 68.912 11.725 70.409 10.228 C 71.906 8.731 73.936 7.892 76.053 7.894 C 78.17 7.892 80.201 8.731 81.698 10.228 C 83.195 11.725 84.034 13.756 84.032 15.873 L 84.032 23.512 L 79.872 23.512 C 79.702 23.512 79.702 16.892 79.702 15.872 Z M 40.658 13.156 C 40.064 12.732 40.233 12.053 41.252 11.798 C 42.525 11.458 44.732 11.713 46.599 12.562 L 48.552 9.846 C 47.702 9.167 45.835 8.233 43.119 8.064 C 43.119 8.064 38.536 7.469 36.669 10.95 C 36.669 10.95 35.055 14.175 38.281 16.212 C 40.233 17.401 43.628 17.91 44.731 18.419 C 45.581 18.929 45.326 19.862 44.053 20.117 C 41.846 20.626 38.96 19.353 38.026 18.674 L 35.989 21.474 C 37.347 22.494 39.045 23.427 41.761 23.851 C 41.761 23.851 46.09 24.615 48.467 21.645 C 48.891 21.135 50.843 17.485 46.939 15.363 C 44.902 14.26 41.676 13.751 40.658 13.156 Z M 21.135 26.568 C 21.305 26.652 23.257 28.011 25.125 28.011 C 29.708 28.096 29.963 23.342 29.963 22.239 C 29.113 23.172 27.331 23.767 26.228 23.767 C 21.814 23.767 18.334 20.371 18.334 15.957 L 18.334 8.233 L 22.494 8.233 L 22.494 15.957 C 22.494 17.995 24.191 19.692 26.228 19.692 C 28.265 19.692 29.963 17.995 29.963 15.957 L 29.963 8.233 L 34.122 8.233 L 34.122 15.957 C 34.122 22.833 34.462 29.878 27.756 31.491 C 22.748 32.679 19.183 29.538 18.928 29.369 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:8633278700,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14lhamr\",\"data-framer-name\":\"$3M_wordmark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 33\"><g transform=\"translate(0.47 0.5)\"><path d=\"M 0 0 L 60.879 0 L 60.879 32 L 0 32 Z\" fill=\"transparent\"></path><g transform=\"translate(0.202 0.203)\"><path d=\"M 47.71 0.7 L 43.368 18.365 L 39.013 0.7 L 26.434 0.7 L 26.434 7.223 C 24.906 1.515 19.298 0.083 14.288 0.002 C 8.179 -0.078 1.41 2.569 1.176 10.647 L 9.625 10.647 C 9.625 8.208 11.857 6.812 13.965 6.847 C 16.555 6.826 17.745 7.931 17.805 9.651 C 17.716 11.144 16.835 12.183 13.987 12.183 L 11.145 12.183 L 11.145 18.045 L 13.725 18.045 C 15.191 18.045 17.23 18.843 17.31 20.93 C 17.408 23.417 15.679 24.51 13.55 24.531 C 9.75 24.39 8.77 21.471 8.77 18.961 L 0 18.961 C 0.037 20.651 -0.018 31.674 13.726 31.593 C 20.311 31.653 25.104 28.885 26.456 25.068 L 26.456 30.918 L 34.914 30.918 L 34.914 11.857 L 39.591 30.917 L 47.149 30.917 L 51.843 11.879 L 51.843 30.934 L 60.473 30.934 L 60.473 0.7 Z M 26.462 18.324 C 25.384 16.096 23.868 15.121 23.015 14.813 C 24.805 14.017 25.744 12.936 26.462 10.783 L 26.462 18.323 Z\" fill=\"rgb(0,0,0)\"></path></g></g></svg>',svgContentId:9948224038,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:20,pixelWidth:69,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bjQoxMCKvy27ND6CuVrQM4U8zrQ.svg\"},className:\"framer-10w2ww2\",\"data-framer-name\":\"Mollie_logo\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+3943.8+0+0+0+0+328},VK4fN25lk:{y:(componentViewport?.y||0)+0+5270.6+0+0+0+0+328}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,y:(componentViewport?.y||0)+0+3729.2+0+0+0+0+328,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jctwlp-container\",nodeId:\"X7sHDdjXH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"X7sHDdjXH\",layoutId:\"X7sHDdjXH\",style:{width:\"100%\"},variant:\"JmLi96lZ_\",VLJ7OkvVi:true,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+3943.8+0+0+0},VK4fN25lk:{y:(componentViewport?.y||0)+0+5270.6+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:456,y:(componentViewport?.y||0)+0+3729.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xn9irb-container\",nodeId:\"sG0xacdFK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"rddPTNUXV\"},VK4fN25lk:{variant:\"aEsKZL32q\"}},children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"sG0xacdFK\",layoutId:\"sG0xacdFK\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+4399.8},VK4fN25lk:{y:(componentViewport?.y||0)+0+5726.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:762,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4185.2,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1l0ydo9-container\",id:elementId3,nodeId:\"g3JEtdT4Q\",ref:ref3,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"SjMOMG6Dt\"},VK4fN25lk:{variant:\"GaoG5XpWh\"}},children:/*#__PURE__*/_jsx(ContactSectionStandard,{c3MIMUEEr:c3MIMUEEr3bnx0g({overlay}),dGS8rtJLM:\"jb2NG1WgO\",height:\"100%\",id:\"g3JEtdT4Q\",layoutId:\"g3JEtdT4Q\",style:{width:\"100%\"},variant:\"Qrsv8ti6V\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-2kvlgr\"),\"data-framer-portal-id\":elementId3,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"gsw50RWIj\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1rdx342\"),\"data-framer-name\":\"Embed Wrapper\",\"data-framer-portal-id\":elementId3,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14i6g3e-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"gDIaaOab2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Cal inline embed code begins -->\\n<div style=\"width:100%;height:100%;overflow:scroll\" id=\"my-cal-inline\"></div>\\n<script type=\"text/javascript\">\\n  (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement(\"script\")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; typeof namespace === \"string\" ? (cal.ns[namespace] = api) && p(api, ar) : p(cal, ar); return; } p(cal, ar); }; })(window, \"https://app.cal.com/embed/embed.js\", \"init\");\\nCal(\"init\",  {origin:\"https://cal.com\"});\\n\\n  Cal(\"inline\", {\\n\telementOrSelector:\"#my-cal-inline\",\\n\tcalLink: \"welleton/free-consultation-meeting\",\\n\tlayout: \"month_view\"\\n  });\\n\\n  Cal(\"ui\", {\"styles\":{\"branding\":{\"brandColor\":\"#000000\"}},\"hideEventTypeDetails\":false,\"layout\":\"month_view\"});\\n  </script>\\n  <!-- Cal inline embed code ends -->',id:\"gDIaaOab2\",layoutId:\"gDIaaOab2\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://cal.com/amsterdam-life-homes/intake\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-tvi7lw\"),\"data-framer-name\":\"Exit Icon\",\"data-framer-portal-id\":elementId3,onTap:onTap1wnntms({overlay}),whileHover:animation,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8n4ae5\",style:{rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1clb85m\",style:{rotate:45}})]})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{y:(componentViewport?.y||0)+0+5161.8},VK4fN25lk:{y:(componentViewport?.y||0)+0+6488.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:548,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4947.2,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1z0kulh-container\",id:\"1z0kulh\",nodeId:\"nTU17Ojmw\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9dT9bj9d:{variant:\"kve4sy9_D\"},VK4fN25lk:{variant:\"bddzb9s0c\"}},children:/*#__PURE__*/_jsx(FooterDark,{g7XSiXbum:g7XSiXbum3bnx0g({overlay:overlay1}),height:\"100%\",id:\"nTU17Ojmw\",layoutId:\"nTU17Ojmw\",style:{width:\"100%\"},variant:\"KBAGD198n\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1hnu92v\"),\"data-framer-portal-id\":\"1z0kulh\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"gqgNiU4kt\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-1ekrbwk\"),\"data-framer-name\":\"Toast\",\"data-framer-portal-id\":\"1z0kulh\",exit:animation1,initial:animation3,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"16px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ir0x2-container\",inComponentSlot:true,nodeId:\"MECogacx1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CloseOverlay,{height:\"100%\",id:\"MECogacx1\",layoutId:\"MECogacx1\",LyU4y90i8:LyU4y90i81wnntms({overlay:overlay1}),style:{height:\"100%\",width:\"100%\"},variant:\"pLgT5LZin\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pp0fey\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i9zg2o\",\"data-framer-name\":\"check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.167 11.25 L 7.5 14.583 L 15.833 6.25\" fill=\"transparent\" stroke-width=\"1.67\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"20\"></path></svg>',svgContentId:12135385469,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dnut8j\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-5aca01dc-dadc-4074-a025-8f20b6f39c17, rgb(255, 255, 255))\"},children:\"Thanks for signing up for our newsletter!\"})}),className:\"framer-zebqm5\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"Welcome! We'll say 'hi' to you soon \uD83D\uDC4B\"})}),className:\"framer-1nguyxs\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-icwBt.framer-lux5qc, .framer-icwBt .framer-lux5qc { display: block; }\",\".framer-icwBt.framer-72rtr7 { align-content: center; align-items: center; 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-icwBt .framer-no7pcn-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-icwBt .framer-2hjzsv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-icwBt .framer-1lnfecn-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-icwBt .framer-1c1vdsq { background-color: rgba(15, 15, 15, 0.6); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-icwBt .framer-6bnuk4, .framer-icwBt .framer-y7dyft, .framer-icwBt .framer-djdroc, .framer-icwBt .framer-1jwup3m, .framer-icwBt .framer-16cw55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-1dn6d61-container, .framer-icwBt .framer-1uhwdo3-container, .framer-icwBt .framer-1utd9ix-container, .framer-icwBt .framer-13nsviq-container, .framer-icwBt .framer-zy1p8a-container, .framer-icwBt .framer-qxoww-container, .framer-icwBt .framer-zcgcii-container, .framer-icwBt .framer-r5tgqk-container, .framer-icwBt .framer-3gptu0-container, .framer-icwBt .framer-1xn9irb-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-icwBt .framer-aif57t, .framer-icwBt .framer-n25f1o, .framer-icwBt .framer-nmr58r, .framer-icwBt .framer-18uulto, .framer-icwBt .framer-11ukewo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-icwBt .framer-1t6q2x2-container, .framer-icwBt .framer-1rge6vd-container, .framer-icwBt .framer-1rncwic-container, .framer-icwBt .framer-1npylr9-container, .framer-icwBt .framer-ltkt4n-container, .framer-icwBt .framer-1v4n1qu-container, .framer-icwBt .framer-u7zwzm-container, .framer-icwBt .framer-1vuyass-container, .framer-icwBt .framer-1v0xptd-container, .framer-icwBt .framer-1jctwlp-container, .framer-icwBt .framer-1z0kulh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-icwBt .framer-13o4toy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-icwBt .framer-bzkq9l { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-1le3ysn { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-icwBt .framer-o2dak0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-icwBt .framer-1mfog81 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 350px; overflow: hidden; padding: 27px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-icwBt .framer-oje1bj, .framer-icwBt .framer-6aedxk, .framer-icwBt .framer-104qwd1, .framer-icwBt .framer-1gkeapd, .framer-icwBt .framer-cx9p0q, .framer-icwBt .framer-11u3shv, .framer-icwBt .framer-lzok8o, .framer-icwBt .framer-1xwu03q, .framer-icwBt .framer-15scqc5, .framer-icwBt .framer-7f6dv2, .framer-icwBt .framer-1dbnfrl, .framer-icwBt .framer-ykebs3, .framer-icwBt .framer-1hu7ww3, .framer-icwBt .framer-1b9onmh, .framer-icwBt .framer-cy0tti, .framer-icwBt .framer-1x5trif, .framer-icwBt .framer-196uxzw, .framer-icwBt .framer-f3wzy6, .framer-icwBt .framer-1ua1tni, .framer-icwBt .framer-zebqm5, .framer-icwBt .framer-1nguyxs { --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-icwBt .framer-msqb3e, .framer-icwBt .framer-10apbyl { 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-icwBt .framer-1j87e7s-container, .framer-icwBt .framer-9uc88d-container, .framer-icwBt .framer-huyud5-container, .framer-icwBt .framer-igmcrd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-icwBt .framer-1ote2iz { align-content: center; align-items: center; background-color: #f2efeb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-icwBt .framer-1d68j7b, .framer-icwBt .framer-qqep1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-126i525 { 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: 640px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-1dsmsny, .framer-icwBt .framer-dcuqr6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-m2p8nb { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-kkfbes { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-ad0srz, .framer-icwBt .framer-phk6a1, .framer-icwBt .framer-1v4cl9y, .framer-icwBt .framer-1kdrhku { align-content: flex-start; align-items: flex-start; background-color: var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, #ffffff); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 209px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 1px; }\",\".framer-icwBt .framer-btpp2g, .framer-icwBt .framer-6rz39k, .framer-icwBt .framer-12u23v6, .framer-icwBt .framer-htbv2h, .framer-icwBt .framer-goh4h3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-4aab1f, .framer-icwBt .framer-yhbwj4, .framer-icwBt .framer-1mt40fv, .framer-icwBt .framer-lvj43u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-icwBt .framer-1na3yfw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-icwBt .framer-7js69v-container, .framer-icwBt .framer-vbvoah-container, .framer-icwBt .framer-1qemnmr-container, .framer-icwBt .framer-1jodzw5-container, .framer-icwBt .framer-i9zg2o { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-icwBt .framer-1bzlrra, .framer-icwBt .framer-1g15g6u, .framer-icwBt .framer-tbc6iy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-icwBt .framer-8n9xkv { align-content: center; align-items: center; background-color: var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, #0f0f0f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-icwBt .framer-k7eukb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-h1zb1y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-icwBt .framer-v9jg00 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-icwBt .framer-1ouldbu { aspect-ratio: 1.024 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 500px); overflow: hidden; position: relative; width: 1px; z-index: 1; }\",\".framer-icwBt .framer-126vuwb-container { bottom: 48px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 8; }\",\".framer-icwBt .framer-179ovnw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-icwBt .framer-18p7hur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: 737px; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 0px 109px 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-19jiacy, .framer-icwBt .framer-1j4le49 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-jek5x1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-icwBt .framer-198pw3h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-icwBt .framer-1m12jgb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-icwBt .framer-1jkabbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-icwBt .framer-1qpv0e1, .framer-icwBt .framer-1msvlkp, .framer-icwBt .framer-10f511b, .framer-icwBt .framer-1ojnvz9, .framer-icwBt .framer-maqxt7 { flex: none; gap: 0px; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-icwBt .framer-rwumh8, .framer-icwBt .framer-l91o9y, .framer-icwBt .framer-1bacl56, .framer-icwBt .framer-1y946cq, .framer-icwBt .framer-96xnqa { flex: none; height: 20px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-icwBt .framer-10w3jzw { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-icwBt .framer-1ch5fod-container { flex: none; height: 430px; position: relative; width: 100%; }\",\".framer-icwBt .framer-1jmdye0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 400px; }\",\".framer-icwBt .framer-1ld6u5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-icwBt .framer-14tonbq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-icwBt .framer-b6ya9n { align-content: center; align-items: center; background-color: #f1efeb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-icwBt .framer-15tw2bt-container { flex: none; height: 64px; opacity: 0.5; position: relative; width: 100%; }\",\".framer-icwBt .framer-59mkb2 { aspect-ratio: 3.8484848484848486 / 1; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 64px; }\",\".framer-icwBt .framer-176jv3w { height: 33px; position: relative; width: 259px; }\",\".framer-icwBt .framer-4z50eb { height: 33px; position: relative; width: 190px; }\",\".framer-icwBt .framer-1018h19 { height: 33px; position: relative; width: 167px; }\",\".framer-icwBt .framer-99fz8j { height: 33px; position: relative; width: 151px; }\",\".framer-icwBt .framer-8q5k98 { height: 33px; position: relative; width: 149px; }\",\".framer-icwBt .framer-yaupp1 { height: 33px; position: relative; width: 126px; }\",\".framer-icwBt .framer-8vmksk { height: 33px; position: relative; width: 112px; }\",\".framer-icwBt .framer-1y0g6lw { height: 33px; position: relative; width: 110px; }\",\".framer-icwBt .framer-5bxvdm { height: 33px; position: relative; width: 107px; }\",\".framer-icwBt .framer-1s8kh0o { height: 33px; position: relative; width: 93px; }\",\".framer-icwBt .framer-1d383mv { height: 33px; position: relative; width: 95px; }\",\".framer-icwBt .framer-1n2s9r6 { height: 33px; position: relative; width: 100px; }\",\".framer-icwBt .framer-dvdj65 { height: 33px; position: relative; width: 104px; }\",\".framer-icwBt .framer-1ybjiyb { height: 33px; position: relative; width: 90px; }\",\".framer-icwBt .framer-dkyu2k, .framer-icwBt .framer-13gtxv6 { height: 33px; position: relative; width: 85px; }\",\".framer-icwBt .framer-14lhamr { height: 33px; position: relative; width: 62px; }\",\".framer-icwBt .framer-10w2ww2 { height: 38px; position: relative; width: 118px; }\",\".framer-icwBt .framer-1l0ydo9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-icwBt.framer-2kvlgr { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-icwBt.framer-1rdx342 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 64px; overflow: hidden; padding: 0px; position: fixed; right: 64px; top: 64px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-icwBt .framer-14i6g3e-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-icwBt.framer-tvi7lw { cursor: pointer; flex: none; height: 24px; overflow: hidden; position: fixed; right: 24px; top: 24px; width: 24px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-icwBt .framer-8n4ae5, .framer-icwBt .framer-1clb85m { background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 2px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-icwBt.framer-1hnu92v { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-icwBt.framer-1ekrbwk { align-content: center; align-items: center; background-color: var(--token-762b6622-309d-4974-b924-a2c77b25a1e3, #b6ad9e); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; max-width: 400px; overflow: hidden; padding: 0px; position: fixed; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 5; }\",\".framer-icwBt .framer-19ir0x2-container { flex: none; height: 16px; position: absolute; right: 8px; top: 8px; width: 16px; }\",\".framer-icwBt .framer-pp0fey { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; pointer-events: none; position: relative; width: 1px; }\",\".framer-icwBt .framer-1dnut8j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-icwBt.framer-72rtr7 { width: 810px; } .framer-icwBt .framer-1le3ysn { justify-content: center; } .framer-icwBt .framer-1mfog81 { flex: 0.75 0 0px; padding: 100px 0px 0px 0px; } .framer-icwBt .framer-ad0srz { height: 250px; order: 0; } .framer-icwBt .framer-phk6a1 { height: 250px; order: 1; } .framer-icwBt .framer-1v4cl9y { height: 250px; order: 2; } .framer-icwBt .framer-1kdrhku { height: 250px; order: 3; } .framer-icwBt .framer-1ouldbu { aspect-ratio: unset; height: 500px; } .framer-icwBt .framer-18p7hur { gap: 16px; height: min-content; }}\",\"@media (max-width: 809px) { .framer-icwBt.framer-72rtr7 { width: 390px; } .framer-icwBt .framer-bzkq9l { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; } .framer-icwBt .framer-1le3ysn { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-icwBt .framer-1mfog81 { flex: none; padding: 0px; width: 100%; } .framer-icwBt .framer-1d68j7b { gap: 24px; } .framer-icwBt .framer-126i525, .framer-icwBt .framer-ltkt4n-container, .framer-icwBt .framer-goh4h3 { order: 0; } .framer-icwBt .framer-m2p8nb { flex-direction: column; } .framer-icwBt .framer-huyud5-container { width: 100%; } .framer-icwBt .framer-kkfbes, .framer-icwBt .framer-k7eukb { flex-direction: column; order: 1; } .framer-icwBt .framer-ad0srz, .framer-icwBt .framer-phk6a1, .framer-icwBt .framer-1v4cl9y, .framer-icwBt .framer-1kdrhku { flex: none; gap: 12px; height: min-content; justify-content: center; width: 100%; } .framer-icwBt .framer-h1zb1y { flex: none; order: 0; width: 100%; } .framer-icwBt .framer-cy0tti { order: 1; } .framer-icwBt .framer-10apbyl { flex-direction: column; order: 2; } .framer-icwBt .framer-igmcrd-container { order: 0; width: 100%; } .framer-icwBt .framer-v9jg00 { flex: none; height: 360px; order: 1; width: 100%; } .framer-icwBt .framer-1ouldbu { height: var(--framer-aspect-ratio-supported, 349px); order: 0; } .framer-icwBt .framer-1v4n1qu-container { order: 2; } .framer-icwBt .framer-18p7hur { gap: 20px; height: min-content; padding: 0px 0px 87px 0px; } .framer-icwBt .framer-1ch5fod-container { height: 550px; } .framer-icwBt.framer-1ekrbwk { max-width: 320px; width: 320px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4554\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i9dT9bj9d\":{\"layout\":[\"fixed\",\"auto\"]},\"VK4fN25lk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fmPPSAqRX\":{\"pattern\":\":fmPPSAqRX\",\"name\":\"who-it-is-for\"},\"ScG0w7Byc\":{\"pattern\":\":ScG0w7Byc\",\"name\":\"about-us\"},\"mMuNVCd1D\":{\"pattern\":\":mMuNVCd1D\",\"name\":\"review\"},\"g3JEtdT4Q\":{\"pattern\":\":g3JEtdT4Q\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-icwBt\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4554,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\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavigationFonts,...VideoFonts,...HorizontalPaddingFonts,...VerticalPaddingFonts,...ButtonFonts,...PhosphorFonts,...PopUpButtonFonts,...ReviewCardFonts,...CMSSlideshowFonts,...TickerFonts,...ContactSectionStandardFonts,...EmbedFonts,...FooterDarkFonts,...CloseOverlayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i9dT9bj9d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VK4fN25lk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"fmPPSAqRX\\\":{\\\"pattern\\\":\\\":fmPPSAqRX\\\",\\\"name\\\":\\\"who-it-is-for\\\"},\\\"ScG0w7Byc\\\":{\\\"pattern\\\":\\\":ScG0w7Byc\\\",\\\"name\\\":\\\"about-us\\\"},\\\"mMuNVCd1D\\\":{\\\"pattern\\\":\\\":mMuNVCd1D\\\",\\\"name\\\":\\\"review\\\"},\\\"g3JEtdT4Q\\\":{\\\"pattern\\\":\\\":g3JEtdT4Q\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerIntrinsicHeight\":\"4554\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavigationFonts", "getFonts", "TakIFHXDu_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "HorizontalPaddingFonts", "nHcbOk1Gl_default", "VerticalPaddingFonts", "QRFMHuze1_default", "ButtonFonts", "yzcqyPrfY_default", "ButtonWithTags1j87e7sWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withTags", "yzcqyPrfY_exports", "ButtonWithTagshuyud5WithMappedReactProps1v1ipky", "PhosphorFonts", "Icon", "ButtonWithTagsigmcrdWithMappedReactProps1v1ipky", "PopUpButtonFonts", "REoHyeK4C_default", "PopUpButtonWithTags1126vuwbWithMappedReactProps1k0t3gWithVariantAppearEffect", "REoHyeK4C_exports", "ReviewCardFonts", "WGzFsIQE2_default", "CMSSlideshowFonts", "CMSSlideshow", "TickerFonts", "Ticker", "ContactSectionStandardFonts", "bJfVQtZQJ_default", "EmbedFonts", "Embed", "FooterDarkFonts", "i11OWVddw_default", "CloseOverlayFonts", "YrhWkdrNU_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "sharedDateFormatter", "value", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "toResponsiveImage", "equals", "a", "b", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition1", "animation", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation1", "transition3", "animation2", "animation3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "xv2KO15q2dLG7jAoBo", "Dzd1BNn8adLG7jAoBo", "bfw46dByMdLG7jAoBo", "TQS8j8QuwdLG7jAoBo", "LT9bhyZXddLG7jAoBo", "oTl8ovv8GdLG7jAoBo", "J5Epxpy4qdLG7jAoBo", "iddLG7jAoBo", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "c3MIMUEEr3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "g7XSiXbum3bnx0g", "LyU4y90i81wnntms", "scopingClassNames", "cx", "router", "useRouter", "ref1", "elementId", "useRouteElementId", "elementId1", "ref2", "ref3", "elementId2", "ref4", "activeLocaleCode", "useLocaleCode", "elementId3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NavigationWithVariantAppearEffect", "Video", "nHcbOk1Gl_default", "QRFMHuze1_default", "RichText", "x", "resolvedLinks1", "ButtonWithTags1j87e7sWithMappedReactProps1v1ipky", "resolvedLinks2", "yzcqyPrfY_default", "resolvedLinks3", "ButtonWithTagshuyud5WithMappedReactProps1v1ipky", "Link", "Icon", "resolvedLinks4", "ButtonWithTagsigmcrdWithMappedReactProps1v1ipky", "getLoadingLazyAtYPosition", "Image2", "PopUpButtonWithTags1126vuwbWithMappedReactProps1k0t3gWithVariantAppearEffect", "SVG", "CMSSlideshow", "ChildrenCanSuspend", "fv6kTS2pi_default", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "WGzFsIQE2_default", "Ticker", "bJfVQtZQJ_default", "AnimatePresence", "Ga", "Embed", "overlay1", "i11OWVddw_default", "YrhWkdrNU_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "VideoFonts", "HorizontalPaddingFonts", "VerticalPaddingFonts", "ButtonFonts", "PhosphorFonts", "PopUpButtonFonts", "ReviewCardFonts", "CMSSlideshowFonts", "TickerFonts", "ContactSectionStandardFonts", "EmbedFonts", "FooterDarkFonts", "CloseOverlayFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
