{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/ae829kzrPIfUYuVUySzG/KxyFY9uMEqm99z6g2FCB/GlrC2CV1_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import Navigation from\"#framer/local/canvasComponent/FFcDbUfnH/FFcDbUfnH.js\";import Accordion13 from\"#framer/local/canvasComponent/MGwBxtpg9/MGwBxtpg9.js\";import FooterCopy2 from\"#framer/local/canvasComponent/og3StOGE5/og3StOGE5.js\";import ButtonPrimary from\"#framer/local/canvasComponent/PmKNR9jE2/PmKNR9jE2.js\";import AppList,{enumToDisplayNameFunctions}from\"#framer/local/collection/E4ADUhwfh/E4ADUhwfh.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/aAdohScXF/aAdohScXF.js\";import*as sharedStyle11 from\"#framer/local/css/ayBLiaDu5/ayBLiaDu5.js\";import*as sharedStyle1 from\"#framer/local/css/Js84zgMyX/Js84zgMyX.js\";import*as sharedStyle6 from\"#framer/local/css/jThaJcVu7/jThaJcVu7.js\";import*as sharedStyle12 from\"#framer/local/css/jWiamZa39/jWiamZa39.js\";import*as sharedStyle15 from\"#framer/local/css/kuic7YMgr/kuic7YMgr.js\";import*as sharedStyle5 from\"#framer/local/css/kWU0DR9dP/kWU0DR9dP.js\";import*as sharedStyle10 from\"#framer/local/css/mDi0fUp0p/mDi0fUp0p.js\";import*as sharedStyle9 from\"#framer/local/css/nCLD81091/nCLD81091.js\";import*as sharedStyle13 from\"#framer/local/css/NeWhWJH48/NeWhWJH48.js\";import*as sharedStyle7 from\"#framer/local/css/Pbyj_tJpS/Pbyj_tJpS.js\";import*as sharedStyle4 from\"#framer/local/css/s2XY7adk9/s2XY7adk9.js\";import*as sharedStyle14 from\"#framer/local/css/t0gF9nsHK/t0gF9nsHK.js\";import*as sharedStyle2 from\"#framer/local/css/UP03nfLnn/UP03nfLnn.js\";import*as sharedStyle from\"#framer/local/css/v3avfkspf/v3avfkspf.js\";import*as sharedStyle3 from\"#framer/local/css/YJqbaz33G/YJqbaz33G.js\";import metadataProvider from\"#framer/local/webPageMetadata/GlrC2CV1_/GlrC2CV1_.js\";const NavigationFonts=getFonts(Navigation);const PhosphorFonts=getFonts(Phosphor);const YouTubeFonts=getFonts(YouTube);const CarouselFonts=getFonts(Carousel);const Accordion13Fonts=getFonts(Accordion13);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const FooterCopy2Fonts=getFonts(FooterCopy2);const breakpoints={P9qGufHxf:\"(max-width: 809px)\",RUN_RucLx:\"(min-width: 810px) and (max-width: 1399px)\",WxwRHuryt:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hiR81\";const variantClassNames={P9qGufHxf:\"framer-v-1fkb0rg\",RUN_RucLx:\"framer-v-goyh6w\",WxwRHuryt:\"framer-v-vt4hf7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-2};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={boxShadow:\"0px 5px 10px 0px rgba(0, 0, 0, 0.1)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WxwRHuryt\",Phone:\"P9qGufHxf\",Tablet:\"RUN_RucLx\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WxwRHuryt\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"GlrC2CV1_\",data:AppList,type:\"Collection\"},select:[{collection:\"GlrC2CV1_\",name:\"TWlhjI2s2\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"SCpIdvj5R\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"QRwFAki0t\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"kAdrsdxc9\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"qusIMo6dV\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"SJzwrtiKJ\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"GzTXvgNRp\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"FT6nor7pC\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"gUeWuiNw7\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"g_SKWiB1l\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"ECddddiCb\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"Zerhpj4sm\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"d5RAEyRJ2\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"ZWogCxR6F\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"G0x1tzpR2\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"JesIXJDs3\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"UeU8DlKMI\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"yx6Q4hyHr\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"uPS1BXctv\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"GCBdxU6qA\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"TmQr7YFaw\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"OsgBasd_X\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"j77dpjBsh\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"e5HKGunz6\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"WANBkvCy_\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"AbKWA_ESA\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"qRFoKP8Te\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"lmNEhEW90\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"d8fGx1tZ5\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"Fsz1f5Bzf\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"R416phfuN\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"SRpVBsqKQ\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"YskAANOPP\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"oDtIod090\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"y90odWJTx\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"o5cpQbpEN\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"xaYhnyslo\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"drVV15C5G\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"LocoTuoVt\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"nderBJZ19\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"eIuK4tABW\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"u_tX1njKK\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"J_V2xfVoC\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"rMMG5jGpM\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"OtgmrZRBV\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"DSLXvao9I\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"U_vDrLFpm\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"u6Af8xJxT\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"NfbBsbX1D\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"rrfUbYT4N\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"VvlfNouIs\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"g6GaQ0Bws\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"zVS5eD6UJ\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"FpfLiytAD\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"tTwBXH2Of\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"gJav2rRzl\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"Ox5bnXViE\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"dodPU3a_X\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"uYPNwdOYr\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"YBOg9Wuin\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"wCO7C5SPn\",type:\"Identifier\"},{collection:\"GlrC2CV1_\",name:\"hoC3ZJnre\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"GlrC2CV1_\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,yx6Q4hyHr=getFromCurrentRouteData(\"yx6Q4hyHr\")??\"\",uPS1BXctv=getFromCurrentRouteData(\"uPS1BXctv\"),SCpIdvj5R=getFromCurrentRouteData(\"SCpIdvj5R\")??\"\",QRwFAki0t=getFromCurrentRouteData(\"QRwFAki0t\")??\"\",kAdrsdxc9=getFromCurrentRouteData(\"kAdrsdxc9\")??\"\",JesIXJDs3=getFromCurrentRouteData(\"JesIXJDs3\")??\"\",qusIMo6dV=getFromCurrentRouteData(\"qusIMo6dV\")??\"\",SJzwrtiKJ=getFromCurrentRouteData(\"SJzwrtiKJ\"),d5RAEyRJ2=getFromCurrentRouteData(\"d5RAEyRJ2\")??\"\",FT6nor7pC=getFromCurrentRouteData(\"FT6nor7pC\"),g_SKWiB1l=getFromCurrentRouteData(\"g_SKWiB1l\"),GzTXvgNRp=getFromCurrentRouteData(\"GzTXvgNRp\")??\"\",Zerhpj4sm=getFromCurrentRouteData(\"Zerhpj4sm\"),gUeWuiNw7=getFromCurrentRouteData(\"gUeWuiNw7\")??\"\",ZWogCxR6F=getFromCurrentRouteData(\"ZWogCxR6F\"),ECddddiCb=getFromCurrentRouteData(\"ECddddiCb\")??\"\",G0x1tzpR2=getFromCurrentRouteData(\"G0x1tzpR2\"),j77dpjBsh=getFromCurrentRouteData(\"j77dpjBsh\")??\"\",e5HKGunz6=getFromCurrentRouteData(\"e5HKGunz6\")??\"\",qRFoKP8Te=getFromCurrentRouteData(\"qRFoKP8Te\"),WANBkvCy_=getFromCurrentRouteData(\"WANBkvCy_\")??\"\",AbKWA_ESA=getFromCurrentRouteData(\"AbKWA_ESA\")??\"\",Fsz1f5Bzf=getFromCurrentRouteData(\"Fsz1f5Bzf\"),lmNEhEW90=getFromCurrentRouteData(\"lmNEhEW90\")??\"\",d8fGx1tZ5=getFromCurrentRouteData(\"d8fGx1tZ5\")??\"\",R416phfuN=getFromCurrentRouteData(\"R416phfuN\")??\"\",YskAANOPP=getFromCurrentRouteData(\"YskAANOPP\"),SRpVBsqKQ=getFromCurrentRouteData(\"SRpVBsqKQ\")??\"\",o5cpQbpEN=getFromCurrentRouteData(\"o5cpQbpEN\"),oDtIod090=getFromCurrentRouteData(\"oDtIod090\")??\"\",y90odWJTx=getFromCurrentRouteData(\"y90odWJTx\")??\"\",xaYhnyslo=getFromCurrentRouteData(\"xaYhnyslo\")??\"\",LocoTuoVt=getFromCurrentRouteData(\"LocoTuoVt\"),drVV15C5G=getFromCurrentRouteData(\"drVV15C5G\")??\"\",J_V2xfVoC=getFromCurrentRouteData(\"J_V2xfVoC\")??\"\",rMMG5jGpM=getFromCurrentRouteData(\"rMMG5jGpM\")??\"\",OtgmrZRBV=getFromCurrentRouteData(\"OtgmrZRBV\")??\"\",DSLXvao9I=getFromCurrentRouteData(\"DSLXvao9I\")??\"\",U_vDrLFpm=getFromCurrentRouteData(\"U_vDrLFpm\")??\"\",nderBJZ19=getFromCurrentRouteData(\"nderBJZ19\")??\"\",eIuK4tABW=getFromCurrentRouteData(\"eIuK4tABW\")??\"\",u_tX1njKK=getFromCurrentRouteData(\"u_tX1njKK\")??\"\",TWlhjI2s2=getFromCurrentRouteData(\"TWlhjI2s2\"),GCBdxU6qA=getFromCurrentRouteData(\"GCBdxU6qA\")??\"\",TmQr7YFaw=getFromCurrentRouteData(\"TmQr7YFaw\")??\"\",OsgBasd_X=getFromCurrentRouteData(\"OsgBasd_X\")??\"\",u6Af8xJxT=getFromCurrentRouteData(\"u6Af8xJxT\")??\"\",NfbBsbX1D=getFromCurrentRouteData(\"NfbBsbX1D\")??\"\",rrfUbYT4N=getFromCurrentRouteData(\"rrfUbYT4N\")??\"\",VvlfNouIs=getFromCurrentRouteData(\"VvlfNouIs\")??\"\",g6GaQ0Bws=getFromCurrentRouteData(\"g6GaQ0Bws\")??\"\",zVS5eD6UJ=getFromCurrentRouteData(\"zVS5eD6UJ\")??\"\",FpfLiytAD=getFromCurrentRouteData(\"FpfLiytAD\")??\"\",tTwBXH2Of=getFromCurrentRouteData(\"tTwBXH2Of\")??\"\",gJav2rRzl=getFromCurrentRouteData(\"gJav2rRzl\")??\"\",Ox5bnXViE=getFromCurrentRouteData(\"Ox5bnXViE\")??\"\",dodPU3a_X=getFromCurrentRouteData(\"dodPU3a_X\")??\"\",uYPNwdOYr=getFromCurrentRouteData(\"uYPNwdOYr\")??\"\",YBOg9Wuin=getFromCurrentRouteData(\"YBOg9Wuin\")??\"\",UeU8DlKMI=getFromCurrentRouteData(\"UeU8DlKMI\")??\"\",wCO7C5SPn=getFromCurrentRouteData(\"wCO7C5SPn\")??\"\",hoC3ZJnre=getFromCurrentRouteData(\"hoC3ZJnre\")??\"\",JesIXJDs3TMFRBRgtO,TWlhjI2s2TMFRBRgtO,SCpIdvj5RTMFRBRgtO,idTMFRBRgtO,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"P9qGufHxf\")return false;return true;};const textContent=enumToDisplayNameFunctions[\"uPS1BXctv\"]?.(uPS1BXctv,activeLocale);const visible=isSet(qusIMo6dV);const elementId=useRouteElementId(\"H49Ece1tV\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"bz1c0ryKJ\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"wTzQTxlDX\");const ref3=React.useRef(null);const visible1=isSet(R416phfuN);const visible2=isSet(xaYhnyslo);const visible3=isSet(drVV15C5G);const elementId3=useRouteElementId(\"en3Io3Yrs\");const ref4=React.useRef(null);const visible4=isSet(rMMG5jGpM);const router=useRouter();const elementId4=useRouteElementId(\"D2ulJ63LE\");const ref5=React.useRef(null);const visible5=isSet(gJav2rRzl);const visible6=isSet(YBOg9Wuin);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WxwRHuryt\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-vt4hf7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{height:80,width:\"390px\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-zdpfje-container\",nodeId:\"BSVkfp8o9\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{style:{width:\"100%\"},variant:\"CjqzEYpaZ\"},RUN_RucLx:{variant:\"YU1cRuqNt\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"BSVkfp8o9\",layoutId:\"BSVkfp8o9\",style:{height:\"100%\",width:\"100%\"},variant:\"w8VAEUZzk\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybgv9s hidden-1fkb0rg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t75ro9\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-goxfmy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dhsdfr\",\"data-framer-name\":\"Conent\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fm2xwt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v50ulc\",children:[/*#__PURE__*/_jsx(Link,{href:yx6Q4hyHr,motionChild:true,nodeId:\"AfzHctYR8\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1esgyxa framer-13x1sls\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b31ys1-container\",isModuleExternal:true,nodeId:\"EZlZborWy\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(77, 82, 95, 0.9)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowLeft\",id:\"EZlZborWy\",layoutId:\"EZlZborWy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(77, 82, 95, 0.9)\"},children:\"Hubspot\"})}),className:\"framer-1hboulw\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e37d2da0-895f-4bfd-88e1-a7cc5aea355c, rgb(99, 110, 120))\"},children:\"/\"})}),className:\"framer-50og0x\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dd46169f-b28e-49ba-9fe7-75a513e382e0, rgb(16, 21, 23))\"},children:\"Xero\"})}),className:\"framer-8etosz\",\"data-framer-name\":\"Category\",fonts:[\"Inter-Medium\"],text:SCpIdvj5R,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qhsovp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k0tt1p\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(15, 17, 20)\"},children:\" Business Central Integration\"})})},RUN_RucLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(15, 17, 20)\"},children:\" Business Central Integration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(15, 17, 20)\"},children:\" Business Central Integration\"})}),className:\"framer-1w4mrtt\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Degular Medium\"],text:QRwFAki0t,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jrrpri\",\"data-styles-preset\":\"v3avfkspf\",children:\"Integrate Shopify with Business Central to automate orders, sync products, and track updates in real time with efficient integration.\"})}),className:\"framer-z4ub7l\",\"data-framer-name\":\"Short Description\",fonts:[\"Inter\"],text:kAdrsdxc9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5g02c\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j49t46\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wew38\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1srrycr\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JesIXJDs3},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"QszQWN8Qn\",openInNewTab:false,scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-by6ems framer-13x1sls\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(77, 78, 86)\"},children:\"Overview\"})}),className:\"framer-yblvdv\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":bz1c0ryKJ\",pathVariables:{JesIXJDs3},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"Za4pUwIuS\",openInNewTab:false,scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12omdyv framer-13x1sls\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(77, 78, 86)\"},children:\"Key Benefits\"})}),className:\"framer-uxb4bl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":wTzQTxlDX\",pathVariables:{JesIXJDs3},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"NOCrkyKKj\",openInNewTab:false,scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9jdqr8 framer-13x1sls\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(77, 78, 86)\"},children:\"Features\"})}),className:\"framer-1hlqg04\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":xVSlvZDyj\",pathVariables:{JesIXJDs3},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"XubA4RqkV\",openInNewTab:false,scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-war17w framer-13x1sls\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(77, 78, 86)\"},children:\"FAQ\"})}),className:\"framer-1f36i9q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":D2ulJ63LE\",pathVariables:{JesIXJDs3},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"zUM503DAX\",openInNewTab:false,scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xkt7jx framer-13x1sls\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(77, 78, 86)\"},children:\"Pricing\"})}),className:\"framer-rk1yil\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1deayhu\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vyiydj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ks7p97-container\",isModuleExternal:true,nodeId:\"eFvDU4DS6\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{sizingObject:{heightInset:0,heightRows:2,heightType:\"rows\",widthColumns:2,widthInset:0,widthType:\"stretch\"}},RUN_RucLx:{sizingObject:{heightInset:0,heightRows:1,heightType:\"stretch\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"4/9 - Project & Operations Managers\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:5,arrowSize:30,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"eFvDU4DS6\",layoutId:\"eFvDU4DS6\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18mbbsf\",\"data-framer-name\":\"Video\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-au0mbz-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"oHHfpj3Zh\",rendersWithMotion:true,scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"oHHfpj3Zh\",isMixedBorderRadius:false,isRed:true,layoutId:\"oHHfpj3Zh\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:15,topRightRadius:15,url:qusIMo6dV,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"1/5\"})}),className:\"framer-y061rz\",fonts:[\"FS;Be Vietnam Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cuispw\",\"data-framer-name\":\"Banner 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"912px\",...toResponsiveImage(SJzwrtiKJ)},className:\"framer-zznyqr\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"Overview\"})}),className:\"framer-1uiu7ry\",fonts:[\"FS;Be Vietnam Pro-regular\"],text:d5RAEyRJ2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iab28l\",\"data-framer-name\":\"Banner 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"912px\",...toResponsiveImage(FT6nor7pC)},className:\"framer-tx28ut\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"Overview\"})}),className:\"framer-17bqcrf\",fonts:[\"FS;Be Vietnam Pro-regular\"],text:d5RAEyRJ2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11bmk62\",\"data-framer-name\":\"Banner 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"912px\",...toResponsiveImage(g_SKWiB1l)},className:\"framer-17m1e35\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"Overview\"})}),className:\"framer-o8bi01\",fonts:[\"FS;Be Vietnam Pro-regular\"],text:GzTXvgNRp,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pvhoqo\",\"data-framer-name\":\"Banner 4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"912px\",...toResponsiveImage(Zerhpj4sm)},className:\"framer-qono9f\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"Overview\"})}),className:\"framer-1o0fsb0\",fonts:[\"FS;Be Vietnam Pro-regular\"],text:gUeWuiNw7,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1be1v0h\",\"data-framer-name\":\"Banner 5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"912px\",...toResponsiveImage(ZWogCxR6F)},className:\"framer-1yna65c\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"Overview\"})}),className:\"framer-143na3c\",fonts:[\"FS;Be Vietnam Pro-regular\"],text:ECddddiCb,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m3xztr\",\"data-framer-name\":\"Banner 6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"912px\",...toResponsiveImage(G0x1tzpR2)},className:\"framer-nyk82e\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(77, 82, 95)\"},children:\"Overview\"})}),className:\"framer-1bkvux\",fonts:[\"FS;Be Vietnam Pro-regular\"],text:d5RAEyRJ2,verticalAlignment:\"top\",withExternalLayout:true})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ytnr96\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Integration Overview\"})})},RUN_RucLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Integration Overview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Integration Overview\"})}),className:\"framer-18fmzhq\",fonts:[\"CUSTOM;Degular Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:j77dpjBsh,className:\"framer-1jad7vz\",fonts:[\"Inter\"],id:\"1jad7vz\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2f54w\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Key Business Benefits\"})})},RUN_RucLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Key Business Benefits\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Key Business Benefits\"})}),className:\"framer-w2vzb2\",fonts:[\"CUSTOM;Degular Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dai5fu\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pbcxmv\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:e5HKGunz6,className:\"framer-snd5j2\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e85ev0\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Integration Features\"})})},RUN_RucLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Integration Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"Integration Features\"})}),className:\"framer-fno91k\",fonts:[\"CUSTOM;Degular Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1auw6jj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(qRFoKP8Te)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(qRFoKP8Te)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+1448.4+0+71.8+0),pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(qRFoKP8Te)},className:\"framer-11aj000\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sleuvk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"Automatic Deal-to-Invoice/Quote Creation: Save Time & Money\"})}),className:\"framer-fcl8lw\",fonts:[\"Inter\"],id:\"fcl8lw\",text:WANBkvCy_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:AbKWA_ESA,className:\"framer-jdqaus\",fonts:[\"Inter\"],id:\"jdqaus\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e9kmqb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(Fsz1f5Bzf)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(Fsz1f5Bzf)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+1448.4+0+301.8+0),pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(Fsz1f5Bzf)},className:\"framer-1tdnrcv\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vcyfex\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"HubSpot Workflow Actions: Automate Your Business Processes\"})}),className:\"framer-1k28nvo\",fonts:[\"Inter\"],id:\"1k28nvo\",text:lmNEhEW90,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:d8fGx1tZ5,className:\"framer-dhul8i\",fonts:[\"Inter\"],id:\"dhul8i\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbeo3\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(YskAANOPP)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(YskAANOPP)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+1448.4+0+531.8+0),pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(YskAANOPP)},className:\"framer-1g5a2zy\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rsbzsr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"One-click Invoice: Flexibility Meets Automation\"})}),className:\"framer-1ae8thu\",fonts:[\"Inter\"],id:\"1ae8thu\",text:R416phfuN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SRpVBsqKQ,className:\"framer-rnamqx\",fonts:[\"Inter\"],id:\"rnamqx\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128fyat\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(o5cpQbpEN)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(o5cpQbpEN)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+1448.4+0+761.8+0),pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(o5cpQbpEN)},className:\"framer-1bsdcph\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1evt2su\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"One-click Invoice: Flexibility Meets Automation\"})}),className:\"framer-1k7t1tr\",fonts:[\"Inter\"],id:\"1k7t1tr\",text:oDtIod090,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:y90odWJTx,className:\"framer-nflwia\",fonts:[\"Inter\"],id:\"nflwia\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogvzum\",children:[visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(LocoTuoVt)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(LocoTuoVt)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+1448.4+0+991.8+0),pixelHeight:900,pixelWidth:1600,sizes:\"360px\",...toResponsiveImage(LocoTuoVt)},className:\"framer-7xdtoh\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5vj2\",children:[visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"Financial Data Integration: Real-Time Business Insights\"})}),className:\"framer-y3ymey\",fonts:[\"Inter\"],id:\"y3ymey\",text:xaYhnyslo,verticalAlignment:\"top\",withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:drVV15C5G,className:\"framer-snkri4\",fonts:[\"Inter\"],id:\"snkri4\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-cr3vsx\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kdmcr9\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"FAQ\"})})},RUN_RucLx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"FAQ\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgTWVkaXVt\",\"--framer-font-family\":'\"Degular Medium\", \"Degular Medium Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2c097ca3-f568-42ca-a5eb-a337d06a5f53, rgb(11, 141, 227))\"},children:\"FAQ\"})}),className:\"framer-2rzhse\",fonts:[\"CUSTOM;Degular Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14o2zdv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bfubl4-container\",nodeId:\"nZee_SmNy\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"nZee_SmNy\",layoutId:\"nZee_SmNy\",qQefXa5XK:\"Is there a free trial available?\",qRyjYD635:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Yes, we offer a \",/*#__PURE__*/_jsx(\"strong\",{children:\"free trial\"}),\" that includes \",/*#__PURE__*/_jsx(\"strong\",{children:\"15 syncs\"}),\" to help you evaluate the integration's features. It's designed to allow you to explore the integration's capabilities and determine how it fits your business needs.\"]})}),style:{width:\"100%\"},variant:\"LWWJ_1ySQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+85,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jty2o2-container\",nodeId:\"XruBL7KAD\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"XruBL7KAD\",layoutId:\"XruBL7KAD\",qQefXa5XK:\"Can I set up the integration myself?\",qRyjYD635:J_V2xfVoC,style:{width:\"100%\"},variant:\"x_WdH7Isc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+170,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1os14w6-container\",nodeId:\"ctFJYUZ8I\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"ctFJYUZ8I\",layoutId:\"ctFJYUZ8I\",qQefXa5XK:\"Do I receive support if I run into any issues?\",qRyjYD635:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, we provide support to set up the integration. We\u2019ll work with you to configure the app together, ensuring it\u2019s fully integrated and ready to go.\"})}),style:{width:\"100%\"},variant:\"x_WdH7Isc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5dw500-container\",nodeId:\"kChEUurj2\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"kChEUurj2\",layoutId:\"kChEUurj2\",qQefXa5XK:\"What happens when the integration fails?\",qRyjYD635:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Yes, you\u2019ll be notified immediately with clear error messages and Xero details. You can quickly resolve issues using the one-click replay feature. For further help,\",/*#__PURE__*/_jsx(Link,{href:\"https://meetings.hubspot.com/cloudify/app-assistance\",motionChild:true,nodeId:\"kChEUurj2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\" contact us.\"})})]})}),style:{width:\"100%\"},variant:\"x_WdH7Isc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+340,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mf21di-container\",nodeId:\"eNqG2XQ4I\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"eNqG2XQ4I\",layoutId:\"eNqG2XQ4I\",qQefXa5XK:\"What if I want a more customized solution?\",qRyjYD635:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Yes, we specialize in creating custom integrations designed to fit your unique business needs. \",/*#__PURE__*/_jsx(Link,{href:\"https://custom.cloudify.biz/?app\",motionChild:true,nodeId:\"eNqG2XQ4I\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Please click here\"})}),\" to learn more or get in touch with us.\"]})}),style:{width:\"100%\"},variant:\"x_WdH7Isc\",width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+425,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jbgnzl-container\",nodeId:\"pq_zSwog_\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"pq_zSwog_\",layoutId:\"pq_zSwog_\",qQefXa5XK:rMMG5jGpM,qRyjYD635:OtgmrZRBV,style:{width:\"100%\"},variant:\"x_WdH7Isc\",width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 32px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 64px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:\"912px\",y:(componentViewport?.y||0)+0+0+180+0+2680.2+0+71.8+0+510,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ll44g-container\",nodeId:\"oyIpEOIZ6\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Accordion13,{height:\"100%\",id:\"oyIpEOIZ6\",layoutId:\"oyIpEOIZ6\",qQefXa5XK:DSLXvao9I,qRyjYD635:U_vDrLFpm,style:{width:\"100%\"},variant:\"x_WdH7Isc\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2m4k2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13yhyca\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",children:\"Testimonials\"})}),className:\"framer-l1g5uv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fv70bk\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l5bwy7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-133rhwm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppws39\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aw60sb-container\",isModuleExternal:true,nodeId:\"DMGpz5ENn\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"DMGpz5ENn\",layoutId:\"DMGpz5ENn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-49e7c9-container\",isModuleExternal:true,nodeId:\"O751nsiX5\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"O751nsiX5\",layoutId:\"O751nsiX5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5r949a-container\",isModuleExternal:true,nodeId:\"eC4eLqfVp\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"eC4eLqfVp\",layoutId:\"eC4eLqfVp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15cyyuf-container\",isModuleExternal:true,nodeId:\"SAyAsU9K6\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"SAyAsU9K6\",layoutId:\"SAyAsU9K6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16192s3-container\",isModuleExternal:true,nodeId:\"tD5gqIzwz\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"tD5gqIzwz\",layoutId:\"tD5gqIzwz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:nderBJZ19,className:\"framer-1oy3ftc\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e9whrg\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-134a9xu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nducbh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zli2fv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sa19ih-container\",isModuleExternal:true,nodeId:\"ApmrT2auC\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ApmrT2auC\",layoutId:\"ApmrT2auC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cp1evv-container\",isModuleExternal:true,nodeId:\"dXcHHNibe\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"dXcHHNibe\",layoutId:\"dXcHHNibe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s8botm-container\",isModuleExternal:true,nodeId:\"cZN1spYVA\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"cZN1spYVA\",layoutId:\"cZN1spYVA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zuy4d5-container\",isModuleExternal:true,nodeId:\"ivYX9HEkm\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ivYX9HEkm\",layoutId:\"ivYX9HEkm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z42en4-container\",isModuleExternal:true,nodeId:\"PBF9kh3te\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"PBF9kh3te\",layoutId:\"PBF9kh3te\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:eIuK4tABW,className:\"framer-17v8adr\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k360zl\",\"data-border\":true,\"data-framer-name\":\"Testimonial Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pln2ih\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jskivd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iern9a\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8rl1rf-container\",isModuleExternal:true,nodeId:\"BaigPqVI7\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"BaigPqVI7\",layoutId:\"BaigPqVI7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15vvsa0-container\",isModuleExternal:true,nodeId:\"Q0_iRCVyT\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Q0_iRCVyT\",layoutId:\"Q0_iRCVyT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iqshd5-container\",isModuleExternal:true,nodeId:\"mafjGAvQm\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"mafjGAvQm\",layoutId:\"mafjGAvQm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9d8to-container\",isModuleExternal:true,nodeId:\"JK0VS0q1I\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"JK0VS0q1I\",layoutId:\"JK0VS0q1I\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eva0f0-container\",isModuleExternal:true,nodeId:\"VVH_H8a1t\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-46fbc433-cc3a-47a5-bd92-e74befe83320, rgb(255, 123, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"VVH_H8a1t\",layoutId:\"VVH_H8a1t\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:u_tX1njKK,className:\"framer-14871aj\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cn28yo\",\"data-border\":true,\"data-framer-name\":\"Side Menu New\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j902yf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lviufd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1600,sizes:\"80px\",...toResponsiveImage(TWlhjI2s2)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1600,sizes:\"80px\",...toResponsiveImage(TWlhjI2s2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+16+0+24+0+0+0),pixelHeight:1600,pixelWidth:1600,sizes:\"80px\",...toResponsiveImage(TWlhjI2s2)},className:\"framer-1vnujg1\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7lf8d\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"Xero\"})}),className:\"framer-5bjgbl\",fonts:[\"Inter\"],text:SCpIdvj5R,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:GCBdxU6qA,implicitPathVariables:undefined},{href:GCBdxU6qA,implicitPathVariables:undefined},{href:GCBdxU6qA,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 80px)`,y:undefined},RUN_RucLx:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 112px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 992px, 1px) - 80px)`,y:(componentViewport?.y||0)+0+0+180+16+0+24+148,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbxr9o-container\",nodeId:\"LSmDNe9MH\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{tYYpH2ueZ:resolvedLinks[2]},RUN_RucLx:{tYYpH2ueZ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{db_WvGaV4:\"\",height:\"100%\",HWnWRZvTJ:\"CaretDown\",id:\"LSmDNe9MH\",layoutId:\"LSmDNe9MH\",ofLqZhEO8:\"Get the app\",style:{width:\"100%\"},tYYpH2ueZ:resolvedLinks[0],variant:\"zph9F_5wR\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pbuyy6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfhhoi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sumj3c\",\"data-styles-preset\":\"t0gF9nsHK\",children:\"Total installs\"})}),className:\"framer-ldvi02\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmxwh2\",\"data-styles-preset\":\"NeWhWJH48\",children:\"200+\"})}),className:\"framer-by2or9\",fonts:[\"Inter\"],text:TmQr7YFaw,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnf5eo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2eg98e\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sumj3c\",\"data-styles-preset\":\"t0gF9nsHK\",children:\"Additional details\"})}),className:\"framer-1g2vgmm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jggbmn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wc9pm9-container\",isModuleExternal:true,nodeId:\"P74ro91bz\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5b7445a6-3965-4e80-b62c-adc303d25bad, rgba(77, 82, 95, 0.8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"EnvelopeSimple\",id:\"P74ro91bz\",layoutId:\"P74ro91bz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmxwh2\",\"data-styles-preset\":\"NeWhWJH48\",children:/*#__PURE__*/_jsx(Link,{href:\"mailto:support@cloudify.biz\",motionChild:true,nodeId:\"k5O7iHirE\",openInNewTab:true,scopeId:\"GlrC2CV1_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pmp3vy\",\"data-styles-preset\":\"aAdohScXF\",children:\"Email Support\"})})})}),className:\"framer-5jzd3c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8lysz6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zftht5-container\",isModuleExternal:true,nodeId:\"cxTUMsclU\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5b7445a6-3965-4e80-b62c-adc303d25bad, rgba(77, 82, 95, 0.8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FileText\",id:\"cxTUMsclU\",layoutId:\"cxTUMsclU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmxwh2\",\"data-styles-preset\":\"NeWhWJH48\",children:/*#__PURE__*/_jsx(Link,{href:OsgBasd_X,motionChild:true,nodeId:\"qRbn0N1F1\",openInNewTab:false,scopeId:\"GlrC2CV1_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pmp3vy\",\"data-styles-preset\":\"aAdohScXF\",children:\"Setup Guide\"})})})}),className:\"framer-ndn3jx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7solto\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jys1ko-container\",isModuleExternal:true,nodeId:\"w40Iis5QN\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5b7445a6-3965-4e80-b62c-adc303d25bad, rgba(77, 82, 95, 0.8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Video\",id:\"w40Iis5QN\",layoutId:\"w40Iis5QN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmxwh2\",\"data-styles-preset\":\"NeWhWJH48\",children:/*#__PURE__*/_jsx(Link,{href:\"https://meetings.hubspot.com/cloudify/app-assistance\",motionChild:true,nodeId:\"U_Gs7TeJ5\",openInNewTab:true,scopeId:\"GlrC2CV1_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pmp3vy\",\"data-styles-preset\":\"aAdohScXF\",children:\"Book a demo\"})})})}),className:\"framer-lhs4c7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y55cgn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h0kc35\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sumj3c\",\"data-styles-preset\":\"t0gF9nsHK\",children:\"Pricing\"})}),className:\"framer-v724m9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfp00w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmxwh2\",\"data-styles-preset\":\"NeWhWJH48\",children:\"Cloudify subscriptions:\"})}),className:\"framer-1in9vk8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vmxwh2\",\"data-styles-preset\":\"NeWhWJH48\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":D2ulJ63LE\",pathVariables:{JesIXJDs3},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"DkTuSPkj4\",openInNewTab:false,scopeId:\"GlrC2CV1_\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pmp3vy\",\"data-styles-preset\":\"aAdohScXF\",children:\"See plans\"})})})}),className:\"framer-1f2rdb0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mtsj0q\",\"data-framer-name\":\"Pricing\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5y294\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Content\"})}),className:\"framer-1ywxodm\",fonts:[\"Inter\"],text:u6Af8xJxT,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ro26c5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkdv29\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rg9z9d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1whcwhh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-904jry\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-adsohb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dmob1j\",\"data-styles-preset\":\"s2XY7adk9\",children:\"Trial\"})}),className:\"framer-aguxvj\",fonts:[\"Inter\"],text:NfbBsbX1D,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:[\"15 free syncs to try the integration\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1r80ghd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fqbhxy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",children:\"Content\"})}),className:\"framer-1kjlpyt\",fonts:[\"Inter\"],text:rrfUbYT4N,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",children:\"Trial\"})}),className:\"framer-zrf26g\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6pfzgo\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10xtn53\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ak5pxn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h6c8ct\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:VvlfNouIs,className:\"framer-1w8vfya\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hdqbgx\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pfnkr0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a7n2t9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14kotw9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7eaj74\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3fjxjg\",\"data-styles-preset\":\"YJqbaz33G\",children:\"Content\"})}),className:\"framer-5qu013\",fonts:[\"Inter\"],text:g6GaQ0Bws,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Unlimited Customer Sync and Financial Data Updates\"})}),className:\"framer-1q1li02\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnxmxk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",children:\"$15\"})}),className:\"framer-t9kxl\",fonts:[\"Inter\"],text:zVS5eD6UJ,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Content\"})}),className:\"framer-6wwhi5\",fonts:[\"Inter\"],text:FpfLiytAD,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wm3jlp\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gggtre\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fulfxi\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5hzku\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:tTwBXH2Of,className:\"framer-4m244f\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167nkbm\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g2cep4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4svobg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e7fml9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m294rb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3fjxjg\",\"data-styles-preset\":\"YJqbaz33G\",children:\"Content\"})}),className:\"framer-1up5aco\",fonts:[\"Inter\"],text:gJav2rRzl,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Comprehensive Customer, Products and Invoice Sync with Finanical Data Update\"})}),className:\"framer-1kt1wn5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eqgsyr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",children:\"$30\"})}),className:\"framer-1kobm89\",fonts:[\"Inter\"],text:Ox5bnXViE,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Content\"})}),className:\"framer-pr19p6\",fonts:[\"Inter\"],text:dodPU3a_X,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nwzv2\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mv4jj5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqwjc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ts6oye\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:uYPNwdOYr,className:\"framer-1caldk6\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})]}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3yqwq\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tj2fg4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbyogq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1etouyv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5z0jt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3fjxjg\",\"data-styles-preset\":\"YJqbaz33G\",children:\"Content\"})}),className:\"framer-2thikf\",fonts:[\"Inter\"],text:YBOg9Wuin,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Custom plan tailored to suit your business needs\"})}),className:\"framer-l5b0l2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0206j\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:UeU8DlKMI,implicitPathVariables:undefined},{href:UeU8DlKMI,implicitPathVariables:undefined},{href:UeU8DlKMI,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:\"257px\",y:undefined},RUN_RucLx:{width:\"257px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 60px) / 4, 50px) - 48px)`,y:(componentViewport?.y||0)+0+4331.8+60+101.8+0+0+24+0+0+0+0+147.9+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wgbt0p-container\",nodeId:\"JURd9OElf\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{tYYpH2ueZ:resolvedLinks1[2]},RUN_RucLx:{tYYpH2ueZ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{db_WvGaV4:\"\",height:\"100%\",HWnWRZvTJ:\"CaretDown\",id:\"JURd9OElf\",layoutId:\"JURd9OElf\",ofLqZhEO8:\"Get a free quote\",style:{width:\"100%\"},tYYpH2ueZ:resolvedLinks1[0],variant:\"ugyOQ6SGI\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-upfjrb\",\"data-styles-preset\":\"kuic7YMgr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Content\"})}),className:\"framer-1o8ps0w\",fonts:[\"Inter\"],text:wCO7C5SPn,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pdd4ir\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k5p1an\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12auz32\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k3m0pj\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"QcJrkGTpx\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"HW4NLmF8s\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"eDMYYaNQI\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hoC3ZJnre,className:\"framer-16z6ssg\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1pmp3vy\",blockquote:\"framer-styles-preset-kvlngg\",code:\"framer-styles-preset-n1plkp\",h1:\"framer-styles-preset-1dmao1\",h2:\"framer-styles-preset-2yhbte\",h3:\"framer-styles-preset-3fjxjg\",h4:\"framer-styles-preset-dmob1j\",h5:\"framer-styles-preset-1c499ox\",h6:\"framer-styles-preset-1jo4vov\",img:\"framer-styles-preset-mbcyil\",p:\"framer-styles-preset-1vmxwh2\",table:\"framer-styles-preset-890oqi\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kaduhv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2yhbte\",\"data-styles-preset\":\"UP03nfLnn\",children:\"Related products\"})}),className:\"framer-1ug1aat\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vgwqwo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TMFRBRgtO\",data:AppList,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"TMFRBRgtO\",direction:\"desc\",name:\"SCpIdvj5R\",type:\"Identifier\"}],select:[{collection:\"TMFRBRgtO\",name:\"JesIXJDs3\",type:\"Identifier\"},{collection:\"TMFRBRgtO\",name:\"TWlhjI2s2\",type:\"Identifier\"},{collection:\"TMFRBRgtO\",name:\"SCpIdvj5R\",type:\"Identifier\"},{collection:\"TMFRBRgtO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"TMFRBRgtO\",name:\"uPS1BXctv\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:uPS1BXctv},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idTMFRBRgtO,JesIXJDs3:JesIXJDs3TMFRBRgtO,SCpIdvj5R:SCpIdvj5RTMFRBRgtO,TWlhjI2s2:TWlhjI2s2TMFRBRgtO},index)=>{JesIXJDs3TMFRBRgtO??=\"\";SCpIdvj5RTMFRBRgtO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TMFRBRgtO-${idTMFRBRgtO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{JesIXJDs3:JesIXJDs3TMFRBRgtO},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{JesIXJDs3:JesIXJDs3TMFRBRgtO},webPageId:\"GlrC2CV1_\"},motionChild:true,nodeId:\"yPnLfuL5V\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-kezi4u framer-13x1sls\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(TWlhjI2s2TMFRBRgtO)}},RUN_RucLx:{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(TWlhjI2s2TMFRBRgtO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5091.6+80+71.8+0+24+0),sizes:\"40px\",...toResponsiveImage(TWlhjI2s2TMFRBRgtO)},className:\"framer-1j80qj1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1c499ox\",\"data-styles-preset\":\"kWU0DR9dP\",children:\"Business Central\"})}),className:\"framer-iflkt3\",\"data-framer-name\":\"App name\",fonts:[\"Inter\"],text:SCpIdvj5RTMFRBRgtO,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idTMFRBRgtO);})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a3mh8t\",style:{rotate:180}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2kbz81\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{width:componentViewport?.width||\"100vw\",y:undefined},RUN_RucLx:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:467,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+5454.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1odu9rw-container\",nodeId:\"V4HP07HGE\",scopeId:\"GlrC2CV1_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P9qGufHxf:{variant:\"d7EFJmbdq\"},RUN_RucLx:{variant:\"wVyzu2xpL\"}},children:/*#__PURE__*/_jsx(FooterCopy2,{height:\"100%\",id:\"V4HP07HGE\",layoutId:\"V4HP07HGE\",style:{width:\"100%\"},variant:\"rxxeiK2DA\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hiR81.framer-13x1sls, .framer-hiR81 .framer-13x1sls { display: block; }\",\".framer-hiR81.framer-vt4hf7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-hiR81 .framer-zdpfje-container { flex: none; height: 60px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-hiR81 .framer-ybgv9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-hiR81 .framer-t75ro9 { background: radial-gradient(40% 75% at 50% 25.8%, rgba(140, 184, 255, 0.51) 0%, rgba(255, 255, 255, 0) 100%); bottom: -91px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-hiR81 .framer-goxfmy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1300px; padding: 180px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-dhsdfr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 912px; }\",\".framer-hiR81 .framer-fm2xwt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-v50ulc { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1esgyxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hiR81 .framer-1b31ys1-container, .framer-hiR81 .framer-1aw60sb-container, .framer-hiR81 .framer-49e7c9-container, .framer-hiR81 .framer-5r949a-container, .framer-hiR81 .framer-15cyyuf-container, .framer-hiR81 .framer-16192s3-container, .framer-hiR81 .framer-sa19ih-container, .framer-hiR81 .framer-cp1evv-container, .framer-hiR81 .framer-1s8botm-container, .framer-hiR81 .framer-zuy4d5-container, .framer-hiR81 .framer-z42en4-container, .framer-hiR81 .framer-8rl1rf-container, .framer-hiR81 .framer-15vvsa0-container, .framer-hiR81 .framer-1iqshd5-container, .framer-hiR81 .framer-1e9d8to-container, .framer-hiR81 .framer-eva0f0-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-hiR81 .framer-1hboulw, .framer-hiR81 .framer-50og0x, .framer-hiR81 .framer-8etosz, .framer-hiR81 .framer-iflkt3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hiR81 .framer-qhsovp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1k0tt1p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hiR81 .framer-1w4mrtt, .framer-hiR81 .framer-z4ub7l { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hiR81 .framer-j5g02c, .framer-hiR81 .framer-1deayhu, .framer-hiR81 .framer-1u2m4k2 { background-color: var(--token-5bf2d09a-b7f2-4a6f-9cae-938927eba3e5, #e4e7ec); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1j49t46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 632px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-7wew38, .framer-hiR81 .framer-w7lf8d, .framer-hiR81 .framer-904jry, .framer-hiR81 .framer-10xtn53, .framer-hiR81 .framer-14kotw9, .framer-hiR81 .framer-gggtre, .framer-hiR81 .framer-e7fml9, .framer-hiR81 .framer-1mv4jj5, .framer-hiR81 .framer-1etouyv, .framer-hiR81 .framer-d0206j, .framer-hiR81 .framer-k5p1an { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1srrycr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-by6ems { --border-bottom-width: 2px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-hiR81 .framer-yblvdv, .framer-hiR81 .framer-uxb4bl, .framer-hiR81 .framer-1hlqg04, .framer-hiR81 .framer-1f36i9q, .framer-hiR81 .framer-rk1yil, .framer-hiR81 .framer-y061rz, .framer-hiR81 .framer-1uiu7ry, .framer-hiR81 .framer-17bqcrf, .framer-hiR81 .framer-o8bi01, .framer-hiR81 .framer-1o0fsb0, .framer-hiR81 .framer-143na3c, .framer-hiR81 .framer-1bkvux, .framer-hiR81 .framer-5bjgbl, .framer-hiR81 .framer-ldvi02, .framer-hiR81 .framer-1g2vgmm, .framer-hiR81 .framer-v724m9, .framer-hiR81 .framer-1in9vk8, .framer-hiR81 .framer-1f2rdb0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-hiR81 .framer-12omdyv, .framer-hiR81 .framer-9jdqr8, .framer-hiR81 .framer-war17w, .framer-hiR81 .framer-xkt7jx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-hiR81 .framer-1vyiydj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-ks7p97-container, .framer-hiR81 .framer-au0mbz-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-18mbbsf, .framer-hiR81 .framer-cuispw, .framer-hiR81 .framer-iab28l, .framer-hiR81 .framer-11bmk62, .framer-hiR81 .framer-pvhoqo, .framer-hiR81 .framer-1be1v0h, .framer-hiR81 .framer-m3xztr { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 555px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 912px; }\",\".framer-hiR81 .framer-zznyqr, .framer-hiR81 .framer-tx28ut, .framer-hiR81 .framer-17m1e35, .framer-hiR81 .framer-qono9f, .framer-hiR81 .framer-1yna65c, .framer-hiR81 .framer-nyk82e { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hiR81 .framer-ytnr96, .framer-hiR81 .framer-1l2f54w, .framer-hiR81 .framer-e85ev0, .framer-hiR81 .framer-1kdmcr9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-hiR81 .framer-18fmzhq, .framer-hiR81 .framer-w2vzb2, .framer-hiR81 .framer-fno91k, .framer-hiR81 .framer-2rzhse, .framer-hiR81 .framer-l1g5uv, .framer-hiR81 .framer-1ywxodm, .framer-hiR81 .framer-1ug1aat { --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-hiR81 .framer-1jad7vz, .framer-hiR81 .framer-snd5j2, .framer-hiR81 .framer-fcl8lw, .framer-hiR81 .framer-jdqaus, .framer-hiR81 .framer-1k28nvo, .framer-hiR81 .framer-dhul8i, .framer-hiR81 .framer-1ae8thu, .framer-hiR81 .framer-rnamqx, .framer-hiR81 .framer-1k7t1tr, .framer-hiR81 .framer-nflwia, .framer-hiR81 .framer-y3ymey, .framer-hiR81 .framer-snkri4, .framer-hiR81 .framer-by2or9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hiR81 .framer-dai5fu { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(30px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1pbcxmv { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1auw6jj, .framer-hiR81 .framer-1e9kmqb, .framer-hiR81 .framer-1wbeo3, .framer-hiR81 .framer-128fyat, .framer-hiR81 .framer-ogvzum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-11aj000, .framer-hiR81 .framer-1tdnrcv, .framer-hiR81 .framer-1g5a2zy, .framer-hiR81 .framer-1bsdcph, .framer-hiR81 .framer-7xdtoh { --border-bottom-width: 1px; --border-color: var(--token-9b68d3d2-7019-487e-95a6-74f6c7f83c1d, #e1e1e8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; flex: none; height: 200px; overflow: hidden; position: relative; width: 360px; }\",\".framer-hiR81 .framer-1sleuvk, .framer-hiR81 .framer-1vcyfex, .framer-hiR81 .framer-rsbzsr, .framer-hiR81 .framer-1evt2su, .framer-hiR81 .framer-g5vj2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hiR81 .framer-14o2zdv, .framer-hiR81 .framer-1lviufd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1bfubl4-container, .framer-hiR81 .framer-1jty2o2-container, .framer-hiR81 .framer-1os14w6-container, .framer-hiR81 .framer-5dw500-container, .framer-hiR81 .framer-mf21di-container, .framer-hiR81 .framer-1jbgnzl-container, .framer-hiR81 .framer-ll44g-container, .framer-hiR81 .framer-qbxr9o-container, .framer-hiR81 .framer-wgbt0p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hiR81 .framer-13yhyca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1fv70bk, .framer-hiR81 .framer-1e9whrg, .framer-hiR81 .framer-k360zl { --border-bottom-width: 1px; --border-color: var(--token-5bf2d09a-b7f2-4a6f-9cae-938927eba3e5, #e4e7ec); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-l5bwy7, .framer-hiR81 .framer-134a9xu, .framer-hiR81 .framer-1pln2ih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-133rhwm, .framer-hiR81 .framer-nducbh, .framer-hiR81 .framer-1jskivd, .framer-hiR81 .framer-1pbuyy6, .framer-hiR81 .framer-xnf5eo, .framer-hiR81 .framer-y55cgn { 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-hiR81 .framer-ppws39, .framer-hiR81 .framer-zli2fv, .framer-hiR81 .framer-1iern9a { 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: 100%; }\",\".framer-hiR81 .framer-1oy3ftc, .framer-hiR81 .framer-17v8adr, .framer-hiR81 .framer-14871aj, .framer-hiR81 .framer-aguxvj, .framer-hiR81 .framer-1r80ghd, .framer-hiR81 .framer-5qu013, .framer-hiR81 .framer-1q1li02, .framer-hiR81 .framer-1up5aco, .framer-hiR81 .framer-1kt1wn5, .framer-hiR81 .framer-2thikf, .framer-hiR81 .framer-l5b0l2, .framer-hiR81 .framer-1o8ps0w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hiR81 .framer-cn28yo { --border-bottom-width: 1px; --border-color: var(--token-5bf2d09a-b7f2-4a6f-9cae-938927eba3e5, #e4e7ec); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: sticky; top: 44px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hiR81 .framer-1j902yf { align-content: center; align-items: center; background-color: var(--token-55ea21fa-3d3a-4276-8aad-bf4ceff15b88, #f4fbfe); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hiR81 .framer-1vnujg1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 80px; }\",\".framer-hiR81 .framer-cfhhoi, .framer-hiR81 .framer-2eg98e, .framer-hiR81 .framer-1h0kc35, .framer-hiR81 .framer-1rg9z9d, .framer-hiR81 .framer-pfnkr0, .framer-hiR81 .framer-1g2cep4, .framer-hiR81 .framer-tj2fg4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-jggbmn, .framer-hiR81 .framer-8lysz6, .framer-hiR81 .framer-7solto { 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-hiR81 .framer-wc9pm9-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-hiR81 .framer-5jzd3c, .framer-hiR81 .framer-ndn3jx, .framer-hiR81 .framer-lhs4c7 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hiR81 .framer-zftht5-container, .framer-hiR81 .framer-jys1ko-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-hiR81 .framer-pfp00w { 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: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-mtsj0q { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 0px 60px 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-hiR81 .framer-1x5y294 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-ro26c5 { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1dkdv29 { --border-bottom-width: 1px; --border-color: var(--token-5bf2d09a-b7f2-4a6f-9cae-938927eba3e5, rgba(18, 18, 18, 0.25)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background: linear-gradient(180deg, #ffffff 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 538px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hiR81 .framer-1whcwhh, .framer-hiR81 .framer-a7n2t9, .framer-hiR81 .framer-4svobg, .framer-hiR81 .framer-1hbyogq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-adsohb, .framer-hiR81 .framer-7eaj74, .framer-hiR81 .framer-1m294rb, .framer-hiR81 .framer-n5z0jt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-fqbhxy, .framer-hiR81 .framer-cnxmxk, .framer-hiR81 .framer-eqgsyr { align-content: flex-end; align-items: flex-end; 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-hiR81 .framer-1kjlpyt, .framer-hiR81 .framer-t9kxl, .framer-hiR81 .framer-6wwhi5, .framer-hiR81 .framer-1kobm89, .framer-hiR81 .framer-pr19p6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hiR81 .framer-zrf26g, .framer-hiR81 .framer-1w8vfya, .framer-hiR81 .framer-4m244f, .framer-hiR81 .framer-1caldk6, .framer-hiR81 .framer-16z6ssg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hiR81 .framer-6pfzgo, .framer-hiR81 .framer-1wm3jlp, .framer-hiR81 .framer-10nwzv2, .framer-hiR81 .framer-1pdd4ir { background-color: var(--token-9b68d3d2-7019-487e-95a6-74f6c7f83c1d, #e1e1e8); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1ak5pxn, .framer-hiR81 .framer-1fulfxi, .framer-hiR81 .framer-1aqwjc, .framer-hiR81 .framer-12auz32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1h6c8ct { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-hdqbgx, .framer-hiR81 .framer-1r3yqwq { --border-bottom-width: 1px; --border-color: var(--token-5bf2d09a-b7f2-4a6f-9cae-938927eba3e5, rgba(18, 18, 18, 0.25)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 538px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hiR81 .framer-r5hzku, .framer-hiR81 .framer-ts6oye, .framer-hiR81 .framer-k3m0pj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-167nkbm { --border-bottom-width: 1px; --border-color: var(--token-5bf2d09a-b7f2-4a6f-9cae-938927eba3e5, rgba(18, 18, 18, 0.25)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 536px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hiR81 .framer-kaduhv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1366px; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-vgwqwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-kezi4u { --border-bottom-width: 1px; --border-color: var(--token-9b68d3d2-7019-487e-95a6-74f6c7f83c1d, #e1e1e8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1a849188-1670-4e7c-9560-183210e5b371, #f7f9fa); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hiR81 .framer-1j80qj1 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-hiR81 .framer-a3mh8t { background: radial-gradient(40% 75% at 50% 25.8%, rgba(140, 184, 255, 0.51) 0%, rgba(255, 255, 255, 0) 100%); flex: none; height: 93px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-hiR81 .framer-2kbz81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hiR81 .framer-1odu9rw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,'.framer-hiR81[data-border=\"true\"]::after, .framer-hiR81 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1399px) { .framer-hiR81.framer-vt4hf7 { width: 810px; } .framer-hiR81 .framer-goxfmy { flex-direction: column; padding: 80px 0px 60px 0px; } .framer-hiR81 .framer-dhsdfr { padding: 32px; width: 100%; } .framer-hiR81 .framer-fm2xwt { padding: 16px; } .framer-hiR81 .framer-1j49t46 { height: min-content; } .framer-hiR81 .framer-1vyiydj { flex: none; height: 485px; width: 810px; } .framer-hiR81 .framer-cn28yo { flex: none; padding: 32px; width: 100%; } .framer-hiR81 .framer-ro26c5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; } .framer-hiR81 .framer-1dkdv29 { align-self: unset; width: 320px; } .framer-hiR81 .framer-hdqbgx, .framer-hiR81 .framer-167nkbm, .framer-hiR81 .framer-1r3yqwq { align-self: unset; width: 305px; }}\",\"@media (max-width: 809px) { .framer-hiR81.framer-vt4hf7 { width: 390px; } .framer-hiR81 .framer-zdpfje-container { height: auto; left: 0px; position: fixed; width: 390px; } .framer-hiR81 .framer-goxfmy { flex-direction: column; padding: 80px 0px 60px 0px; } .framer-hiR81 .framer-dhsdfr { padding: 16px; width: 100%; } .framer-hiR81 .framer-fm2xwt { padding: 16px; } .framer-hiR81 .framer-1j49t46 { height: min-content; } .framer-hiR81 .framer-1srrycr, .framer-hiR81 .framer-1auw6jj, .framer-hiR81 .framer-1e9kmqb, .framer-hiR81 .framer-1wbeo3, .framer-hiR81 .framer-128fyat, .framer-hiR81 .framer-vgwqwo, .framer-hiR81 .framer-2kbz81 { flex-direction: column; } .framer-hiR81 .framer-1vyiydj { flex: none; height: 572px; } .framer-hiR81 .framer-1sleuvk, .framer-hiR81 .framer-1vcyfex, .framer-hiR81 .framer-rsbzsr, .framer-hiR81 .framer-1evt2su, .framer-hiR81 .framer-cn28yo, .framer-hiR81 .framer-kezi4u, .framer-hiR81 .framer-1odu9rw-container { flex: none; width: 100%; } .framer-hiR81 .framer-ro26c5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; } .framer-hiR81 .framer-1dkdv29 { align-self: unset; width: 320px; } .framer-hiR81 .framer-hdqbgx, .framer-hiR81 .framer-167nkbm, .framer-hiR81 .framer-1r3yqwq { align-self: unset; width: 305px; } .framer-hiR81 .framer-kaduhv { padding: 80px 16px 0px 16px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6412.5\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RUN_RucLx\":{\"layout\":[\"fixed\",\"auto\"]},\"P9qGufHxf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"H49Ece1tV\":{\"pattern\":\":H49Ece1tV\",\"name\":\"overview\"},\"bz1c0ryKJ\":{\"pattern\":\":bz1c0ryKJ\",\"name\":\"keybenefits\"},\"wTzQTxlDX\":{\"pattern\":\":wTzQTxlDX\",\"name\":\"features\"},\"en3Io3Yrs\":{\"pattern\":\":en3Io3Yrs\",\"name\":\"faq\"},\"D2ulJ63LE\":{\"pattern\":\":D2ulJ63LE\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FramerGlrC2CV1_=withCSS(Component,css,\"framer-hiR81\");export default FramerGlrC2CV1_;FramerGlrC2CV1_.displayName=\"App List\";FramerGlrC2CV1_.defaultProps={height:6412.5,width:1400};addFonts(FramerGlrC2CV1_,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Degular Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/I7pvLp4KXoFz9i6FfqgRkI4oA.woff2\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMIUKUCANYOW3DZTE34ZMVXC7KRYZNCO/X3SZZ4Z5SZNM5K75FPPASQ2YRIJMIPUD/G2K4CBVGEH7VFVIC3T6GBHAWO2E2W7YQ.woff2\",weight:\"400\"}]},...NavigationFonts,...PhosphorFonts,...YouTubeFonts,...CarouselFonts,...Accordion13Fonts,...ButtonPrimaryFonts,...FooterCopy2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...componentPresets.fonts?.[\"HW4NLmF8s\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"HW4NLmF8s\"]):[],...componentPresets.fonts?.[\"QcJrkGTpx\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"QcJrkGTpx\"]):[],...componentPresets.fonts?.[\"eDMYYaNQI\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"eDMYYaNQI\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGlrC2CV1_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RUN_RucLx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P9qGufHxf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"H49Ece1tV\\\":{\\\"pattern\\\":\\\":H49Ece1tV\\\",\\\"name\\\":\\\"overview\\\"},\\\"bz1c0ryKJ\\\":{\\\"pattern\\\":\\\":bz1c0ryKJ\\\",\\\"name\\\":\\\"keybenefits\\\"},\\\"wTzQTxlDX\\\":{\\\"pattern\\\":\\\":wTzQTxlDX\\\",\\\"name\\\":\\\"features\\\"},\\\"en3Io3Yrs\\\":{\\\"pattern\\\":\\\":en3Io3Yrs\\\",\\\"name\\\":\\\"faq\\\"},\\\"D2ulJ63LE\\\":{\\\"pattern\\\":\\\":D2ulJ63LE\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerIntrinsicHeight\":\"6412.5\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationFonts", "getFonts", "FFcDbUfnH_default", "PhosphorFonts", "Icon", "YouTubeFonts", "Youtube", "CarouselFonts", "Carousel", "Accordion13Fonts", "MGwBxtpg9_default", "ButtonPrimaryFonts", "PmKNR9jE2_default", "FooterCopy2Fonts", "og3StOGE5_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "isSet", "value", "toResponsiveImage", "transition2", "animation1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "E4ADUhwfh_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "yx6Q4hyHr", "uPS1BXctv", "SCpIdvj5R", "QRwFAki0t", "kAdrsdxc9", "JesIXJDs3", "qusIMo6dV", "SJzwrtiKJ", "d5RAEyRJ2", "FT6nor7pC", "g_SKWiB1l", "GzTXvgNRp", "Zerhpj4sm", "gUeWuiNw7", "ZWogCxR6F", "ECddddiCb", "G0x1tzpR2", "j77dpjBsh", "e5HKGunz6", "qRFoKP8Te", "WANBkvCy_", "AbKWA_ESA", "Fsz1f5Bzf", "lmNEhEW90", "d8fGx1tZ5", "R416phfuN", "YskAANOPP", "SRpVBsqKQ", "o5cpQbpEN", "oDtIod090", "y90odWJTx", "xaYhnyslo", "LocoTuoVt", "drVV15C5G", "J_V2xfVoC", "rMMG5jGpM", "OtgmrZRBV", "DSLXvao9I", "U_vDrLFpm", "nderBJZ19", "eIuK4tABW", "u_tX1njKK", "TWlhjI2s2", "GCBdxU6qA", "TmQr7YFaw", "OsgBasd_X", "u6Af8xJxT", "NfbBsbX1D", "rrfUbYT4N", "VvlfNouIs", "g6GaQ0Bws", "zVS5eD6UJ", "FpfLiytAD", "tTwBXH2Of", "gJav2rRzl", "Ox5bnXViE", "dodPU3a_X", "uYPNwdOYr", "YBOg9Wuin", "UeU8DlKMI", "wCO7C5SPn", "hoC3ZJnre", "JesIXJDs3TMFRBRgtO", "TWlhjI2s2TMFRBRgtO", "SCpIdvj5RTMFRBRgtO", "idTMFRBRgtO", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "textContent", "enumToDisplayNameFunctions", "visible", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "visible1", "visible2", "visible3", "elementId3", "ref4", "visible4", "router", "useRouter", "elementId4", "ref5", "visible5", "visible6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Link", "RichText2", "x", "Image2", "ComponentPresetsProvider", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "css", "FramerGlrC2CV1_", "withCSS", "GlrC2CV1_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
