{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/YZCrNYUvUTdUTudQFBNG/CCULf3DWKJQKLQZkFFST/A5zbxh_SA.js", "ssg:https://framerusercontent.com/modules/IFKUKI84jjnG9ku1x3fn/bmKhjaw6QJycuWdQC1zO/b4fg3rxVx.js", "ssg:https://framerusercontent.com/modules/ndv2C2sS4qwT1xkwp6OY/OIiGjeQYSxypiEKN6FbC/dcz0c3c69.js", "ssg:https://framerusercontent.com/modules/mTIpwOhX8poXizWxOYm5/a8rJmvhrwSQAI944uHAW/EZfMPrMNn.js", "ssg:https://framerusercontent.com/modules/EFnFB0elP0bVxJMwMYoH/QfemRoShzwCzo6qtpr1J/kjTgd4Pe9.js", "ssg:https://framerusercontent.com/modules/8KDXKW5ozGWMmvkSy6EX/7Tlwvf3M16yguOAL0klx/M4oY9BFLC.js", "ssg:https://framerusercontent.com/modules/bQ4IbAzMTxZC5griSc8g/OujV2gLsXOJCus0MpUkH/E4mMEA4te.js", "ssg:https://framerusercontent.com/modules/NrosukWK8S9SOBlKzifL/uwzF0mlsllEOzOVsAXnn/nthZ_DDLD.js", "ssg:https://framerusercontent.com/modules/2nZBJ1upfMrMAn3vmQpK/OZyfstL3vQS2CtuUuFzx/mRt7xKEN4.js", "ssg:https://framerusercontent.com/modules/jvWDmnrWCCAY04Pde4TD/sp6EjVK6Z9scVUhq714b/W3Eko70eC.js", "ssg:https://framerusercontent.com/modules/GZLlA8hUfcjuAhllLShP/zpsfDYToCzhF7zSnOKqY/QOmBfXUGw.js", "ssg:https://framerusercontent.com/modules/aZkm2tsZuE6E3Y8Mn818/1QpeMb58ln3jOyLeJyCT/R3FzGMWWh.js", "ssg:https://framerusercontent.com/modules/GujOCF4fmm2P5FxNDjty/89wYEaMjXPWLASixlJtP/Ww0D3VWQ3.js", "ssg:https://framerusercontent.com/modules/BNbkPVeSjwJzUlbkw1QC/L3gVzQruEIZsT2cCNmZr/gY3E5c66J.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 (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LKpk6QZGusiEdNYsBpwH/jNgn0p0vgaWHGlTJ9IaH/e4tvnx951.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vHLw3ChWBJyQBF6GKm7n/DnwHaU4RVKmf64FhE4gv/jfgWTQKwu.js\";const enabledGestures={DJNF8ZU2r:{hover:true},OPWgsGia8:{hover:true},v8l23oajn:{hover:true}};const cycleOrder=[\"OPWgsGia8\",\"v8l23oajn\",\"DJNF8ZU2r\"];const serializationHash=\"framer-OwyMl\";const variantClassNames={DJNF8ZU2r:\"framer-v-1uxdhzb\",OPWgsGia8:\"framer-v-1vi3gvz\",v8l23oajn:\"framer-v-17u8p9w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"EN-1\":\"OPWgsGia8\",\"EN-2\":\"v8l23oajn\",\"EN-3\":\"DJNF8ZU2r\"};const getProps=({_1Body,_1Number,_1ShowLogos,_1Title,_2Body,_2Number,_2ShowLogos,_2Title,_3Body,_3Number,_3ShowLogos,_3Title,gap,height,id,logoPadding,padding,width,...props})=>{return{...props,aNspB8tNs:_3Body??props.aNspB8tNs??\"Build Upon Other\u2019s Creation\",bjbNd29o3:_3Number??props.bjbNd29o3??true,duX6J7vzV:_1ShowLogos??props.duX6J7vzV,DYqiS4OYB:_1Body??props.DYqiS4OYB??\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\",ep5wSYwZ6:_2ShowLogos??props.ep5wSYwZ6,GOg29daUW:gap??props.GOg29daUW??20,GX8n58542:_2Number??props.GX8n58542??true,iEicOZPKE:_1Number??props.iEicOZPKE??true,L9ij4STKZ:_1Title??props.L9ij4STKZ??\"Build Upon Other\u2019s Creation\",NwizKtUKE:_2Title??props.NwizKtUKE??\"text\",QC1xWcD52:_3Title??props.QC1xWcD52??\"Build Upon Other\u2019s Creation\",t8BNlKYGg:logoPadding??props.t8BNlKYGg??\"8px 0px 8px 0px\",tlpqA0YXv:padding??props.tlpqA0YXv??\"40px 20px 40px 20px\",tSNzytU9Q:_2Body??props.tSNzytU9Q,variant:humanReadableVariantMap[props.variant]??props.variant??\"OPWgsGia8\",vNM18p5gP:_3ShowLogos??props.vNM18p5gP};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,L9ij4STKZ,DYqiS4OYB,NwizKtUKE,tSNzytU9Q,QC1xWcD52,aNspB8tNs,duX6J7vzV,ep5wSYwZ6,vNM18p5gP,iEicOZPKE,GX8n58542,bjbNd29o3,tlpqA0YXv,GOg29daUW,t8BNlKYGg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OPWgsGia8\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1qo68et=activeVariantCallback(async(...args)=>{setVariant(\"v8l23oajn\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=(value,value1,value2)=>{if(gestureVariant===\"v8l23oajn-hover\")return value1;if(gestureVariant===\"DJNF8ZU2r-hover\")return value2;if(baseVariant===\"v8l23oajn\")return value1;if(baseVariant===\"DJNF8ZU2r\")return value2;return value;};const isDisplayed1=()=>{if(gestureVariant===\"v8l23oajn-hover\")return false;if(baseVariant===\"v8l23oajn\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"v8l23oajn-hover\")return true;if(baseVariant===\"v8l23oajn\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1vi3gvz\",className,classNames),\"data-framer-name\":\"EN-1\",layoutDependency:layoutDependency,layoutId:\"OPWgsGia8\",ref:refBinding,style:{\"--128ua9s\":numberToPixelString(tlpqA0YXv),\"--cob5fc\":numberToPixelString(GOg29daUW),backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"DJNF8ZU2r-hover\":{\"data-framer-name\":undefined},\"OPWgsGia8-hover\":{\"data-framer-name\":undefined},\"v8l23oajn-hover\":{\"data-framer-name\":undefined},DJNF8ZU2r:{\"data-framer-name\":\"EN-3\"},v8l23oajn:{\"data-framer-name\":\"EN-2\"}},baseVariant,gestureVariant),children:[isDisplayed(iEicOZPKE,GX8n58542,bjbNd29o3)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gbonpk\",\"data-framer-name\":\"Content-number\",layoutDependency:layoutDependency,layoutId:\"LvyBuwIMD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"1\"})}),className:\"framer-10u612\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T9w2lZvAA\",style:{\"--extracted-a0htzi\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"5px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DJNF8ZU2r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",children:\"3\"})})},v8l23oajn:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",children:\"2\"})}),onTap:onTap1qo68et}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s3hrgd\",\"data-framer-name\":\"Body\",layoutDependency:layoutDependency,layoutId:\"CcOCErgQB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"Build Upon Other\u2019s Creation\"})}),className:\"framer-zzbhnb\",\"data-framer-name\":\"Sophisticated Workflow In Minutes\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YkbRRSFLp\",style:{\"--extracted-a0htzi\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"5px\"},text:L9ij4STKZ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DJNF8ZU2r:{text:QC1xWcD52},v8l23oajn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"text\"})}),text:NwizKtUKE}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153)))\"},children:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\"})}),className:\"framer-1v8gcej\",\"data-framer-name\":\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kUn6qKAJq\",style:{\"--extracted-r6o4lv\":\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"5px\"},text:DYqiS4OYB,variants:{\"DJNF8ZU2r-hover\":{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},\"OPWgsGia8-hover\":{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},\"v8l23oajn-hover\":{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"DJNF8ZU2r-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\"})})},\"OPWgsGia8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\"})})},\"v8l23oajn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\"})})},DJNF8ZU2r:{text:aNspB8tNs},v8l23oajn:{text:tSNzytU9Q}},baseVariant,gestureVariant)}),isDisplayed(duX6J7vzV,ep5wSYwZ6,vNM18p5gP)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mat56y\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"r81gLlZDx\",style:{\"--1jevca6\":numberToPixelString(t8BNlKYGg)},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1efqq5o\",\"data-framer-name\":\"Set 1\",layoutDependency:layoutDependency,layoutId:\"uKSSfrdR6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z0hae0\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"n_xoTj3Ol\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qa5cgv\",\"data-framer-name\":\"Github\",layoutDependency:layoutDependency,layoutId:\"TOPO8UfgZ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w5qcd1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:58\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00107 0.335938C6.10189 0.336923 4.26498 1.00958 2.81881 2.23362C1.37263 3.45766 0.411497 5.15328 0.107258 7.01727C-0.196981 8.88126 0.175513 10.7921 1.15814 12.4081C2.14077 14.024 3.66945 15.2398 5.47085 15.8379C5.86826 15.9117 6.01796 15.6654 6.01796 15.4559C6.01796 15.2465 6.01001 14.6393 6.00736 13.9754C3.78183 14.4562 3.31155 13.0363 3.31155 13.0363C2.94858 12.1142 2.42399 11.8719 2.42399 11.8719C1.69804 11.3792 2.4783 11.3885 2.4783 11.3885C3.28241 11.4451 3.705 12.2091 3.705 12.2091C4.4177 13.4248 5.57682 13.0731 6.03253 12.8677C6.10406 12.3526 6.31205 12.0023 6.54123 11.8034C4.76345 11.6032 2.89559 10.9209 2.89559 7.87288C2.88457 7.08241 3.17958 6.31797 3.71957 5.73772C3.63744 5.53751 3.36321 4.72876 3.79772 3.63022C3.79772 3.63022 4.46936 3.41684 5.99809 4.44556C7.30934 4.08902 8.69281 4.08902 10.0041 4.44556C11.5315 3.41684 12.2018 3.63022 12.2018 3.63022C12.6376 4.72612 12.3634 5.53488 12.2813 5.73772C12.823 6.31806 13.1186 7.08384 13.1065 7.87552C13.1065 10.9301 11.2347 11.6032 9.45429 11.7994C9.74043 12.0471 9.9961 12.5305 9.9961 13.2734C9.9961 14.3376 9.98683 15.1938 9.98683 15.4559C9.98683 15.668 10.1312 15.9156 10.5366 15.8379C12.3382 15.2397 13.867 14.0237 14.8496 12.4075C15.8323 10.7912 16.2046 8.88014 15.9 7.01597C15.5954 5.15181 14.6338 3.45617 13.1871 2.23234C11.7405 1.00851 9.90313 0.336298 8.00372 0.335938H8.00107Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xtbtm2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:59\",svg:'<svg width=\"2\" height=\"1\" viewBox=\"0 0 2 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.02905 0.752472C1.01183 0.791987 0.948247 0.803843 0.896582 0.776182C0.844918 0.748521 0.806504 0.697151 0.82505 0.656318C0.843596 0.615485 0.905858 0.604947 0.957522 0.632608C1.00919 0.660269 1.04893 0.712956 1.02905 0.752472Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a6pixc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:1,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:60\",svg:'<svg width=\"1\" height=\"2\" viewBox=\"0 0 1 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.355455 1.11149C0.32802 1.12523 0.296634 1.12907 0.266668 1.12234C0.236703 1.11562 0.210023 1.09874 0.19119 1.07461C0.139526 1.01929 0.128923 0.942892 0.168664 0.908646C0.208406 0.874399 0.279947 0.890205 0.331611 0.945526C0.383275 1.00085 0.395197 1.07724 0.355455 1.11149Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l71xbt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:61\",svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.668601 0.571841C0.619587 0.606088 0.536124 0.571843 0.489759 0.503349C0.476938 0.491062 0.466744 0.476329 0.459778 0.460035C0.452813 0.44374 0.449219 0.426217 0.449219 0.408512C0.449219 0.390806 0.452813 0.373282 0.459778 0.356987C0.466744 0.340692 0.476938 0.325962 0.489759 0.313675C0.538774 0.280745 0.622236 0.313674 0.668601 0.38085C0.714967 0.448026 0.716291 0.537594 0.668601 0.571841V0.571841Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1erj49t\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:2,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:62\",svg:'<svg width=\"2\" height=\"2\" viewBox=\"0 0 2 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.09774 1.01155C1.05402 1.06029 0.965265 1.04712 0.892406 0.981258C0.819546 0.915399 0.80232 0.825829 0.846036 0.778411C0.889751 0.730992 0.978509 0.744166 1.05402 0.808707C1.12953 0.873249 1.1441 0.964134 1.09774 1.01155V1.01155Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9dk40m\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:63\",svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.698751 0.272258C0.67888 0.334166 0.588798 0.361826 0.498717 0.335483C0.408636 0.309139 0.349024 0.235375 0.366245 0.17215C0.383466 0.108925 0.474873 0.0799471 0.566279 0.108925C0.657685 0.137904 0.715973 0.207716 0.698751 0.272258Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19nzju9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:64\",svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.350912 0.319063C0.350912 0.383605 0.276731 0.438926 0.181351 0.440243C0.0859709 0.441561 0.0078125 0.388873 0.0078125 0.324331C0.0078125 0.259788 0.0819929 0.204467 0.177373 0.20315C0.272753 0.201833 0.350912 0.253203 0.350912 0.319063Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-102ognp\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,layoutDependency:layoutDependency,layoutId:\"I1460:5152;1:65\",svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.960938 0.215932C0.972861 0.280474 0.906624 0.347651 0.811244 0.363457C0.715864 0.379263 0.632406 0.341064 0.620484 0.277839C0.608561 0.214615 0.677447 0.146123 0.770178 0.128999C0.862908 0.111876 0.949016 0.15139 0.960938 0.215932Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ldylqa\",\"data-border\":true,\"data-framer-name\":\"Frame 4940\",layoutDependency:layoutDependency,layoutId:\"MCB46FvP7\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w36mna\",\"data-framer-name\":\"Notion\",layoutDependency:layoutDependency,layoutId:\"Kt3WLAdpI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8oatf3\",\"data-framer-name\":\"notion logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I1460:5154;101:618\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_5190)\">\\n<path d=\"M2.97284 2.80517C3.47017 3.20917 3.65684 3.1785 4.59151 3.11584L13.4015 2.58717C13.5882 2.58717 13.4328 2.4005 13.3708 2.36984L11.9068 1.31183C11.6268 1.0945 11.2528 0.845168 10.5368 0.907168L2.00684 1.52983C1.69617 1.5605 1.63351 1.7165 1.75751 1.8405L2.97284 2.80517ZM3.50151 4.8585V14.1278C3.50151 14.6258 3.75017 14.8125 4.31084 14.7812L13.9928 14.2212C14.5535 14.1905 14.6162 13.8478 14.6162 13.4432V4.23584C14.6162 3.83184 14.4608 3.61384 14.1175 3.6445L3.99951 4.23584C3.62617 4.26717 3.50151 4.45384 3.50151 4.85784V4.8585ZM13.0595 5.35517C13.1215 5.63517 13.0595 5.91517 12.7795 5.94717L12.3128 6.0405V12.8832C11.9075 13.1012 11.5342 13.2258 11.2228 13.2258C10.7242 13.2258 10.5995 13.0698 10.2262 12.6038L7.17484 7.81317V12.4478L8.14017 12.6665C8.14017 12.6665 8.14017 13.2265 7.3615 13.2265L5.21351 13.3505C5.15151 13.2265 5.21351 12.9152 5.43151 12.8532L5.99151 12.6978V6.56917L5.21484 6.5065C5.15217 6.2265 5.30817 5.8225 5.7435 5.79117L8.04751 5.63584L11.2235 10.4885V6.19517L10.4135 6.1025C10.3515 5.75984 10.6002 5.51117 10.9115 5.4805L13.0595 5.35517ZM1.29084 0.689835L10.1642 0.0365013C11.2535 -0.056832 11.5342 0.00516797 12.2188 0.503168L15.0515 2.49384C15.5182 2.83584 15.6742 2.92917 15.6742 3.3025V14.2212C15.6742 14.9052 15.4255 15.3105 14.5542 15.3718L4.24884 15.9945C3.59551 16.0258 3.2835 15.9325 2.94084 15.4965L0.854839 12.7898C0.481505 12.2918 0.326172 11.9192 0.326172 11.4832V1.77783C0.326172 1.2185 0.575505 0.751168 1.29084 0.689835V0.689835Z\" fill=\"#2F3437\"/>\\n<path d=\"M2.97284 2.80517C3.47017 3.20917 3.65684 3.1785 4.59151 3.11584L13.4015 2.58717C13.5882 2.58717 13.4328 2.4005 13.3708 2.36984L11.9068 1.31183C11.6268 1.0945 11.2528 0.845168 10.5368 0.907168L2.00684 1.52983C1.69617 1.5605 1.63351 1.7165 1.75751 1.8405L2.97284 2.80517Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.50151 4.8585V14.1278C3.50151 14.6258 3.75017 14.8125 4.31084 14.7812L13.9928 14.2212C14.5535 14.1905 14.6162 13.8478 14.6162 13.4432V4.23584C14.6162 3.83184 14.4608 3.61384 14.1175 3.6445L3.99951 4.23584C3.62617 4.26717 3.50151 4.45384 3.50151 4.85784V4.8585ZM12.7795 5.94717C13.0595 5.91517 13.1215 5.63517 13.0595 5.35517L10.9115 5.4805C10.6002 5.51117 10.3515 5.75984 10.4135 6.1025L11.2235 6.19517V10.4885L8.04751 5.63584L5.7435 5.79117C5.30817 5.8225 5.15217 6.2265 5.21484 6.5065L5.99151 6.56917V12.6978L5.43151 12.8532C5.21351 12.9152 5.15151 13.2265 5.21351 13.3505L7.3615 13.2265C8.14017 13.2265 8.14017 12.6665 8.14017 12.6665L7.17484 12.4478V7.81317L10.2262 12.6038L10.2269 12.6047C10.5997 13.07 10.7245 13.2258 11.2228 13.2258C11.5342 13.2258 11.9075 13.1012 12.3128 12.8832V6.0405L12.7795 5.94717Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_5190\">\\n<rect width=\"16\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wowhyb\",\"data-framer-name\":\"Frame 4943\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"dbWOwPA4x\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.4\" y=\"0.4\" width=\"30.8957\" height=\"31.1993\" rx=\"7.6\" fill=\"white\"/>\\n<rect x=\"0.4\" y=\"0.4\" width=\"30.8957\" height=\"31.1993\" rx=\"7.6\" stroke=\"#E5EAFF\" stroke-width=\"0.8\"/>\\n<path d=\"M23.6953 16.1814C23.6953 15.6359 23.6507 15.0925 23.5574 14.5547H16.0059V17.6352H20.3305C20.1517 18.629 19.5747 19.5082 18.7316 20.0654V22.0667H21.3135C22.825 20.6768 23.6953 18.6174 23.6953 16.1814Z\" fill=\"#4285F4\"/>\\n<path d=\"M16.0047 24.0009C18.1651 24.0009 19.9855 23.2924 21.3123 22.0695L18.7305 20.0682C18.0116 20.5554 17.0868 20.833 16.0047 20.833C13.9163 20.833 12.1444 19.4258 11.5092 17.5312H8.85156V19.5926C10.2114 22.2966 12.9779 24.0009 16.0047 24.0009Z\" fill=\"#34A853\"/>\\n<path d=\"M11.512 17.5286C11.1759 16.5368 11.1759 15.4595 11.512 14.4657V12.4062H8.85245C7.71585 14.6675 7.71585 17.3306 8.85245 19.592L11.512 17.5286Z\" fill=\"#FBBC04\"/>\\n<path d=\"M16.0047 11.1682C17.1471 11.1507 18.2486 11.5798 19.0762 12.3678L21.3628 10.0851C19.9136 8.72642 17.9941 7.97907 16.0047 8.00045C12.9779 8.00045 10.2095 9.70656 8.85156 12.4086L11.5111 14.4699C12.1444 12.5735 13.9163 11.1682 16.0047 11.1682Z\" fill=\"#EA4335\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14j0orw\",\"data-framer-name\":\"Frame 4945\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:33,layoutDependency:layoutDependency,layoutId:\"ZTTWRENDt\",svg:'<svg width=\"33\" height=\"32\" viewBox=\"0 0 33 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"1.09531\" y=\"0.4\" width=\"31.2\" height=\"31.2\" rx=\"7.6\" fill=\"white\"/>\\n<rect x=\"1.09531\" y=\"0.4\" width=\"31.2\" height=\"31.2\" rx=\"7.6\" stroke=\"#E5EAFF\" stroke-width=\"0.8\"/>\\n<path d=\"M9.39062 8.69531H16.3471V15.6518H9.39062V8.69531Z\" fill=\"#F35325\"/>\\n<path d=\"M17.043 8.69531H23.9995V15.6518H17.043V8.69531Z\" fill=\"#81BC06\"/>\\n<path d=\"M9.39062 16.3477H16.3471V23.3042H9.39062V16.3477Z\" fill=\"#05A6F0\"/>\\n<path d=\"M17.043 16.3477H23.9995V23.3042H17.043V16.3477Z\" fill=\"#FFBA08\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iuykm8\",\"data-framer-name\":\"Frame 4938\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:63,layoutDependency:layoutDependency,layoutId:\"w51h1Nd7v\",svg:'<svg width=\"63\" height=\"32\" viewBox=\"0 0 63 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"1.09531\" y=\"0.4\" width=\"60.8291\" height=\"31.2\" rx=\"7.6\" fill=\"white\"/>\\n<rect x=\"1.09531\" y=\"0.4\" width=\"60.8291\" height=\"31.2\" rx=\"7.6\" stroke=\"#E5EAFF\" stroke-width=\"0.8\"/>\\n<g clip-path=\"url(#clip0_1460_5167)\">\\n<path d=\"M30.173 20.1568C30.173 20.7356 29.7209 21.2049 29.1632 21.2049H28.4728V20.3866H28.4482C28.3743 20.4974 28.2757 20.6125 28.1525 20.7317C28.049 20.8315 27.9256 20.9243 27.7822 21.0103L27.7336 21.0387C27.5776 21.1324 27.401 21.2091 27.2038 21.2688C27.0149 21.3285 26.8178 21.3582 26.6125 21.3582C26.169 21.3582 25.7665 21.2815 25.4051 21.1281C25.0437 20.9662 24.7316 20.7445 24.4688 20.4632C24.2142 20.1735 24.0171 19.8326 23.8774 19.4405C23.7378 19.0483 23.668 18.6179 23.668 18.1492C23.668 17.7145 23.7296 17.301 23.8528 16.9089C23.9842 16.5083 24.1649 16.1545 24.3949 15.8477C24.6205 15.557 24.8904 15.3237 25.2045 15.1477L25.2573 15.1189C25.594 14.9314 25.976 14.8377 26.403 14.8377C26.7891 14.8377 27.1464 14.9016 27.4749 15.0294C27.8117 15.1488 28.0868 15.3576 28.3003 15.656H28.325V12.5871C28.325 12.0083 28.7771 11.5391 29.3348 11.5391H30.173V20.1568ZM28.4728 18.0979C28.4728 17.6291 28.3414 17.2499 28.0786 16.96C27.824 16.6702 27.4626 16.5253 26.9944 16.5253C26.5262 16.5253 26.1608 16.6702 25.8979 16.96C25.6433 17.2499 25.516 17.6291 25.516 18.0979C25.516 18.5668 25.6433 18.9461 25.8979 19.2358C26.1608 19.5257 26.5262 19.6706 26.9944 19.6706C27.4626 19.6706 27.824 19.5257 28.0786 19.2358C28.3414 18.9461 28.4728 18.5668 28.4728 18.0979ZM31.3687 16.039C31.3687 15.4603 31.8208 14.9911 32.3785 14.9911H33.2167V15.9883H33.2413C33.4299 15.6215 33.6522 15.3443 33.9084 15.1567L33.9436 15.1317C34.2146 14.9357 34.5554 14.8377 34.9661 14.8377C35.0729 14.8377 35.1796 14.8419 35.2865 14.8505C35.3932 14.859 35.4918 14.876 35.5821 14.9016V16.6532C35.4507 16.6106 35.3193 16.5807 35.1879 16.5636C35.0647 16.538 34.9332 16.5252 34.7937 16.5252C34.4404 16.5252 34.1612 16.5764 33.9559 16.6787C33.7505 16.781 33.5903 16.9259 33.4754 17.1134C33.3686 17.2924 33.2988 17.5097 33.266 17.7654C33.233 18.0213 33.2167 18.3024 33.2167 18.6093V20.1567C33.2167 20.7356 32.7646 21.2048 32.2068 21.2048H31.3687V16.039ZM40.0644 20.4251H40.0398C39.8345 20.7575 39.5593 20.9961 39.2144 21.1411C38.8777 21.2859 38.5204 21.3583 38.1425 21.3583C37.8848 21.3583 37.634 21.3221 37.3902 21.2495L37.3294 21.2306C37.0748 21.1539 36.8489 21.0345 36.6518 20.8726C36.4546 20.7106 36.2986 20.5103 36.1836 20.2716C36.0687 20.0329 36.0111 19.7559 36.0111 19.4406C36.0111 19.0826 36.0727 18.7799 36.1959 18.5328C36.3274 18.2856 36.4999 18.081 36.7134 17.9191C36.9351 17.7571 37.1857 17.6335 37.4649 17.5483C37.7442 17.4546 38.0316 17.3863 38.3273 17.3437C38.6313 17.3011 38.931 17.2756 39.2267 17.267L39.4257 17.2619C39.6535 17.2568 39.8664 17.2543 40.0644 17.2543C40.0644 16.9254 39.9537 16.664 39.7322 16.47L39.7072 16.4487C39.4772 16.2441 39.202 16.1418 38.8817 16.1418C38.5778 16.1418 38.2986 16.2101 38.0439 16.3464C37.7975 16.4744 37.5758 16.6534 37.3787 16.8834L36.393 15.835C36.723 15.5171 37.1056 15.2771 37.5408 15.1151L37.6004 15.0935C38.0604 14.923 38.5367 14.8378 39.0296 14.8378C39.5716 14.8378 40.0152 14.9102 40.3601 15.0551C40.7134 15.1915 40.9926 15.3961 41.1979 15.6688C41.4115 15.9416 41.5593 16.2783 41.6414 16.6788C41.7236 17.071 41.7646 17.527 41.7646 18.0469V20.157C41.7646 20.7357 41.3125 21.205 40.7548 21.205H40.0644V20.4251ZM40.0644 18.4816H39.6086L39.5416 18.4822C39.4138 18.4844 39.2596 18.4928 39.0788 18.5072C38.8735 18.5157 38.6723 18.5498 38.4751 18.6094C38.2863 18.6692 38.122 18.7587 37.9823 18.8779C37.851 18.9973 37.7852 19.1635 37.7852 19.3767C37.7852 19.6068 37.8797 19.7772 38.0686 19.888C38.2575 19.9989 38.4546 20.0542 38.6599 20.0542C38.8407 20.0542 39.0132 20.0286 39.1774 19.9775C39.3499 19.9263 39.5019 19.8539 39.6332 19.7601C39.7546 19.6737 39.8514 19.5653 39.9237 19.4351L39.9412 19.4021C40.0234 19.2573 40.0644 19.0868 40.0644 18.8908V18.4816ZM43.0475 16.039C43.0475 15.4603 43.4996 14.9911 44.0574 14.9911H44.8216V15.8349H44.8463C44.9037 15.7156 44.9858 15.5963 45.0927 15.4769C45.1994 15.3576 45.3268 15.2511 45.4746 15.1573C45.6224 15.0635 45.7908 14.9868 45.9797 14.9272C46.1686 14.8675 46.374 14.8377 46.5957 14.8377C47.0452 14.8377 47.4113 14.9084 47.6942 15.0498L47.7292 15.0678C48.0022 15.2055 48.216 15.397 48.3706 15.6423L48.3945 15.6815C48.5587 15.9458 48.6695 16.2568 48.7271 16.6148C48.7846 16.9728 48.8134 17.3607 48.8134 17.7784V20.1568C48.8134 20.7356 48.3612 21.2049 47.8035 21.2049H46.9653V18.1618C46.9653 17.9828 46.9571 17.7997 46.9407 17.6121C46.9324 17.4161 46.8955 17.2371 46.8298 17.0752C46.7722 16.9132 46.6778 16.781 46.5464 16.6787C46.4232 16.5764 46.2425 16.5253 46.0044 16.5253C45.7802 16.5253 45.596 16.5669 45.4519 16.6499L45.4253 16.6659C45.2775 16.7512 45.1625 16.8705 45.0804 17.0239C45.0064 17.1689 44.9572 17.3351 44.9325 17.5226C44.9079 17.7102 44.8955 17.9061 44.8955 18.1107V20.1568C44.8955 20.7356 44.4434 21.2049 43.8857 21.2049H43.0475V16.039ZM54.3235 15.4773C54.3235 16.0561 53.8714 16.5252 53.3136 16.5252H52.6972V18.5966C52.6972 18.767 52.7055 18.9247 52.7219 19.0696C52.7383 19.206 52.7753 19.3253 52.8327 19.4276C52.8903 19.5298 52.9765 19.6108 53.0915 19.6706C53.2147 19.7217 53.3748 19.7472 53.572 19.7472C53.6705 19.7472 53.7979 19.7387 53.9539 19.7216C54.1182 19.696 54.2414 19.645 54.3235 19.5683V20.4826C54.3235 20.8929 54.0759 21.2745 53.6828 21.3198C53.4611 21.3454 53.2434 21.3582 53.0299 21.3582C52.7178 21.3582 52.4303 21.3241 52.1675 21.2559C51.9047 21.1878 51.6747 21.0812 51.4775 20.9363C51.2804 20.7829 51.1244 20.5868 51.0094 20.3481C50.9026 20.1095 50.8492 19.8197 50.8492 19.4788V16.5252H49.6665V16.039C49.6665 15.4602 50.1187 14.991 50.6763 14.991H50.8492V14.1979C50.8492 13.6191 51.3014 13.1499 51.859 13.1499H52.6972V14.991H54.3235V15.4773Z\" fill=\"#DC244C\"/>\\n<path d=\"M19.1752 22.6813L18.8683 13.9008L18.3125 11.5859L22.0222 11.9935V22.6149L19.7561 23.9721L19.1752 22.6813Z\" fill=\"#24386C\"/>\\n<path d=\"M22.0234 11.9928L19.7573 13.351L15.0809 12.2865L9.60726 14.5993L8.69531 11.9928L12.0268 9.99642L15.3593 8L18.6909 9.99642L22.0234 11.9928Z\" fill=\"#7589BE\"/>\\n<path d=\"M8.69531 11.9923L10.9614 13.3505L12.275 17.4047L16.7104 21.0876L15.3594 23.9708L12.0269 21.9743L8.69531 19.9779V11.9922\" fill=\"#B2BFE8\"/>\\n<path d=\"M16.8617 18.9609L15.3594 21.2594V23.9747L17.4912 22.6983L18.5896 20.9961\" fill=\"#24386C\"/>\\n<path d=\"M15.3612 18.5432L13.2285 14.7112L13.6879 13.4412L15.4342 12.5625L17.4921 14.7113L15.3612 18.5432Z\" fill=\"#7589BE\"/>\\n<path d=\"M13.2278 14.7109L15.3596 15.9874V18.5424L13.3879 18.6304L12.1953 17.0501L13.2278 14.7109\" fill=\"#B2BFE8\"/>\\n<path d=\"M15.3594 15.9873L17.4912 14.7109L18.942 17.2179L17.1863 18.7234L15.3594 18.5424V15.9873Z\" fill=\"#24386C\"/>\\n<path d=\"M17.4906 22.6933L19.7567 23.9698V13.3495L17.5573 12.0322L15.3588 10.7148L13.1594 12.0322L10.9609 13.3495V18.6197L13.1594 19.9371L15.3588 21.2545L17.4906 19.9769V22.6933ZM17.4906 17.2615L15.3588 18.539L13.227 17.2615V14.7076L15.3588 13.4301L17.4906 14.7076V17.2615Z\" fill=\"#DC244C\"/>\\n<path d=\"M15.3609 21.2558V18.54L13.2402 17.2734V19.9847L15.3609 21.2558Z\" fill=\"url(#paint0_linear_1460_5167)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_1460_5167\" x1=\"186.207\" y1=\"195.851\" x2=\"-25.1137\" y2=\"195.851\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3364\"/>\\n<stop offset=\"1\" stop-color=\"#C91540\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_1460_5167\">\\n<rect width=\"45.6291\" height=\"16\" fill=\"white\" transform=\"translate(8.69531 8)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3hexhd\",\"data-border\":true,\"data-framer-name\":\"Frame 4941\",layoutDependency:layoutDependency,layoutId:\"bCByL0tmz\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:165,pixelWidth:400,src:\"https://framerusercontent.com/images/iJHLloCLDWCX0B4LdCp4638HpE.png\"},className:\"framer-1e9f2jm\",\"data-framer-name\":\"image 40\",layoutDependency:layoutDependency,layoutId:\"zshl610ZQ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d2mwv9\",\"data-border\":true,\"data-framer-name\":\"Frame 4942\",layoutDependency:layoutDependency,layoutId:\"nHecGNxcT\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:152,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/K0Lcbp1Yt59aggkxQpXqGv2fTI.png\"},className:\"framer-40ds9x\",\"data-framer-name\":\"image 41\",layoutDependency:layoutDependency,layoutId:\"iikNUcveU\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-alz09k\",\"data-framer-name\":\"Frame 4944\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:87,layoutDependency:layoutDependency,layoutId:\"fELLGSsNT\",svg:'<svg width=\"87\" height=\"32\" viewBox=\"0 0 87 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.511328\" y=\"0.4\" width=\"85.4222\" height=\"31.2\" rx=\"7.6\" fill=\"white\"/>\\n<rect x=\"0.511328\" y=\"0.4\" width=\"85.4222\" height=\"31.2\" rx=\"7.6\" stroke=\"#E5EAFF\" stroke-width=\"0.8\"/>\\n<g clip-path=\"url(#clip0_1460_5185)\">\\n<path d=\"M13.4719 10.337C16.6124 7.22099 21.705 7.22099 24.8455 10.337C27.991 13.4531 27.991 18.5052 24.8455 21.6161C21.705 24.7271 16.6124 24.7271 13.4719 21.611L8.3389 16.5181C8.03547 16.2167 8.03547 15.7314 8.3389 15.43L13.4719 10.337ZM23.6267 11.8338C21.3206 9.54526 17.5783 9.54526 15.2723 11.8338L11.4996 15.573C11.2771 15.7978 11.2771 16.1554 11.4996 16.375L15.2773 20.1194C17.5834 22.4079 21.3257 22.4079 23.6318 20.1194C25.9379 17.8309 25.9379 14.1223 23.6267 11.8338ZM19.4796 11.9819C21.6666 11.9819 23.4394 13.7727 23.4394 15.9817C23.4394 18.1907 21.6666 19.9815 19.4796 19.9815C17.2927 19.9815 15.5199 18.1907 15.5199 15.9817C15.5199 13.7727 17.2927 11.9819 19.4796 11.9819ZM31.5714 15.435L29.3109 13.1517C29.1743 13.0137 28.9467 13.1414 28.9923 13.3304C29.3817 15.0724 29.3817 16.8909 28.9923 18.6329C28.9518 18.8218 29.1794 18.9444 29.3109 18.8116L31.5714 16.5282C31.8522 16.2398 31.8687 15.7929 31.621 15.4901L31.5714 15.435Z\" fill=\"#4FC4F9\"/>\\n<path d=\"M36.3066 15.2741C36.3066 14.8486 36.3792 14.4819 36.5245 14.1739C36.6697 13.8658 36.8729 13.6018 37.1344 13.3817C37.3957 13.1617 37.7007 13.0003 38.0492 12.8976C38.3978 12.795 38.7899 12.7363 39.1966 12.7363C39.7048 12.7363 40.155 12.8243 40.5616 13.0003C40.9537 13.1764 41.2877 13.4111 41.5346 13.7191C41.7815 13.4111 42.101 13.1764 42.4931 13.0003C42.8852 12.8243 43.3354 12.7363 43.8436 12.7363C44.2503 12.7363 44.6278 12.795 44.9764 12.8976C45.3249 13.0003 45.6299 13.1617 45.8913 13.3817C46.1526 13.6018 46.356 13.8658 46.5012 14.1739C46.6464 14.4819 46.7191 14.8486 46.7191 15.2741V19.4694H44.6714V15.8608C44.6714 15.4207 44.5843 15.1127 44.41 14.922C44.2358 14.7313 43.9889 14.6433 43.6549 14.6433C43.3209 14.6433 43.0594 14.7606 42.8416 14.9806C42.6383 15.2007 42.5366 15.5527 42.5366 16.0515V19.484H40.489V16.0515C40.489 15.5674 40.3874 15.2154 40.184 14.9806C39.9807 14.7606 39.7193 14.6433 39.3853 14.6433C39.0658 14.6433 38.8045 14.7313 38.6302 14.922C38.4413 15.1127 38.3542 15.4207 38.3542 15.8608V19.4694H36.3066V15.2741ZM48.4182 11.1667C48.4182 10.844 48.5199 10.5652 48.7377 10.3452C48.9556 10.1252 49.2169 10.0078 49.551 10.0078C49.8704 10.0078 50.1464 10.1252 50.3642 10.3452C50.5821 10.5652 50.6982 10.844 50.6982 11.1667C50.6982 11.4894 50.5821 11.7681 50.3642 11.9881C50.1464 12.2082 49.8704 12.3109 49.551 12.3109C49.2315 12.3109 48.9556 12.2082 48.7377 11.9881C48.5344 11.7534 48.4182 11.4894 48.4182 11.1667ZM48.5344 13.8364C48.5344 13.4991 48.636 13.2643 48.8248 13.1323C49.0136 13.0003 49.275 12.927 49.5945 12.927C49.8269 12.927 50.0302 12.9563 50.219 13.015L50.4495 13.0828C50.5094 13.0993 50.553 13.1103 50.5821 13.1176V19.484H48.5344V13.8364ZM52.4698 10.9173C52.4698 10.5799 52.5714 10.3452 52.7602 10.2132C52.949 10.0812 53.2104 10.0078 53.5299 10.0078C53.7623 10.0078 53.9656 10.0372 54.1544 10.0958L54.3369 10.1502C54.4221 10.1744 54.4811 10.1893 54.5174 10.1985V19.4694H52.4698V10.9173ZM58.2639 19.4694C58.0025 18.9999 57.7411 18.5159 57.4943 18.0171L57.1368 17.2928C57.0606 17.1376 56.9868 16.9864 56.916 16.8398L56.6651 16.3135C56.5241 16.013 56.4016 15.7434 56.3034 15.5234L56.1676 15.2091C56.1101 15.0792 56.0682 14.9894 56.042 14.9366C55.9875 14.8046 55.9331 14.6643 55.8786 14.5158L55.8242 14.3645C55.7374 14.1445 55.7079 13.9538 55.7079 13.7924C55.7079 13.5577 55.7952 13.3524 55.9694 13.1763C56.144 13.015 56.3907 12.927 56.7394 12.927C57.0151 12.927 57.2329 12.9563 57.4075 13.015L57.6646 13.1037C57.6796 13.1094 57.6905 13.114 57.6979 13.1176C57.8431 13.5431 57.9883 13.9685 58.1624 14.3939C58.2583 14.6491 58.3541 14.8938 58.4467 15.1279L58.6269 15.582C58.7726 15.9488 58.9031 16.2715 59.0335 16.5502L59.1521 16.8274C59.2111 16.9617 59.2588 17.0636 59.295 17.137L59.3419 17.0352C59.3839 16.9389 59.4344 16.814 59.5006 16.6605L59.5422 16.5649C59.6352 16.3537 59.7279 16.1143 59.8283 15.8617L60.6311 13.8511L60.7131 13.6622C60.7267 13.632 60.7408 13.6022 60.756 13.5726L60.8057 13.4844C60.8636 13.3671 60.9509 13.279 61.0377 13.191C61.125 13.103 61.2413 13.0443 61.3575 13.0003C61.488 12.9563 61.6479 12.9416 61.822 12.9416C61.9613 12.9416 62.0821 12.951 62.1992 12.9773L62.2865 13.0003C62.4175 13.0296 62.548 13.0736 62.65 13.1176L62.764 13.1695C62.8166 13.1945 62.862 13.2174 62.8967 13.235C62.9546 13.279 62.9982 13.2937 63.0129 13.3084C62.984 13.4697 62.8967 13.6897 62.7662 14.0125L62.4585 14.7517C62.4131 14.8594 62.3657 14.9702 62.3159 15.0833L62.0997 15.5717C61.9882 15.822 61.8716 16.0808 61.7494 16.3449L61.2981 17.3102L61.154 17.621C60.9651 18.0318 60.7763 18.3985 60.6021 18.7359L60.4797 18.9665C60.3653 19.1852 60.2753 19.3667 60.2102 19.4987H58.2639V19.4694ZM66.1208 16.4182C66.1208 17.313 66.5127 17.7531 67.3117 17.7531C68.1102 17.7531 68.5026 17.313 68.5026 16.4182V13.8365C68.5026 13.4991 68.6042 13.2643 68.793 13.1323C68.9818 13.0003 69.2428 12.927 69.5626 12.927C69.7951 12.927 69.9982 12.9563 70.187 13.015L70.4176 13.0828C70.4775 13.0993 70.521 13.1103 70.55 13.1176V16.7996C70.55 17.2837 70.4627 17.6944 70.3032 18.0465C70.1433 18.3985 69.9109 18.6919 69.6205 18.9266C69.3301 19.1613 68.9961 19.3374 68.5894 19.4547C68.1975 19.572 67.762 19.6307 67.3117 19.6307C66.8467 19.6307 66.4258 19.572 66.0335 19.4547C65.6415 19.3374 65.2928 19.1613 65.0024 18.9266C64.712 18.6919 64.4943 18.3985 64.3201 18.0465C64.1602 17.6944 64.0729 17.269 64.0729 16.7996V13.8365C64.0729 13.4991 64.1749 13.2643 64.3638 13.1323C64.5521 13.0003 64.8136 12.927 65.1334 12.927C65.3654 12.927 65.5689 12.9563 65.7578 13.015L65.9884 13.0828C66.0483 13.0993 66.0918 13.1103 66.1208 13.1176V16.4182ZM72.6267 17.4744C72.6993 17.533 72.8009 17.5917 72.9608 17.6651C73.1207 17.7385 73.3095 17.8118 73.5273 17.8705C73.7451 17.9291 73.9918 17.9878 74.268 18.0318C74.5436 18.0758 74.834 18.1052 75.1391 18.1052C75.4878 18.1052 75.7493 18.0758 75.9234 18.0025C76.0975 17.9438 76.1848 17.8265 76.1848 17.6651C76.1848 17.489 76.1122 17.3717 75.967 17.313C75.8219 17.2544 75.5894 17.1957 75.27 17.1517L74.602 17.0783C74.268 17.0343 73.9482 16.9756 73.6435 16.8876C73.3385 16.7996 73.0623 16.6823 72.8303 16.5209C72.5978 16.3595 72.409 16.1542 72.2785 15.9048C72.1475 15.6554 72.0749 15.3474 72.0749 14.966C72.0749 14.6433 72.1328 14.3499 72.2491 14.0858C72.3653 13.8218 72.5394 13.5871 72.7866 13.3817C73.0025 13.202 73.274 13.056 73.5915 12.9536L73.7304 12.9123C74.1081 12.795 74.5726 12.7363 75.0954 12.7363C75.633 12.7363 76.0833 12.7656 76.4752 12.839C76.8671 12.9123 77.1869 13.015 77.4773 13.1617C77.6372 13.2497 77.7677 13.3524 77.8692 13.4697C77.9712 13.5871 78.0144 13.7485 78.0144 13.9245C78.0144 14.0565 77.9855 14.1885 77.9276 14.2912C77.8692 14.3939 77.8113 14.4966 77.7387 14.5699C77.6843 14.6249 77.6298 14.6717 77.5814 14.7102L77.5352 14.746C77.4773 14.79 77.4336 14.8193 77.4189 14.8193C77.39 14.79 77.3174 14.746 77.2159 14.6726C77.0996 14.5992 76.9544 14.5406 76.7514 14.4672C76.5625 14.4086 76.33 14.3499 76.0686 14.2912C75.8071 14.2325 75.5021 14.2179 75.1538 14.2179C74.7761 14.2179 74.5 14.2619 74.3548 14.3499C74.2096 14.4379 74.137 14.5552 74.137 14.7019C74.137 14.8486 74.2096 14.9513 74.3405 15.01C74.471 15.0686 74.6746 15.1273 74.9503 15.1714L76.1122 15.3327C76.4026 15.3767 76.6783 15.4354 76.9397 15.5234C77.2012 15.6114 77.4484 15.7288 77.6514 15.8755C77.855 16.0368 78.0291 16.2275 78.1454 16.4622C78.2616 16.6969 78.3342 16.9903 78.3342 17.3424C78.3342 18.0611 78.0581 18.6186 77.521 19.0293C76.9834 19.4254 76.2285 19.6308 75.27 19.6308C74.7761 19.6308 74.3258 19.6014 73.9339 19.528C73.5415 19.4547 73.2222 19.3814 72.9318 19.2934C72.6557 19.2054 72.4237 19.1027 72.2491 19.0146L71.8861 18.7946L72.6267 17.4744Z\" fill=\"#4FC4F9\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_5185\">\\n<rect width=\"70.2222\" height=\"16\" fill=\"white\" transform=\"translate(8.11133 8)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pzc8sj\",\"data-framer-name\":\"Set 2\",layoutDependency:layoutDependency,layoutId:\"uNvsN1RlT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19bd6r4\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"C8cIHsZ43\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1294ljt\",\"data-framer-name\":\"Symbol\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"PNFBdhtbW\",svg:'<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73659)\">\\n<path d=\"M14.9326 7.5199C15.2926 6.4199 15.1726 5.1999 14.5926 4.1999C13.7126 2.6599 11.9326 1.8799 10.1926 2.2399C9.43255 1.3799 8.31255 0.899902 7.15255 0.899902C5.37255 0.899902 3.81255 2.0399 3.25255 3.7199C2.11255 3.9599 1.13255 4.6599 0.552551 5.6799C-0.327449 7.2199 -0.127449 9.1399 1.05255 10.4599C0.692551 11.5799 0.832551 12.7799 1.41255 13.7799C2.29255 15.3199 4.07255 16.1199 5.81255 15.7399C6.59255 16.5999 7.69255 17.0999 8.85255 17.0999C10.6326 17.0999 12.1926 15.9599 12.7526 14.2799C13.8926 14.0399 14.8726 13.3399 15.4526 12.3199C16.3326 10.7799 16.1326 8.8399 14.9326 7.5199ZM8.85255 16.0399C8.13255 16.0399 7.45255 15.7999 6.91255 15.3399C6.93255 15.3199 6.99255 15.2999 7.01255 15.2799L10.2326 13.4199C10.3926 13.3199 10.4926 13.1599 10.4926 12.9599V8.4199L11.8526 9.1999C11.8726 9.1999 11.8726 9.2199 11.8726 9.2399V12.9999C11.8926 14.6799 10.5326 16.0399 8.85255 16.0399ZM2.33255 13.2599C1.97255 12.6399 1.85255 11.9199 1.97255 11.2199C1.99255 11.2399 2.03255 11.2599 2.07255 11.2799L5.29255 13.1399C5.45255 13.2399 5.65255 13.2399 5.81255 13.1399L9.75255 10.8599V12.4399C9.75255 12.4599 9.75255 12.4799 9.73255 12.4799L6.47255 14.3599C5.03255 15.1999 3.17255 14.6999 2.33255 13.2599ZM1.49255 6.2199C1.85255 5.5999 2.41255 5.1399 3.07255 4.8799V8.7199C3.07255 8.8999 3.17255 9.0799 3.33255 9.1799L7.27255 11.4599L5.91255 12.2399C5.89255 12.2399 5.87255 12.2599 5.87255 12.2399L2.61255 10.3599C1.13255 9.5199 0.652551 7.6599 1.49255 6.2199ZM12.6926 8.8199L8.75255 6.5399L10.1126 5.7599C10.1326 5.7599 10.1526 5.7399 10.1526 5.7599L13.4126 7.6399C14.8726 8.4799 15.3526 10.3399 14.5126 11.7799C14.1526 12.3999 13.5926 12.8599 12.9326 13.0999V9.2799C12.9526 9.0999 12.8526 8.9199 12.6926 8.8199ZM14.0326 6.7799C14.0126 6.7599 13.9726 6.7399 13.9326 6.7199L10.7126 4.8599C10.5526 4.7599 10.3526 4.7599 10.1926 4.8599L6.25255 7.1399V5.5599C6.25255 5.5399 6.25255 5.5199 6.27255 5.5199L9.53255 3.6399C10.9926 2.7999 12.8326 3.2999 13.6726 4.7599C14.0326 5.3599 14.1526 6.0799 14.0326 6.7799ZM5.51255 9.5799L4.15255 8.7999C4.13255 8.7999 4.13255 8.7799 4.13255 8.7599V4.9999C4.13255 3.3199 5.49255 1.9599 7.17255 1.9599C7.89255 1.9599 8.57255 2.1999 9.11255 2.6599C9.09255 2.6799 9.05255 2.6999 9.01255 2.7199L5.79255 4.5799C5.63255 4.6799 5.53255 4.8399 5.53255 5.0399V9.5799H5.51255ZM6.25255 7.9799L8.01255 6.9599L9.77255 7.9799V9.9999L8.01255 11.0199L6.25255 9.9999V7.9799Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73659\">\\n<rect width=\"15.98\" height=\"16.2\" fill=\"white\" transform=\"translate(0.0117188 0.899902)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g3wzb4\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"FV_CX9YeW\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2ikyf9\",\"data-framer-name\":\"ollama-seeklogo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"dMN3wly8W\",svg:'<svg width=\"12\" height=\"16\" viewBox=\"0 0 12 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73663)\">\\n<path d=\"M2.6123 0.00449542C2.46427 0.0286138 2.28663 0.106711 2.16137 0.203185C1.78219 0.493754 1.4884 1.1105 1.36428 1.87884C1.31759 2.16941 1.28571 2.57253 1.28571 2.88034C1.28571 3.24326 1.32784 3.70724 1.38819 4.02767C1.40185 4.09889 1.40869 4.16206 1.40299 4.16665C1.39844 4.17124 1.34264 4.21718 1.28001 4.26771C1.06593 4.43998 0.821107 4.70529 0.652577 4.94763C0.329181 5.41047 0.119657 5.93649 0.0319752 6.50614C-0.00218634 6.73124 -0.0112961 7.18604 0.0160332 7.41115C0.0763852 7.93027 0.231251 8.36899 0.496572 8.77098L0.583115 8.90076L0.558063 8.94325C0.380422 9.24416 0.228973 9.67944 0.158373 10.0975C0.102576 10.4283 0.0957435 10.5167 0.0957435 10.96C0.0957435 11.4068 0.101437 11.4952 0.153818 11.8042C0.216448 12.174 0.343984 12.5656 0.486323 12.8263C0.533012 12.9113 0.646884 13.0882 0.660548 13.0974C0.665103 13.0997 0.651438 13.1421 0.629803 13.1915C0.465827 13.5533 0.325765 14.0345 0.267689 14.44C0.226696 14.7179 0.221002 14.8075 0.221002 15.1003C0.221002 15.4736 0.241499 15.6551 0.318933 15.9525L0.33032 15.9962H0.81769H1.3062L1.27432 15.9353C1.07732 15.5678 1.0591 14.8856 1.22877 14.2045C1.3062 13.8898 1.39388 13.659 1.55786 13.3408L1.65579 13.1479V13.0296C1.65579 12.9193 1.65351 12.9067 1.61821 12.8344C1.59088 12.7792 1.55444 12.7321 1.48953 12.6678C1.37908 12.5599 1.29937 12.4462 1.2356 12.306C0.955477 11.6927 0.900817 10.782 1.09782 10.0056C1.1798 9.68172 1.31531 9.39346 1.45765 9.23612C1.55444 9.12815 1.60454 9.00757 1.60454 8.88238C1.60454 8.7526 1.559 8.64579 1.45651 8.53439C1.16272 8.21741 0.981667 7.83149 0.916759 7.38245C0.824523 6.74273 0.991915 6.04558 1.37225 5.49317C1.74461 4.95106 2.26728 4.60307 2.85145 4.51005C2.98239 4.48823 3.22722 4.49167 3.36386 4.51695C3.51305 4.54336 3.60641 4.53531 3.70207 4.48937C3.8205 4.43311 3.87972 4.36304 3.94917 4.20225C4.01066 4.0587 4.05849 3.98059 4.18716 3.81866C4.34203 3.62456 4.4912 3.49248 4.73032 3.33283C5.00363 3.15253 5.3145 3.0216 5.62423 2.95843C5.73695 2.93546 5.78933 2.93201 6 2.93201C6.21067 2.93201 6.26305 2.93546 6.37577 2.95843C6.83012 3.05147 7.28107 3.28806 7.6409 3.6234C7.71832 3.69576 7.90393 3.92776 7.96315 4.02424C7.98593 4.06213 8.02579 4.14254 8.05083 4.20225C8.12029 4.36304 8.1795 4.43311 8.29793 4.48937C8.39017 4.53416 8.48695 4.54336 8.63043 4.51923C8.85704 4.48019 9.03126 4.48364 9.25332 4.52957C10.0094 4.68347 10.6676 5.3117 10.9591 6.15356C11.2131 6.89203 11.1413 7.66497 10.7633 8.25529C10.6995 8.35522 10.6357 8.43562 10.5435 8.53439C10.3442 8.74915 10.3442 9.01561 10.5424 9.23612C10.868 9.5956 11.0719 10.4799 11.0104 11.2598C10.9694 11.7743 10.8384 12.2348 10.6585 12.4956C10.6266 12.5415 10.5606 12.6196 10.5105 12.6678C10.4456 12.7321 10.4091 12.7792 10.3818 12.8344C10.3465 12.9067 10.3442 12.9193 10.3442 13.0296V13.1479L10.4421 13.3408C10.6061 13.659 10.6938 13.8898 10.7712 14.2045C10.9386 14.8764 10.9238 15.5448 10.7325 15.925C10.7166 15.9571 10.7029 15.987 10.7029 15.9904C10.7029 15.9939 10.9204 15.9962 11.1869 15.9962H11.6697L11.6822 15.9468C11.689 15.9204 11.7004 15.8802 11.7061 15.8572C11.7187 15.8067 11.7437 15.6574 11.7642 15.5138C11.7836 15.3691 11.7836 14.8362 11.7642 14.6754C11.6913 14.092 11.5695 13.6291 11.3702 13.1915C11.3486 13.1421 11.3349 13.0997 11.3394 13.0974C11.3451 13.0939 11.377 13.048 11.4112 12.9963C11.6594 12.6173 11.812 12.1407 11.8895 11.5113C11.9099 11.3379 11.9099 10.5925 11.8895 10.4259C11.8348 9.99642 11.7688 9.70469 11.6594 9.40954C11.6139 9.28665 11.4932 9.02709 11.4419 8.94325L11.4169 8.90076L11.5034 8.77098C11.7688 8.36899 11.9236 7.93027 11.984 7.41115C12.0113 7.18604 12.0022 6.73124 11.968 6.50614C11.8792 5.93533 11.6708 5.41162 11.3474 4.94763C11.1789 4.70529 10.9341 4.43998 10.72 4.26771C10.6574 4.21718 10.6016 4.17124 10.597 4.16665C10.5913 4.16206 10.5982 4.09889 10.6118 4.02767C10.7496 3.30297 10.745 2.39912 10.6004 1.69279C10.4752 1.07719 10.2474 0.587931 9.95363 0.305402C9.71905 0.0802959 9.47993 -0.0161779 9.19297 0.00219811C8.53479 0.0412469 8.00415 0.804997 7.79461 2.00862C7.76045 2.20272 7.73086 2.43013 7.73086 2.49214C7.73086 2.51625 7.72629 2.53578 7.72061 2.53578C7.7149 2.53578 7.67051 2.51281 7.62268 2.4841C7.11481 2.18089 6.54999 2.01896 6 2.01896C5.45001 2.01896 4.88519 2.18089 4.37733 2.4841C4.32949 2.51281 4.2851 2.53578 4.27939 2.53578C4.27371 2.53578 4.26914 2.51625 4.26914 2.49214C4.26914 2.42782 4.2384 2.19354 4.20539 2.00862C4.01521 0.927886 3.57908 0.212373 2.99948 0.0320587C2.91977 0.0079403 2.69316 -0.00813804 2.6123 0.00449542ZM2.8059 0.939373C2.96987 1.0703 3.15206 1.44471 3.25683 1.86391C3.27619 1.93971 3.29668 2.027 3.30238 2.05915C3.30693 2.09017 3.31945 2.16023 3.3297 2.2142C3.37412 2.45769 3.39461 2.72069 3.39689 3.04112L3.39803 3.35697L3.31945 3.4741L3.24089 3.59239H3.05755C2.84348 3.59239 2.63053 3.61997 2.42669 3.67509C2.35382 3.69347 2.28321 3.71185 2.26956 3.7153C2.24792 3.71989 2.2445 3.71299 2.23198 3.61881C2.16479 3.10773 2.16821 2.54153 2.24224 2.07063C2.32421 1.54578 2.51552 1.0703 2.70227 0.930185C2.74668 0.896877 2.75465 0.898026 2.8059 0.939373ZM9.29887 0.931332C9.4116 1.01517 9.53573 1.23798 9.62796 1.52281C9.81357 2.09246 9.86595 2.87459 9.76802 3.61881C9.7555 3.71299 9.75208 3.71989 9.73044 3.7153C9.71679 3.71185 9.64618 3.69347 9.57331 3.67509C9.36947 3.61997 9.15652 3.59239 8.94245 3.59239H8.75911L8.68055 3.4741L8.60198 3.35697L8.60311 3.04112C8.60539 2.5955 8.64639 2.24751 8.7443 1.86047C8.84794 1.44471 9.03126 1.0703 9.1941 0.939373C9.24535 0.898026 9.25332 0.896877 9.29887 0.931332Z\" fill=\"black\"/>\\n<path d=\"M5.82644 6.71168C5.57933 6.73582 5.51216 6.745 5.39372 6.76913C5.20127 6.80931 4.94392 6.89891 4.76515 6.98734C4.14341 7.29398 3.71526 7.80506 3.5843 8.39654C3.55811 8.51369 3.55469 8.55273 3.55469 8.75028C3.55469 8.94552 3.55811 8.98801 3.58316 9.09941C3.75739 9.87236 4.46338 10.4432 5.37664 10.5477C5.57477 10.5695 6.4311 10.5695 6.62923 10.5477C7.36257 10.4638 7.99342 10.063 8.27697 9.50024C8.35211 9.34979 8.38855 9.25216 8.42271 9.09941C8.44777 8.98801 8.45119 8.94552 8.45119 8.75028C8.45119 8.55273 8.44777 8.51369 8.42158 8.39654C8.2314 7.53746 7.4047 6.86101 6.39124 6.73237C6.25915 6.71629 5.91298 6.7025 5.82644 6.71168ZM6.25231 7.33647C6.59052 7.37323 6.931 7.49497 7.20428 7.67873C7.35118 7.7775 7.55843 7.98423 7.64724 8.11976C7.75656 8.28742 7.81918 8.45855 7.84766 8.66644C7.86018 8.76176 7.85336 8.83412 7.81918 8.98801C7.76567 9.21771 7.59941 9.45775 7.37509 9.62543C7.27032 9.70237 7.05284 9.81379 6.91961 9.85743C6.66681 9.93896 6.50169 9.95389 5.91183 9.9493C5.52696 9.94586 5.45862 9.94241 5.34817 9.92174C4.97126 9.85053 4.67292 9.69893 4.45656 9.46809C4.28119 9.28203 4.20148 9.11206 4.15822 8.83757C4.13886 8.71007 4.17529 8.49876 4.24931 8.32073C4.33928 8.10367 4.57157 7.83378 4.80159 7.67873C5.06804 7.49956 5.41877 7.37209 5.74103 7.33763C5.86515 7.32384 6.12819 7.32384 6.25231 7.33647Z\" fill=\"black\"/>\\n<path d=\"M5.56553 8.17483C5.47898 8.22191 5.41863 8.34135 5.43685 8.42978C5.45734 8.5251 5.54047 8.62159 5.67027 8.70084C5.73975 8.74333 5.7443 8.74906 5.74772 8.79156C5.74998 8.81683 5.74088 8.88919 5.72836 8.9535C5.71469 9.01666 5.70444 9.08328 5.70444 9.10166C5.70559 9.15105 5.75113 9.23144 5.79895 9.27049C5.8411 9.30494 5.84907 9.30609 5.96749 9.30953C6.07567 9.31298 6.09845 9.31068 6.14171 9.29001C6.25331 9.23487 6.28177 9.13381 6.24078 8.93971C6.20661 8.77779 6.21345 8.75251 6.29886 8.70312C6.38881 8.65029 6.48447 8.55727 6.51293 8.49409C6.5676 8.37351 6.51748 8.23684 6.39678 8.17366C6.36718 8.15873 6.33074 8.15186 6.27722 8.15186C6.19409 8.15186 6.14058 8.17138 6.04265 8.23454L5.98684 8.27015L5.95155 8.24832C5.80694 8.16218 5.78074 8.15186 5.69305 8.153C5.63043 8.153 5.59627 8.15873 5.56553 8.17483Z\" fill=\"black\"/>\\n<path d=\"M2.80306 6.84143C2.60151 6.90575 2.45119 7.05505 2.37377 7.26753C2.33619 7.3686 2.31797 7.52825 2.33391 7.61437C2.37148 7.81996 2.53887 8.00716 2.72905 8.05885C2.96818 8.12201 3.14695 8.08066 3.30524 7.92218C3.39747 7.83144 3.44758 7.75219 3.49768 7.62355C3.53411 7.53284 3.5364 7.51676 3.5364 7.38813L3.53753 7.25031L3.48971 7.15154C3.4134 6.99534 3.27563 6.87933 3.11621 6.83684C3.02625 6.81387 2.88163 6.81503 2.80306 6.84143Z\" fill=\"black\"/>\\n<path d=\"M8.88161 6.83803C8.72561 6.88052 8.58668 6.99765 8.51266 7.15156L8.46484 7.25034L8.46598 7.38815C8.46598 7.51679 8.46826 7.53287 8.50469 7.62358C8.55481 7.75222 8.60491 7.83147 8.69713 7.92221C8.85542 8.08069 9.03419 8.12204 9.27334 8.05888C9.41112 8.02212 9.54889 7.90497 9.61495 7.7683C9.67188 7.6523 9.68554 7.56846 9.66733 7.43638C9.6252 7.13433 9.44983 6.91497 9.18906 6.83803C9.11277 6.81506 8.96474 6.81506 8.88161 6.83803Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73663\">\\n<rect width=\"12\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-46hnhs\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"gY6nUPjkR\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qvjbrf\",\"data-framer-name\":\"Symbol (1)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"uYwx6z0xb\",svg:'<svg width=\"20\" height=\"14\" viewBox=\"0 0 20 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73670)\">\\n<path d=\"M14.0812 0.5H11.2612L16.4012 13.5H19.2212L14.0812 0.5ZM5.92125 0.5L0.78125 13.5H3.66125L4.72125 10.78H10.1012L11.1412 13.5H14.0212L8.88125 0.5H5.92125ZM5.64125 8.36L7.40125 3.8L9.16125 8.36H5.64125Z\" fill=\"#181818\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73670\">\\n<rect width=\"18.44\" height=\"13\" fill=\"white\" transform=\"translate(0.78125 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tpognv\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"YjC3inkcF\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qvps0\",\"data-framer-name\":\"moonshot\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"SzCkP1pb2\",svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73673)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.61371 9.86776L6.17813 11.3564C6.17064 11.7521 6.18232 12.1478 6.21313 12.5423L9.68746 13.4716C8.65699 13.8969 7.53981 14.0699 6.42896 13.9762L6.32396 13.9668L6.29829 13.9645L6.24929 13.9593L6.19446 13.9534C6.16391 13.9497 6.13338 13.9459 6.10288 13.9418L6.04046 13.9336L5.97629 13.9243C5.91394 13.9152 5.85171 13.9053 5.78963 13.8945L5.76513 13.8898L5.72138 13.8823L5.65896 13.8706L5.61813 13.8618L5.56388 13.8508L5.52013 13.8414L5.46471 13.8298L5.40813 13.8163L5.35329 13.8035L5.31363 13.7936L5.26229 13.7808L5.20979 13.7668L5.15438 13.7522L5.10654 13.7388L5.04296 13.7213L5.00679 13.7096L4.95779 13.695L4.90354 13.6787L4.84229 13.6588L4.80846 13.6478L4.76179 13.6326L4.70929 13.6145L4.67079 13.6005C4.66223 13.5976 4.65367 13.5947 4.64513 13.5918L4.60546 13.5772L4.54654 13.5556L4.51329 13.5428L4.46663 13.5253L4.41588 13.5048L4.36454 13.4844L4.31846 13.4658L4.26304 13.4424L4.22629 13.4261L4.18954 13.4103C4.18156 13.4069 4.17359 13.4034 4.16563 13.3998L4.12713 13.3823L4.06704 13.3549L4.03671 13.3409L3.98071 13.3141L3.94454 13.2966L3.89554 13.2733L3.84538 13.2476L3.79113 13.2202L3.76079 13.2044L3.70071 13.1723L3.66746 13.1548L3.63363 13.1362C3.62466 13.1312 3.61572 13.1261 3.60679 13.121L3.55196 13.0901L3.51696 13.0703L3.48721 13.0528L3.44521 13.0288L3.39738 12.9997L3.34313 12.967L3.31279 12.9483L3.26379 12.9174L3.22821 12.8947L3.18213 12.8655L3.14129 12.8381L3.11038 12.8177C3.09985 12.8107 3.08935 12.8037 3.07888 12.7967L3.05321 12.7792L3.02754 12.7617C3.01974 12.7563 3.01197 12.7508 3.00421 12.7453L2.97096 12.722L2.92663 12.6905L2.88638 12.6613L2.84321 12.6298L2.81054 12.6053L2.76621 12.5721L2.72188 12.5377L2.67171 12.4986L2.64546 12.4782L2.60813 12.4478L2.56496 12.4128L2.51304 12.3703L2.48621 12.3475L2.45938 12.3248C2.45099 12.3176 2.44263 12.3104 2.43429 12.3032L2.40804 12.2798L2.37246 12.2489L2.33163 12.2128L2.29196 12.1778L2.25579 12.1439L2.21671 12.1078L2.18579 12.0786L2.13446 12.0296C2.11511 12.0108 2.09586 11.992 2.07671 11.973L2.05979 11.9567L2.03588 11.9322L1.99563 11.8913L1.96646 11.8616L1.93729 11.8307C1.90397 11.7965 1.8713 11.7617 1.83929 11.7263L1.79263 11.6749L1.75646 11.6341L1.71504 11.5874L1.69054 11.5588L1.65963 11.5227L1.62579 11.483L1.59896 11.4503C1.59369 11.4439 1.58844 11.4375 1.58321 11.4311L1.55696 11.399L1.51846 11.3512L1.49454 11.3208L1.46538 11.2835L1.45371 11.2689C1.11994 10.8363 0.838015 10.366 0.61371 9.86776ZM0.01871 6.48793L6.64129 8.25951C6.53042 8.64569 6.43911 9.03721 6.36771 9.4326L12.6776 11.1208C12.3641 11.55 12.0031 11.9423 11.6014 12.2903L0.383293 9.28851L0.37396 9.26168L0.353543 9.20101C0.343621 9.17133 0.333899 9.14158 0.324377 9.11176L0.320293 9.09835C0.275393 8.9556 0.235122 8.81144 0.199543 8.6661L0.182043 8.5926L0.171543 8.54593L0.159293 8.48935L0.148793 8.4421L0.138293 8.3896L0.128377 8.3406L0.117877 8.28576C0.10271 8.20351 0.08871 8.12068 0.07646 8.03726L0.0665434 7.96843L0.0601267 7.92001L0.0525434 7.86051C0.0486377 7.82923 0.0449432 7.79793 0.04146 7.7666L0.0385434 7.73918C-0.00503969 7.3235 -0.0116768 6.90478 0.01871 6.48793ZM0.94796 3.48376L7.91763 5.3481C7.70296 5.70101 7.50638 6.06618 7.32846 6.44185L13.9172 8.20468C13.8344 8.68301 13.7025 9.14501 13.5275 9.58426L6.79004 7.78176L0.0723767 5.9851L0.0811267 5.92676L0.0857934 5.89818L0.0916267 5.8591L0.100377 5.80835L0.110877 5.75118C0.126043 5.66485 0.143543 5.5791 0.16221 5.49335L0.178543 5.42101L0.19021 5.37143L0.20421 5.31485C0.217043 5.26235 0.23046 5.20985 0.245043 5.15851L0.261377 5.09901L0.274793 5.0506L0.292293 4.99226L0.306877 4.94443L0.324377 4.88843L0.339543 4.8406L0.357627 4.78518C0.508684 4.33206 0.706119 3.89575 0.946793 3.48318L0.94796 3.48376ZM3.53913 0.917095L10.122 2.6776C9.77466 2.99289 9.44589 3.32809 9.13738 3.68151L13.7008 4.90243C13.8565 5.39943 13.9586 5.91976 14 6.45701L1.22854 3.04101L1.25479 3.0031L1.27054 2.97976L1.29388 2.94768L1.32071 2.90976L1.35279 2.86543L1.38429 2.82343L1.42163 2.77326L1.45079 2.73535L1.48404 2.69276L1.51613 2.65193L1.55113 2.60876L1.58321 2.56851L1.62113 2.5236L1.65263 2.4851L1.69113 2.44018L1.72204 2.40518L1.76404 2.35735L1.79496 2.32235L1.83404 2.27918L1.86554 2.24535L1.90813 2.19985L1.94196 2.16485L1.97871 2.12576L2.07671 2.0266L2.13504 1.96943L2.16946 1.93676L2.21379 1.89535C2.61582 1.51859 3.06064 1.19026 3.53913 0.917095ZM7.00996 9.50522e-05H7.06654L7.11438 0.000678386L7.15463 0.00126172L7.18613 0.00242839L7.22579 0.00359505L7.25263 0.00417839L7.29696 0.00592839L7.32438 0.00709505L7.35938 0.00884505L7.39088 0.0100117L7.44163 0.0129284L7.50288 0.0170117L7.58688 0.0234284L7.63821 0.0275117L7.66388 0.0298451L7.70879 0.0345117L7.75663 0.0391784L7.78404 0.0420951L7.84354 0.0490951L7.87271 0.0525951L7.93571 0.0607617L7.98296 0.0665951L8.00746 0.0700951L8.04538 0.0759284L8.16613 0.0945951L8.20696 0.101595L8.24488 0.108012L8.32654 0.123178L8.38021 0.133678L8.44438 0.146512L8.47121 0.152345L8.51496 0.161678L8.53888 0.167512L8.57504 0.175095L8.59954 0.180928L8.63746 0.189678L8.66604 0.196678L8.70746 0.206595L8.76346 0.220595L8.82879 0.238095L8.89471 0.255595L8.96063 0.274262L8.98979 0.283012L9.03063 0.294678L9.07613 0.308678L9.11871 0.322095L9.14788 0.331428L9.17704 0.340762L9.22138 0.355345L9.27913 0.374595L9.33863 0.395595L9.36663 0.405512L9.40396 0.418928L9.45821 0.438762L9.52238 0.462678L9.59004 0.488928L9.64838 0.512262L9.67579 0.523928L9.71079 0.537928L9.73471 0.548428L9.77146 0.563595L9.79479 0.574095L9.82804 0.588678L9.89221 0.616678L9.95054 0.643512L9.99371 0.663928L10.0375 0.684928L10.0725 0.701262L10.1261 0.728095L10.1792 0.754345L10.2387 0.784678L10.2696 0.801012L10.2982 0.816178L10.325 0.830178L10.36 0.849428L10.384 0.862262L10.4143 0.879178L10.4656 0.908345L10.5275 0.943345L10.5782 0.973095L10.6115 0.992928L10.6424 1.0116L10.6984 1.04601L10.7497 1.0781L10.8069 1.11426L10.8279 1.12826L10.8652 1.15218L10.9142 1.18485L10.9375 1.2006L10.9737 1.2251L11.0099 1.25018L11.0233 1.2601C11.0548 1.28168 11.0863 1.30385 11.1172 1.3266L11.1656 1.3616L11.2035 1.3896L11.2362 1.41468L11.2864 1.4526L11.3342 1.48993L11.3575 1.50743L11.3867 1.53135L11.4369 1.5716L11.483 1.60951L11.5325 1.65093C11.9479 2.00093 12.3218 2.39935 12.6461 2.83568L4.21288 0.579928L4.24904 0.564178L4.28696 0.547845L4.33421 0.528012L4.38438 0.507595C4.45029 0.481345 4.51679 0.455095 4.58329 0.431178L4.63929 0.410762L4.69354 0.391512L4.74254 0.374012L4.79854 0.355928C4.84929 0.338428 4.90121 0.322095 4.95254 0.306345L5.00563 0.290595L5.05579 0.276012L5.11529 0.258512L5.16488 0.245095L5.22321 0.229928L5.27338 0.215928L5.32588 0.202512L5.37896 0.189678L5.43438 0.176845L5.48688 0.165178L5.54404 0.152928L5.59713 0.141262L5.65254 0.130762L5.70621 0.120262L5.76454 0.109762L5.81763 0.100428L5.87479 0.0905117L5.92846 0.0823451L5.98504 0.0735951L6.03871 0.0660117L6.09821 0.0584284L6.15129 0.0514284L6.21254 0.0444284L6.26504 0.0385951L6.32629 0.0327617C6.38054 0.0269284 6.43479 0.0222617 6.48963 0.0187617L6.55146 0.0140951L6.60396 0.0111784L6.66813 0.00767839L6.72238 0.00534505L6.78071 0.00301172L6.83729 0.00184505L6.89504 0.000678386L7.00996 -0.000488281V9.50522e-05Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73673\">\\n<rect width=\"14\" height=\"14\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j6hx6n\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"BZyjTrSyM\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lcns3b\",\"data-framer-name\":\"Microsoft_Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"rDeBmOtor\",svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73676)\">\\n<path d=\"M0.609375 0.608643H6.69633V6.6956H0.609375V0.608643Z\" fill=\"#F35325\"/>\\n<path d=\"M7.30469 0.608643H13.3916V6.6956H7.30469V0.608643Z\" fill=\"#81BC06\"/>\\n<path d=\"M0.609375 7.30444H6.69633V13.3914H0.609375V7.30444Z\" fill=\"#05A6F0\"/>\\n<path d=\"M7.30469 7.30444H13.3916V13.3914H7.30469V7.30444Z\" fill=\"#FFBA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73676\">\\n<rect width=\"14\" height=\"14\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cgdxwv\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"bDNaTGUlo\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-71oaaw\",\"data-framer-name\":\"idPu03Khfd_logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"bVRkIecv0\",svg:'<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73682)\">\\n<path d=\"M16.8507 0.837298C16.682 0.749788 16.6094 0.916558 16.5108 1.00128C16.477 1.02861 16.4485 1.06413 16.4199 1.09692C16.1734 1.37568 15.8854 1.55886 15.5091 1.53696C14.9589 1.50414 14.4892 1.68732 14.074 2.13285C13.9858 1.58346 13.6925 1.25541 13.2462 1.04499C13.0126 0.935638 12.7765 0.826288 12.613 0.588478C12.4988 0.419068 12.4677 0.230458 12.4106 0.0445781C12.3742 -0.0674719 12.3379 -0.182312 12.2159 -0.201452C12.0836 -0.223292 12.0317 -0.105812 11.9798 -0.00735194C11.7722 0.394468 11.6917 0.837268 11.6995 1.28553C11.7176 2.29416 12.1199 3.09771 12.9191 3.669C13.01 3.73461 13.0333 3.80016 13.0048 3.89589C12.9503 4.09269 12.8854 4.284 12.8283 4.4808C12.792 4.60656 12.7375 4.63389 12.6103 4.57917C12.1718 4.38516 11.7929 4.09812 11.4581 3.75102C10.8898 3.16881 10.376 2.52648 9.73502 2.02353C9.58451 1.90599 9.43398 1.7967 9.27826 1.69278C8.6243 1.02042 9.36391 0.468238 9.53519 0.402688C9.71422 0.334348 9.59746 0.099238 9.01875 0.102028C8.44005 0.104728 7.91067 0.309748 7.23596 0.583078C7.13736 0.624088 7.03352 0.654118 6.92713 0.678718C6.31471 0.555748 5.67891 0.528358 5.01457 0.607678C3.76374 0.755248 2.76468 1.3812 2.03028 2.44995C1.14798 3.73461 0.940383 5.19417 1.1947 6.71667C1.462 8.3211 2.2353 9.6495 3.42386 10.6882C4.65653 11.7651 6.07603 12.2926 7.69533 12.1915C8.67887 12.1314 9.77398 11.992 11.0092 10.885C11.3206 11.049 11.6476 11.1146 12.19 11.1638C12.6078 11.2048 13.01 11.1419 13.3214 11.0736C13.8093 10.9643 13.7756 10.4859 13.5991 10.3985C12.1693 9.6933 12.4832 9.98028 12.1978 9.74793C12.9244 8.83776 14.0195 7.89198 14.4477 4.8279C14.4814 4.58466 14.4529 4.43157 14.4477 4.23477C14.4451 4.11453 14.4711 4.06809 14.6008 4.05438C14.9589 4.01064 15.3067 3.90681 15.6259 3.72093C16.5523 3.18522 16.926 2.30508 17.0142 1.25001C17.0272 1.08873 17.0116 0.921958 16.8507 0.837298ZM8.77747 10.3328C7.39171 9.17943 6.71962 8.79945 6.44192 8.81586C6.18242 8.83227 6.22914 9.14661 6.2862 9.35163C6.3459 9.55386 6.42376 9.6933 6.53273 9.87093C6.60798 9.98847 6.65992 10.1634 6.45751 10.2946C6.01114 10.5871 5.23521 10.1962 5.19885 10.1771C4.29581 9.61398 3.54065 8.87049 3.00863 7.85376C2.49481 6.87516 2.1964 5.82561 2.14707 4.70493C2.13409 4.43436 2.20935 4.33863 2.46367 4.28949C2.79843 4.22388 3.14358 4.21017 3.47834 4.2621C4.89268 4.4808 6.09677 5.15046 7.10623 6.21099C7.68233 6.81504 8.11829 7.53669 8.56726 8.24187C9.04474 8.99076 9.55856 9.70422 10.2125 10.2891C10.4435 10.4941 10.6277 10.6499 10.8042 10.7647C10.2722 10.8276 9.38471 10.8413 8.77747 10.3328ZM9.4418 5.8092C9.4418 5.68893 9.53264 5.59329 9.64685 5.59329C9.6728 5.59329 9.69615 5.59869 9.71692 5.60688C9.74548 5.61786 9.77143 5.63427 9.79217 5.65881C9.82852 5.69712 9.84926 5.75175 9.84926 5.80917C9.84926 5.92944 9.75845 6.02508 9.6443 6.02508C9.53014 6.02508 9.4418 5.92947 9.4418 5.8092ZM11.5049 6.92988C11.3725 6.9873 11.2402 7.03644 11.113 7.04193C10.9158 7.05285 10.7004 6.9681 10.5837 6.86424C10.402 6.70296 10.2722 6.61281 10.2178 6.33126C10.1944 6.21099 10.2074 6.02511 10.2282 5.91855C10.2749 5.68893 10.2229 5.54136 10.0699 5.40738C9.94528 5.29803 9.78698 5.268 9.6131 5.268C9.54822 5.268 9.48858 5.23791 9.44443 5.21331C9.37176 5.17506 9.31212 5.07939 9.36918 4.96185C9.38734 4.92363 9.4756 4.83066 9.49637 4.81428C9.73253 4.67211 10.005 4.71861 10.2567 4.8252C10.4903 4.92633 10.6668 5.11221 10.9211 5.37459C11.1806 5.69163 11.2273 5.77917 11.3752 6.01692C11.492 6.2028 11.5984 6.39411 11.671 6.61281C11.7152 6.74949 11.658 6.86154 11.5049 6.92988Z\" fill=\"#4D6BFE\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73682\">\\n<rect width=\"17\" height=\"12\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-99z15s\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"PVBeEZCH5\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g2ztf9\",\"data-framer-name\":\"idKpB5u1dr_logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"mLXKWBF0w\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73685)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.36 9.44C5.76 9.44 6.56 9.42 7.68 8.96C8.98 8.42 11.54 7.46 13.4 6.46C14.7 5.76 15.26 4.84 15.26 3.6C15.26 1.9 13.88 0.5 12.16 0.5H4.96C2.5 0.5 0.5 2.5 0.5 4.96C0.5 7.42 2.38 9.44 5.36 9.44Z\" fill=\"#39594D\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.57812 12.5002C6.57812 11.3002 7.29812 10.2002 8.41812 9.74022L10.6781 8.80022C12.9781 7.86022 15.4981 9.54022 15.4981 12.0202C15.4981 13.9402 13.9381 15.5002 12.0181 15.5002H9.55812C7.91812 15.5002 6.57812 14.1602 6.57812 12.5002Z\" fill=\"#D18EE2\"/>\\n<path d=\"M3.08 10.02C1.66 10.02 0.5 11.18 0.5 12.6V12.94C0.5 14.34 1.66 15.5 3.08 15.5C4.5 15.5 5.66 14.34 5.66 12.92V12.58C5.64 11.18 4.5 10.02 3.08 10.02Z\" fill=\"#FF7759\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73685\">\\n<rect width=\"15\" height=\"15\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kjd3ur\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"f3cNmvzXC\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x3viv3\",\"data-framer-name\":\"ideEMm3Xr6_logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"cfhrbNV4U\",svg:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73693)\">\\n<path d=\"M9.94219 15.4999C11.7854 15.4999 13.5532 14.7676 14.8566 13.4642C16.16 12.1609 16.8922 10.3931 16.8922 8.54985C16.8922 6.7066 16.16 4.93884 14.8566 3.63546C13.5532 2.33208 11.7854 1.59985 9.94219 1.59985C8.09893 1.59985 6.33117 2.33208 5.0278 3.63546C3.72442 4.93884 2.99219 6.7066 2.99219 8.54985C2.99219 10.3931 3.72442 12.1609 5.0278 13.4642C6.33117 14.7676 8.09893 15.4999 9.94219 15.4999Z\" fill=\"#FFD21E\"/>\\n<path d=\"M16.8914 8.5498C16.8914 6.70655 16.1592 4.93879 14.8558 3.63541C13.5524 2.33203 11.7847 1.5998 9.94141 1.5998C8.09815 1.5998 6.33039 2.33203 5.02701 3.63541C3.72364 4.93879 2.99141 6.70655 2.99141 8.5498C2.99141 10.3931 3.72364 12.1608 5.02701 13.4642C6.33039 14.7676 8.09815 15.4998 9.94141 15.4998C11.7847 15.4998 13.5524 14.7676 14.8558 13.4642C16.1592 12.1608 16.8914 10.3931 16.8914 8.5498ZM2.19141 8.5498C2.19141 7.53206 2.39187 6.52428 2.78134 5.58401C3.17081 4.64373 3.74167 3.78938 4.46133 3.06973C5.18098 2.35007 6.03534 1.77921 6.97561 1.38974C7.91588 1.00026 8.92366 0.799805 9.94141 0.799805C10.9592 0.799805 11.9669 1.00026 12.9072 1.38974C13.8475 1.77921 14.7018 2.35007 15.4215 3.06973C16.1411 3.78938 16.712 4.64373 17.1015 5.58401C17.4909 6.52428 17.6914 7.53206 17.6914 8.5498C17.6914 10.6052 16.8749 12.5765 15.4215 14.0299C13.9681 15.4833 11.9968 16.2998 9.94141 16.2998C7.88598 16.2998 5.91474 15.4833 4.46133 14.0299C3.00792 12.5765 2.19141 10.6052 2.19141 8.5498Z\" fill=\"#FF9D0B\"/>\\n<path d=\"M12.1988 6.65992C12.4548 6.74792 12.5548 7.27192 12.8128 7.13592C12.9875 7.04317 13.1308 6.90069 13.2245 6.72651C13.3182 6.55233 13.3582 6.35426 13.3393 6.15737C13.3205 5.96047 13.2437 5.77359 13.1186 5.62036C12.9935 5.46712 12.8258 5.35442 12.6367 5.29651C12.4476 5.2386 12.2455 5.23807 12.0561 5.295C11.8667 5.35193 11.6984 5.46375 11.5725 5.61633C11.4466 5.76891 11.3688 5.95539 11.349 6.15219C11.3291 6.34898 11.368 6.54725 11.4608 6.72192C11.5828 6.95192 11.9708 6.57792 12.2008 6.65792L12.1988 6.65992ZM7.48882 6.65992C7.23282 6.74792 7.13082 7.27192 6.87482 7.13592C6.70012 7.04317 6.55685 6.90069 6.46313 6.72651C6.36941 6.55233 6.32945 6.35426 6.3483 6.15737C6.36716 5.96047 6.44398 5.77359 6.56905 5.62036C6.69412 5.46712 6.86183 5.35442 7.05096 5.29651C7.24009 5.2386 7.44214 5.23807 7.63157 5.295C7.82099 5.35193 7.98928 5.46375 8.11515 5.61633C8.24102 5.76891 8.31881 5.95539 8.33869 6.15219C8.35857 6.34898 8.31964 6.54725 8.22682 6.72192C8.10482 6.95192 7.71482 6.57792 7.48682 6.65792L7.48882 6.65992Z\" fill=\"#3A3B45\"/>\\n<path d=\"M9.89487 11.4579C11.8609 11.4579 12.4949 9.70585 12.4949 8.80585C12.4949 8.33785 12.1809 8.48585 11.6769 8.73385C11.2109 8.96385 10.5849 9.28185 9.89688 9.28185C8.45888 9.28185 7.29688 7.90585 7.29688 8.80585C7.29688 9.70585 7.92887 11.4579 9.89688 11.4579H9.89487Z\" fill=\"#FF323D\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.38306 10.9999C8.48859 10.7854 8.63718 10.595 8.81955 10.4405C9.00193 10.286 9.21417 10.1707 9.44306 10.1019C9.52306 10.0779 9.60506 10.2159 9.69106 10.3579C9.77106 10.4939 9.85506 10.6319 9.93906 10.6319C10.0291 10.6319 10.1191 10.4959 10.2051 10.3619C10.2951 10.2219 10.3831 10.0859 10.4691 10.1119C10.8987 10.2483 11.2577 10.5477 11.4691 10.9459C12.2151 10.3579 12.4891 9.39787 12.4891 8.80587C12.4891 8.33787 12.1751 8.48587 11.6711 8.73387L11.6431 8.74787C11.1811 8.97787 10.5651 9.28187 9.88906 9.28187C9.21306 9.28187 8.59906 8.97787 8.13506 8.74787C7.61506 8.48987 7.28906 8.32787 7.28906 8.80587C7.28906 9.41587 7.58106 10.4179 8.38306 10.9999Z\" fill=\"#3A3B45\"/>\\n<path d=\"M14.6416 7.5998C14.8139 7.5998 14.9793 7.53132 15.1012 7.40942C15.2231 7.28753 15.2916 7.1222 15.2916 6.9498C15.2916 6.77741 15.2231 6.61208 15.1012 6.49019C14.9793 6.36829 14.8139 6.2998 14.6416 6.2998C14.4692 6.2998 14.3038 6.36829 14.1819 6.49019C14.06 6.61208 13.9916 6.77741 13.9916 6.9498C13.9916 7.1222 14.06 7.28753 14.1819 7.40942C14.3038 7.53132 14.4692 7.5998 14.6416 7.5998ZM5.34155 7.5998C5.51394 7.5998 5.67927 7.53132 5.80117 7.40942C5.92307 7.28753 5.99155 7.1222 5.99155 6.9498C5.99155 6.77741 5.92307 6.61208 5.80117 6.49019C5.67927 6.36829 5.51394 6.2998 5.34155 6.2998C5.16916 6.2998 5.00383 6.36829 4.88193 6.49019C4.76003 6.61208 4.69155 6.77741 4.69155 6.9498C4.69155 7.1222 4.76003 7.28753 4.88193 7.40942C5.00383 7.53132 5.16916 7.5998 5.34155 7.5998ZM4.00355 9.7998C3.67955 9.7998 3.39155 9.9318 3.18955 10.1738C3.0173 10.3866 2.92339 10.6521 2.92355 10.9258C2.79762 10.8879 2.66704 10.8677 2.53555 10.8658C2.22555 10.8658 1.94555 10.9838 1.74755 11.1978C1.57091 11.3812 1.45953 11.6177 1.43062 11.8707C1.4017 12.1237 1.45685 12.3792 1.58755 12.5978C1.41055 12.7423 1.28498 12.9401 1.22955 13.1618C1.18155 13.3418 1.13355 13.7218 1.38955 14.1098C1.29359 14.2574 1.23648 14.4268 1.22354 14.6023C1.2106 14.7778 1.24225 14.9538 1.31555 15.1138C1.51955 15.5778 2.02955 15.9418 3.01955 16.3338C3.63355 16.5778 4.19755 16.7338 4.20155 16.7358C4.91403 16.9332 5.64839 17.0407 6.38755 17.0558C7.55955 17.0558 8.39755 16.6958 8.87955 15.9878C9.65555 14.8498 9.54555 13.8078 8.53955 12.8038C7.98555 12.2478 7.61555 11.4298 7.53955 11.2498C7.38355 10.7178 6.97155 10.1258 6.28955 10.1258C6.10812 10.1287 5.92998 10.1748 5.76997 10.2604C5.60995 10.346 5.47268 10.4685 5.36955 10.6178C5.16955 10.3658 4.97355 10.1678 4.79755 10.0538C4.56269 9.89481 4.28709 9.80664 4.00355 9.7998ZM4.00355 10.5998C4.10555 10.5998 4.23155 10.6438 4.36755 10.7298C4.79555 11.0018 5.61755 12.4158 5.91955 12.9658C6.01955 13.1498 6.19355 13.2278 6.34755 13.2278C6.65755 13.2278 6.89755 12.9218 6.37755 12.5318C5.59355 11.9458 5.86755 10.9878 6.24155 10.9298C6.25755 10.9258 6.27555 10.9258 6.28955 10.9258C6.62955 10.9258 6.77955 11.5118 6.77955 11.5118C6.77955 11.5118 7.21955 12.6158 7.97555 13.3718C8.72955 14.1258 8.76955 14.7318 8.21955 15.5378C7.84355 16.0878 7.12555 16.2538 6.38755 16.2538C5.62555 16.2538 4.84155 16.0738 4.40355 15.9618C4.38155 15.9558 1.71355 15.2018 2.05155 14.5618C2.10755 14.4538 2.20155 14.4098 2.31955 14.4098C2.79555 14.4098 3.65955 15.1178 4.03355 15.1178C4.11555 15.1178 4.17355 15.0838 4.19955 14.9978C4.35755 14.4278 1.78755 14.1878 2.00355 13.3638C2.04355 13.2178 2.14555 13.1598 2.29155 13.1598C2.91955 13.1598 4.33155 14.2658 4.62755 14.2658C4.64955 14.2658 4.66755 14.2598 4.67555 14.2458C4.82355 14.0058 4.74155 13.8378 3.69555 13.2058C2.65355 12.5738 1.91955 12.1938 2.33555 11.7398C2.38355 11.6878 2.45155 11.6638 2.53555 11.6638C3.16955 11.6638 4.66755 13.0278 4.66755 13.0278C4.66755 13.0278 5.07155 13.4478 5.31755 13.4478C5.37355 13.4478 5.42155 13.4278 5.45355 13.3718C5.62555 13.0798 3.84155 11.7278 3.74155 11.1698C3.67355 10.7898 3.78955 10.5998 4.00355 10.5998Z\" fill=\"#FF9D0B\"/>\\n<path d=\"M8.22109 15.5379C8.77109 14.7299 8.73109 14.1239 7.97709 13.3699C7.22109 12.6159 6.78109 11.5099 6.78109 11.5099C6.78109 11.5099 6.61709 10.8699 6.24309 10.9299C5.86909 10.9899 5.59509 11.9459 6.37909 12.5319C7.16109 13.1179 6.22309 13.5159 5.92109 12.9659C5.62109 12.4159 4.79709 11.0019 4.36909 10.7299C3.94309 10.4599 3.64309 10.6099 3.74309 11.1699C3.84309 11.7279 5.62909 13.0799 5.45509 13.3699C5.28109 13.6639 4.66909 13.0279 4.66909 13.0279C4.66909 13.0279 2.75509 11.2859 2.33709 11.7399C1.92109 12.1939 2.65509 12.5739 3.69709 13.2059C4.74309 13.8379 4.82509 14.0059 4.67709 14.2459C4.52709 14.4859 2.22109 12.5399 2.00509 13.3659C1.78909 14.1879 4.35909 14.4259 4.20109 14.9959C4.04109 15.5659 2.38909 13.9199 2.05309 14.5599C1.71309 15.2019 4.38309 15.9559 4.40509 15.9619C5.26509 16.1859 7.45509 16.6599 8.22109 15.5379Z\" fill=\"#FFD21E\"/>\\n<path d=\"M15.9787 9.7998C16.3027 9.7998 16.5927 9.9318 16.7927 10.1738C16.9649 10.3866 17.0588 10.6521 17.0587 10.9258C17.1852 10.8878 17.3165 10.8676 17.4487 10.8658C17.7587 10.8658 18.0387 10.9838 18.2367 11.1978C18.4133 11.3812 18.5247 11.6177 18.5536 11.8707C18.5825 12.1237 18.5274 12.3792 18.3967 12.5978C18.5729 12.7426 18.6978 12.9404 18.7527 13.1618C18.8007 13.3418 18.8487 13.7218 18.5927 14.1098C18.6886 14.2574 18.7457 14.4268 18.7587 14.6023C18.7716 14.7778 18.74 14.9538 18.6667 15.1138C18.4627 15.5778 17.9527 15.9418 16.9647 16.3338C16.3487 16.5778 15.7847 16.7338 15.7807 16.7358C15.0682 16.9332 14.3338 17.0407 13.5947 17.0558C12.4227 17.0558 11.5847 16.6958 11.1027 15.9878C10.3267 14.8498 10.4367 13.8078 11.4427 12.8038C11.9987 12.2478 12.3687 11.4298 12.4447 11.2498C12.6007 10.7178 13.0107 10.1258 13.6927 10.1258C13.8741 10.1287 14.0522 10.1748 14.2122 10.2604C14.3723 10.346 14.5095 10.4685 14.6127 10.6178C14.8127 10.3658 15.0087 10.1678 15.1867 10.0538C15.4209 9.89517 15.6958 9.80702 15.9787 9.7998ZM15.9787 10.5998C15.8767 10.5998 15.7527 10.6438 15.6147 10.7298C15.1887 11.0018 14.3647 12.4158 14.0627 12.9658C14.0219 13.0443 13.9605 13.1102 13.8851 13.1563C13.8097 13.2025 13.7231 13.2272 13.6347 13.2278C13.3267 13.2278 13.0847 12.9218 13.6067 12.5318C14.3887 11.9458 14.1147 10.9878 13.7407 10.9298C13.7248 10.9272 13.7087 10.9259 13.6927 10.9258C13.3527 10.9258 13.2027 11.5118 13.2027 11.5118C13.2027 11.5118 12.7627 12.6158 12.0087 13.3718C11.2527 14.1258 11.2127 14.7318 11.7647 15.5378C12.1387 16.0878 12.8587 16.2538 13.5947 16.2538C14.3587 16.2538 15.1407 16.0738 15.5807 15.9618C15.6007 15.9558 18.2707 15.2018 17.9327 14.5618C17.8747 14.4538 17.7827 14.4098 17.6647 14.4098C17.1887 14.4098 16.3227 15.1178 15.9507 15.1178C15.8667 15.1178 15.8087 15.0838 15.7847 14.9978C15.6247 14.4278 18.1947 14.1878 17.9787 13.3638C17.9407 13.2178 17.8387 13.1598 17.6907 13.1598C17.0627 13.1598 15.6507 14.2658 15.3547 14.2658C15.3347 14.2658 15.3167 14.2598 15.3087 14.2458C15.1607 14.0058 15.2407 13.8378 16.2847 13.2058C17.3307 12.5738 18.0647 12.1938 17.6447 11.7398C17.5987 11.6878 17.5307 11.6638 17.4487 11.6638C16.8127 11.6638 15.3147 13.0278 15.3147 13.0278C15.3147 13.0278 14.9107 13.4478 14.6667 13.4478C14.6392 13.449 14.6119 13.4426 14.5878 13.4291C14.5638 13.4157 14.544 13.3959 14.5307 13.3718C14.3567 13.0798 16.1407 11.7278 16.2407 11.1698C16.3087 10.7898 16.1927 10.5998 15.9787 10.5998Z\" fill=\"#FF9D0B\"/>\\n<path d=\"M11.7641 15.5379C11.2141 14.7299 11.2521 14.1239 12.0081 13.3699C12.7621 12.6159 13.2021 11.5099 13.2021 11.5099C13.2021 11.5099 13.3661 10.8699 13.7421 10.9299C14.1141 10.9899 14.3881 11.9459 13.6061 12.5319C12.8221 13.1179 13.7621 13.5159 14.0621 12.9659C14.3641 12.4159 15.1881 11.0019 15.6141 10.7299C16.0401 10.4599 16.3421 10.6099 16.2401 11.1699C16.1401 11.7279 14.3561 13.0799 14.5301 13.3699C14.7021 13.6639 15.3141 13.0279 15.3141 13.0279C15.3141 13.0279 17.2301 11.2859 17.6461 11.7399C18.0621 12.1939 17.3301 12.5739 16.2861 13.2059C15.2401 13.8379 15.1601 14.0059 15.3061 14.2459C15.4561 14.4859 17.7621 12.5399 17.9781 13.3659C18.1941 14.1879 15.6261 14.4259 15.7841 14.9959C15.9441 15.5659 17.5941 13.9199 17.9321 14.5599C18.2701 15.2019 15.6021 15.9559 15.5801 15.9619C14.7181 16.1859 12.5281 16.6599 11.7641 15.5379Z\" fill=\"#FFD21E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73693\">\\n<rect width=\"19\" height=\"17.6\" fill=\"white\" transform=\"translate(0.5 0.199951)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9k91ir\",\"data-border\":true,\"data-framer-name\":\"Frame 4939\",layoutDependency:layoutDependency,layoutId:\"wkxJxu71z\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgb(229, 234, 255)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wnofpj\",\"data-framer-name\":\"grok-seeklogo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"mN5xi85iD\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73704)\">\\n<path d=\"M8.79275 13.7266L15.4001 8.84265C15.7242 8.60358 16.1877 8.69598 16.3417 9.06852C17.1542 11.0294 16.7905 13.3864 15.1742 15.0056C13.5579 16.6233 11.3095 16.9782 9.25328 16.1701L7.00781 17.2114C10.2286 19.4158 14.1402 18.8703 16.5837 16.4224C18.5226 14.482 19.1225 11.8361 18.5607 9.44985L18.5651 9.45425C17.7511 5.94892 18.7646 4.54825 20.8429 1.68385C20.8913 1.61638 20.9411 1.54745 20.991 1.47852L18.2571 4.21532V4.20652L8.79128 13.7281\" fill=\"black\"/>\\n<path d=\"M7.43119 14.9132C5.11972 12.703 5.51865 9.28124 7.48985 7.30711C8.94772 5.84631 11.3384 5.25084 13.424 6.12644L15.6651 5.09097C15.2617 4.79911 14.744 4.48524 14.15 4.26377C11.4675 3.15791 8.25399 3.70791 6.07305 5.89031C3.97572 7.99057 3.31572 11.2202 4.44799 13.976C5.29425 16.0352 3.90679 17.4931 2.50905 18.9627C2.01332 19.4834 1.51759 20.0055 1.11719 20.557L7.42825 14.9132\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73704\">\\n<rect width=\"22\" height=\"22\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OwyMl.framer-61kg66, .framer-OwyMl .framer-61kg66 { display: block; }\",\".framer-OwyMl.framer-1vi3gvz { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: var(--cob5fc); height: min-content; justify-content: center; overflow: hidden; padding: var(--128ua9s); position: relative; width: 636px; }\",\".framer-OwyMl .framer-1gbonpk { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-OwyMl .framer-10u612, .framer-OwyMl .framer-zzbhnb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OwyMl .framer-s3hrgd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OwyMl .framer-1v8gcej { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-OwyMl .framer-mat56y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--1jevca6); position: relative; width: 100%; }\",\".framer-OwyMl .framer-1efqq5o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OwyMl .framer-z0hae0, .framer-OwyMl .framer-ldylqa, .framer-OwyMl .framer-3hexhd, .framer-OwyMl .framer-d2mwv9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-OwyMl .framer-1qa5cgv, .framer-OwyMl .framer-w36mna { flex: none; gap: 0px; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-OwyMl .framer-1w5qcd1, .framer-OwyMl .framer-8oatf3 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-OwyMl .framer-1xtbtm2 { bottom: 5px; flex: none; left: 2px; position: absolute; right: 14px; top: 11px; }\",\".framer-OwyMl .framer-1a6pixc { bottom: 5px; flex: none; left: 3px; position: absolute; right: 13px; top: 11px; }\",\".framer-OwyMl .framer-l71xbt, .framer-OwyMl .framer-1erj49t { bottom: 4px; flex: none; left: 3px; position: absolute; right: 13px; top: 12px; }\",\".framer-OwyMl .framer-9dk40m { bottom: 3px; flex: none; left: 4px; position: absolute; right: 12px; top: 13px; }\",\".framer-OwyMl .framer-19nzju9 { bottom: 3px; flex: none; left: 5px; position: absolute; right: 11px; top: 13px; }\",\".framer-OwyMl .framer-102ognp { bottom: 3px; flex: none; left: 5px; position: absolute; right: 10px; top: 13px; }\",\".framer-OwyMl .framer-wowhyb { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-OwyMl .framer-14j0orw { flex: none; height: 32px; position: relative; width: 33px; }\",\".framer-OwyMl .framer-iuykm8 { flex: none; height: 32px; position: relative; width: 63px; }\",\".framer-OwyMl .framer-1e9f2jm { aspect-ratio: 4.166666507720947 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 67px; }\",\".framer-OwyMl .framer-40ds9x { aspect-ratio: 2.319999933242798 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); mix-blend-mode: multiply; position: relative; width: 37px; }\",\".framer-OwyMl .framer-alz09k { flex: none; height: 32px; position: relative; width: 87px; }\",\".framer-OwyMl .framer-pzc8sj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 363px; }\",\".framer-OwyMl .framer-19bd6r4, .framer-OwyMl .framer-g3wzb4, .framer-OwyMl .framer-46hnhs, .framer-OwyMl .framer-tpognv, .framer-OwyMl .framer-1j6hx6n, .framer-OwyMl .framer-1cgdxwv, .framer-OwyMl .framer-99z15s, .framer-OwyMl .framer-kjd3ur, .framer-OwyMl .framer-9k91ir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OwyMl .framer-1294ljt { flex: none; height: 16px; position: relative; width: 14px; }\",\".framer-OwyMl .framer-2ikyf9 { flex: none; height: 16px; position: relative; width: 12px; }\",\".framer-OwyMl .framer-qvjbrf { flex: none; height: 13px; position: relative; width: 18px; }\",\".framer-OwyMl .framer-1qvps0, .framer-OwyMl .framer-lcns3b, .framer-OwyMl .framer-g2ztf9 { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-OwyMl .framer-71oaaw { flex: none; height: 12px; position: relative; width: 18px; }\",\".framer-OwyMl .framer-1x3viv3 { flex: none; height: 16px; position: relative; width: 18px; }\",\".framer-OwyMl .framer-wnofpj { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-OwyMl.framer-v-17u8p9w .framer-10u612 { cursor: pointer; }\",\".framer-OwyMl.framer-v-17u8p9w .framer-pzc8sj { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-OwyMl[data-border=\"true\"]::after, .framer-OwyMl [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 168\n * @framerIntrinsicWidth 636\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v8l23oajn\":{\"layout\":[\"fixed\",\"auto\"]},\"DJNF8ZU2r\":{\"layout\":[\"fixed\",\"auto\"]},\"fajNq0fXa\":{\"layout\":[\"fixed\",\"auto\"]},\"XAe_NA0Ja\":{\"layout\":[\"fixed\",\"auto\"]},\"jzZEkEWkw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L9ij4STKZ\":\"_1Title\",\"DYqiS4OYB\":\"_1Body\",\"NwizKtUKE\":\"_2Title\",\"tSNzytU9Q\":\"_2Body\",\"QC1xWcD52\":\"_3Title\",\"aNspB8tNs\":\"_3Body\",\"duX6J7vzV\":\"_1ShowLogos\",\"ep5wSYwZ6\":\"_2ShowLogos\",\"vNM18p5gP\":\"_3ShowLogos\",\"iEicOZPKE\":\"_1Number\",\"GX8n58542\":\"_2Number\",\"bjbNd29o3\":\"_3Number\",\"tlpqA0YXv\":\"padding\",\"GOg29daUW\":\"gap\",\"t8BNlKYGg\":\"logoPadding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerA5zbxh_SA=withCSS(Component,css,\"framer-OwyMl\");export default FramerA5zbxh_SA;FramerA5zbxh_SA.displayName=\"Build \\xb7 Text Container\";FramerA5zbxh_SA.defaultProps={height:168,width:636};addPropertyControls(FramerA5zbxh_SA,{variant:{options:[\"OPWgsGia8\",\"v8l23oajn\",\"DJNF8ZU2r\"],optionTitles:[\"EN-1\",\"EN-2\",\"EN-3\"],title:\"Variant\",type:ControlType.Enum},L9ij4STKZ:{defaultValue:\"Build Upon Other\u2019s Creation\",displayTextArea:false,title:\"1-Title\",type:ControlType.String},DYqiS4OYB:{defaultValue:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\",displayTextArea:false,title:\"1-Body\",type:ControlType.String},NwizKtUKE:{defaultValue:\"text\",displayTextArea:false,title:\"2-Title\",type:ControlType.String},tSNzytU9Q:{defaultValue:\"\",title:\"2-Body\",type:ControlType.String},QC1xWcD52:{defaultValue:\"Build Upon Other\u2019s Creation\",displayTextArea:false,title:\"3-Title\",type:ControlType.String},aNspB8tNs:{defaultValue:\"Build Upon Other\u2019s Creation\",displayTextArea:false,title:\"3-Body\",type:ControlType.String},duX6J7vzV:{defaultValue:false,title:\"1-Show Logos\",type:ControlType.Boolean},ep5wSYwZ6:{defaultValue:false,title:\"2-Show Logos\",type:ControlType.Boolean},vNM18p5gP:{defaultValue:false,title:\"3-Show Logos\",type:ControlType.Boolean},iEicOZPKE:{defaultValue:true,title:\"1-Number\",type:ControlType.Boolean},GX8n58542:{defaultValue:true,title:\"2-Number\",type:ControlType.Boolean},bjbNd29o3:{defaultValue:true,title:\"3-Number\",type:ControlType.Boolean},tlpqA0YXv:{defaultValue:\"40px 20px 40px 20px\",title:\"Padding\",type:ControlType.Padding},GOg29daUW:{defaultValue:20,min:0,title:\"Gap\",type:ControlType.Number},t8BNlKYGg:{defaultValue:\"8px 0px 8px 0px\",title:\"Logo Padding\",type:ControlType.Padding}});addFonts(FramerA5zbxh_SA,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA5zbxh_SA\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"L9ij4STKZ\\\":\\\"_1Title\\\",\\\"DYqiS4OYB\\\":\\\"_1Body\\\",\\\"NwizKtUKE\\\":\\\"_2Title\\\",\\\"tSNzytU9Q\\\":\\\"_2Body\\\",\\\"QC1xWcD52\\\":\\\"_3Title\\\",\\\"aNspB8tNs\\\":\\\"_3Body\\\",\\\"duX6J7vzV\\\":\\\"_1ShowLogos\\\",\\\"ep5wSYwZ6\\\":\\\"_2ShowLogos\\\",\\\"vNM18p5gP\\\":\\\"_3ShowLogos\\\",\\\"iEicOZPKE\\\":\\\"_1Number\\\",\\\"GX8n58542\\\":\\\"_2Number\\\",\\\"bjbNd29o3\\\":\\\"_3Number\\\",\\\"tlpqA0YXv\\\":\\\"padding\\\",\\\"GOg29daUW\\\":\\\"gap\\\",\\\"t8BNlKYGg\\\":\\\"logoPadding\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"168\",\"framerIntrinsicWidth\":\"636\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v8l23oajn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DJNF8ZU2r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fajNq0fXa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XAe_NA0Ja\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jzZEkEWkw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c85c929)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LKpk6QZGusiEdNYsBpwH/jNgn0p0vgaWHGlTJ9IaH/e4tvnx951.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vHLw3ChWBJyQBF6GKm7n/DnwHaU4RVKmf64FhE4gv/jfgWTQKwu.js\";import CornerContainer from\"https://framerusercontent.com/modules/TrX6HugOWJkoJrMH9Amd/hbN7GvaiPwghLZO0BCn2/JZcY0KWwv.js\";import Number from\"https://framerusercontent.com/modules/Z8DJNpeIWkMKdbmkkASK/jomdPIqH94EEZzDubcMv/Y7ihChBL5.js\";const NumberFonts=getFonts(Number);const CornerContainerFonts=getFonts(CornerContainer);const enabledGestures={Ox6dIu14Y:{hover:true}};const serializationHash=\"framer-2Scjq\";const variantClassNames={Ox6dIu14Y:\"framer-v-r628bg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,number,text,title,width,...props})=>{return{...props,EtVrJjUaz:text??props.EtVrJjUaz??\"Effortlessly handle increasing traffic and evolving needs.\",KtvLP_WId:number??props.KtvLP_WId??\"01\",VxKmKJIXd:title??props.VxKmKJIXd??\"Scalable\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,VxKmKJIXd,EtVrJjUaz,KtvLP_WId,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Ox6dIu14Y\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"Ox6dIu14Y-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-r628bg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ox6dIu14Y\",ref:refBinding,style:{...style},...addPropertyOverrides({\"Ox6dIu14Y-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-723l66\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"TSUbWV0NW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jqjtyy\",\"data-framer-name\":\"Feature\",layoutDependency:layoutDependency,layoutId:\"t34i0T3xd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"Scalable\"})}),className:\"framer-1hig94u\",\"data-framer-name\":\"Scalable\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xr6495l5c\",style:{\"--extracted-a0htzi\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--framer-paragraph-spacing\":\"5px\"},text:VxKmKJIXd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"19px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11mn3pb-container\",layoutDependency:layoutDependency,layoutId:\"YS7TlNze9-container\",nodeId:\"YS7TlNze9\",rendersWithMotion:true,scopeId:\"b4fg3rxVx\",children:/*#__PURE__*/_jsx(Number,{height:\"100%\",id:\"YS7TlNze9\",layoutId:\"YS7TlNze9\",pKpIf_JfE:KtvLP_WId,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cmzuv8\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Ps0sEIO_2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Effortlessly handle increasing traffic and evolving needs.\"})}),className:\"framer-d46pda\",\"data-framer-name\":\"Effortlessly handle increasing traffic and evolving needs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c_A5Y9dDH\",style:{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--framer-paragraph-spacing\":\"5px\"},text:EtVrJjUaz,variants:{\"Ox6dIu14Y-hover\":{\"--extracted-r6o4lv\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Ox6dIu14Y-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"Effortlessly handle increasing traffic and evolving needs.\"})})}},baseVariant,gestureVariant)})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"Ox6dIu14Y-hover\":{height:8,width:\"8px\",y:(componentViewport?.y||0)+(componentViewport?.height||174)-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bew93s-container\",\"data-framer-name\":\"corner-bottom-right\",layoutDependency:layoutDependency,layoutId:\"Uizkp3to3-container\",name:\"corner-bottom-right\",nodeId:\"Uizkp3to3\",rendersWithMotion:true,scopeId:\"b4fg3rxVx\",children:/*#__PURE__*/_jsx(CornerContainer,{height:\"100%\",id:\"Uizkp3to3\",K8G53XuMI:\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",layoutId:\"Uizkp3to3\",name:\"corner-bottom-right\",style:{height:\"100%\",width:\"100%\"},variant:\"CpPalhNO8\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"Ox6dIu14Y-hover\":{height:8,width:\"8px\",y:(componentViewport?.y||0)+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uzveoy-container\",\"data-framer-name\":\"corner-top-right\",layoutDependency:layoutDependency,layoutId:\"i2eXCn_qs-container\",name:\"corner-top-right\",nodeId:\"i2eXCn_qs\",rendersWithMotion:true,scopeId:\"b4fg3rxVx\",children:/*#__PURE__*/_jsx(CornerContainer,{height:\"100%\",id:\"i2eXCn_qs\",K8G53XuMI:\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",layoutId:\"i2eXCn_qs\",name:\"corner-top-right\",style:{height:\"100%\",width:\"100%\"},variant:\"H0aOy1hxh\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"Ox6dIu14Y-hover\":{height:8,width:\"8px\",y:(componentViewport?.y||0)+(componentViewport?.height||174)-7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ag7bdu-container\",\"data-framer-name\":\"corner-bottom-left\",layoutDependency:layoutDependency,layoutId:\"a7XisiQsx-container\",name:\"corner-bottom-left\",nodeId:\"a7XisiQsx\",rendersWithMotion:true,scopeId:\"b4fg3rxVx\",children:/*#__PURE__*/_jsx(CornerContainer,{height:\"100%\",id:\"a7XisiQsx\",K8G53XuMI:\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",layoutId:\"a7XisiQsx\",name:\"corner-bottom-left\",style:{height:\"100%\",width:\"100%\"},variant:\"ouXLcupFJ\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"Ox6dIu14Y-hover\":{height:8,width:\"8px\",y:(componentViewport?.y||0)+-1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ebx1wl-container\",\"data-framer-name\":\"corner-top-left\",layoutDependency:layoutDependency,layoutId:\"AMxZApXp5-container\",name:\"corner-top-left\",nodeId:\"AMxZApXp5\",rendersWithMotion:true,scopeId:\"b4fg3rxVx\",children:/*#__PURE__*/_jsx(CornerContainer,{height:\"100%\",id:\"AMxZApXp5\",K8G53XuMI:\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",layoutId:\"AMxZApXp5\",name:\"corner-top-left\",style:{height:\"100%\",width:\"100%\"},variant:\"MdMaVkQwt\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Scjq.framer-zs07wo, .framer-2Scjq .framer-zs07wo { display: block; }\",\".framer-2Scjq.framer-r628bg { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 174px; justify-content: flex-start; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 410px; }\",\".framer-2Scjq .framer-723l66 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2Scjq .framer-jqjtyy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2Scjq .framer-1hig94u { flex: 1 0 0px; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2Scjq .framer-11mn3pb-container { flex: none; height: 27px; position: relative; width: 19px; }\",\".framer-2Scjq .framer-cmzuv8 { align-content: center; align-items: center; 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-2Scjq .framer-d46pda { flex: 1 0 0px; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2Scjq .framer-bew93s-container { bottom: -1px; flex: none; height: 8px; position: absolute; right: -1px; width: 8px; z-index: 1; }\",\".framer-2Scjq .framer-1uzveoy-container { flex: none; height: 8px; position: absolute; right: -1px; top: -1px; width: 8px; z-index: 1; }\",\".framer-2Scjq .framer-ag7bdu-container { bottom: -1px; flex: none; height: 8px; left: -1px; position: absolute; width: 8px; z-index: 1; }\",\".framer-2Scjq .framer-ebx1wl-container { flex: none; height: 8px; left: -1px; position: absolute; top: -1px; width: 8px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 174\n * @framerIntrinsicWidth 410\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FKVIhUvgd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VxKmKJIXd\":\"title\",\"EtVrJjUaz\":\"text\",\"KtvLP_WId\":\"number\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerb4fg3rxVx=withCSS(Component,css,\"framer-2Scjq\");export default Framerb4fg3rxVx;Framerb4fg3rxVx.displayName=\"Home_3ColCard\";Framerb4fg3rxVx.defaultProps={height:174,width:410};addPropertyControls(Framerb4fg3rxVx,{VxKmKJIXd:{defaultValue:\"Scalable\",displayTextArea:false,title:\"Title\",type:ControlType.String},EtVrJjUaz:{defaultValue:\"Effortlessly handle increasing traffic and evolving needs.\",displayTextArea:false,title:\"Text\",type:ControlType.String},KtvLP_WId:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String}});addFonts(Framerb4fg3rxVx,[{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\"}]},...NumberFonts,...CornerContainerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb4fg3rxVx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"174\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"VxKmKJIXd\\\":\\\"title\\\",\\\"EtVrJjUaz\\\":\\\"text\\\",\\\"KtvLP_WId\\\":\\\"number\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FKVIhUvgd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"410\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b4fg3rxVx.map", "// Generated by Framer (6c2a425)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"nuymrU4vV\",\"gwsOHQnrL\"];const serializationHash=\"framer-PvslH\";const variantClassNames={gwsOHQnrL:\"framer-v-1qrhibt\",nuymrU4vV:\"framer-v-16ouccx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1440-1280\":\"gwsOHQnrL\",\"1520-1728\":\"nuymrU4vV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nuymrU4vV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nuymrU4vV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1520,pixelWidth:2026,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png\",srcSet:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png 2026w\"},className:cx(scopingClassNames,\"framer-16ouccx\",className,classNames),\"data-framer-name\":\"1520-1728\",layoutDependency:layoutDependency,layoutId:\"nuymrU4vV\",ref:refBinding,style:{...style},...addPropertyOverrides({gwsOHQnrL:{\"data-framer-name\":\"1440-1280\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PvslH.framer-ocm2rc, .framer-PvslH .framer-ocm2rc { display: block; }\",\".framer-PvslH.framer-16ouccx { height: 384px; position: relative; width: 505px; }\",\".framer-PvslH.framer-v-1qrhibt.framer-16ouccx { aspect-ratio: 1.3143564356435644 / 1; height: var(--framer-aspect-ratio-supported, 335px); width: 440px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 384\n * @framerIntrinsicWidth 505\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gwsOHQnrL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerdcz0c3c69=withCSS(Component,css,\"framer-PvslH\");export default Framerdcz0c3c69;Framerdcz0c3c69.displayName=\"UI-Image\";Framerdcz0c3c69.defaultProps={height:384,width:505};addPropertyControls(Framerdcz0c3c69,{variant:{options:[\"nuymrU4vV\",\"gwsOHQnrL\"],optionTitles:[\"1520-1728\",\"1440-1280\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerdcz0c3c69,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerdcz0c3c69\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"384\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gwsOHQnrL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"505\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dcz0c3c69.map", "// Generated by Framer (6c2a425)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LineH from\"https://framerusercontent.com/modules/w6CkD3iVefyYqf54vFzn/j324eNCObgtj5UcX7HrP/dEa6h5jx5.js\";import __EcosystemGalleryControlItem from\"https://framerusercontent.com/modules/PUATBySbKZBwDbcCkWc1/WiDpoyVW9WZHLcYW47CS/qZaUUt4_n.js\";import __EcosystemImageContainer from\"https://framerusercontent.com/modules/D9hvgqXhGsky6oegTV5I/yDcPXemx9vFVP2Ov4Dr8/uwkMVxrMM.js\";const __EcosystemGalleryControlItemFonts=getFonts(__EcosystemGalleryControlItem);const LineHFonts=getFonts(LineH);const __EcosystemImageContainerFonts=getFonts(__EcosystemImageContainer);const cycleOrder=[\"lAwQAsbUt\",\"cCvs6sYWC\",\"wUABk0uHy\",\"TzRYrR0k3\",\"MEGzy21BU\",\"YMD2sJ9Hp\",\"jt7EJA6hM\",\"aRr4P8u8U\",\"KHm9CRNrV\"];const serializationHash=\"framer-Qed5j\";const variantClassNames={aRr4P8u8U:\"framer-v-741q7\",cCvs6sYWC:\"framer-v-im338r\",jt7EJA6hM:\"framer-v-zo30i\",KHm9CRNrV:\"framer-v-1ld3dwt\",lAwQAsbUt:\"framer-v-qqp9n\",MEGzy21BU:\"framer-v-1k5u7ab\",TzRYrR0k3:\"framer-v-1w9eqdh\",wUABk0uHy:\"framer-v-129l9dk\",YMD2sJ9Hp:\"framer-v-12q9gog\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"DESKTOP \\xb7 1\":\"lAwQAsbUt\",\"DESKTOP \\xb7 2\":\"cCvs6sYWC\",\"DESKTOP \\xb7 3\":\"wUABk0uHy\",\"Mobile 1\":\"TzRYrR0k3\",\"Mobile 2\":\"aRr4P8u8U\",\"Mobile 3\":\"KHm9CRNrV\",\"Tablet 1\":\"MEGzy21BU\",\"Tablet 2\":\"YMD2sJ9Hp\",\"Tablet 3\":\"jt7EJA6hM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lAwQAsbUt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lAwQAsbUt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const HdXKo0RZ31uzmkc4=activeVariantCallback(async(...args)=>{setVariant(\"lAwQAsbUt\");});const HdXKo0RZ314nasf4=activeVariantCallback(async(...args)=>{setVariant(\"MEGzy21BU\");});const HdXKo0RZ3z7v1tw=activeVariantCallback(async(...args)=>{setVariant(\"TzRYrR0k3\");});const HdXKo0RZ31hzotmd=activeVariantCallback(async(...args)=>{setVariant(\"cCvs6sYWC\");});const HdXKo0RZ3lp3z8h=activeVariantCallback(async(...args)=>{setVariant(\"aRr4P8u8U\");});const HdXKo0RZ3zwsbov=activeVariantCallback(async(...args)=>{setVariant(\"YMD2sJ9Hp\");});const HdXKo0RZ31bm5kc5=activeVariantCallback(async(...args)=>{setVariant(\"wUABk0uHy\");});const HdXKo0RZ3sx53zo=activeVariantCallback(async(...args)=>{setVariant(\"KHm9CRNrV\");});const HdXKo0RZ3smpx14=activeVariantCallback(async(...args)=>{setVariant(\"jt7EJA6hM\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"MEGzy21BU\",\"YMD2sJ9Hp\",\"jt7EJA6hM\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"TzRYrR0k3\",\"aRr4P8u8U\",\"KHm9CRNrV\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qqp9n\",className,classNames),\"data-framer-name\":\"DESKTOP \\xb7 1\",layoutDependency:layoutDependency,layoutId:\"lAwQAsbUt\",ref:refBinding,style:{backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",boxShadow:\"0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",...style},...addPropertyOverrides({aRr4P8u8U:{\"data-framer-name\":\"Mobile 2\"},cCvs6sYWC:{\"data-framer-name\":\"DESKTOP \\xb7 2\"},jt7EJA6hM:{\"data-framer-name\":\"Tablet 3\"},KHm9CRNrV:{\"data-framer-name\":\"Mobile 3\"},MEGzy21BU:{\"data-framer-name\":\"Tablet 1\"},TzRYrR0k3:{\"data-framer-name\":\"Mobile 1\"},wUABk0uHy:{\"data-framer-name\":\"DESKTOP \\xb7 3\"},YMD2sJ9Hp:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15inek1\",\"data-framer-name\":\"_Ecosystem Gallery \\xb7 Control\",layoutDependency:layoutDependency,layoutId:\"nPHNU5HMF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1,width:`max(${componentViewport?.width||\"100vw\"} / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({aRr4P8u8U:{height:0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+0},cCvs6sYWC:{height:58},jt7EJA6hM:{height:152,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0},KHm9CRNrV:{height:0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+0},MEGzy21BU:{height:172,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0},TzRYrR0k3:{height:58,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-216)/2+0+0)+0+0},wUABk0uHy:{height:58},YMD2sJ9Hp:{height:152,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o7f1i-container\",layoutDependency:layoutDependency,layoutId:\"iylsTCS9v-container\",nodeId:\"iylsTCS9v\",rendersWithMotion:true,scopeId:\"EZfMPrMNn\",children:/*#__PURE__*/_jsx(__EcosystemGalleryControlItem,{auMFb8h4Z:true,FI756JGD5:\"0px 24px 20px 24px\",Gx1fupgat:\"Marketplace offers advanced large language models, including multimodal abilities to make AI application smarter.\",height:\"100%\",id:\"iylsTCS9v\",layoutId:\"iylsTCS9v\",o3qM80aHS:\"01\",style:{height:\"100%\",width:\"100%\"},variant:\"UBfXPUJn6\",width:\"100%\",X6LOt1Fmj:\"16px 24px 16px 24px\",xNwzD6ZO3:\"Enhance AI Capabilities\",...addPropertyOverrides({aRr4P8u8U:{HdXKo0RZ3:HdXKo0RZ3z7v1tw,variant:\"d771mQDWc\"},cCvs6sYWC:{HdXKo0RZ3:HdXKo0RZ31uzmkc4,style:{width:\"100%\"},variant:\"d771mQDWc\"},jt7EJA6hM:{auMFb8h4Z:false,HdXKo0RZ3:HdXKo0RZ314nasf4,variant:\"d771mQDWc\"},KHm9CRNrV:{HdXKo0RZ3:HdXKo0RZ3z7v1tw,variant:\"d771mQDWc\"},MEGzy21BU:{auMFb8h4Z:false,FI756JGD5:\"0px 20px 20px 20px\",X6LOt1Fmj:\"20px 20px 20px 20px\"},TzRYrR0k3:{FI756JGD5:\"0px 20px 20px 20px\",style:{width:\"100%\"},X6LOt1Fmj:\"20px\"},wUABk0uHy:{HdXKo0RZ3:HdXKo0RZ31uzmkc4,style:{width:\"100%\"},variant:\"d771mQDWc\"},YMD2sJ9Hp:{auMFb8h4Z:false,HdXKo0RZ3:HdXKo0RZ314nasf4,variant:\"d771mQDWc\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zotmt6\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"aBIRlpWgn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max(${componentViewport?.width||\"100vw\"} / 3, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+(0+Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1+0)+8+0,...addPropertyOverrides({aRr4P8u8U:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+0+8+0},cCvs6sYWC:{y:(componentViewport?.y||0)+0+0+58+8+0},KHm9CRNrV:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+0+8+0},TzRYrR0k3:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-216)/2+0+0)+0+58+8+0},wUABk0uHy:{y:(componentViewport?.y||0)+0+0+58+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nyx054-container\",layoutDependency:layoutDependency,layoutId:\"mszUR9BrV-container\",nodeId:\"mszUR9BrV\",rendersWithMotion:true,scopeId:\"EZfMPrMNn\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"mszUR9BrV\",layoutId:\"mszUR9BrV\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`max(${componentViewport?.width||\"100vw\"} / 3, 1px)`,y:(componentViewport?.y||0)+0+0+(0+(Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1+17)+0),...addPropertyOverrides({aRr4P8u8U:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+17},cCvs6sYWC:{height:Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1,y:(componentViewport?.y||0)+0+0+75},jt7EJA6hM:{height:152,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0},KHm9CRNrV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+17},MEGzy21BU:{height:172,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0},TzRYrR0k3:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-216)/2+0+0)+0+75},wUABk0uHy:{y:(componentViewport?.y||0)+0+0+75},YMD2sJ9Hp:{height:152,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ojczrv-container\",layoutDependency:layoutDependency,layoutId:\"OcipR2xK8-container\",nodeId:\"OcipR2xK8\",rendersWithMotion:true,scopeId:\"EZfMPrMNn\",children:/*#__PURE__*/_jsx(__EcosystemGalleryControlItem,{auMFb8h4Z:true,FI756JGD5:\"0px 24px 20px 24px\",Gx1fupgat:\"Access smart strategies, extensions and bundles to create autonomous agent at the next level. \",HdXKo0RZ3:HdXKo0RZ31hzotmd,height:\"100%\",id:\"OcipR2xK8\",layoutId:\"OcipR2xK8\",o3qM80aHS:\"02\",style:{width:\"100%\"},variant:\"d771mQDWc\",width:\"100%\",X6LOt1Fmj:\"16px 24px 16px 24px\",xNwzD6ZO3:\"Build Advanced Agentic AI\",...addPropertyOverrides({aRr4P8u8U:{variant:\"UBfXPUJn6\"},cCvs6sYWC:{Gx1fupgat:\"Access agent strategies, extensions and bundles to create autonomous agent at the next level. \",HdXKo0RZ3:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UBfXPUJn6\"},jt7EJA6hM:{auMFb8h4Z:false,HdXKo0RZ3:HdXKo0RZ3zwsbov,style:{height:\"100%\",width:\"100%\"}},KHm9CRNrV:{HdXKo0RZ3:HdXKo0RZ3lp3z8h},MEGzy21BU:{auMFb8h4Z:false,FI756JGD5:\"0px 20px 20px 20px\",HdXKo0RZ3:HdXKo0RZ3zwsbov,style:{height:\"100%\",width:\"100%\"},X6LOt1Fmj:\"20px 20px 20px 20px\"},TzRYrR0k3:{FI756JGD5:\"0px 20px 20px 20px\",HdXKo0RZ3:HdXKo0RZ3lp3z8h,X6LOt1Fmj:\"20px\"},YMD2sJ9Hp:{auMFb8h4Z:false,HdXKo0RZ3:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UBfXPUJn6\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ml1ya\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"HkBRaNURm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max(${componentViewport?.width||\"100vw\"} / 3, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+(0+(Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1+17+58)+0)+8+0,...addPropertyOverrides({aRr4P8u8U:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+75+8+0},cCvs6sYWC:{y:(componentViewport?.y||0)+0+0+(0+(58+17+Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1)+0)+8+0},KHm9CRNrV:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+75+8+0},TzRYrR0k3:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-216)/2+0+0)+0+133+8+0},wUABk0uHy:{y:(componentViewport?.y||0)+0+0+133+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gps9lf-container\",layoutDependency:layoutDependency,layoutId:\"PbWmokQY7-container\",nodeId:\"PbWmokQY7\",rendersWithMotion:true,scopeId:\"EZfMPrMNn\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"PbWmokQY7\",layoutId:\"PbWmokQY7\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`max(${componentViewport?.width||\"100vw\"} / 3, 1px)`,y:(componentViewport?.y||0)+0+0+(0+(Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1+17+58+17)+0),...addPropertyOverrides({aRr4P8u8U:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+92},cCvs6sYWC:{y:(componentViewport?.y||0)+0+0+(0+(58+17+Math.max(0,(((componentViewport?.height||557)-0)*1-8-150)/1)*1+17)+0)},jt7EJA6hM:{height:152,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0},KHm9CRNrV:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-158)/2+0+0)+0+92},MEGzy21BU:{height:172,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0},TzRYrR0k3:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-216)/2+0+0)+0+150},wUABk0uHy:{height:Math.max(0,(((componentViewport?.height||200)-0)*1-8-150)/1)*1,y:(componentViewport?.y||0)+0+0+150},YMD2sJ9Hp:{height:152,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a3672v-container\",layoutDependency:layoutDependency,layoutId:\"T6BeyRipj-container\",nodeId:\"T6BeyRipj\",rendersWithMotion:true,scopeId:\"EZfMPrMNn\",children:/*#__PURE__*/_jsx(__EcosystemGalleryControlItem,{auMFb8h4Z:true,FI756JGD5:\"0px 24px 20px 24px\",Gx1fupgat:\"Install and work with the tools you love to extend capabilities, streamline workflows and automate tasks at ease.\",HdXKo0RZ3:HdXKo0RZ31bm5kc5,height:\"100%\",id:\"T6BeyRipj\",layoutId:\"T6BeyRipj\",o3qM80aHS:\"03\",style:{width:\"100%\"},variant:\"d771mQDWc\",width:\"100%\",X6LOt1Fmj:\"16px 24px 16px 24px\",xNwzD6ZO3:\"Connect and Automate\",...addPropertyOverrides({aRr4P8u8U:{HdXKo0RZ3:HdXKo0RZ3sx53zo},jt7EJA6hM:{auMFb8h4Z:false,HdXKo0RZ3:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UBfXPUJn6\"},KHm9CRNrV:{variant:\"UBfXPUJn6\"},MEGzy21BU:{auMFb8h4Z:false,FI756JGD5:\"0px 20px 20px 20px\",HdXKo0RZ3:HdXKo0RZ3smpx14,style:{height:\"100%\",width:\"100%\"},X6LOt1Fmj:\"20px 20px 20px 20px\"},TzRYrR0k3:{FI756JGD5:\"0px 20px 20px 20px\",HdXKo0RZ3:HdXKo0RZ3sx53zo,X6LOt1Fmj:\"20px\"},wUABk0uHy:{HdXKo0RZ3:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"UBfXPUJn6\"},YMD2sJ9Hp:{auMFb8h4Z:false,HdXKo0RZ3:HdXKo0RZ3smpx14,style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:567,width:`max(${componentViewport?.width||\"100vw\"} / 1.5, 1px)`,y:(componentViewport?.y||0)+0,...addPropertyOverrides({jt7EJA6hM:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+160+20)},MEGzy21BU:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+180+0)},YMD2sJ9Hp:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-747)/2+160+20)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wxz4d8-container\",layoutDependency:layoutDependency,layoutId:\"RHFbl0FPS-container\",nodeId:\"RHFbl0FPS\",rendersWithMotion:true,scopeId:\"EZfMPrMNn\",children:/*#__PURE__*/_jsx(__EcosystemImageContainer,{height:\"100%\",id:\"RHFbl0FPS\",layoutId:\"RHFbl0FPS\",style:{width:\"100%\"},variant:\"cpuguQYRD\",width:\"100%\",...addPropertyOverrides({cCvs6sYWC:{variant:\"WXruGBGbi\"},jt7EJA6hM:{variant:\"eqdi8Z6uh\"},wUABk0uHy:{variant:\"eqdi8Z6uh\"},YMD2sJ9Hp:{variant:\"WXruGBGbi\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qed5j.framer-854tu3, .framer-Qed5j .framer-854tu3 { display: block; }\",\".framer-Qed5j.framer-qqp9n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1272px; }\",\".framer-Qed5j .framer-15inek1 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.33333 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 1px; }\",\".framer-Qed5j .framer-1o7f1i-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-Qed5j .framer-zotmt6, .framer-Qed5j .framer-ml1ya { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 20px 8px 20px; position: relative; width: 100%; }\",\".framer-Qed5j .framer-1nyx054-container, .framer-Qed5j .framer-gps9lf-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-Qed5j .framer-ojczrv-container, .framer-Qed5j .framer-a3672v-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Qed5j .framer-wxz4d8-container { flex: 0.6666666 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Qed5j.framer-v-im338r .framer-1o7f1i-container, .framer-Qed5j.framer-v-129l9dk .framer-1o7f1i-container, .framer-Qed5j.framer-v-1w9eqdh .framer-1o7f1i-container { flex: none; height: auto; }\",\".framer-Qed5j.framer-v-im338r .framer-ojczrv-container, .framer-Qed5j.framer-v-129l9dk .framer-a3672v-container { flex: 1 0 0px; height: 1px; }\",\".framer-Qed5j.framer-v-1w9eqdh.framer-qqp9n, .framer-Qed5j.framer-v-741q7.framer-qqp9n, .framer-Qed5j.framer-v-1ld3dwt.framer-qqp9n { flex-direction: column; width: 390px; }\",\".framer-Qed5j.framer-v-1w9eqdh .framer-15inek1, .framer-Qed5j.framer-v-741q7 .framer-15inek1, .framer-Qed5j.framer-v-1ld3dwt .framer-15inek1 { align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-Qed5j.framer-v-1k5u7ab.framer-qqp9n { flex-direction: column; }\",\".framer-Qed5j.framer-v-1k5u7ab .framer-15inek1 { align-self: unset; flex: none; flex-direction: row; height: 180px; width: 100%; }\",\".framer-Qed5j.framer-v-1k5u7ab .framer-1o7f1i-container, .framer-Qed5j.framer-v-12q9gog .framer-1o7f1i-container, .framer-Qed5j.framer-v-zo30i .framer-1o7f1i-container { height: 100%; order: 0; width: 1px; }\",\".framer-Qed5j.framer-v-1k5u7ab .framer-ojczrv-container, .framer-Qed5j.framer-v-12q9gog .framer-ojczrv-container, .framer-Qed5j.framer-v-zo30i .framer-ojczrv-container { flex: 1 0 0px; height: 100%; order: 1; width: 1px; }\",\".framer-Qed5j.framer-v-1k5u7ab .framer-a3672v-container, .framer-Qed5j.framer-v-12q9gog .framer-a3672v-container, .framer-Qed5j.framer-v-zo30i .framer-a3672v-container { flex: 1 0 0px; height: 100%; order: 2; width: 1px; }\",\".framer-Qed5j.framer-v-1k5u7ab .framer-wxz4d8-container, .framer-Qed5j.framer-v-12q9gog .framer-wxz4d8-container, .framer-Qed5j.framer-v-zo30i .framer-wxz4d8-container { flex: none; width: 100%; }\",\".framer-Qed5j.framer-v-12q9gog.framer-qqp9n, .framer-Qed5j.framer-v-zo30i.framer-qqp9n { flex-direction: column; gap: 20px; }\",\".framer-Qed5j.framer-v-12q9gog .framer-15inek1, .framer-Qed5j.framer-v-zo30i .framer-15inek1 { align-self: unset; flex: none; flex-direction: row; height: 160px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 557\n * @framerIntrinsicWidth 1272\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cCvs6sYWC\":{\"layout\":[\"fixed\",\"auto\"]},\"wUABk0uHy\":{\"layout\":[\"fixed\",\"auto\"]},\"TzRYrR0k3\":{\"layout\":[\"fixed\",\"auto\"]},\"MEGzy21BU\":{\"layout\":[\"fixed\",\"auto\"]},\"YMD2sJ9Hp\":{\"layout\":[\"fixed\",\"auto\"]},\"jt7EJA6hM\":{\"layout\":[\"fixed\",\"auto\"]},\"aRr4P8u8U\":{\"layout\":[\"fixed\",\"auto\"]},\"KHm9CRNrV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEZfMPrMNn=withCSS(Component,css,\"framer-Qed5j\");export default FramerEZfMPrMNn;FramerEZfMPrMNn.displayName=\"Ecosystem Gallery\";FramerEZfMPrMNn.defaultProps={height:557,width:1272};addPropertyControls(FramerEZfMPrMNn,{variant:{options:[\"lAwQAsbUt\",\"cCvs6sYWC\",\"wUABk0uHy\",\"TzRYrR0k3\",\"MEGzy21BU\",\"YMD2sJ9Hp\",\"jt7EJA6hM\",\"aRr4P8u8U\",\"KHm9CRNrV\"],optionTitles:[\"DESKTOP \\xb7 1\",\"DESKTOP \\xb7 2\",\"DESKTOP \\xb7 3\",\"Mobile 1\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\",\"Mobile 2\",\"Mobile 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEZfMPrMNn,[{explicitInter:true,fonts:[]},...__EcosystemGalleryControlItemFonts,...LineHFonts,...__EcosystemImageContainerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEZfMPrMNn\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"557\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1272\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cCvs6sYWC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wUABk0uHy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TzRYrR0k3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MEGzy21BU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YMD2sJ9Hp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jt7EJA6hM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aRr4P8u8U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KHm9CRNrV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (55cf326)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import _EnterpriseSubheaderContentTab from\"https://framerusercontent.com/modules/eWjykpjzGHfkvMBcwXxx/qsVTPMLT59eSl5mr78Lt/bKjP8M1dc.js\";import ButtonRollingEN from\"https://framerusercontent.com/modules/pDpozAnBDWOl4py4uzKG/xsfPrAwwFirhtQ9s31NY/EjrjXoDPl.js\";const _EnterpriseSubheaderContentTabFonts=getFonts(_EnterpriseSubheaderContentTab);const _EnterpriseSubheaderContentTabWithVariantAppearEffect=withVariantAppearEffect(_EnterpriseSubheaderContentTab);const ButtonRollingENFonts=getFonts(ButtonRollingEN);const cycleOrder=[\"G2pejgPUN\",\"WWarM7bo5\",\"yo2C6hRqf\",\"ptlzWZcms\",\"cdKcLSavo\",\"MxQphXukm\"];const serializationHash=\"framer-ZWGo6\";const variantClassNames={cdKcLSavo:\"framer-v-9jwqyi\",G2pejgPUN:\"framer-v-yqojpe\",MxQphXukm:\"framer-v-koae6e\",ptlzWZcms:\"framer-v-6kzz0u\",WWarM7bo5:\"framer-v-37p9y8\",yo2C6hRqf:\"framer-v-w4xb4v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"G2pejgPUN\",\"Desktop 2\":\"WWarM7bo5\",\"Desktop 3\":\"yo2C6hRqf\",\"Mobile 1\":\"ptlzWZcms\",\"Mobile 2\":\"cdKcLSavo\",\"Mobile 3\":\"MxQphXukm\"};const getProps=({casesSection,casestudyLink,cursor,getStarted,height,id,impactLink,impactSection,link,padding,width,...props})=>{return{...props,bAa80lhP5:casestudyLink??props.bAa80lhP5,BAIkb8FVe:cursor??props.BAIkb8FVe,cP9LSmFs_:link??props.cP9LSmFs_,jZrNoqgHu:padding??props.jZrNoqgHu??\"8px\",tUDvMPucS:getStarted??props.tUDvMPucS??\"Get started\",UQizhXbiq:casesSection??props.UQizhXbiq,variant:humanReadableVariantMap[props.variant]??props.variant??\"G2pejgPUN\",VDtD2Xcg0:impactLink??props.VDtD2Xcg0,wTSys90Hb:impactSection??props.wTSys90Hb};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,VDtD2Xcg0,bAa80lhP5,wTSys90Hb,UQizhXbiq,tUDvMPucS,jZrNoqgHu,cP9LSmFs_,BAIkb8FVe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G2pejgPUN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const qHjjob7b0ynvd8q=activeVariantCallback(async(...args)=>{setVariant(\"WWarM7bo5\");});const qHjjob7b01lubnmd=activeVariantCallback(async(...args)=>{setVariant(\"yo2C6hRqf\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"ptlzWZcms\",\"cdKcLSavo\",\"MxQphXukm\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-yqojpe\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"G2pejgPUN\",ref:refBinding,style:{\"--hnwzga\":numberToPixelString(jZrNoqgHu),backgroundColor:\"rgb(245, 245, 245)\",...style},...addPropertyOverrides({cdKcLSavo:{\"data-framer-name\":\"Mobile 2\"},MxQphXukm:{\"data-framer-name\":\"Mobile 3\"},ptlzWZcms:{\"data-framer-name\":\"Mobile 1\"},WWarM7bo5:{\"data-framer-name\":\"Desktop 2\"},yo2C6hRqf:{\"data-framer-name\":\"Desktop 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-154lmva\",\"data-framer-name\":\"Tab\",layoutDependency:layoutDependency,layoutId:\"S96iv6FRM\",children:[/*#__PURE__*/_jsx(Link,{href:VDtD2Xcg0,motionChild:true,nodeId:\"kVLPj0iEW\",openInNewTab:false,scopeId:\"kjTgd4Pe9\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zi7xq8 framer-11kwkpx\",layoutDependency:layoutDependency,layoutId:\"kVLPj0iEW\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((((componentViewport?.height||50)-0)*1-0)*1-0)*1,y:(componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-((componentViewport?.height||50)-0)*1)/2)+(0+(((componentViewport?.height||50)-0)*1-0-(((componentViewport?.height||50)-0)*1-0)*1)/2)+(0+((((componentViewport?.height||50)-0)*1-0)*1-0-((((componentViewport?.height||50)-0)*1-0)*1-0)*1)/2),...addPropertyOverrides({ptlzWZcms:{height:34,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12fs008-container\",layoutDependency:layoutDependency,layoutId:\"jwRNTCnGG-container\",nodeId:\"jwRNTCnGG\",rendersWithMotion:true,scopeId:\"kjTgd4Pe9\",children:/*#__PURE__*/_jsx(_EnterpriseSubheaderContentTabWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:wTSys90Hb,target:\"Hl7mmaspk\"},{ref:UQizhXbiq,target:\"sDXaMtu5X\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,Fsp6hTlD_:\"Impact\",height:\"100%\",id:\"jwRNTCnGG\",layoutId:\"jwRNTCnGG\",qHjjob7b0:qHjjob7b0ynvd8q,style:{height:\"100%\"},variant:\"sDXaMtu5X\",width:\"100%\",...addPropertyOverrides({cdKcLSavo:{qHjjob7b0:undefined,variant:\"Hl7mmaspk\"},WWarM7bo5:{qHjjob7b0:undefined,variant:\"Hl7mmaspk\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:bAa80lhP5,motionChild:true,nodeId:\"P4B0fyv74\",openInNewTab:false,scopeId:\"kjTgd4Pe9\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xyl9wj framer-11kwkpx\",layoutDependency:layoutDependency,layoutId:\"P4B0fyv74\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((((componentViewport?.height||50)-0)*1-0)*1-0)*1,y:(componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-((componentViewport?.height||50)-0)*1)/2)+(0+(((componentViewport?.height||50)-0)*1-0-(((componentViewport?.height||50)-0)*1-0)*1)/2)+(0+((((componentViewport?.height||50)-0)*1-0)*1-0-((((componentViewport?.height||50)-0)*1-0)*1-0)*1)/2),...addPropertyOverrides({ptlzWZcms:{height:34,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ocyqqj-container\",layoutDependency:layoutDependency,layoutId:\"AFobgwbcq-container\",nodeId:\"AFobgwbcq\",rendersWithMotion:true,scopeId:\"kjTgd4Pe9\",children:/*#__PURE__*/_jsx(_EnterpriseSubheaderContentTabWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:wTSys90Hb,target:\"sDXaMtu5X\"},{ref:UQizhXbiq,target:\"Hl7mmaspk\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,Fsp6hTlD_:\"Case Study\",height:\"100%\",id:\"AFobgwbcq\",layoutId:\"AFobgwbcq\",qHjjob7b0:qHjjob7b01lubnmd,style:{height:\"100%\"},variant:\"sDXaMtu5X\",width:\"100%\",...addPropertyOverrides({MxQphXukm:{qHjjob7b0:undefined,variant:\"Hl7mmaspk\"},yo2C6hRqf:{qHjjob7b0:undefined,variant:\"Hl7mmaspk\"}},baseVariant,gestureVariant)})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(${componentViewport?.width||\"100vw\"} / 4)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-50)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ymat24-container\",layoutDependency:layoutDependency,layoutId:\"CS2r_tvYb-container\",nodeId:\"CS2r_tvYb\",rendersWithMotion:true,scopeId:\"kjTgd4Pe9\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-6fb885fd-a529-4a6b-bb67-60ceb98870aa, rgb(0, 44, 214))\",En8F1FnWK:tUDvMPucS,height:\"100%\",id:\"CS2r_tvYb\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"CS2r_tvYb\",N_d2uuC0E:false,oM3fyv42q:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},tenuaCvri:cP9LSmFs_,width:\"100%\",XMjKNHjmA:BAIkb8FVe})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZWGo6.framer-11kwkpx, .framer-ZWGo6 .framer-11kwkpx { display: block; }\",\".framer-ZWGo6.framer-yqojpe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1271px; }\",\".framer-ZWGo6 .framer-154lmva { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZWGo6 .framer-zi7xq8, .framer-ZWGo6 .framer-1xyl9wj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ZWGo6 .framer-12fs008-container, .framer-ZWGo6 .framer-1ocyqqj-container { flex: none; height: 100%; position: relative; width: auto; }\",\".framer-ZWGo6 .framer-ymat24-container { flex: none; height: 50px; position: relative; width: 25%; }\",\".framer-ZWGo6.framer-v-6kzz0u.framer-yqojpe { height: min-content; padding: var(--hnwzga); }\",\".framer-ZWGo6.framer-v-6kzz0u .framer-154lmva { height: 34px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 1271\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WWarM7bo5\":{\"layout\":[\"fixed\",\"fixed\"]},\"yo2C6hRqf\":{\"layout\":[\"fixed\",\"fixed\"]},\"ptlzWZcms\":{\"layout\":[\"fixed\",\"auto\"]},\"cdKcLSavo\":{\"layout\":[\"fixed\",\"fixed\"]},\"MxQphXukm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VDtD2Xcg0\":\"impactLink\",\"bAa80lhP5\":\"casestudyLink\",\"wTSys90Hb\":\"impactSection\",\"UQizhXbiq\":\"casesSection\",\"tUDvMPucS\":\"getStarted\",\"jZrNoqgHu\":\"padding\",\"cP9LSmFs_\":\"link\",\"BAIkb8FVe\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkjTgd4Pe9=withCSS(Component,css,\"framer-ZWGo6\");export default FramerkjTgd4Pe9;FramerkjTgd4Pe9.displayName=\"Enterprise \\xb7 Subheader Content\";FramerkjTgd4Pe9.defaultProps={height:50,width:1271};addPropertyControls(FramerkjTgd4Pe9,{variant:{options:[\"G2pejgPUN\",\"WWarM7bo5\",\"yo2C6hRqf\",\"ptlzWZcms\",\"cdKcLSavo\",\"MxQphXukm\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Mobile 1\",\"Mobile 2\",\"Mobile 3\"],title:\"Variant\",type:ControlType.Enum},VDtD2Xcg0:{title:\"ImpactLink\",type:ControlType.Link},bAa80lhP5:{title:\"CasestudyLink\",type:ControlType.Link},wTSys90Hb:{title:\"Impact-section\",type:ControlType.ScrollSectionRef},UQizhXbiq:{title:\"Cases-section\",type:ControlType.ScrollSectionRef},tUDvMPucS:{defaultValue:\"Get started\",title:\"Get-Started\",type:ControlType.String},jZrNoqgHu:{defaultValue:\"8px\",title:\"Padding\",type:ControlType.Padding},cP9LSmFs_:{title:\"Link\",type:ControlType.Link},BAIkb8FVe:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerkjTgd4Pe9,[{explicitInter:true,fonts:[]},..._EnterpriseSubheaderContentTabFonts,...ButtonRollingENFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkjTgd4Pe9\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WWarM7bo5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yo2C6hRqf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ptlzWZcms\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cdKcLSavo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MxQphXukm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1271\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"VDtD2Xcg0\\\":\\\"impactLink\\\",\\\"bAa80lhP5\\\":\\\"casestudyLink\\\",\\\"wTSys90Hb\\\":\\\"impactSection\\\",\\\"UQizhXbiq\\\":\\\"casesSection\\\",\\\"tUDvMPucS\\\":\\\"getStarted\\\",\\\"jZrNoqgHu\\\":\\\"padding\\\",\\\"cP9LSmFs_\\\":\\\"link\\\",\\\"BAIkb8FVe\\\":\\\"cursor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (64bdc4e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ArrowOnDarkBg from\"https://framerusercontent.com/modules/Sof3y7Y4BXq7N7SWikYM/Nuk5f5rfCJXxJ12YGERA/eEOH_o8D5.js\";import QuotationMark from\"https://framerusercontent.com/modules/jeMuxaseoBqsWpoEtYP1/fy1k4BrzMUc9TfTnUyid/NC8OTiYhn.js\";import _TestimonialTextsEN from\"https://framerusercontent.com/modules/uc6CvaSSGvJ7ANTWkEm4/LbTw4PhTmGO655KPR8sX/vEvkbSXqJ.js\";const QuotationMarkFonts=getFonts(QuotationMark);const _TestimonialTextsENFonts=getFonts(_TestimonialTextsEN);const ArrowOnDarkBgFonts=getFonts(ArrowOnDarkBg);const _TestimonialTextsENControls=getPropertyControls(_TestimonialTextsEN);const enabledGestures={NrynoJDdy:{hover:true},NU9v7AQP8:{hover:true},ZwM3u4VoN:{hover:true}};const cycleOrder=[\"NrynoJDdy\",\"NU9v7AQP8\",\"ZwM3u4VoN\",\"trJwQFO1E\",\"wuZUKInMW\",\"tvOtrWYgw\"];const serializationHash=\"framer-DnMvv\";const variantClassNames={NrynoJDdy:\"framer-v-a767j0\",NU9v7AQP8:\"framer-v-2gb02e\",trJwQFO1E:\"framer-v-iix2q2\",tvOtrWYgw:\"framer-v-lrp0mf\",wuZUKInMW:\"framer-v-12strq2\",ZwM3u4VoN:\"framer-v-jkixzn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableEnumMap2={\"First \\xb7 EN\":\"Y6hqNN3Mk\",\"Second \\xb7 EN\":\"PjJe5JgUc\",\"Third \\xb7 EN\":\"sNBKIpnRS\"};const humanReadableVariantMap={\"MOBILE-First\":\"trJwQFO1E\",\"MOBILE-Second\":\"wuZUKInMW\",\"MOBILE-Third\":\"tvOtrWYgw\",First:\"NrynoJDdy\",Second:\"NU9v7AQP8\",Third:\"ZwM3u4VoN\"};const getProps=({card1,card2,card3,content1,content2,content3,cursorTransparent,direction,distribute,gap,height,id,padding,width,...props})=>{return{...props,CEtoRTXwV:humanReadableEnumMap2[card1]??card1??props.CEtoRTXwV??\"Y6hqNN3Mk\",dYncExrQK:humanReadableEnumMap2[card2]??card2??props.dYncExrQK??\"PjJe5JgUc\",DZitwU8An:content1??props.DZitwU8An??\"In this climate of perpetual beta, tools enabling rapid validation aren't just helpful, they're existential. For Volvo Cars, strategically navigating this AI frontier, this is where Dify delivers indispensable value.\",MTDsfepx9:padding??props.MTDsfepx9??\"24px 24px 24px 24px\",P42yNQzGq:content3??props.P42yNQzGq??\"What makes Dify stands out is its ability to democratize AI agent development. By combining powerful AI/ML capabilities on a no-code platform, its rapid deployment and intuitive interface make it highly accessible even for beginners, significantly accelerating citizen development.\",qIcBqhljJ:gap??props.qIcBqhljJ??20,QOeJ0y2vP:humanReadableEnumMap1[distribute]??distribute??props.QOeJ0y2vP??\"space-between\",SUZljNWhM:humanReadableEnumMap2[card3]??card3??props.SUZljNWhM??\"sNBKIpnRS\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NrynoJDdy\",WH7nHWRzl:humanReadableEnumMap[direction]??direction??props.WH7nHWRzl??\"row\",wsQvWqe3Q:cursorTransparent??props.wsQvWqe3Q,Zc4RZ93eB:content2??props.Zc4RZ93eB??\"Dify's intuitive interface allows our teams to rapidly design and deploy complex natural language processing pipelines, enabling us to improve the quality of our assessment products while reducing cost and time to market. \"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WH7nHWRzl,QOeJ0y2vP,MTDsfepx9,qIcBqhljJ,CEtoRTXwV,DZitwU8An,Zc4RZ93eB,P42yNQzGq,dYncExrQK,SUZljNWhM,wsQvWqe3Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NrynoJDdy\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const UD5SL2dil1ndi77u=activeVariantCallback(async(...args)=>{setVariant(\"NrynoJDdy\");});const UD5SL2dil1sddsi5=activeVariantCallback(async(...args)=>{setVariant(\"NU9v7AQP8\");});const UD5SL2dilhca1nm=activeVariantCallback(async(...args)=>{setVariant(\"trJwQFO1E\");});const UD5SL2dil1rje7pk=activeVariantCallback(async(...args)=>{setVariant(\"wuZUKInMW\");});const UD5SL2dilsy6rgo=activeVariantCallback(async(...args)=>{setVariant(\"ZwM3u4VoN\");});const UD5SL2dil1c92erb=activeVariantCallback(async(...args)=>{setVariant(\"tvOtrWYgw\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-a767j0\",className,classNames),\"data-framer-name\":\"First\",layoutDependency:layoutDependency,layoutId:\"NrynoJDdy\",ref:refBinding,style:{\"--16anluw\":WH7nHWRzl===\"column\"?\"100%\":\"1px\",\"--1iw0kpf\":WH7nHWRzl,\"--2sns5d\":WH7nHWRzl===\"row\"?\"100%\":\"1px\",backgroundColor:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",...style},...addPropertyOverrides({\"NrynoJDdy-hover\":{\"data-framer-name\":undefined},\"NU9v7AQP8-hover\":{\"data-framer-name\":undefined},\"ZwM3u4VoN-hover\":{\"data-framer-name\":undefined},NU9v7AQP8:{\"data-framer-name\":\"Second\"},trJwQFO1E:{\"data-framer-name\":\"MOBILE-First\"},tvOtrWYgw:{\"data-framer-name\":\"MOBILE-Third\"},wuZUKInMW:{\"data-framer-name\":\"MOBILE-Second\"},ZwM3u4VoN:{\"data-framer-name\":\"Third\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7sfzvd\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"yCUcYR1Hj\",style:{\"--18ww4ac\":numberToPixelString(MTDsfepx9),\"--1k5wm6d\":QOeJ0y2vP,\"--th71j2\":numberToPixelString(qIcBqhljJ)},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hdbglq-container\",layoutDependency:layoutDependency,layoutId:\"idV1oZQQj-container\",nodeId:\"idV1oZQQj\",rendersWithMotion:true,scopeId:\"M4oY9BFLC\",children:/*#__PURE__*/_jsx(QuotationMark,{height:\"100%\",id:\"idV1oZQQj\",layoutId:\"idV1oZQQj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6peyjf\",layoutDependency:layoutDependency,layoutId:\"TgiRkesgN\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(${WH7nHWRzl===\"row\"?`max(${componentViewport?.width||\"100vw\"}, 1px)`:componentViewport?.width||\"100vw\"} - ${MTDsfepx9*2}px, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y1cmtc-container\",layoutDependency:layoutDependency,layoutId:\"TTOBOnNIG-container\",nodeId:\"TTOBOnNIG\",rendersWithMotion:true,scopeId:\"M4oY9BFLC\",children:/*#__PURE__*/_jsx(_TestimonialTextsEN,{a9zA0SeHH:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",cDdtLWo9L:P42yNQzGq,fHEg1sAvp:Zc4RZ93eB,grZC5sYeR:addImageAlt({pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/PfW1vZUJZFkMlUpqMCMR8osmiY.svg\"},\"\"),height:\"100%\",id:\"TTOBOnNIG\",layoutId:\"TTOBOnNIG\",R0_fbDLea:addImageAlt({pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/4ElPmRa8nIX6J5ArfKihDB8gMA.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},TzEUYQg1U:DZitwU8An,U7QikWwt5:\"var(--token-34aef211-1374-4e82-9930-5e7a9b3f02f6, rgb(183, 198, 255))\",variant:CEtoRTXwV,width:\"100%\",X8Q0LADxE:addImageAlt({pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/GUMsHdPn8zyw4d9JzCPtryKA.svg\"},\"\"),zVT1wbAcv:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",...addPropertyOverrides({NU9v7AQP8:{variant:dYncExrQK},tvOtrWYgw:{variant:\"sNBKIpnRS\"},wuZUKInMW:{variant:\"PjJe5JgUc\"},ZwM3u4VoN:{variant:SUZljNWhM}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oveuwa\",layoutDependency:layoutDependency,layoutId:\"qkYgF2esS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12jw51c-container\",layoutDependency:layoutDependency,layoutId:\"uFPAaPJzo-container\",nodeId:\"uFPAaPJzo\",rendersWithMotion:true,scopeId:\"M4oY9BFLC\",...addPropertyOverrides({NU9v7AQP8:{\"data-framer-cursor\":wsQvWqe3Q},ZwM3u4VoN:{\"data-framer-cursor\":wsQvWqe3Q}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ArrowOnDarkBg,{height:\"100%\",id:\"uFPAaPJzo\",layoutId:\"uFPAaPJzo\",style:{height:\"100%\",width:\"100%\"},variant:\"S3rc_UEgO\",width:\"100%\",...addPropertyOverrides({NU9v7AQP8:{UD5SL2dil:UD5SL2dil1ndi77u,variant:\"ZqUge0eij\"},tvOtrWYgw:{UD5SL2dil:UD5SL2dil1rje7pk,variant:\"ZqUge0eij\"},wuZUKInMW:{UD5SL2dil:UD5SL2dilhca1nm,variant:\"ZqUge0eij\"},ZwM3u4VoN:{UD5SL2dil:UD5SL2dil1sddsi5,variant:\"ZqUge0eij\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n74xs7-container\",\"data-framer-cursor\":wsQvWqe3Q,layoutDependency:layoutDependency,layoutId:\"TK4i74qdm-container\",nodeId:\"TK4i74qdm\",rendersWithMotion:true,scopeId:\"M4oY9BFLC\",...addPropertyOverrides({\"ZwM3u4VoN-hover\":{\"data-framer-cursor\":undefined},ZwM3u4VoN:{\"data-framer-cursor\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ArrowOnDarkBg,{height:\"100%\",id:\"TK4i74qdm\",layoutId:\"TK4i74qdm\",style:{height:\"100%\",width:\"100%\"},UD5SL2dil:UD5SL2dil1sddsi5,variant:\"MdZKzXktM\",width:\"100%\",...addPropertyOverrides({NU9v7AQP8:{UD5SL2dil:UD5SL2dilsy6rgo},trJwQFO1E:{UD5SL2dil:UD5SL2dil1rje7pk},tvOtrWYgw:{UD5SL2dil:undefined,variant:\"b6Hhq2hmg\"},wuZUKInMW:{UD5SL2dil:UD5SL2dil1c92erb},ZwM3u4VoN:{UD5SL2dil:undefined,variant:\"b6Hhq2hmg\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DnMvv.framer-7wucwu, .framer-DnMvv .framer-7wucwu { display: block; }\",\".framer-DnMvv.framer-a767j0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: var(--1iw0kpf); flex-wrap: nowrap; gap: 0px 0px; height: 401px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 900px; }\",\".framer-DnMvv .framer-7sfzvd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: var(--th71j2); height: var(--2sns5d); justify-content: var(--1k5wm6d); overflow: hidden; padding: var(--18ww4ac); position: relative; width: var(--16anluw); }\",\".framer-DnMvv .framer-1hdbglq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DnMvv .framer-6peyjf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DnMvv .framer-1y1cmtc-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-DnMvv .framer-1oveuwa { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 24px; width: 868px; z-index: 1; }\",\".framer-DnMvv .framer-12jw51c-container, .framer-DnMvv .framer-n74xs7-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-DnMvv.framer-v-iix2q2.framer-a767j0, .framer-DnMvv.framer-v-12strq2.framer-a767j0, .framer-DnMvv.framer-v-lrp0mf.framer-a767j0 { cursor: unset; }\",\".framer-DnMvv.framer-v-iix2q2 .framer-1oveuwa, .framer-DnMvv.framer-v-12strq2 .framer-1oveuwa, .framer-DnMvv.framer-v-lrp0mf .framer-1oveuwa { justify-content: flex-start; left: 24px; right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 401\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NU9v7AQP8\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZwM3u4VoN\":{\"layout\":[\"fixed\",\"fixed\"]},\"trJwQFO1E\":{\"layout\":[\"fixed\",\"fixed\"]},\"wuZUKInMW\":{\"layout\":[\"fixed\",\"fixed\"]},\"tvOtrWYgw\":{\"layout\":[\"fixed\",\"fixed\"]},\"hGG_IsJ2x\":{\"layout\":[\"fixed\",\"fixed\"]},\"SRjOudg_T\":{\"layout\":[\"fixed\",\"fixed\"]},\"MWsZ9ObnA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WH7nHWRzl\":\"direction\",\"QOeJ0y2vP\":\"distribute\",\"MTDsfepx9\":\"padding\",\"qIcBqhljJ\":\"gap\",\"CEtoRTXwV\":\"card1\",\"DZitwU8An\":\"content1\",\"Zc4RZ93eB\":\"content2\",\"P42yNQzGq\":\"content3\",\"dYncExrQK\":\"card2\",\"SUZljNWhM\":\"card3\",\"wsQvWqe3Q\":\"cursorTransparent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerM4oY9BFLC=withCSS(Component,css,\"framer-DnMvv\");export default FramerM4oY9BFLC;FramerM4oY9BFLC.displayName=\"Testimonials \\xb7 EN\";FramerM4oY9BFLC.defaultProps={height:401,width:900};addPropertyControls(FramerM4oY9BFLC,{variant:{options:[\"NrynoJDdy\",\"NU9v7AQP8\",\"ZwM3u4VoN\",\"trJwQFO1E\",\"wuZUKInMW\",\"tvOtrWYgw\"],optionTitles:[\"First\",\"Second\",\"Third\",\"MOBILE-First\",\"MOBILE-Second\",\"MOBILE-Third\"],title:\"Variant\",type:ControlType.Enum},WH7nHWRzl:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},QOeJ0y2vP:{defaultValue:\"space-between\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},MTDsfepx9:{defaultValue:\"24px 24px 24px 24px\",title:\"Padding\",type:ControlType.Padding},qIcBqhljJ:{defaultValue:20,min:0,title:\"Gap\",type:ControlType.Number},CEtoRTXwV:_TestimonialTextsENControls?.[\"variant\"]&&{..._TestimonialTextsENControls[\"variant\"],defaultValue:\"Y6hqNN3Mk\",description:undefined,hidden:undefined,title:\"Card 1\"},DZitwU8An:{defaultValue:\"In this climate of perpetual beta, tools enabling rapid validation aren't just helpful, they're existential. For Volvo Cars, strategically navigating this AI frontier, this is where Dify delivers indispensable value.\",displayTextArea:false,title:\"Content 1\",type:ControlType.String},Zc4RZ93eB:{defaultValue:\"Dify's intuitive interface allows our teams to rapidly design and deploy complex natural language processing pipelines, enabling us to improve the quality of our assessment products while reducing cost and time to market. \",displayTextArea:false,title:\"Content 2\",type:ControlType.String},P42yNQzGq:{defaultValue:\"What makes Dify stands out is its ability to democratize AI agent development. By combining powerful AI/ML capabilities on a no-code platform, its rapid deployment and intuitive interface make it highly accessible even for beginners, significantly accelerating citizen development.\",displayTextArea:false,title:\"Content 3\",type:ControlType.String},dYncExrQK:_TestimonialTextsENControls?.[\"variant\"]&&{..._TestimonialTextsENControls[\"variant\"],defaultValue:\"PjJe5JgUc\",description:undefined,hidden:undefined,title:\"Card 2\"},SUZljNWhM:_TestimonialTextsENControls?.[\"variant\"]&&{..._TestimonialTextsENControls[\"variant\"],defaultValue:\"sNBKIpnRS\",description:undefined,hidden:undefined,title:\"Card 3\"},wsQvWqe3Q:{title:\"Cursor-transparent\",type:ControlType.CustomCursor}});addFonts(FramerM4oY9BFLC,[{explicitInter:true,fonts:[]},...QuotationMarkFonts,..._TestimonialTextsENFonts,...ArrowOnDarkBgFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM4oY9BFLC\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NU9v7AQP8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZwM3u4VoN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"trJwQFO1E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wuZUKInMW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tvOtrWYgw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hGG_IsJ2x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SRjOudg_T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MWsZ9ObnA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"WH7nHWRzl\\\":\\\"direction\\\",\\\"QOeJ0y2vP\\\":\\\"distribute\\\",\\\"MTDsfepx9\\\":\\\"padding\\\",\\\"qIcBqhljJ\\\":\\\"gap\\\",\\\"CEtoRTXwV\\\":\\\"card1\\\",\\\"DZitwU8An\\\":\\\"content1\\\",\\\"Zc4RZ93eB\\\":\\\"content2\\\",\\\"P42yNQzGq\\\":\\\"content3\\\",\\\"dYncExrQK\\\":\\\"card2\\\",\\\"SUZljNWhM\\\":\\\"card3\\\",\\\"wsQvWqe3Q\\\":\\\"cursorTransparent\\\"}\",\"framerIntrinsicHeight\":\"401\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"900\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M4oY9BFLC.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vHLw3ChWBJyQBF6GKm7n/DnwHaU4RVKmf64FhE4gv/jfgWTQKwu.js\";const cycleOrder=[\"cuNTs4Blu\",\"cSczRxRLv\",\"DcCdIhNVi\"];const serializationHash=\"framer-nGejy\";const variantClassNames={cSczRxRLv:\"framer-v-tx8r4u\",cuNTs4Blu:\"framer-v-wlznox\",DcCdIhNVi:\"framer-v-1briv93\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:0,delay:.2,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={First:\"cuNTs4Blu\",Second:\"cSczRxRLv\",Third:\"DcCdIhNVi\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cuNTs4Blu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cuNTs4Blu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wlznox\",className,classNames),\"data-framer-name\":\"First\",layoutDependency:layoutDependency,layoutId:\"cuNTs4Blu\",ref:refBinding,style:{backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",...style},...addPropertyOverrides({cSczRxRLv:{\"data-framer-name\":\"Second\"},DcCdIhNVi:{\"data-framer-name\":\"Third\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({cSczRxRLv:{value:transition1},DcCdIhNVi:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eao65\",\"data-framer-name\":\"Text 1\",layoutDependency:layoutDependency,layoutId:\"wkl7012DC\",style:{opacity:1},variants:{cSczRxRLv:{opacity:0},DcCdIhNVi:{opacity:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qaidyq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"CVQkhheJD\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(0+0+(((componentViewport?.height||400)-0)*1-0-121.6)/2*0)+3.5),pixelHeight:96,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"141.4063px\",src:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png\",srcSet:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png 544w\"},className:\"framer-g2bkkg\",\"data-framer-name\":\"kakaku-logo-png_seeklogo-262499 4\",layoutDependency:layoutDependency,layoutId:\"mTAUv3nh4\",...addPropertyOverrides({cSczRxRLv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+0+((componentViewport?.height||400)*1-0-121.6)/2*0)+3.5),pixelHeight:96,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"141.4063px\",src:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png\",srcSet:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png 544w\"}},DcCdIhNVi:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+0+((componentViewport?.height||400)*1-0-121.6)/2*0)+3.5),pixelHeight:96,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"141.4063px\",src:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png\",srcSet:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png 544w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:[/*#__PURE__*/_jsxs(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1k2zljd, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:[\"Estimated an\",/*#__PURE__*/_jsx(motion.br,{})]}),\"annual reduction\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-cku5m2, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\" of\"})]}),/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-18z62cp, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-7n17er, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"18,000\"}),\" hours.\"]})]}),className:\"framer-2ndlki\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RaU52kwHz\",style:{\"--extracted-18z62cp\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--extracted-1k2zljd\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--extracted-7n17er\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--extracted-a0htzi\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--extracted-cku5m2\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kvjl6l\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"U8MR1DcDj\",style:{opacity:0},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(0+89.6+(((componentViewport?.height||400)-0)*1-0-121.6)/2*2)+3.5),pixelHeight:96,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"141.4063px\",src:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png\",srcSet:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png 544w\"},className:\"framer-y3atrm\",\"data-framer-name\":\"kakaku-logo-png_seeklogo-262499 4\",layoutDependency:layoutDependency,layoutId:\"OfEB1NIGF\",style:{opacity:0},...addPropertyOverrides({cSczRxRLv:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+89.6+((componentViewport?.height||400)*1-0-121.6)/2*2)+3.5),pixelHeight:96,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"141.4063px\",src:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png\",srcSet:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png 544w\"}},DcCdIhNVi:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+89.6+((componentViewport?.height||400)*1-0-121.6)/2*2)+3.5),pixelHeight:96,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"141.4063px\",src:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png\",srcSet:\"https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrLZu6Xh27daldY9WWLBRqBvRY.png 544w\"}}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({cSczRxRLv:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-im51js\",\"data-framer-name\":\"Text 2\",layoutDependency:layoutDependency,layoutId:\"PBXmFWF1a\",style:{opacity:0},variants:{cSczRxRLv:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ifn9nc\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"FrFJrY1D4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ahkx3g\",\"data-framer-name\":\"Thermo Fisher Scientific 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:147,layoutDependency:layoutDependency,layoutId:\"Zov4DAHH2\",svg:'<svg width=\"147\" height=\"32\" viewBox=\"0 0 147 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5903 3.77321V0.6875H0.609375V3.81131H5.40937V17.3351H9.75223V3.77321H14.5903ZM68.3808 17.297C68.2665 16.1923 68.1903 15.3542 68.1903 14.7446V9.14464C68.1903 6.82083 66.476 5.37321 64.2284 5.37321C62.5903 5.41131 61.1808 6.13512 60.3808 7.43036C59.8856 6.13512 58.476 5.4494 57.1427 5.4494C55.5427 5.4494 54.1713 5.98274 53.4094 7.43036L53.3332 5.71607H49.3713V17.297H53.4856V10.2875C53.4856 9.90655 53.3332 7.92559 55.1998 7.92559C56.457 7.92559 56.7618 9.06845 56.7618 10.1732V17.2589H60.8379V10.2875C60.8379 9.90655 60.6856 7.92559 62.5522 7.92559C63.8094 7.92559 64.1141 9.06845 64.1141 10.1732V17.2589L68.3808 17.297ZM48.457 9.10655V5.56369C46.6665 5.5256 45.3332 6.13512 44.7998 7.8875L44.7237 5.67798H40.6094C40.6856 6.63036 40.6856 7.8875 40.6856 8.6494V17.2589H44.7998V12.1923C44.7998 10.2875 45.3713 9.10655 47.6189 9.06845C47.8856 9.06845 48.1522 9.06845 48.457 9.10655ZM75.4665 5.37321C71.6951 5.37321 69.2189 7.46845 69.2189 11.4685C69.2189 15.5827 71.6951 17.6018 75.4665 17.6018C79.2379 17.6018 81.7141 15.5446 81.7141 11.4685C81.676 7.46845 79.1998 5.37321 75.4665 5.37321ZM75.4665 7.81131C77.1808 7.81131 77.5237 9.60179 77.5237 11.3923C77.5237 13.5256 77.1427 15.1637 75.4665 15.1637C73.7903 15.1637 73.4094 13.4875 73.4094 11.3923C73.4094 9.56369 73.7141 7.77321 75.4665 7.81131ZM27.1618 17.297C27.0475 16.1923 27.0094 15.3923 27.0094 14.7446V9.14464C27.0094 6.82083 25.2951 5.37321 23.0094 5.37321C22.3237 5.37321 21.6379 5.4875 21.0665 5.75417C20.5332 6.02083 20.0379 6.36369 19.5808 6.93512V0.6875H15.5427V17.297H19.657V10.2875C19.657 9.90655 19.5046 7.92559 21.3713 7.92559C22.6665 7.92559 22.9332 9.06845 22.9332 10.1732V17.2589L27.1618 17.297ZM39.6951 12.2685C39.7332 8.11607 38.476 5.37321 33.8284 5.37321C30.1713 5.37321 27.9618 7.62083 27.9618 11.1637C27.9618 15.5065 29.5237 17.6018 34.0189 17.6018C35.4284 17.6018 36.6856 17.297 37.5998 16.6494C38.6284 15.9637 39.4284 14.9351 39.5427 13.4875H35.7332C35.6189 14.5542 35.0094 15.278 33.7903 15.278C32.2284 15.278 31.8856 13.7923 31.9237 12.3446H39.6951V12.2685ZM35.7713 10.0589H31.9618C32.0379 8.83988 32.3427 7.58274 33.8665 7.50655C34.5522 7.46845 35.0094 7.81131 35.3141 8.30655C35.657 8.80179 35.7713 9.4494 35.7713 10.0589Z\" fill=\"#EE3134\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.749 8.87701V5.33415C143.959 5.29606 142.625 5.90558 142.092 7.65796L142.016 5.63891H137.902C137.978 6.59129 137.978 7.84844 137.978 8.61034V17.2199H142.092V12.1913C142.092 10.2865 142.664 8.9151 144.911 8.83891C145.178 8.87701 145.444 8.87701 145.749 8.87701ZM124.454 17.2961C124.34 16.1913 124.302 15.3913 124.302 14.7437V9.14368C124.302 6.81987 122.587 5.37225 120.302 5.37225C119.616 5.37225 119.006 5.48653 118.397 5.7532C117.864 6.01987 117.33 6.36272 116.873 6.93415V0.686533H112.759V17.2961H116.873V10.2865C116.873 9.90558 116.721 7.92463 118.587 7.92463C119.883 7.92463 120.149 9.06749 120.149 10.1722V17.258L124.454 17.2961ZM111.768 13.8294C111.768 12.0389 110.816 11.1627 109.521 10.6675C107.044 9.79129 105.216 9.7532 105.216 8.83891C105.216 8.1532 105.597 7.77225 106.283 7.77225C106.816 7.77225 107.159 7.92463 107.387 8.1532C107.578 8.38177 107.692 8.76272 107.692 9.25796H111.578C111.502 6.21034 109.102 5.41034 106.473 5.41034C104.225 5.41034 101.33 6.21034 101.33 8.99129C101.33 13.0294 107.883 12.0008 107.883 14.1342C107.883 14.8961 107.273 15.2389 106.473 15.2389C106.016 15.2389 105.635 15.0103 105.406 14.6675C105.178 14.3627 105.102 13.9437 105.14 13.5246H101.216C101.14 16.9913 103.692 17.6008 106.549 17.6008C109.216 17.6008 111.768 16.6484 111.768 13.8294ZM136.949 12.2675C136.987 8.1151 135.73 5.37225 131.083 5.37225C127.425 5.37225 125.216 7.61987 125.216 11.1627C125.216 15.5056 126.74 17.6008 131.273 17.6008C132.683 17.6008 133.94 17.2961 134.854 16.6484C135.883 15.9627 136.683 14.9342 136.797 13.4865H132.949C132.835 14.5532 132.225 15.277 131.006 15.277C129.444 15.277 129.102 13.7913 129.14 12.3437H136.987V12.2675H136.949ZM133.102 10.058H129.292C129.368 8.83891 129.673 7.58177 131.197 7.50558C131.883 7.46749 132.34 7.81034 132.644 8.30558C132.949 8.80082 133.102 9.44844 133.102 10.058ZM100.225 17.2961V5.67701H96.1112V17.258L100.225 17.2961ZM94.854 3.69606L95.8064 0.648438H84.7969V17.258H89.1397V10.7437H92.6445L93.5969 7.69606H89.1397V3.69606H94.854ZM100.225 3.69606L101.216 0.648438H97.1778L96.1873 3.69606H100.225Z\" fill=\"#EE3134\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.1693 31.5443V22.1729H39.655V31.5824H38.1693V31.5443ZM139.274 31.6967C136.15 31.6967 133.788 29.9443 133.788 26.8967C133.788 23.811 136.417 21.9062 139.388 21.9062C140.455 21.9062 141.598 22.2491 142.36 22.7443L141.598 23.6586C140.95 23.2777 140.226 23.0491 139.426 23.0491C138.284 23.0491 137.179 23.392 136.455 24.192C135.845 24.8777 135.503 25.7158 135.503 26.9348C135.503 28.2682 135.922 28.992 136.607 29.6777C137.331 30.4015 138.436 30.592 139.503 30.592C140.379 30.592 141.217 30.2872 141.903 29.9063L142.626 30.7824C141.826 31.3158 140.531 31.6967 139.274 31.6967ZM123.503 31.5443V22.1729H124.988V31.5824H123.503V31.5443ZM89.5216 23.2777H86.0169V31.5824H84.5693V23.2777H81.0645V22.1348H89.7121L89.5216 23.2777ZM11.3121 31.2015C10.5883 31.5443 9.71213 31.7348 8.64546 31.7348C7.31213 31.7348 5.9407 31.4301 4.83594 30.8967L5.44546 29.8301C6.55022 30.3634 7.57879 30.6301 8.72165 30.6301C9.48356 30.6301 9.97879 30.5158 10.4359 30.2491C10.9693 29.9443 11.274 29.5634 11.274 29.0301C11.274 28.2301 10.6645 27.7348 9.21689 27.4301L7.69308 27.0872C6.16927 26.7443 5.21689 25.792 5.21689 24.6491C5.21689 23.0491 6.77879 21.9062 9.06451 21.9062C10.3978 21.9062 11.7693 22.2491 12.6836 22.8205L11.9978 23.811C11.0836 23.3158 10.1312 23.0491 9.1407 23.0491C7.80737 23.0491 6.85499 23.5824 6.85499 24.4586C6.85499 25.1443 7.42641 25.5634 8.72165 25.8682L10.1312 26.211C10.9312 26.4015 11.7693 26.7443 12.2264 27.1634C12.6836 27.5824 12.9502 28.2301 12.9502 28.8396C12.9883 29.792 12.3788 30.7063 11.3121 31.2015ZM71.6169 31.5443L67.8836 26.5158C67.1978 25.5634 65.9788 23.7348 65.9788 23.7348C65.9788 23.7348 66.0931 25.3348 66.1312 26.7062L66.1693 31.5443H64.6836V22.1729H66.474L70.2455 27.3158C70.9693 28.3062 71.9978 29.9063 71.9978 29.9063C71.9978 29.9063 71.7693 28.1539 71.7693 26.9348L71.7312 22.211H73.2169V31.6205L71.6169 31.5443ZM97.4074 31.5443V22.1729H98.8931V31.5824H97.4074V31.5443ZM115.274 23.2777H110.093V26.0586H114.474V27.1634H110.093V31.5824H108.607V22.1729H115.465L115.274 23.2777ZM49.4074 31.5443V22.1729H56.3788L56.1883 23.3158H50.9312V26.1348H55.3883V27.2777H50.9312V30.4777H56.5312V31.6205H49.4074V31.5443ZM26.5502 31.6967C23.4264 31.6967 21.0645 29.9443 21.0645 26.8967C21.0645 23.811 23.6931 21.9062 26.6645 21.9062C27.7312 21.9062 28.874 22.2491 29.6359 22.7443L28.874 23.6586C28.2264 23.2777 27.5026 23.0491 26.7026 23.0491C25.5597 23.0491 24.455 23.392 23.6931 24.192C23.0836 24.8777 22.7407 25.7158 22.7407 26.9348C22.7407 28.2682 23.1597 28.992 23.8455 29.6777C24.5693 30.4015 25.674 30.592 26.7407 30.592C27.6169 30.592 28.455 30.2872 29.1407 29.9063L29.8645 30.7824C29.1026 31.3158 27.8074 31.6967 26.5502 31.6967Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:[\"Save \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1k2zljd, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"300\"})]}),/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-18z62cp, var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0)))\"},children:\"man-hours \"}),/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-1fu642h, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"each month.\"})]}),className:\"framer-117x2ec\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WhPodqJXp\",style:{\"--extracted-18z62cp\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",\"--extracted-1fu642h\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--extracted-1k2zljd\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--extracted-a0htzi\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dg1vws\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"L0qqA6dhy\",style:{opacity:0},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17j1nw5\",\"data-framer-name\":\"Thermo Fisher Scientific 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:147,layoutDependency:layoutDependency,layoutId:\"s9rZmUbTd\",style:{opacity:0},svg:'<svg width=\"147\" height=\"32\" viewBox=\"0 0 147 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5903 3.77321V0.6875H0.609375V3.81131H5.40937V17.3351H9.75223V3.77321H14.5903ZM68.3808 17.297C68.2665 16.1923 68.1903 15.3542 68.1903 14.7446V9.14464C68.1903 6.82083 66.476 5.37321 64.2284 5.37321C62.5903 5.41131 61.1808 6.13512 60.3808 7.43036C59.8856 6.13512 58.476 5.4494 57.1427 5.4494C55.5427 5.4494 54.1713 5.98274 53.4094 7.43036L53.3332 5.71607H49.3713V17.297H53.4856V10.2875C53.4856 9.90655 53.3332 7.92559 55.1998 7.92559C56.457 7.92559 56.7618 9.06845 56.7618 10.1732V17.2589H60.8379V10.2875C60.8379 9.90655 60.6856 7.92559 62.5522 7.92559C63.8094 7.92559 64.1141 9.06845 64.1141 10.1732V17.2589L68.3808 17.297ZM48.457 9.10655V5.56369C46.6665 5.5256 45.3332 6.13512 44.7998 7.8875L44.7237 5.67798H40.6094C40.6856 6.63036 40.6856 7.8875 40.6856 8.6494V17.2589H44.7998V12.1923C44.7998 10.2875 45.3713 9.10655 47.6189 9.06845C47.8856 9.06845 48.1522 9.06845 48.457 9.10655ZM75.4665 5.37321C71.6951 5.37321 69.2189 7.46845 69.2189 11.4685C69.2189 15.5827 71.6951 17.6018 75.4665 17.6018C79.2379 17.6018 81.7141 15.5446 81.7141 11.4685C81.676 7.46845 79.1998 5.37321 75.4665 5.37321ZM75.4665 7.81131C77.1808 7.81131 77.5237 9.60179 77.5237 11.3923C77.5237 13.5256 77.1427 15.1637 75.4665 15.1637C73.7903 15.1637 73.4094 13.4875 73.4094 11.3923C73.4094 9.56369 73.7141 7.77321 75.4665 7.81131ZM27.1618 17.297C27.0475 16.1923 27.0094 15.3923 27.0094 14.7446V9.14464C27.0094 6.82083 25.2951 5.37321 23.0094 5.37321C22.3237 5.37321 21.6379 5.4875 21.0665 5.75417C20.5332 6.02083 20.0379 6.36369 19.5808 6.93512V0.6875H15.5427V17.297H19.657V10.2875C19.657 9.90655 19.5046 7.92559 21.3713 7.92559C22.6665 7.92559 22.9332 9.06845 22.9332 10.1732V17.2589L27.1618 17.297ZM39.6951 12.2685C39.7332 8.11607 38.476 5.37321 33.8284 5.37321C30.1713 5.37321 27.9618 7.62083 27.9618 11.1637C27.9618 15.5065 29.5237 17.6018 34.0189 17.6018C35.4284 17.6018 36.6856 17.297 37.5998 16.6494C38.6284 15.9637 39.4284 14.9351 39.5427 13.4875H35.7332C35.6189 14.5542 35.0094 15.278 33.7903 15.278C32.2284 15.278 31.8856 13.7923 31.9237 12.3446H39.6951V12.2685ZM35.7713 10.0589H31.9618C32.0379 8.83988 32.3427 7.58274 33.8665 7.50655C34.5522 7.46845 35.0094 7.81131 35.3141 8.30655C35.657 8.80179 35.7713 9.4494 35.7713 10.0589Z\" fill=\"#EE3134\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.749 8.87701V5.33415C143.959 5.29606 142.625 5.90558 142.092 7.65796L142.016 5.63891H137.902C137.978 6.59129 137.978 7.84844 137.978 8.61034V17.2199H142.092V12.1913C142.092 10.2865 142.664 8.9151 144.911 8.83891C145.178 8.87701 145.444 8.87701 145.749 8.87701ZM124.454 17.2961C124.34 16.1913 124.302 15.3913 124.302 14.7437V9.14368C124.302 6.81987 122.587 5.37225 120.302 5.37225C119.616 5.37225 119.006 5.48653 118.397 5.7532C117.864 6.01987 117.33 6.36272 116.873 6.93415V0.686533H112.759V17.2961H116.873V10.2865C116.873 9.90558 116.721 7.92463 118.587 7.92463C119.883 7.92463 120.149 9.06749 120.149 10.1722V17.258L124.454 17.2961ZM111.768 13.8294C111.768 12.0389 110.816 11.1627 109.521 10.6675C107.044 9.79129 105.216 9.7532 105.216 8.83891C105.216 8.1532 105.597 7.77225 106.283 7.77225C106.816 7.77225 107.159 7.92463 107.387 8.1532C107.578 8.38177 107.692 8.76272 107.692 9.25796H111.578C111.502 6.21034 109.102 5.41034 106.473 5.41034C104.225 5.41034 101.33 6.21034 101.33 8.99129C101.33 13.0294 107.883 12.0008 107.883 14.1342C107.883 14.8961 107.273 15.2389 106.473 15.2389C106.016 15.2389 105.635 15.0103 105.406 14.6675C105.178 14.3627 105.102 13.9437 105.14 13.5246H101.216C101.14 16.9913 103.692 17.6008 106.549 17.6008C109.216 17.6008 111.768 16.6484 111.768 13.8294ZM136.949 12.2675C136.987 8.1151 135.73 5.37225 131.083 5.37225C127.425 5.37225 125.216 7.61987 125.216 11.1627C125.216 15.5056 126.74 17.6008 131.273 17.6008C132.683 17.6008 133.94 17.2961 134.854 16.6484C135.883 15.9627 136.683 14.9342 136.797 13.4865H132.949C132.835 14.5532 132.225 15.277 131.006 15.277C129.444 15.277 129.102 13.7913 129.14 12.3437H136.987V12.2675H136.949ZM133.102 10.058H129.292C129.368 8.83891 129.673 7.58177 131.197 7.50558C131.883 7.46749 132.34 7.81034 132.644 8.30558C132.949 8.80082 133.102 9.44844 133.102 10.058ZM100.225 17.2961V5.67701H96.1112V17.258L100.225 17.2961ZM94.854 3.69606L95.8064 0.648438H84.7969V17.258H89.1397V10.7437H92.6445L93.5969 7.69606H89.1397V3.69606H94.854ZM100.225 3.69606L101.216 0.648438H97.1778L96.1873 3.69606H100.225Z\" fill=\"#EE3134\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.1693 31.5443V22.1729H39.655V31.5824H38.1693V31.5443ZM139.274 31.6967C136.15 31.6967 133.788 29.9443 133.788 26.8967C133.788 23.811 136.417 21.9062 139.388 21.9062C140.455 21.9062 141.598 22.2491 142.36 22.7443L141.598 23.6586C140.95 23.2777 140.226 23.0491 139.426 23.0491C138.284 23.0491 137.179 23.392 136.455 24.192C135.845 24.8777 135.503 25.7158 135.503 26.9348C135.503 28.2682 135.922 28.992 136.607 29.6777C137.331 30.4015 138.436 30.592 139.503 30.592C140.379 30.592 141.217 30.2872 141.903 29.9063L142.626 30.7824C141.826 31.3158 140.531 31.6967 139.274 31.6967ZM123.503 31.5443V22.1729H124.988V31.5824H123.503V31.5443ZM89.5216 23.2777H86.0169V31.5824H84.5693V23.2777H81.0645V22.1348H89.7121L89.5216 23.2777ZM11.3121 31.2015C10.5883 31.5443 9.71213 31.7348 8.64546 31.7348C7.31213 31.7348 5.9407 31.4301 4.83594 30.8967L5.44546 29.8301C6.55022 30.3634 7.57879 30.6301 8.72165 30.6301C9.48356 30.6301 9.97879 30.5158 10.4359 30.2491C10.9693 29.9443 11.274 29.5634 11.274 29.0301C11.274 28.2301 10.6645 27.7348 9.21689 27.4301L7.69308 27.0872C6.16927 26.7443 5.21689 25.792 5.21689 24.6491C5.21689 23.0491 6.77879 21.9062 9.06451 21.9062C10.3978 21.9062 11.7693 22.2491 12.6836 22.8205L11.9978 23.811C11.0836 23.3158 10.1312 23.0491 9.1407 23.0491C7.80737 23.0491 6.85499 23.5824 6.85499 24.4586C6.85499 25.1443 7.42641 25.5634 8.72165 25.8682L10.1312 26.211C10.9312 26.4015 11.7693 26.7443 12.2264 27.1634C12.6836 27.5824 12.9502 28.2301 12.9502 28.8396C12.9883 29.792 12.3788 30.7063 11.3121 31.2015ZM71.6169 31.5443L67.8836 26.5158C67.1978 25.5634 65.9788 23.7348 65.9788 23.7348C65.9788 23.7348 66.0931 25.3348 66.1312 26.7062L66.1693 31.5443H64.6836V22.1729H66.474L70.2455 27.3158C70.9693 28.3062 71.9978 29.9063 71.9978 29.9063C71.9978 29.9063 71.7693 28.1539 71.7693 26.9348L71.7312 22.211H73.2169V31.6205L71.6169 31.5443ZM97.4074 31.5443V22.1729H98.8931V31.5824H97.4074V31.5443ZM115.274 23.2777H110.093V26.0586H114.474V27.1634H110.093V31.5824H108.607V22.1729H115.465L115.274 23.2777ZM49.4074 31.5443V22.1729H56.3788L56.1883 23.3158H50.9312V26.1348H55.3883V27.2777H50.9312V30.4777H56.5312V31.6205H49.4074V31.5443ZM26.5502 31.6967C23.4264 31.6967 21.0645 29.9443 21.0645 26.8967C21.0645 23.811 23.6931 21.9062 26.6645 21.9062C27.7312 21.9062 28.874 22.2491 29.6359 22.7443L28.874 23.6586C28.2264 23.2777 27.5026 23.0491 26.7026 23.0491C25.5597 23.0491 24.455 23.392 23.6931 24.192C23.0836 24.8777 22.7407 25.7158 22.7407 26.9348C22.7407 28.2682 23.1597 28.992 23.8455 29.6777C24.5693 30.4015 25.674 30.592 26.7407 30.592C27.6169 30.592 28.455 30.2872 29.1407 29.9063L29.8645 30.7824C29.1026 31.3158 27.8074 31.6967 26.5502 31.6967Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({DcCdIhNVi:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eox3xp\",\"data-framer-name\":\"Text 3\",layoutDependency:layoutDependency,layoutId:\"y0OfM5k47\",style:{opacity:0},variants:{DcCdIhNVi:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17uf7fg\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ahb971Ew2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+0+((componentViewport?.height||400)*1-0-121.6)/2*0)+0),pixelHeight:148,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"137.931px\",src:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png\",srcSet:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png 640w\"},className:\"framer-1b5mxm9\",\"data-framer-name\":\"image 73\",layoutDependency:layoutDependency,layoutId:\"UxQcUcTjp\",...addPropertyOverrides({DcCdIhNVi:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(0+0+(((componentViewport?.height||400)-0)*1-0-121.6)/2*0)+0),pixelHeight:148,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"137.931px\",src:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png\",srcSet:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png 640w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Enterprise Q&A Bot:\"}),/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-18z62cp, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:[\"Serve \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-7n17er, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"19,000+\"}),\" employees across\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-21e581, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"20+ departments\"}),\".\"]})]}),className:\"framer-baiud5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aBz_HhGhw\",style:{\"--extracted-18z62cp\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--extracted-21e581\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--extracted-7n17er\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--extracted-a0htzi\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3p9p8n\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"AWXRzR5jz\",style:{opacity:0},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+89.6+((componentViewport?.height||400)*1-0-121.6)/2*2)+0),pixelHeight:148,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"137.931px\",src:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png\",srcSet:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png 640w\"},className:\"framer-1k3j645\",\"data-framer-name\":\"image 73\",layoutDependency:layoutDependency,layoutId:\"FD3qnS1RU\",style:{opacity:0},...addPropertyOverrides({DcCdIhNVi:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(0+89.6+(((componentViewport?.height||400)-0)*1-0-121.6)/2*2)+0),pixelHeight:148,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"137.931px\",src:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png\",srcSet:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png 640w\"}}},baseVariant,gestureVariant)})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nGejy.framer-12q6gzj, .framer-nGejy .framer-12q6gzj { display: block; }\",\".framer-nGejy.framer-wlznox { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 638px; }\",\".framer-nGejy .framer-1eao65 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nGejy .framer-1qaidyq, .framer-nGejy .framer-kvjl6l, .framer-nGejy .framer-1ifn9nc, .framer-nGejy .framer-dg1vws, .framer-nGejy .framer-17uf7fg, .framer-nGejy .framer-3p9p8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nGejy .framer-g2bkkg, .framer-nGejy .framer-y3atrm { aspect-ratio: 5.65625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 141px; }\",\".framer-nGejy .framer-2ndlki, .framer-nGejy .framer-117x2ec, .framer-nGejy .framer-baiud5 { --framer-text-wrap-override: balance; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; width: 100%; }\",\".framer-nGejy .framer-im51js, .framer-nGejy .framer-1eox3xp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-nGejy .framer-1ahkx3g, .framer-nGejy .framer-17j1nw5 { flex: none; height: 32px; position: relative; width: 147px; }\",\".framer-nGejy .framer-1b5mxm9, .framer-nGejy .framer-1k3j645 { aspect-ratio: 4.310344799144848 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 138px; }\",\".framer-nGejy.framer-v-tx8r4u .framer-1eao65, .framer-nGejy.framer-v-1briv93 .framer-1eao65 { left: 0px; position: absolute; top: 0px; z-index: 1; }\",\".framer-nGejy.framer-v-tx8r4u .framer-im51js, .framer-nGejy.framer-v-1briv93 .framer-1eox3xp { left: unset; position: relative; top: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 638\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cSczRxRLv\":{\"layout\":[\"fixed\",\"fixed\"]},\"DcCdIhNVi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerE4mMEA4te=withCSS(Component,css,\"framer-nGejy\");export default FramerE4mMEA4te;FramerE4mMEA4te.displayName=\"_TestimonialsData Texts \\xb7 EN\";FramerE4mMEA4te.defaultProps={height:400,width:638};addPropertyControls(FramerE4mMEA4te,{variant:{options:[\"cuNTs4Blu\",\"cSczRxRLv\",\"DcCdIhNVi\"],optionTitles:[\"First\",\"Second\",\"Third\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerE4mMEA4te,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE4mMEA4te\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"638\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cSczRxRLv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DcCdIhNVi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import _TestimonialsDataTexts2 from\"https://framerusercontent.com/modules/bQ4IbAzMTxZC5griSc8g/OujV2gLsXOJCus0MpUkH/E4mMEA4te.js\";import ArrowOnLightBg from\"https://framerusercontent.com/modules/nnlXn6WifldCtlm1XvHd/8HF48POijlrj3Go9TzeC/su6fFSOyP.js\";const _TestimonialsDataTexts2Fonts=getFonts(_TestimonialsDataTexts2);const ArrowOnLightBgFonts=getFonts(ArrowOnLightBg);const cycleOrder=[\"OawSSaRgy\",\"sLwzy1Ydb\",\"s25NLgGGu\"];const serializationHash=\"framer-YuyJV\";const variantClassNames={OawSSaRgy:\"framer-v-15b3th9\",s25NLgGGu:\"framer-v-1g52b5d\",sLwzy1Ydb:\"framer-v-1xwvjph\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={First:\"OawSSaRgy\",Second:\"sLwzy1Ydb\",Third:\"s25NLgGGu\"};const getProps=({direction,distribute,gap,height,id,transparentCursor,width,...props})=>{return{...props,Jq3TNKyLE:transparentCursor??props.Jq3TNKyLE,qIcBqhljJ:gap??props.qIcBqhljJ??10,QOeJ0y2vP:humanReadableEnumMap1[distribute]??distribute??props.QOeJ0y2vP??\"space-between\",variant:humanReadableVariantMap[props.variant]??props.variant??\"OawSSaRgy\",WH7nHWRzl:humanReadableEnumMap[direction]??direction??props.WH7nHWRzl??\"row\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WH7nHWRzl,QOeJ0y2vP,qIcBqhljJ,Jq3TNKyLE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OawSSaRgy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const UD5SL2dil1dhzoav=activeVariantCallback(async(...args)=>{setVariant(\"OawSSaRgy\");});const UD5SL2diluli901=activeVariantCallback(async(...args)=>{setVariant(\"sLwzy1Ydb\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15b3th9\",className,classNames),\"data-framer-name\":\"First\",layoutDependency:layoutDependency,layoutId:\"OawSSaRgy\",ref:refBinding,style:{\"--16anluw\":WH7nHWRzl===\"column\"?\"100%\":\"1px\",\"--1iw0kpf\":WH7nHWRzl,\"--2sns5d\":WH7nHWRzl===\"row\"?\"100%\":\"1px\",backgroundColor:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",...style},...addPropertyOverrides({s25NLgGGu:{\"data-framer-name\":\"Third\"},sLwzy1Ydb:{\"data-framer-name\":\"Second\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1km50i1\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"pzCqyLStk\",style:{\"--1k5wm6d\":QOeJ0y2vP,\"--th71j2\":numberToPixelString(qIcBqhljJ),backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9fkpvi\",layoutDependency:layoutDependency,layoutId:\"AiRwBc6Ta\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(${WH7nHWRzl===\"row\"?`max(${componentViewport?.width||\"100vw\"}, 1px)`:componentViewport?.width||\"100vw\"} - 48px, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r4iu57-container\",layoutDependency:layoutDependency,layoutId:\"i7ovRVbfF-container\",nodeId:\"i7ovRVbfF\",rendersWithMotion:true,scopeId:\"nthZ_DDLD\",children:/*#__PURE__*/_jsx(_TestimonialsDataTexts2,{height:\"100%\",id:\"i7ovRVbfF\",layoutId:\"i7ovRVbfF\",style:{height:\"100%\",width:\"100%\"},variant:\"cuNTs4Blu\",width:\"100%\",...addPropertyOverrides({s25NLgGGu:{variant:\"DcCdIhNVi\"},sLwzy1Ydb:{variant:\"cSczRxRLv\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-21a2k3\",layoutDependency:layoutDependency,layoutId:\"CqaDUqQcw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ljt801-container\",\"data-framer-cursor\":Jq3TNKyLE,layoutDependency:layoutDependency,layoutId:\"kWh0Zdpk3-container\",nodeId:\"kWh0Zdpk3\",rendersWithMotion:true,scopeId:\"nthZ_DDLD\",children:/*#__PURE__*/_jsx(ArrowOnLightBg,{height:\"100%\",id:\"kWh0Zdpk3\",layoutId:\"kWh0Zdpk3\",style:{height:\"100%\",width:\"100%\"},variant:\"lH0_dIeBN\",width:\"100%\",...addPropertyOverrides({s25NLgGGu:{UD5SL2dil:undefined,variant:\"OcP4cvhww\"},sLwzy1Ydb:{UD5SL2dil:UD5SL2dil1dhzoav,variant:\"OcP4cvhww\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xgjaxt-container\",\"data-framer-cursor\":Jq3TNKyLE,layoutDependency:layoutDependency,layoutId:\"RGzEbmFe1-container\",nodeId:\"RGzEbmFe1\",rendersWithMotion:true,scopeId:\"nthZ_DDLD\",children:/*#__PURE__*/_jsx(ArrowOnLightBg,{height:\"100%\",id:\"RGzEbmFe1\",layoutId:\"RGzEbmFe1\",style:{height:\"100%\",width:\"100%\"},UD5SL2dil:UD5SL2diluli901,variant:\"RXQwaFw8R\",width:\"100%\",...addPropertyOverrides({s25NLgGGu:{UD5SL2dil:undefined,variant:\"CIvdxzQwc\"},sLwzy1Ydb:{UD5SL2dil:undefined,variant:\"CIvdxzQwc\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YuyJV.framer-cnpld7, .framer-YuyJV .framer-cnpld7 { display: block; }\",\".framer-YuyJV.framer-15b3th9 { align-content: center; align-items: center; display: flex; flex-direction: var(--1iw0kpf); flex-wrap: nowrap; gap: 0px 0px; height: 401px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 900px; }\",\".framer-YuyJV .framer-1km50i1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: var(--th71j2); height: var(--2sns5d); justify-content: var(--1k5wm6d); overflow: hidden; padding: 24px; position: relative; width: var(--16anluw); }\",\".framer-YuyJV .framer-9fkpvi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YuyJV .framer-r4iu57-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-YuyJV .framer-21a2k3 { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px 0px 0px 24px; position: absolute; width: 917px; z-index: 1; }\",\".framer-YuyJV .framer-1ljt801-container, .framer-YuyJV .framer-xgjaxt-container { flex: none; height: 40px; position: relative; width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 401\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sLwzy1Ydb\":{\"layout\":[\"fixed\",\"fixed\"]},\"s25NLgGGu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WH7nHWRzl\":\"direction\",\"QOeJ0y2vP\":\"distribute\",\"qIcBqhljJ\":\"gap\",\"Jq3TNKyLE\":\"transparentCursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernthZ_DDLD=withCSS(Component,css,\"framer-YuyJV\");export default FramernthZ_DDLD;FramernthZ_DDLD.displayName=\"TestimonialsData \\xb7 EN\";FramernthZ_DDLD.defaultProps={height:401,width:900};addPropertyControls(FramernthZ_DDLD,{variant:{options:[\"OawSSaRgy\",\"sLwzy1Ydb\",\"s25NLgGGu\"],optionTitles:[\"First\",\"Second\",\"Third\"],title:\"Variant\",type:ControlType.Enum},WH7nHWRzl:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},QOeJ0y2vP:{defaultValue:\"space-between\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},qIcBqhljJ:{defaultValue:10,min:0,title:\"Gap\",type:ControlType.Number},Jq3TNKyLE:{title:\"Transparent-Cursor\",type:ControlType.CustomCursor}});addFonts(FramernthZ_DDLD,[{explicitInter:true,fonts:[]},..._TestimonialsDataTexts2Fonts,...ArrowOnLightBgFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernthZ_DDLD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"WH7nHWRzl\\\":\\\"direction\\\",\\\"QOeJ0y2vP\\\":\\\"distribute\\\",\\\"qIcBqhljJ\\\":\\\"gap\\\",\\\"Jq3TNKyLE\\\":\\\"transparentCursor\\\"}\",\"framerIntrinsicWidth\":\"900\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sLwzy1Ydb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s25NLgGGu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"401\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3266cfb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vHLw3ChWBJyQBF6GKm7n/DnwHaU4RVKmf64FhE4gv/jfgWTQKwu.js\";import TestimonialsEN from\"https://framerusercontent.com/modules/8KDXKW5ozGWMmvkSy6EX/7Tlwvf3M16yguOAL0klx/M4oY9BFLC.js\";import _Testimonials2 from\"https://framerusercontent.com/modules/NrosukWK8S9SOBlKzifL/uwzF0mlsllEOzOVsAXnn/nthZ_DDLD.js\";const TestimonialsENFonts=getFonts(TestimonialsEN);const _Testimonials2Fonts=getFonts(_Testimonials2);const cycleOrder=[\"hxhDKGrkF\",\"vk437t416\",\"dxNahBUgy\"];const serializationHash=\"framer-5wCoe\";const variantClassNames={dxNahBUgy:\"framer-v-13w5p4p\",hxhDKGrkF:\"framer-v-1xme096\",vk437t416:\"framer-v-k2rewi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={DESKTOP:\"hxhDKGrkF\",MOBILE:\"dxNahBUgy\",TABLET:\"vk437t416\"};const getProps=({cursor,cursorTransparent,height,id,width,...props})=>{return{...props,NX1EcCVGy:cursor??props.NX1EcCVGy,p14m3oUE1:cursorTransparent??props.p14m3oUE1,variant:humanReadableVariantMap[props.variant]??props.variant??\"hxhDKGrkF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NX1EcCVGy,p14m3oUE1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hxhDKGrkF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"vk437t416\",\"dxNahBUgy\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"dxNahBUgy\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xme096\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"hxhDKGrkF\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",...style},variants:{dxNahBUgy:{backgroundColor:\"var(--token-fcf031dd-c493-436a-bf42-89f71585af39, rgb(245, 245, 245))\"}},...addPropertyOverrides({dxNahBUgy:{\"data-framer-name\":\"MOBILE\"},vk437t416:{\"data-framer-name\":\"TABLET\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gt7gnr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sE6vm1ySr\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0*(((componentViewport?.height||831)-0-0)/2)+0)+-191),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 6.3)`,src:\"https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png\",srcSet:\"https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png 2048w\"},className:\"framer-1acb7va\",\"data-framer-name\":\"original_1b2449d52de49e5372a0a49bea3f277d 1\",layoutDependency:layoutDependency,layoutId:\"aUO1i9bKP\",transformTemplate:transformTemplate1,...addPropertyOverrides({dxNahBUgy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-58),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2)`,src:\"https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png\",srcSet:\"https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png 2048w\"}},vk437t416:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0*(((componentViewport?.height||831)-0-0)/2)+0)+-160),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 8.9976)`,src:\"https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png\",srcSet:\"https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ll1TEG530xdmddVWLeCTphLs41M.png 2048w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o2yf16\",layoutDependency:layoutDependency,layoutId:\"Vz3SYBMbJ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(((componentViewport?.height||831)-0-0)/2*1+0-0)*1,width:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 6)`,y:(componentViewport?.y||0)+0+(0*(((componentViewport?.height||831)-0-0)/2)+0)+(0+(((componentViewport?.height||831)-0-0)/2*1+0-0-(((componentViewport?.height||831)-0-0)/2*1+0-0)*1)/2),...addPropertyOverrides({dxNahBUgy:{height:680,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+420+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bqcuai-container\",\"data-framer-cursor\":NX1EcCVGy,layoutDependency:layoutDependency,layoutId:\"Hws1y_rgb-container\",nodeId:\"Hws1y_rgb\",rendersWithMotion:true,scopeId:\"mRt7xKEN4\",children:/*#__PURE__*/_jsx(TestimonialsEN,{CEtoRTXwV:\"Y6hqNN3Mk\",dYncExrQK:\"PjJe5JgUc\",DZitwU8An:\"In this climate of perpetual beta, tools enabling rapid validation aren't just helpful, they're existential. For Volvo Cars, strategically navigating this AI frontier, this is where Dify delivers indispensable value.\",height:\"100%\",id:\"Hws1y_rgb\",layoutId:\"Hws1y_rgb\",MTDsfepx9:\"24px 24px 24px 24px\",P42yNQzGq:\"What makes Dify stands out is its ability to democratize AI agent development. By combining powerful AI/ML capabilities on a no-code platform, its rapid deployment and intuitive interface make it highly accessible even for beginners, significantly accelerating citizen development.\",qIcBqhljJ:8,QOeJ0y2vP:\"space-between\",style:{height:\"100%\",width:\"100%\"},SUZljNWhM:\"sNBKIpnRS\",variant:\"NrynoJDdy\",WH7nHWRzl:\"row\",width:\"100%\",wsQvWqe3Q:p14m3oUE1,Zc4RZ93eB:\"Dify's intuitive interface allows our teams to rapidly design and deploy complex natural language processing pipelines, enabling us to improve the quality of our assessment products while reducing cost and time to market. \",...addPropertyOverrides({dxNahBUgy:{MTDsfepx9:\"40px 24px 100px 24px\",variant:\"trJwQFO1E\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(((componentViewport?.height||831)-0-0)/2*1+0)*1,width:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 3)`,y:(componentViewport?.y||0)+0+(1*(((componentViewport?.height||831)-0-0)/2)+0),...addPropertyOverrides({dxNahBUgy:{height:420,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1220},vk437t416:{width:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 6)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l775t4-container\",layoutDependency:layoutDependency,layoutId:\"vS9nMxFMJ-container\",nodeId:\"vS9nMxFMJ\",rendersWithMotion:true,scopeId:\"mRt7xKEN4\",children:/*#__PURE__*/_jsx(_Testimonials2,{height:\"100%\",id:\"vS9nMxFMJ\",Jq3TNKyLE:p14m3oUE1,layoutId:\"vS9nMxFMJ\",qIcBqhljJ:10,QOeJ0y2vP:\"space-between\",style:{height:\"100%\",width:\"100%\"},variant:\"OawSSaRgy\",WH7nHWRzl:\"row\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ucwizd\",\"data-framer-name\":\"Card-Lg\",layoutDependency:layoutDependency,layoutId:\"e2guxWUfX\",style:{backgroundColor:\"var(--token-fcf031dd-c493-436a-bf42-89f71585af39, rgb(207, 207, 207))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vs82k6\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"EoB7CWKr1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(1*(((componentViewport?.height||831)-0-0)/2)+0)+28+(0+0+(((componentViewport?.height||831)-0-0)/2*1+0-52-116.8)/2*0)+0+0),pixelHeight:148,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"137.931px\",src:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png\",srcSet:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png 640w\"},className:\"framer-18rgfct\",\"data-framer-name\":\"image 73\",layoutDependency:layoutDependency,layoutId:\"Suzjg01Qb\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Enterprise Q&A Bot:\"}),/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--extracted-18z62cp, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:[\"Serve \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-7n17er, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"19,000+\"}),\" employees across\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-21e581, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"20+ departments\"}),\".\"]})]}),className:\"framer-1hetuig\",\"data-framer-name\":\"Enterprise Q&A Bot Serving 19,000+ employees across 20+ departments.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tbNf84_mA\",style:{\"--extracted-18z62cp\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--extracted-21e581\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--extracted-7n17er\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--extracted-a0htzi\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-52nzpv\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"X93ojyNVc\",style:{opacity:0},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(1*(((componentViewport?.height||831)-0-0)/2)+0)+28+(0+84.8+(((componentViewport?.height||831)-0-0)/2*1+0-52-116.8)/2*2)+0+0),pixelHeight:148,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"137.931px\",src:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png\",srcSet:\"https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/M0VQpvF3R6ZjMA1hv6OXSzJgHo.png 640w\"},className:\"framer-1aiv5q0\",\"data-framer-name\":\"image 73\",layoutDependency:layoutDependency,layoutId:\"YHLIKbHlB\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g3po2y\",\"data-framer-name\":\"Component 89\",layoutDependency:layoutDependency,layoutId:\"Gnap0RNqW\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(1*(((componentViewport?.height||831)-0-0)/2)+0)+-110),pixelHeight:1e3,pixelWidth:666,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 6.0094)`,src:\"https://framerusercontent.com/images/vnzZD0GxKzwiIE9sZiSTlBXeBAo.png\",srcSet:\"https://framerusercontent.com/images/vnzZD0GxKzwiIE9sZiSTlBXeBAo.png 666w\"},className:\"framer-10l7ovw\",\"data-framer-name\":\"gigisonherway_httpss.mj.runtDMcDiXDPh4_clean_mountain_--v_6.1_f9df7122-3ebc-4f5e-8510-0ef18a112d4c_0 1\",layoutDependency:layoutDependency,layoutId:\"F5Wivs1Xy\",transformTemplate:transformTemplate1,...addPropertyOverrides({vk437t416:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(1*(((componentViewport?.height||831)-0-0)/2)+0)+-110),pixelHeight:1e3,pixelWidth:666,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 12, 50px) * 12.0189)`,src:\"https://framerusercontent.com/images/vnzZD0GxKzwiIE9sZiSTlBXeBAo.png\",srcSet:\"https://framerusercontent.com/images/vnzZD0GxKzwiIE9sZiSTlBXeBAo.png 666w\"}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5wCoe.framer-jnfdh6, .framer-5wCoe .framer-jnfdh6 { display: block; }\",\".framer-5wCoe.framer-1xme096 { display: grid; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(12, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 831px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1271px; }\",\".framer-5wCoe .framer-1gt7gnr { align-self: start; flex: none; gap: 0px; grid-column: span 6; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-5wCoe .framer-1acb7va { aspect-ratio: 0.8000000459486747 / 1; bottom: var(--framer-aspect-ratio-supported, -191px); flex: none; left: 50%; position: absolute; top: -191px; width: 105%; }\",\".framer-5wCoe .framer-o2yf16 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: span 6; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5wCoe .framer-bqcuai-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-5wCoe .framer-l775t4-container { align-self: start; flex: none; grid-column: span 3; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-5wCoe .framer-ucwizd { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; grid-column: span 6; height: 100%; justify-content: space-between; justify-self: start; overflow: hidden; padding: 28px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-5wCoe .framer-vs82k6, .framer-5wCoe .framer-52nzpv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12.758621215820312px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5wCoe .framer-18rgfct, .framer-5wCoe .framer-1aiv5q0 { aspect-ratio: 4.310344799144848 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 138px; }\",\".framer-5wCoe .framer-1hetuig { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-5wCoe .framer-1g3po2y { align-self: start; flex: none; gap: 0px; grid-column: span 3; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-5wCoe .framer-10l7ovw { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, -110px); flex: none; left: 50%; position: absolute; top: -110px; width: 200%; }\",\".framer-5wCoe.framer-v-k2rewi .framer-1acb7va { bottom: unset; height: var(--framer-aspect-ratio-supported, 1192px); top: -160px; width: 150%; }\",\".framer-5wCoe.framer-v-k2rewi .framer-l775t4-container, .framer-5wCoe.framer-v-k2rewi .framer-1g3po2y { grid-column: span 6; }\",\".framer-5wCoe.framer-v-13w5p4p.framer-1xme096 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: flex-start; width: 390px; }\",\".framer-5wCoe.framer-v-13w5p4p .framer-1gt7gnr, .framer-5wCoe.framer-v-13w5p4p .framer-l775t4-container { align-self: unset; height: 420px; }\",\".framer-5wCoe.framer-v-13w5p4p .framer-1acb7va { bottom: var(--framer-aspect-ratio-supported, -58px); left: 51%; top: -58px; width: 120%; }\",\".framer-5wCoe.framer-v-13w5p4p .framer-o2yf16 { align-self: unset; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 0.8); padding: 60px 20px 60px 20px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 831\n * @framerIntrinsicWidth 1271\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vk437t416\":{\"layout\":[\"fixed\",\"fixed\"]},\"dxNahBUgy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NX1EcCVGy\":\"cursor\",\"p14m3oUE1\":\"cursorTransparent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermRt7xKEN4=withCSS(Component,css,\"framer-5wCoe\");export default FramermRt7xKEN4;FramermRt7xKEN4.displayName=\"Cases - EN\";FramermRt7xKEN4.defaultProps={height:831,width:1271};addPropertyControls(FramermRt7xKEN4,{variant:{options:[\"hxhDKGrkF\",\"vk437t416\",\"dxNahBUgy\"],optionTitles:[\"DESKTOP\",\"TABLET\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum},NX1EcCVGy:{title:\"Cursor\",type:ControlType.CustomCursor},p14m3oUE1:{title:\"Cursor-transparent\",type:ControlType.CustomCursor}});addFonts(FramermRt7xKEN4,[{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\"}]},...TestimonialsENFonts,..._Testimonials2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermRt7xKEN4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"831\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vk437t416\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dxNahBUgy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1271\",\"framerVariables\":\"{\\\"NX1EcCVGy\\\":\\\"cursor\\\",\\\"p14m3oUE1\\\":\\\"cursorTransparent\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"SwbkIDcvd\",\"MHge_8Ks4\",\"EuqIFR6T3\",\"tR153BDQT\"];const serializationHash=\"framer-5IYFM\";const variantClassNames={EuqIFR6T3:\"framer-v-a7sboq\",MHge_8Ks4:\"framer-v-1ebobhi\",SwbkIDcvd:\"framer-v-bzeih4\",tR153BDQT:\"framer-v-feu6w0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:.2,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"SwbkIDcvd\",\"Variant 2\":\"MHge_8Ks4\",\"Variant 4\":\"EuqIFR6T3\",\"Variant 5\":\"tR153BDQT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SwbkIDcvd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SwbkIDcvd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearcjs3fo=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MHge_8Ks4\",true),1e3);});const onAppear7oc0jz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EuqIFR6T3\",true),1e3);});const onAppear1m4yaak=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tR153BDQT\",true),1e3);});const onAppear5tuifa=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SwbkIDcvd\",true),1e3);});useOnVariantChange(baseVariant,{default:onAppearcjs3fo,EuqIFR6T3:onAppear1m4yaak,MHge_8Ks4:onAppear7oc0jz,tR153BDQT:onAppear5tuifa});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"MHge_8Ks4\",\"EuqIFR6T3\",\"tR153BDQT\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"MHge_8Ks4\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"EuqIFR6T3\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"tR153BDQT\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bzeih4\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SwbkIDcvd\",ref:refBinding,style:{...style},...addPropertyOverrides({EuqIFR6T3:{\"data-framer-name\":\"Variant 4\"},MHge_8Ks4:{\"data-framer-name\":\"Variant 2\"},tR153BDQT:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10up8fs\",\"data-framer-name\":\"Property 1=Build\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"L1mWXHypQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 90\"><g><path d=\"M 0 0 L 90 0 L 90 90 L 0 90 Z\" fill=\"transparent\"></path><path d=\"M 88.65 36 L 61.65 36 L 61.65 57.15 L 88.65 57.15 L 88.65 90.45 L 55.35 90.45 L 55.35 63.45 L 34.65 63.45 L 34.65 90.45 L 1.35 90.45 L 1.35 57.15 L 28.35 57.15 L 28.35 29.7 L 55.35 29.7 L 55.35 2.7 L 88.65 2.7 Z M 7.65 84.15 L 28.35 84.15 L 28.35 63.45 L 7.65 63.45 Z M 61.65 84.15 L 82.35 84.15 L 82.35 63.45 L 61.65 63.45 Z M 34.65 57.15 L 55.35 57.15 L 55.35 36 L 34.65 36 Z M 61.65 29.7 L 82.35 29.7 L 82.35 9 L 61.65 9 Z\" fill=\"rgb(0,52,255)\"></path></g></svg>',svgContentId:10602165606,withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l7xxi4\",\"data-framer-name\":\"Property 1=Globe\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"qUbYdE73y\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" stroke=\"#0034FF\" stroke-width=\"7\"><circle cx=\"50\" cy=\"50\" r=\"46.5\"/><path d=\"M50 3.5c6.572 0 13.12 4.458 18.212 12.945C73.262 24.863 76.5 36.718 76.5 50s-3.237 25.137-8.288 33.555C63.119 92.042 56.572 96.5 50 96.5c-6.572 0-13.12-4.458-18.212-12.945C26.738 75.137 23.5 63.282 23.5 50s3.237-25.137 8.288-33.555C36.88 7.958 43.428 3.5 50 3.5ZM50 0v100m50-49.5H0M90 27H10m80 45.5H10\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h100v100H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tjh3wi\",\"data-framer-name\":\"Property 1=Tools\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"h0U858Lvw\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"#0034FF\" stroke-width=\"7\" d=\"M9.5 30.5H90V90H9.5zm1 21.5H90M70 27V17H29.5v10\"/></svg>',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-146ztii\",\"data-framer-name\":\"Data\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"STF5ZvAMn\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" stroke=\"#0034FF\" stroke-width=\"7\"><path d=\"M96.5 36c0 7.18-20.819 13-46.5 13S3.5 43.18 3.5 36m93 23c0 7.732-20.819 14-46.5 14S3.5 66.732 3.5 59\"/><path d=\"M96.5 14.5v67.997C96.5 89.954 75.681 96 50 96S3.5 89.954 3.5 82.497V14.5\"/><path d=\"M50 3.5c13.578 0 25.74 1.573 34.397 4.04 4.351 1.24 7.62 2.651 9.718 4.065 2.223 1.498 2.385 2.458 2.385 2.645 0 .187-.162 1.147-2.385 2.645-2.099 1.414-5.367 2.825-9.718 4.065C75.74 23.427 63.577 25 50 25c-13.578 0-25.74-1.573-34.397-4.04-4.351-1.24-7.62-2.651-9.718-4.066C3.662 15.398 3.5 14.438 3.5 14.25c0-.187.162-1.147 2.385-2.645 2.099-1.414 5.367-2.825 9.719-4.065C24.26 5.073 36.422 3.5 50 3.5Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h100v100H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5IYFM.framer-159l5y8, .framer-5IYFM .framer-159l5y8 { display: block; }\",\".framer-5IYFM.framer-bzeih4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5IYFM .framer-10up8fs, .framer-5IYFM .framer-1l7xxi4 { flex: none; height: 90px; position: relative; width: 90px; }\",\".framer-5IYFM .framer-1tjh3wi { flex: none; height: 100px; position: relative; width: 100px; }\",\".framer-5IYFM .framer-146ztii { flex: none; height: 87px; position: relative; width: 87px; }\",\".framer-5IYFM.framer-v-a7sboq.framer-bzeih4, .framer-5IYFM.framer-v-feu6w0.framer-bzeih4 { display: block; padding: unset; width: 90px; }\",\".framer-5IYFM.framer-v-a7sboq .framer-1tjh3wi { bottom: -5px; height: unset; left: -5px; position: absolute; right: -5px; top: -5px; width: unset; }\",\".framer-5IYFM.framer-v-feu6w0 .framer-146ztii { left: calc(50.00000000000002% - 87px / 2); position: absolute; top: calc(50.00000000000002% - 87px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 90\n * @framerIntrinsicWidth 90\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"MHge_8Ks4\":{\"layout\":[\"auto\",\"fixed\"]},\"EuqIFR6T3\":{\"layout\":[\"fixed\",\"fixed\"]},\"tR153BDQT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW3Eko70eC=withCSS(Component,css,\"framer-5IYFM\");export default FramerW3Eko70eC;FramerW3Eko70eC.displayName=\"__Hero Text \\xb7 Headline \\xb7 Icon Landing \\xb7 Icon Animation\";FramerW3Eko70eC.defaultProps={height:90,width:90};addPropertyControls(FramerW3Eko70eC,{variant:{options:[\"SwbkIDcvd\",\"MHge_8Ks4\",\"EuqIFR6T3\",\"tR153BDQT\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW3Eko70eC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW3Eko70eC\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"MHge_8Ks4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"EuqIFR6T3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tR153BDQT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"90\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"90\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W3Eko70eC.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/38HJf0k5jJsdEgHHYGeU/QDOrSGr6FQgLNwHww4H1/dqBTiZpI5.js\";import __HeroTextHeadlineIconLandingIconAnimation from\"https://framerusercontent.com/modules/jvWDmnrWCCAY04Pde4TD/sp6EjVK6Z9scVUhq714b/W3Eko70eC.js\";const __HeroTextHeadlineIconLandingIconAnimationFonts=getFonts(__HeroTextHeadlineIconLandingIconAnimation);const cycleOrder=[\"Lx7wTC7AB\",\"MJWjPcG4Q\"];const serializationHash=\"framer-sNsEY\";const variantClassNames={Lx7wTC7AB:\"framer-v-15czvv9\",MJWjPcG4Q:\"framer-v-5fikv4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"MJWjPcG4Q\",\"Variant 6\":\"Lx7wTC7AB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Lx7wTC7AB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Lx7wTC7AB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"MJWjPcG4Q\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"MJWjPcG4Q\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15czvv9\",className,classNames),\"data-framer-name\":\"Variant 6\",layoutDependency:layoutDependency,layoutId:\"Lx7wTC7AB\",ref:refBinding,style:{...style},...addPropertyOverrides({MJWjPcG4Q:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"-\"})}),className:\"framer-vaewzk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sTk9veGAa\",style:{\"--extracted-tcooor\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({MJWjPcG4Q:{height:90,y:(componentViewport?.y||0)+0+(((componentViewport?.height||90)-0-90)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ooyzeq-container\",layoutDependency:layoutDependency,layoutId:\"QUoQG_soD-container\",nodeId:\"QUoQG_soD\",rendersWithMotion:true,scopeId:\"QOmBfXUGw\",style:{opacity:.9},children:/*#__PURE__*/_jsx(__HeroTextHeadlineIconLandingIconAnimation,{height:\"100%\",id:\"QUoQG_soD\",layoutId:\"QUoQG_soD\",style:{height:\"100%\"},variant:\"SwbkIDcvd\",width:\"100%\",...addPropertyOverrides({MJWjPcG4Q:{variant:\"MHge_8Ks4\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sNsEY.framer-98ddhy, .framer-sNsEY .framer-98ddhy { display: block; }\",\".framer-sNsEY.framer-15czvv9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sNsEY .framer-vaewzk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sNsEY .framer-ooyzeq-container { flex: none; height: 90px; position: relative; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 90\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"MJWjPcG4Q\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQOmBfXUGw=withCSS(Component,css,\"framer-sNsEY\");export default FramerQOmBfXUGw;FramerQOmBfXUGw.displayName=\"__Hero Text \\xb7 Headline \\xb7 Icon Landing\";FramerQOmBfXUGw.defaultProps={height:90,width:32};addPropertyControls(FramerQOmBfXUGw,{variant:{options:[\"Lx7wTC7AB\",\"MJWjPcG4Q\"],optionTitles:[\"Variant 6\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQOmBfXUGw,[{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\"}]},...__HeroTextHeadlineIconLandingIconAnimationFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQOmBfXUGw\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"90\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"MJWjPcG4Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/38HJf0k5jJsdEgHHYGeU/QDOrSGr6FQgLNwHww4H1/dqBTiZpI5.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/V6aiCvKwKMR8pP9gumfB/SpBFXdLTGl6cwwfSlIiC/IzMR_iSOA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tymU8UXAr7bnpnQtZ4yL/IDycQXmkCy5sevrGaJ02/tDj7t7Pnz.js\";import __HeroTextHeadlineIconLanding from\"https://framerusercontent.com/modules/GZLlA8hUfcjuAhllLShP/zpsfDYToCzhF7zSnOKqY/QOmBfXUGw.js\";const __HeroTextHeadlineIconLandingFonts=getFonts(__HeroTextHeadlineIconLanding);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"ReyTJ27hZ\",\"PdxRo1EZf\",\"ZAF29_kQV\",\"wqOrrYYiQ\",\"Z16jhewwd\"];const serializationHash=\"framer-etQSV\";const variantClassNames={PdxRo1EZf:\"framer-v-1apcvek\",ReyTJ27hZ:\"framer-v-1dqvw3z\",wqOrrYYiQ:\"framer-v-1m5qctu\",Z16jhewwd:\"framer-v-wgb68f\",ZAF29_kQV:\"framer-v-1mgy0rl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.06,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const textEffect={effect:animation,repeat:false,startDelay:0,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={delay:1.3,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0};const transition4={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const textEffect1={effect:animation,repeat:false,startDelay:.9,tokenization:\"character\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop-Hover\":\"PdxRo1EZf\",\"Mobile \\xb7 JP\":\"Z16jhewwd\",\"Mobile-EN\":\"ZAF29_kQV\",\"Mobile-SC\":\"wqOrrYYiQ\",Desktop:\"ReyTJ27hZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ReyTJ27hZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ReyTJ27hZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1avcer1=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"PdxRo1EZf\");});const onMouseLeave10ldol0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"ReyTJ27hZ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"ZAF29_kQV\",\"wqOrrYYiQ\",\"Z16jhewwd\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1dqvw3z\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ReyTJ27hZ\",onMouseEnter:onMouseEnter1avcer1,ref:refBinding,style:{...style},...addPropertyOverrides({PdxRo1EZf:{\"data-framer-name\":\"Desktop-Hover\",onMouseLeave:onMouseLeave10ldol0},wqOrrYYiQ:{\"data-framer-name\":\"Mobile-SC\"},Z16jhewwd:{\"data-framer-name\":\"Mobile \\xb7 JP\"},ZAF29_kQV:{\"data-framer-name\":\"Mobile-EN\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"Build Production\"})}),className:\"framer-1mwgf2e\",\"data-framer-name\":\"Build Production\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OQzhhccqT\",style:{\"--extracted-tcooor\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{wqOrrYYiQ:{\"--extracted-f12k5c\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--extracted-gdpscs\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},Z16jhewwd:{\"--extracted-1bqba7n\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",\"--extracted-gdpscs\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},ZAF29_kQV:{\"--extracted-1ke0nse\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--extracted-1sc344s\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--extracted-1sp2osd\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wqOrrYYiQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-kcbazd\",\"data-styles-preset\":\"tDj7t7Pnz\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:[\"\u4E0B\u4E00\u4EE3 AI Agent\uFF0C\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-f12k5c, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"\u6784\u5EFA\u5373\u6295\u4EA7\"})]})})},Z16jhewwd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-thm821\",\"data-styles-preset\":\"IzMR_iSOA\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"\u5B9F\u904B\u7528\u53EF\u80FD\u306A  \"}),/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-thm821\",\"data-styles-preset\":\"IzMR_iSOA\",style:{\"--framer-text-color\":\"var(--extracted-1bqba7n, var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255)))\"},children:\"AI Agent\u3092\u69CB\u7BC9\"})]})},ZAF29_kQV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1sp2osd, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"Build\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1ke0nse, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"Production-Ready\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1sc344s, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"AI Agent\"})]})}),effect:undefined}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,y:(componentViewport?.y||0)+(0+((componentViewport?.height||90)-0-90)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-14v0pme-container\",\"data-framer-appear-id\":\"14v0pme\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"HOCy4RFPy-container\",nodeId:\"HOCy4RFPy\",optimized:true,rendersWithMotion:true,scopeId:\"R3FzGMWWh\",children:/*#__PURE__*/_jsx(__HeroTextHeadlineIconLanding,{height:\"100%\",id:\"HOCy4RFPy\",layoutId:\"HOCy4RFPy\",variant:\"Lx7wTC7AB\",width:\"100%\",...addPropertyOverrides({PdxRo1EZf:{variant:\"MJWjPcG4Q\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51)))\"},children:\"Ready\"})}),className:\"framer-1kazg7l\",\"data-framer-name\":\"Ready\",effect:textEffect1,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uVMTcXOjc\",style:{\"--extracted-tcooor\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-etQSV.framer-1seixft, .framer-etQSV .framer-1seixft { display: block; }\",\".framer-etQSV.framer-1dqvw3z { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-etQSV .framer-1mwgf2e, .framer-etQSV .framer-1kazg7l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-etQSV .framer-14v0pme-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-etQSV.framer-v-1mgy0rl.framer-1dqvw3z, .framer-etQSV.framer-v-1m5qctu.framer-1dqvw3z, .framer-etQSV.framer-v-wgb68f.framer-1dqvw3z { flex-wrap: wrap; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 90\n * @framerIntrinsicWidth 915\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"PdxRo1EZf\":{\"layout\":[\"auto\",\"auto\"]},\"ZAF29_kQV\":{\"layout\":[\"auto\",\"auto\"]},\"wqOrrYYiQ\":{\"layout\":[\"auto\",\"auto\"]},\"Z16jhewwd\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerR3FzGMWWh=withCSS(Component,css,\"framer-etQSV\");export default FramerR3FzGMWWh;FramerR3FzGMWWh.displayName=\"_Hero Text \\xb7 Headline\";FramerR3FzGMWWh.defaultProps={height:90,width:915};addPropertyControls(FramerR3FzGMWWh,{variant:{options:[\"ReyTJ27hZ\",\"PdxRo1EZf\",\"ZAF29_kQV\",\"wqOrrYYiQ\",\"Z16jhewwd\"],optionTitles:[\"Desktop\",\"Desktop-Hover\",\"Mobile-EN\",\"Mobile-SC\",\"Mobile \\xb7 JP\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerR3FzGMWWh,[{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\"}]},...__HeroTextHeadlineIconLandingFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR3FzGMWWh\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"915\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PdxRo1EZf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZAF29_kQV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wqOrrYYiQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Z16jhewwd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"90\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a9443c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LKpk6QZGusiEdNYsBpwH/jNgn0p0vgaWHGlTJ9IaH/e4tvnx951.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nDlYFRHa0m837ElZt9bs/GJQFXmEAGuYZGg9lkb4S/N0vXeu7bW.js\";import Logos from\"https://framerusercontent.com/modules/ZHW3erRaFXanLQK4CNzV/hws6KVQsgyvM56U8pLhy/CgSDK_wf3.js\";const LogosFonts=getFonts(Logos);const MotionDivWithFX=withFX(motion.div);const LogosControls=getPropertyControls(Logos);const cycleOrder=[\"uOHNB0poU\",\"IZp6tAmpL\",\"KqRa1tDnF\",\"oi7ADey3J\",\"lCUgWUU2q\",\"mjtHoT6VZ\",\"El4t_Gw_w\"];const serializationHash=\"framer-9782L\";const variantClassNames={El4t_Gw_w:\"framer-v-8mhumb\",IZp6tAmpL:\"framer-v-1r0gp8v\",KqRa1tDnF:\"framer-v-cs0iql\",lCUgWUU2q:\"framer-v-epb0ck\",mjtHoT6VZ:\"framer-v-edivke\",oi7ADey3J:\"framer-v-6y8c3n\",uOHNB0poU:\"framer-v-1fbg0xy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Variant 1 - Active\":\"XVrWxOAu8\",\"Variant 1 - Inactive\":\"MjMDcXRC4\",\"Variant 2 - Active\":\"xK2RovsIo\",\"Variant 2\":\"MOpxwUYIH\"};const humanReadableVariantMap={\"Desktop-Logo-Active\":\"mjtHoT6VZ\",\"Desktop-Logo-Default\":\"lCUgWUU2q\",\"Desktop-NoLogo-Active\":\"KqRa1tDnF\",\"Desktop-NoLogo\":\"uOHNB0poU\",\"Mobile-Active\":\"oi7ADey3J\",\"Mobile-Default\":\"IZp6tAmpL\",\"Variant 7\":\"El4t_Gw_w\"};const getProps=({body,height,id,logo,logoGroup,title,width,...props})=>{return{...props,abhsiu0vM:body??props.abhsiu0vM??\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"uOHNB0poU\",wGYORxxZl:humanReadableEnumMap[logoGroup]??logoGroup??props.wGYORxxZl??\"XVrWxOAu8\",ZDpdb4GQT:logo??props.ZDpdb4GQT,zlPy7mPpi:title??props.zlPy7mPpi??\"Sophisticated Workflow in Minutes\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,zlPy7mPpi,abhsiu0vM,ZDpdb4GQT,wGYORxxZl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uOHNB0poU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if([\"IZp6tAmpL\",\"oi7ADey3J\",\"lCUgWUU2q\"].includes(baseVariant))return false;if(baseVariant===\"mjtHoT6VZ\")return true;return value;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fbg0xy\",className,classNames),\"data-framer-name\":\"Desktop-NoLogo\",layoutDependency:layoutDependency,layoutId:\"uOHNB0poU\",ref:refBinding,style:{...style},...addPropertyOverrides({El4t_Gw_w:{\"data-framer-name\":\"Variant 7\"},IZp6tAmpL:{\"data-framer-name\":\"Mobile-Default\"},KqRa1tDnF:{\"data-framer-name\":\"Desktop-NoLogo-Active\"},lCUgWUU2q:{\"data-framer-name\":\"Desktop-Logo-Default\"},mjtHoT6VZ:{\"data-framer-name\":\"Desktop-Logo-Active\"},oi7ADey3J:{\"data-framer-name\":\"Mobile-Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dqcqq8\",\"data-framer-name\":\"Build \\xb7 Text Container\",layoutDependency:layoutDependency,layoutId:\"OugFeYoNl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e3o7s0\",\"data-framer-name\":\"Bullet\",layoutDependency:layoutDependency,layoutId:\"kaB8zOveD\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g2hebb\",\"data-framer-name\":\"Ellipse 444\",layoutDependency:layoutDependency,layoutId:\"lmRNJWHja\",style:{backgroundColor:\"rgb(0, 51, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:0},variants:{El4t_Gw_w:{opacity:1},KqRa1tDnF:{opacity:1},mjtHoT6VZ:{opacity:1}}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxnqxu\",\"data-framer-name\":\"Body\",layoutDependency:layoutDependency,layoutId:\"Za31RtfJa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1icekb3\",\"data-styles-preset\":\"N0vXeu7bW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153)))\"},children:\"Sophisticated Workflow in Minutes\"})}),className:\"framer-vw6c88\",\"data-framer-name\":\"Sophisticated Workflow In Minutes\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O2o6i9dXF\",style:{\"--extracted-1eung3n\":\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"5px\"},text:zlPy7mPpi,variants:{El4t_Gw_w:{\"--extracted-1eung3n\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"},IZp6tAmpL:{\"--extracted-1eung3n\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"},KqRa1tDnF:{\"--extracted-1eung3n\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"},mjtHoT6VZ:{\"--extracted-1eung3n\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"},oi7ADey3J:{\"--extracted-1eung3n\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({El4t_Gw_w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1icekb3\",\"data-styles-preset\":\"N0vXeu7bW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0)))\"},children:\"Sophisticated Workflow in Minutes\"})})},IZp6tAmpL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1icekb3\",\"data-styles-preset\":\"N0vXeu7bW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0)))\"},children:\"Sophisticated Workflow in Minutes\"})}),text:undefined},KqRa1tDnF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1icekb3\",\"data-styles-preset\":\"N0vXeu7bW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0)))\"},children:\"Sophisticated Workflow in Minutes\"})})},mjtHoT6VZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1icekb3\",\"data-styles-preset\":\"N0vXeu7bW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0)))\"},children:\"Sophisticated Workflow in Minutes\"})})},oi7ADey3J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1icekb3\",\"data-styles-preset\":\"N0vXeu7bW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0)))\"},children:\"Sophisticated Workflow in Minutes\"})}),text:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153)))\"},children:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\"})}),className:\"framer-u7ocso\",\"data-framer-name\":\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vzx9M8now\",style:{\"--extracted-r6o4lv\":\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"5px\"},text:abhsiu0vM,variants:{El4t_Gw_w:{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},IZp6tAmpL:{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},KqRa1tDnF:{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},mjtHoT6VZ:{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},oi7ADey3J:{\"--extracted-r6o4lv\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({El4t_Gw_w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\"})})},IZp6tAmpL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\"})})},KqRa1tDnF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\"})})},mjtHoT6VZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\"})})},oi7ADey3J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102)))\"},children:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\"})})}},baseVariant,gestureVariant)}),isDisplayed(ZDpdb4GQT)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||126)-0-194.6)/2)+24+0+154.6,...addPropertyOverrides({El4t_Gw_w:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||3290)-0-194.6)/2)+24+0+154.6},KqRa1tDnF:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||3290)-0-194.6)/2)+24+0+154.6},mjtHoT6VZ:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||222)-0-250.6)/2)+24+0+154.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y66djw-container\",layoutDependency:layoutDependency,layoutId:\"nhR0hOvEI-container\",nodeId:\"nhR0hOvEI\",rendersWithMotion:true,scopeId:\"Ww0D3VWQ3\",children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"nhR0hOvEI\",layoutId:\"nhR0hOvEI\",style:{width:\"100%\"},variant:wGYORxxZl,width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9782L.framer-x9s574, .framer-9782L .framer-x9s574 { display: block; }\",\".framer-9782L.framer-1fbg0xy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 636px; }\",\".framer-9782L .framer-1dqcqq8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 1px; z-index: 1; }\",\".framer-9782L .framer-1e3o7s0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 0px 9px 0px; position: relative; width: min-content; }\",\".framer-9782L .framer-g2hebb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-9782L .framer-nxnqxu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9782L .framer-vw6c88 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9782L .framer-u7ocso { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-9782L .framer-y66djw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9782L.framer-v-1r0gp8v.framer-1fbg0xy { width: min-content; }\",\".framer-9782L.framer-v-1r0gp8v .framer-1dqcqq8, .framer-9782L.framer-v-6y8c3n .framer-1dqcqq8 { gap: 20px; padding: 40px 20px 40px 20px; }\",\".framer-9782L.framer-v-cs0iql.framer-1fbg0xy, .framer-9782L.framer-v-6y8c3n.framer-1fbg0xy, .framer-9782L.framer-v-8mhumb.framer-1fbg0xy { gap: 10px; width: min-content; }\",\".framer-9782L.framer-v-edivke.framer-1fbg0xy { gap: 10px; width: 500px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 126\n * @framerIntrinsicWidth 636\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IZp6tAmpL\":{\"layout\":[\"auto\",\"auto\"]},\"KqRa1tDnF\":{\"layout\":[\"auto\",\"auto\"]},\"oi7ADey3J\":{\"layout\":[\"auto\",\"auto\"]},\"lCUgWUU2q\":{\"layout\":[\"fixed\",\"auto\"]},\"mjtHoT6VZ\":{\"layout\":[\"fixed\",\"auto\"]},\"El4t_Gw_w\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"zlPy7mPpi\":\"title\",\"abhsiu0vM\":\"body\",\"ZDpdb4GQT\":\"logo\",\"wGYORxxZl\":\"logoGroup\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWw0D3VWQ3=withCSS(Component,css,\"framer-9782L\");export default FramerWw0D3VWQ3;FramerWw0D3VWQ3.displayName=\"Case Study Item \\xb7 EN\";FramerWw0D3VWQ3.defaultProps={height:126,width:636};addPropertyControls(FramerWw0D3VWQ3,{variant:{options:[\"uOHNB0poU\",\"IZp6tAmpL\",\"KqRa1tDnF\",\"oi7ADey3J\",\"lCUgWUU2q\",\"mjtHoT6VZ\",\"El4t_Gw_w\"],optionTitles:[\"Desktop-NoLogo\",\"Mobile-Default\",\"Desktop-NoLogo-Active\",\"Mobile-Active\",\"Desktop-Logo-Default\",\"Desktop-Logo-Active\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},zlPy7mPpi:{defaultValue:\"Sophisticated Workflow in Minutes\",displayTextArea:false,title:\"Title\",type:ControlType.String},abhsiu0vM:{defaultValue:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",displayTextArea:false,title:\"Body\",type:ControlType.String},ZDpdb4GQT:{defaultValue:false,title:\"Logo\",type:ControlType.Boolean},wGYORxxZl:LogosControls?.[\"variant\"]&&{...LogosControls[\"variant\"],defaultValue:\"XVrWxOAu8\",description:undefined,hidden:undefined,title:\"Logo Group\"}});addFonts(FramerWw0D3VWQ3,[{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\"}]},...LogosFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWw0D3VWQ3\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IZp6tAmpL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KqRa1tDnF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oi7ADey3J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lCUgWUU2q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mjtHoT6VZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"El4t_Gw_w\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"126\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"zlPy7mPpi\\\":\\\"title\\\",\\\"abhsiu0vM\\\":\\\"body\\\",\\\"ZDpdb4GQT\\\":\\\"logo\\\",\\\"wGYORxxZl\\\":\\\"logoGroup\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"636\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ww0D3VWQ3.map", "// Generated by Framer (df7882f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import BuildTextContainer from\"#framer/local/canvasComponent/A5zbxh_SA/A5zbxh_SA.js\";import Home_3ColCard from\"#framer/local/canvasComponent/b4fg3rxVx/b4fg3rxVx.js\";import UIImage from\"#framer/local/canvasComponent/dcz0c3c69/dcz0c3c69.js\";import LineH from\"#framer/local/canvasComponent/dEa6h5jx5/dEa6h5jx5.js\";import FixedNavButtonEN from\"#framer/local/canvasComponent/e0svwJ2jo/e0svwJ2jo.js\";import ButtonRollingEN from\"#framer/local/canvasComponent/EjrjXoDPl/EjrjXoDPl.js\";import EcosystemGallery from\"#framer/local/canvasComponent/EZfMPrMNn/EZfMPrMNn.js\";import Comunity_twitter_card from\"#framer/local/canvasComponent/IxGEVE4aB/IxGEVE4aB.js\";import FooterEN from\"#framer/local/canvasComponent/J0EIg2xjn/J0EIg2xjn.js\";import ReadyToBuild from\"#framer/local/canvasComponent/kaZKSbZ6j/kaZKSbZ6j.js\";import EnterpriseSubheaderContent from\"#framer/local/canvasComponent/kjTgd4Pe9/kjTgd4Pe9.js\";import MainLogoCombo from\"#framer/local/canvasComponent/LhHri3WYB/LhHri3WYB.js\";import SectionHeader from\"#framer/local/canvasComponent/M2uHiRWhC/M2uHiRWhC.js\";import CasesEN from\"#framer/local/canvasComponent/mRt7xKEN4/mRt7xKEN4.js\";import BallSm from\"#framer/local/canvasComponent/NHJQLaaLc/NHJQLaaLc.js\";import TransparentDotCursor from\"#framer/local/canvasComponent/nscjZ6Y8z/nscjZ6Y8z.js\";import LineV from\"#framer/local/canvasComponent/OAx9fQzXC/OAx9fQzXC.js\";import BlueDotCursor from\"#framer/local/canvasComponent/pQd0CGvQ8/pQd0CGvQ8.js\";import GitHubMotion from\"#framer/local/canvasComponent/Pqhs5t7At/Pqhs5t7At.js\";import UI from\"#framer/local/canvasComponent/qfHR1p7Sd/qfHR1p7Sd.js\";import Card from\"#framer/local/canvasComponent/qgPWzHYAm/qgPWzHYAm.js\";import WhiteDotCursor from\"#framer/local/canvasComponent/QUrZZnynA/QUrZZnynA.js\";import _HeroTextHeadline from\"#framer/local/canvasComponent/R3FzGMWWh/R3FzGMWWh.js\";import MegaMenuEN from\"#framer/local/canvasComponent/rhoBsjeYw/rhoBsjeYw.js\";import NoticeBar from\"#framer/local/canvasComponent/TFsWiX9AH/TFsWiX9AH.js\";import MainVideoMobile from\"#framer/local/canvasComponent/UW_U6rmTM/UW_U6rmTM.js\";import MainVideo from\"#framer/local/canvasComponent/V8oM3RQQr/V8oM3RQQr.js\";import FinalCTA from\"#framer/local/canvasComponent/VP0Zhzuau/VP0Zhzuau.js\";import Lines from\"#framer/local/canvasComponent/wCQeBvN8h/wCQeBvN8h.js\";import CaseStudyItemEN from\"#framer/local/canvasComponent/Ww0D3VWQ3/Ww0D3VWQ3.js\";import EnterpriseDataCard from\"#framer/local/canvasComponent/yzQczX5Y6/yzQczX5Y6.js\";import App from\"#framer/local/codeFile/pmCR7yu/GithubStarsCount.js\";import{withProgress}from\"#framer/local/codeFile/FwFhir2/Scroll_Progress.js\";import*as sharedStyle from\"#framer/local/css/dqBTiZpI5/dqBTiZpI5.js\";import*as sharedStyle1 from\"#framer/local/css/e4tvnx951/e4tvnx951.js\";import*as sharedStyle4 from\"#framer/local/css/jfgWTQKwu/jfgWTQKwu.js\";import*as sharedStyle5 from\"#framer/local/css/m8c5DMR11/m8c5DMR11.js\";import*as sharedStyle3 from\"#framer/local/css/PizrjbfHA/PizrjbfHA.js\";import*as sharedStyle2 from\"#framer/local/css/RTKpYVSdC/RTKpYVSdC.js\";import metadataProvider from\"#framer/local/webPageMetadata/gY3E5c66J/gY3E5c66J.js\";const MegaMenuENFonts=getFonts(MegaMenuEN);const ContainerWithFX=withFX(Container);const LinesFonts=getFonts(Lines);const LinesWithVariantAppearEffect=withVariantAppearEffect(Lines);const FooterENFonts=getFonts(FooterEN);const FooterENWithVariantAppearEffect=withVariantAppearEffect(FooterEN);const FixedNavButtonENFonts=getFonts(FixedNavButtonEN);const FixedNavButtonENWithVariantAppearEffect=withVariantAppearEffect(FixedNavButtonEN);const NoticeBarFonts=getFonts(NoticeBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const _HeroTextHeadlineFonts=getFonts(_HeroTextHeadline);const BallSmFonts=getFonts(BallSm);const AppFonts=getFonts(App);const GitHubMotionFonts=getFonts(GitHubMotion);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const LineHFonts=getFonts(LineH);const ButtonRollingENFonts=getFonts(ButtonRollingEN);const MainLogoComboFonts=getFonts(MainLogoCombo);const MainVideoFonts=getFonts(MainVideo);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const MainVideoMobileFonts=getFonts(MainVideoMobile);const SectionHeaderFonts=getFonts(SectionHeader);const CaseStudyItemENFonts=getFonts(CaseStudyItemEN);const CaseStudyItemENWithVariantAppearEffect=withVariantAppearEffect(CaseStudyItemEN);const UIFonts=getFonts(UI);const ImageWithFX=withFX(Image);const UIImageFonts=getFonts(UIImage);const VideoFonts=getFonts(Video);const BuildTextContainerFonts=getFonts(BuildTextContainer);const LineVFonts=getFonts(LineV);const Home_3ColCardFonts=getFonts(Home_3ColCard);const EnterpriseSubheaderContentFonts=getFonts(EnterpriseSubheaderContent);const EnterpriseSubheaderContentWithVariantAppearEffect=withVariantAppearEffect(EnterpriseSubheaderContent);const EnterpriseDataCardFonts=getFonts(EnterpriseDataCard);const CasesENFonts=getFonts(CasesEN);const CardFonts=getFonts(Card);const Comunity_twitter_cardFonts=getFonts(Comunity_twitter_card);const ReadyToBuildFonts=getFonts(ReadyToBuild);const EcosystemGalleryFonts=getFonts(EcosystemGallery);const FinalCTAFonts=getFonts(FinalCTA);const MotionDivWithProgress1dk0sfj=withCodeBoundaryForOverrides(motion.div,{nodeId:\"GdYfv5eY9\",override:withProgress,scopeId:\"gY3E5c66J\"});const BlueDotCursorFonts=getFonts(BlueDotCursor);const WhiteDotCursorFonts=getFonts(WhiteDotCursor);const TransparentDotCursorFonts=getFonts(TransparentDotCursor);const breakpoints={FpeI4Ryot:\"(min-width: 1280px) and (max-width: 1439px)\",JEB2KFvAe:\"(min-width: 1512px) and (max-width: 1727px)\",PYdrRSIXB:\"(min-width: 810px) and (max-width: 1279px)\",uELy0nRXr:\"(min-width: 1440px) and (max-width: 1511px)\",vbCekHcm9:\"(max-width: 809px)\",WYajY4aty:\"(min-width: 1728px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sV4ft\";const variantClassNames={FpeI4Ryot:\"framer-v-1sdix6d\",JEB2KFvAe:\"framer-v-nyekym\",PYdrRSIXB:\"framer-v-7296qt\",uELy0nRXr:\"framer-v-1p8ytaq\",vbCekHcm9:\"framer-v-uayhca\",WYajY4aty:\"framer-v-uhvcyq\"};const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const textEffect={effect:animation3,repeat:false,startDelay:.9,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={damping:30,delay:1.6,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.2,delay:2,duration:.6,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation6={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition6={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect1={effect:animation6,repeat:false,startDelay:0,threshold:.5,tokenization:\"character\",transition:transition6,trigger:\"onInView\",type:\"appear\"};const textEffect2={effect:animation6,repeat:false,startDelay:.8,threshold:.5,tokenization:\"character\",transition:transition6,trigger:\"onInView\",type:\"appear\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={bounce:.2,delay:0,duration:.7,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition8={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition9={delay:.2,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition10={delay:.4,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const textEffect3={effect:animation6,repeat:false,startDelay:.3,threshold:0,tokenization:\"character\",transition:transition6,trigger:\"onInView\",type:\"appear\"};const animation10={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition11={damping:40,delay:.075,mass:1,stiffness:300,type:\"spring\"};const textEffect4={effect:animation10,repeat:false,startDelay:.5,threshold:.5,tokenization:\"line\",transition:transition11,trigger:\"onInView\",type:\"appear\"};const transition12={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:150};const transition13={delay:.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:150};const transition14={delay:.6,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition15={bounce:.2,delay:0,duration:.4,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"1280\":\"FpeI4Ryot\",\"1440 (margin100)\":\"uELy0nRXr\",\"1728\":\"WYajY4aty\",\"Desktop-1512\":\"JEB2KFvAe\",Phone:\"vbCekHcm9\",Tablet:\"PYdrRSIXB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JEB2KFvAe\"};};const cursor={alignment:\"center\",component:BlueDotCursor,offset:{x:0,y:6},placement:\"top\",variant:\"kK4QYGVnw\"};const cursor1={component:WhiteDotCursor,variant:\"w4GWeOmkr\"};const cursor2={component:TransparentDotCursor,variant:\"phoJ85j5U\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qHjjob7b0,Fsp6hTlD_bKjP8M1dc,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Gh5Py1uUn\");const router=useRouter();const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vbCekHcm9\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vbCekHcm9\")return true;return false;};const elementId1=useRouteElementId(\"wo5tNdAPZ\");const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const elementId2=useRouteElementId(\"ECekae9mV\");const ref6=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"vbCekHcm9\",\"PYdrRSIXB\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"nv36vVcL8\");const ref7=React.useRef(null);const elementId4=useRouteElementId(\"rdmiRZ98t\");const ref8=React.useRef(null);const elementId5=useRouteElementId(\"TQ65lWDTn\");const ref9=React.useRef(null);const elementId6=useRouteElementId(\"OPvt5vSJB\");const ref10=React.useRef(null);const elementId7=useRouteElementId(\"KMCtoh4UC\");const ref11=React.useRef(null);const elementId8=useRouteElementId(\"WSSmrWHfQ\");const ref12=React.useRef(null);const ref13=React.useRef(null);const ref14=React.useRef(null);const ref15=React.useRef(null);const elementId9=useRouteElementId(\"JaxUGtfvh\");const ref16=React.useRef(null);const elementId10=useRouteElementId(\"lM3vk13Be\");const elementId11=useRouteElementId(\"TLEHaJ6oH\");const ref17=React.useRef(null);const elementId12=useRouteElementId(\"qKiWHAnjm\");const elementId13=useRouteElementId(\"VKJvUer90\");const elementId14=useRouteElementId(\"YQhWAdxfW\");const isDisplayed3=()=>{if(!isBrowser())return true;if([\"vbCekHcm9\",\"PYdrRSIXB\"].includes(baseVariant))return true;return false;};const elementId15=useRouteElementId(\"Of2CmfPvM\");const ref18=React.useRef(null);const elementId16=useRouteElementId(\"Foonh4WbY\");const ref19=React.useRef(null);const elementId17=useRouteElementId(\"Fl3A8QW_0\");const ref20=React.useRef(null);const elementId18=useRouteElementId(\"W5HnIxmmm\");const ref21=React.useRef(null);const ref22=React.useRef(null);const ref23=React.useRef(null);const ref24=React.useRef(null);const ref25=React.useRef(null);const elementId19=useRouteElementId(\"vBmUbUBev\");const ref26=React.useRef(null);const elementId20=useRouteElementId(\"K9dISMoGC\");const elementId21=useRouteElementId(\"eBUoHLy88\");const elementId22=useRouteElementId(\"cz1dIFV3R\");const elementId23=useRouteElementId(\"WCK_uVQn6\");const elementId24=useRouteElementId(\"LMFva5DJ6\");const ref27=React.useRef(null);const elementId25=useRouteElementId(\"WATNk4UHo\");const ref28=React.useRef(null);const elementId26=useRouteElementId(\"k5zQV1JKX\");const ref29=React.useRef(null);const elementId27=useRouteElementId(\"SUzdJtsMG\");const elementId28=useRouteElementId(\"UudRAyPeg\");const ref30=React.useRef(null);const ref31=React.useRef(null);const elementId29=useRouteElementId(\"x7AretZFE\");const elementId30=useRouteElementId(\"amRN_uA57\");const ref32=React.useRef(null);const elementId31=useRouteElementId(\"zYJcwkUfB\");const ref33=React.useRef(null);const elementId32=useRouteElementId(\"sBAHIzBwo\");const ref34=React.useRef(null);const elementId33=useRouteElementId(\"tDJTORtUD\");const ref35=React.useRef(null);const elementId34=useRouteElementId(\"KPGesxHTV\");const elementId35=useRouteElementId(\"EEkqblwds\");const ref36=React.useRef(null);useCustomCursors({\"1icrv51\":cursor,\"2qds3n\":cursor2,j1vs2:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JEB2KFvAe\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-nyekym\",className),\"data-framer-cursor\":\"1icrv51\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"Nhwox2nla\"},implicitPathVariables:undefined},{href:{webPageId:\"y0nKteF3M\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"Nhwox2nla\"},implicitPathVariables:undefined},{href:{webPageId:\"y0nKteF3M\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"Nhwox2nla\"},implicitPathVariables:undefined},{href:{webPageId:\"y0nKteF3M\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"Nhwox2nla\"},implicitPathVariables:undefined},{href:{webPageId:\"y0nKteF3M\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"Nhwox2nla\"},implicitPathVariables:undefined},{href:{webPageId:\"y0nKteF3M\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"Nhwox2nla\"},implicitPathVariables:undefined},{href:{webPageId:\"y0nKteF3M\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lviifd-container\",id:elementId,layoutScroll:true,nodeId:\"Gh5Py1uUn\",ref:ref1,rendersWithMotion:true,scopeId:\"gY3E5c66J\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{e07tfIG32:\"0px 100px 0px 100px\",GQxbPFQTE:\"flex-end\",N91EoNkVs:\"0px 26px 0px 26px\",nQw_ktml_:resolvedLinks[15],XCqlnilYg:resolvedLinks[16],Y5UbLoaD6:resolvedLinks[17]},PYdrRSIXB:{e07tfIG32:\"0px 80px 0px 80px\",nQw_ktml_:resolvedLinks[9],variant:\"QOt7dHoNm\",XCqlnilYg:resolvedLinks[10],Y5UbLoaD6:resolvedLinks[11]},uELy0nRXr:{e07tfIG32:\"0px 100px 0px 100px\",GQxbPFQTE:\"flex-end\",N91EoNkVs:\"0px 26px 0px 26px\",nQw_ktml_:resolvedLinks[6],XCqlnilYg:resolvedLinks[7],Y5UbLoaD6:resolvedLinks[8]},vbCekHcm9:{nQw_ktml_:resolvedLinks[3],variant:\"QOt7dHoNm\",XCqlnilYg:resolvedLinks[4],Y5UbLoaD6:resolvedLinks[5]},WYajY4aty:{nQw_ktml_:resolvedLinks[12],style:{height:\"100%\",width:\"100%\"},XCqlnilYg:resolvedLinks[13],Y5UbLoaD6:resolvedLinks[14]}},children:/*#__PURE__*/_jsx(MegaMenuEN,{bEM6Q732f:\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",e07tfIG32:\"0px 120px 0px 120px\",FbyJOjX5o:\"https://marketplace.dify.ai/\",GQxbPFQTE:\"center\",height:\"100%\",id:\"Gh5Py1uUn\",IfpdDMeS8:\"https://dify.ai/blog\",IXjzNM7p3:\"j1vs2\",k7td7EFEc:\"0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",kx0OZNBiZ:\"S6GoGlUTG\",layoutId:\"Gh5Py1uUn\",N91EoNkVs:\"0px 24px 0px 24px\",nQw_ktml_:resolvedLinks[0],OnXUe26SP:true,SflWJS9NS:\"https://docs.dify.ai/en/introduction\",style:{width:\"100%\"},variant:\"qnkeVM543\",vXhzoKA3k:false,width:\"100%\",XCqlnilYg:resolvedLinks[1],Y5UbLoaD6:resolvedLinks[2],Yeq07nJXo:\"S6GoGlUTG\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bq5lul-container hidden-uayhca\",\"data-framer-name\":\"Lines-Desktop\",layoutScroll:true,name:\"Lines-Desktop\",nodeId:\"ztWlzyXmQ\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{MPehxLLSY:\"0px 99px 0px 99px\",variant:\"EfJZbFtxK\"},PYdrRSIXB:{MPehxLLSY:\"0px 39px 0px 39px\"},uELy0nRXr:{MPehxLLSY:\"0px 99px 0px 99px\"}},children:/*#__PURE__*/_jsx(LinesWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:1,__framer__variantAppearEffectEnabled:true,C6xmz9JHS:1,ckll6f8TO:1,hbv9CzeJg:1,height:\"100%\",id:\"ztWlzyXmQ\",iWDctgZP2:1,layoutId:\"ztWlzyXmQ\",MPehxLLSY:\"0px 119px 0px 119px\",N3ks1cEMa:1,name:\"Lines-Desktop\",plT7cr5kQ:1,style:{height:\"100%\",width:\"100%\"},variant:\"ZHGDPhWP6\",width:\"100%\",XATX5mSzE:1})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kv4kyj hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",\"data-framer-name\":\"Lines-Mobile\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-297179\",\"data-framer-name\":\"Line-v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h7vx8p\",\"data-framer-name\":\"Line-v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oihkfe\",\"data-framer-name\":\"Line-v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tdwbbo\",\"data-framer-name\":\"Line-v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ef33x\",\"data-framer-name\":\"Line-v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1asz8b8\",\"data-framer-name\":\"Line-v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12n2cfu\",\"data-framer-name\":\"Line-v\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:componentViewport?.width||\"100vw\",y:undefined},vbCekHcm9:{height:700,width:componentViewport?.width||\"100vw\",y:undefined},WYajY4aty:{height:1e3,y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:850,width:\"100vw\",y:150,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fb7ncc-container\",id:elementId1,layoutScroll:true,nodeId:\"wo5tNdAPZ\",ref:ref3,rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{KBq1fjPQU:\"120px 99px 40px 99px\"},PYdrRSIXB:{KBq1fjPQU:\"120px 40px 40px 40px\",variant:\"U_WX2SbVw\"},uELy0nRXr:{KBq1fjPQU:\"120px 99px 40px 99px\"},vbCekHcm9:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"sUwKurTtt\"}},children:/*#__PURE__*/_jsx(FooterENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"mZ6m8kDOi\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"wo5tNdAPZ\",KBq1fjPQU:\"120px 120px 40px 120px\",layoutId:\"wo5tNdAPZ\",style:{height:\"100%\",width:\"100%\"},variant:\"FJnHEd7h3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:\"100vw\"},vbCekHcm9:{width:\"100vw\",y:950}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kcwegp-container\",layoutScroll:true,nodeId:\"t1BvOcoO1\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__targets:[{offset:40,ref:ref4,target:\"N7p9rBoAW\"},{ref:ref5,target:\"FgoavSw5P\"}],variant:\"FgoavSw5P\"}},children:/*#__PURE__*/_jsx(FixedNavButtonENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:40,ref:ref4,target:\"DFglKHp5z\"},{ref:ref5,target:\"goeJ95Nbx\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"t1BvOcoO1\",iQC9zikK4:\"https://cloud.dify.ai/\",layoutId:\"t1BvOcoO1\",ptfNsYgdB:\"Get Started\",style:{height:\"100%\",width:\"100%\"},variant:\"goeJ95Nbx\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b6dt3n\",\"data-framer-name\":\"page-wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aue4ca\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6wdoz\",\"data-framer-name\":\"Section-1\",id:elementId2,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t49gn8\",\"data-framer-name\":\"Header\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+0+0+0+0+71+0+40+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-i993xw-container hidden-uayhca\",\"data-framer-appear-id\":\"i993xw\",initial:animation2,nodeId:\"vNROfWEqT\",optimized:true,rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(NoticeBar,{height:\"100%\",id:\"vNROfWEqT\",layoutId:\"vNROfWEqT\",variant:\"rhpRgleSt\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o9yvnw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ef7h1k\",\"data-framer-name\":\"Headline-container\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,y:(componentViewport?.y||0)+0+0+0+0+0+0+71+0+40+52+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bxx84u-container hidden-uayhca hidden-7296qt\",nodeId:\"MdvDAlnQT\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(_HeroTextHeadline,{height:\"100%\",id:\"MdvDAlnQT\",layoutId:\"MdvDAlnQT\",variant:\"ReyTJ27hZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Build\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Production-Ready\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Agentic AI Solutions\"})]})},vbCekHcm9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Build\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Production-Ready Agentic AI Solutions\"})]}),effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1p99ktv\",\"data-styles-preset\":\"dqBTiZpI5\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Agentic AI Solutions\"})}),className:\"framer-1riaocz\",\"data-framer-name\":\"AI Agent\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1PDtmhuZSBCdWNo\",\"--framer-font-family\":'\"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.2)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\"},children:\"Build Production-Ready AI Agent\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1PDtmhuZSBCdWNo\",\"--framer-font-family\":'\"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.5)\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\"},children:\"Build Production-Ready AI Agent\"})}),className:\"framer-wlgoi6\",\"data-framer-name\":\"H1 tag\",fonts:[\"CUSTOM;S\\xf6hne Buch\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1b38ut7\",\"data-framer-appear-id\":\"1b38ut7\",\"data-framer-name\":\"GitHub update\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:6,width:\"6px\",y:(componentViewport?.y||0)+0+0+0+0+0+0+71+0+40+52+0+215+97,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8bh3na-container\",nodeId:\"KkUnmILo0\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(BallSm,{height:\"100%\",id:\"KkUnmILo0\",l30Fj_pON:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"KkUnmILo0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o3roj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ut1zqo-container\",\"data-framer-name\":\"Github Star Count\",isAuthoredByUser:true,name:\"Github Star Count\",nodeId:\"F10pdZnM0\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(App,{color:\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\",defaultText:\"GitHub\",fontFamily:\"'S\\xf6hne Buch', system-ui, -apple-system, sans-serif\",fontSize:\"14px\",fontWeight:\"500\",height:\"100%\",id:\"F10pdZnM0\",layoutId:\"F10pdZnM0\",lineHeight:\"20px\",name:\"Github Star Count\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},children:\"stars on\"})}),className:\"framer-1melqt1\",\"data-framer-name\":\"90.2k stars on GitHub\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+0+0+0+0+0+0+71+0+40+52+0+215+0+89,children:/*#__PURE__*/_jsx(Container,{className:\"framer-buao70-container\",nodeId:\"PENimTd6v\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(GitHubMotion,{height:\"100%\",id:\"PENimTd6v\",layoutId:\"PENimTd6v\",width:\"100%\"})})})})]})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+71+547,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nqco52-container\",nodeId:\"yj0qWyzL8\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"yj0qWyzL8\",layoutId:\"yj0qWyzL8\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gwa8b0\",\"data-framer-name\":\"Hero Copy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujylo4\",\"data-framer-name\":\"Hero Copy \\xb7 Body\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x1v046\",\"data-styles-preset\":\"RTKpYVSdC\",style:{\"--framer-text-color\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},children:\"Dify offers everything you need \u2014 agentic workflows, RAG pipelines, integrations, and observability \u2014 all in one place, putting AI power into your hands.\"})}),className:\"framer-f77fdz\",\"data-framer-name\":\"Dify offers everything you need - agentic workflows, RAG pipelines, integrations, and observability \u2013 all in one place, putting AI power into your hands.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 1.5)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 3)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 1.5)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 5)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 1.5)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+71+548+0+199,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1whk1ld-container\",\"data-framer-appear-id\":\"1whk1ld\",initial:animation2,nodeId:\"kRy9XrxVZ\",optimized:true,rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-6fb885fd-a529-4a6b-bb67-60ceb98870aa, rgb(0, 44, 214))\",En8F1FnWK:\"Get Started\",height:\"100%\",id:\"kRy9XrxVZ\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"kRy9XrxVZ\",N_d2uuC0E:false,oM3fyv42q:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",SQLyqSrMa:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},T1Y25gYST:true,tenuaCvri:\"https://cloud.dify.ai/signin\",variant:\"mbYv9EQTs\",width:\"100%\",XMjKNHjmA:\"j1vs2\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybxnhi\",\"data-framer-name\":\"Logo\",id:elementId3,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+71+797+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pvmn8o-container\",nodeId:\"eyIEG0jTG\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{c4OaTNlfU:\"40px 0px 40px 0px\",variant:\"gU4yNNh9h\"}},children:/*#__PURE__*/_jsx(MainLogoCombo,{c4OaTNlfU:\"0px\",height:\"100%\",id:\"eyIEG0jTG\",layoutId:\"eyIEG0jTG\",style:{width:\"100%\"},variant:\"Mkc8ksjJc\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{height:32,width:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kxswus-container hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",nodeId:\"BVb9odq4V\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(NoticeBar,{height:\"100%\",id:\"BVb9odq4V\",layoutId:\"BVb9odq4V\",style:{width:\"100%\"},variant:\"a9WtVSTWd\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pkqnft hidden-uayhca\",\"data-framer-name\":\"Desktop-Section-2-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-63cluj\",\"data-framer-name\":\"Section-2\",id:elementId4,ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1068+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+1068+0+0+0+141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v8ez0v-container\",nodeId:\"LNlnTonTo\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"LNlnTonTo\",layoutId:\"LNlnTonTo\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lm8hu1\",\"data-framer-name\":\"Content\",id:elementId5,ref:ref9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1068+0+0+0+101+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:716,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+1068+0+0+0+142+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2m625n-container\",nodeId:\"suArLZ3ie\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(MainVideo,{height:\"100%\",id:\"suArLZ3ie\",layoutId:\"suArLZ3ie\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1068+0+0+0+917}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+1068+0+0+0+858,children:/*#__PURE__*/_jsx(Container,{className:\"framer-euoeht-container\",nodeId:\"b7Ek4Tgqt\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"b7Ek4Tgqt\",layoutId:\"b7Ek4Tgqt\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-h853l1 hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",\"data-framer-name\":\"Mobile-Section-2-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckcxg2\",\"data-framer-name\":\"Section-2\",id:elementId6,ref:ref10,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xjtp7-container\",nodeId:\"u1s8RguRM\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"u1s8RguRM\",layoutId:\"u1s8RguRM\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pyqdlh\",\"data-framer-name\":\"Content\",id:elementId7,ref:ref11,children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9mow4s-container hidden-uayhca\",isModuleExternal:true,nodeId:\"zYsESpaMz\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"zYsESpaMz\",isMixedBorderRadius:false,isRed:true,layoutId:\"zYsESpaMz\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=rCQEwky5Huk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eumdjr-container\",nodeId:\"HdhxDAeWD\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(MainVideoMobile,{height:\"100%\",id:\"HdhxDAeWD\",layoutId:\"HdhxDAeWD\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-thxa7n\",\"data-framer-name\":\"section3.1_new\",id:elementId8,ref:ref4,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gY3E5c66J\"},motionChild:true,nodeId:\"PUCfQHrc_\",openInNewTab:false,scopeId:\"gY3E5c66J\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1x2zkkm framer-x1vqoh\",\"data-framer-name\":\"Section-Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6lghwq-container\",nodeId:\"WW1Xzddri\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{XecZrhFkR:\"0px 0px 0px 80px\"},PYdrRSIXB:{XecZrhFkR:\"0px 0px 0px 20px\"},uELy0nRXr:{XecZrhFkR:\"0px 0px 0px 80px\"},vbCekHcm9:{variant:\"kPaQA_Km5\",XecZrhFkR:\"0px 0px 0px 10px\"}},children:/*#__PURE__*/_jsx(SectionHeader,{bU7PNa93F:20,ByKcAP_uj:\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",height:\"100%\",id:\"WW1Xzddri\",iSeqLz55O:true,lacHpA_fL:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"WW1Xzddri\",NW1trG1SF:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},UDpL_rIeZ:\"BUILD\",variant:\"L0vCDIpu3\",width:\"100%\",XecZrhFkR:\"0px 0px 0px 100px\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4efz0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wqsji\",\"data-framer-name\":\"panel\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oc4158\",\"data-framer-name\":\"left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1spj1kg\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c81pi7\",\"data-framer-name\":\"Build-Hero-Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tfbavn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1askuq9\",\"data-framer-name\":\"Hero-text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"},children:\"From sketch to live,\"})}),className:\"framer-4hoas8\",\"data-framer-name\":\"From sketch to live, bring your AI vision to life and beyond.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"bring your AI vision to life and beyond.\"})}),className:\"framer-17b1fi2\",\"data-framer-name\":\"From sketch to live, bring your AI vision to life and beyond.\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+195.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3)`,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+195.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10xxefs-container hidden-uayhca hidden-7296qt\",nodeId:\"PA7sL2fdt\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"PA7sL2fdt\",layoutId:\"PA7sL2fdt\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bork7a hidden-uayhca hidden-7296qt\",\"data-framer-name\":\"Text-Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bqvqch\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3 - 42px)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3 - 42px)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+196.2+0+0+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3 - 42px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+196.2+0+0+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dqkv9d-container\",nodeId:\"FEBaOwhx9\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(CaseStudyItemENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref12,target:\"KqRa1tDnF\"},{ref:ref13,target:\"uOHNB0poU\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,abhsiu0vM:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",height:\"100%\",id:\"FEBaOwhx9\",layoutId:\"FEBaOwhx9\",style:{width:\"100%\"},variant:\"uOHNB0poU\",wGYORxxZl:\"XVrWxOAu8\",width:\"100%\",ZDpdb4GQT:false,zlPy7mPpi:\"Sophisticated Workflow in Minutes\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3 - 42px)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3 - 42px)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+196.2+0+0+24+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3 - 42px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+196.2+0+0+24+126,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uccnh2-container\",nodeId:\"FfCcm2CVH\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(CaseStudyItemENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref13,target:\"KqRa1tDnF\"},{ref:ref14,target:\"uOHNB0poU\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,abhsiu0vM:\"Publish in the Way You Want\\u2028Choose from flexible publishing options tailored to your diverse needs, while Dify's Backend-as-a-Service handles the complexities.\",height:\"100%\",id:\"FfCcm2CVH\",layoutId:\"FfCcm2CVH\",style:{width:\"100%\"},variant:\"uOHNB0poU\",wGYORxxZl:\"XVrWxOAu8\",width:\"100%\",ZDpdb4GQT:false,zlPy7mPpi:\"Publish in the Way You Want\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3 - 42px)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3 - 42px)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+196.2+0+0+24+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3 - 42px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+196.2+0+0+24+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wmtnvi-container\",nodeId:\"CRAI_3J2G\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(CaseStudyItemENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref14,target:\"KqRa1tDnF\"},{ref:ref15,target:\"uOHNB0poU\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,abhsiu0vM:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\",height:\"100%\",id:\"CRAI_3J2G\",layoutId:\"CRAI_3J2G\",style:{width:\"100%\"},variant:\"uOHNB0poU\",wGYORxxZl:\"XVrWxOAu8\",width:\"100%\",ZDpdb4GQT:false,zlPy7mPpi:\"Build Upon Other\u2019s Creation\"})})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+622.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3)`,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+622.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tcnzja-container hidden-uayhca hidden-7296qt\",nodeId:\"tx_siMo7t\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"tx_siMo7t\",layoutId:\"tx_siMo7t\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-no2iog\",\"data-framer-name\":\"right\",id:elementId9,ref:ref16,children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r98z9e hidden-uayhca hidden-7296qt\",\"data-framer-name\":\"Desktop-Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref13,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wc5l7c\",\"data-framer-name\":\"feature1\",id:elementId10,ref:ref12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+0+0+0),pixelHeight:864,pixelWidth:1152,src:\"https://framerusercontent.com/images/uFV9fkmYZXtIjWnloEUBJz4h4E.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+0+0+0),pixelHeight:864,pixelWidth:1152,src:\"https://framerusercontent.com/images/uFV9fkmYZXtIjWnloEUBJz4h4E.jpg?scale-down-to=512\"},className:\"framer-1ug6jr6\",\"data-framer-name\":\"Feature\",id:elementId11,ref:ref17,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19z13xn\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jtdfnf\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+0+0+0+0+298+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+0+0+0+0+298+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t5wvir-container\",nodeId:\"dVSuej2p6\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{variant:\"JXyHQL8Qi\"},uELy0nRXr:{variant:\"JXyHQL8Qi\"},WYajY4aty:{variant:\"IPVyw6Tfr\"}},children:/*#__PURE__*/_jsx(UI,{height:\"100%\",id:\"dVSuej2p6\",layoutId:\"dVSuej2p6\",mMdn8SBhm:true,SHcN4LH1x:false,UJD6GtqLs:\"12px\",variant:\"aOMpVsmwC\",width:\"100%\"})})})})})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v1ytxm\",\"data-framer-name\":\"feature2\",id:elementId12,ref:ref13,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+1e3+0+0),pixelHeight:802,pixelWidth:745,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/u3svvxL2MKLRAbgbH5swBeGyw.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+1e3+0+0),pixelHeight:802,pixelWidth:745,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/u3svvxL2MKLRAbgbH5swBeGyw.jpg?scale-down-to=512\"},className:\"framer-10w4kxx\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npn739\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1432bdi\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+1e3+0+0+0+298+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+1e3+0+0+0+298+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-13bti0h-container\",nodeId:\"BVPFPFKob\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{variant:\"JXyHQL8Qi\"},uELy0nRXr:{variant:\"JXyHQL8Qi\"},WYajY4aty:{variant:\"IPVyw6Tfr\"}},children:/*#__PURE__*/_jsx(UI,{height:\"100%\",id:\"BVPFPFKob\",layoutId:\"BVPFPFKob\",mMdn8SBhm:true,NJ7ry53yj:\"https://framerusercontent.com/assets/4Orkx39zO08szc2whqxg4iqE.mp4\",SHcN4LH1x:false,UJD6GtqLs:\"12px\",variant:\"aOMpVsmwC\",width:\"100%\"})})})})})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vc7q9\",\"data-framer-name\":\"feature3\",id:elementId13,ref:ref14,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+2e3+0+0),pixelHeight:552,pixelWidth:414,src:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+2e3+0+0),pixelHeight:552,pixelWidth:414,src:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg?scale-down-to=512\"},className:\"framer-188ta7r\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ar018k\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-xdod4l\",\"data-border\":true,\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{height:330,width:\"439.4211px\",y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+2e3+0+0+0+323+0+0+12+0},uELy0nRXr:{height:330,width:\"440px\",y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+2e3+0+0+0+323+0+0+12+0},WYajY4aty:{height:440,width:\"585.5px\",y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+0+0+0+0+0+0+2e3+0+0+0+268+0+0+12+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"505px\",y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+0+0+0+0+0+0+2e3+0+0+0+286+0+0+12+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qwgmzn-container\",nodeId:\"yU1UMRVwh\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uELy0nRXr:{variant:\"gwsOHQnrL\"}},children:/*#__PURE__*/_jsx(UIImage,{height:\"100%\",id:\"yU1UMRVwh\",layoutId:\"yU1UMRVwh\",style:{height:\"100%\",width:\"100%\"},variant:\"nuymrU4vV\",width:\"100%\"})})})})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qkj3qv\",\"data-framer-name\":\"feature4\",id:elementId14,ref:ref15})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jqg4t5 hidden-nyekym hidden-1p8ytaq hidden-uhvcyq hidden-1sdix6d\",\"data-framer-name\":\"Mobile-container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y04wn4\",\"data-framer-name\":\"feature2\",id:elementId15,ref:ref18,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1elwlo4\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:802,pixelWidth:745,src:\"https://framerusercontent.com/images/u3svvxL2MKLRAbgbH5swBeGyw.jpg\"},className:\"framer-1m97oxz\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w37yxh\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:560},className:\"framer-zgmd7w\",\"data-framer-name\":\"UI-content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y42664-container\",isModuleExternal:true,nodeId:\"QIUn6024f\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"QIUn6024f\",isMixedBorderRadius:false,layoutId:\"QIUn6024f\",loop:false,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/GqQ1AzqLUOZ5R8DJj3DHMgwDCQA.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fqZKHEVyvg4mbgf4aIZ7M81N1M.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=QohH89Eu5iM\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qeil6a-container\",nodeId:\"AQLqYCrnU\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(BuildTextContainer,{aNspB8tNs:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\",bjbNd29o3:true,duX6J7vzV:false,DYqiS4OYB:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",ep5wSYwZ6:false,GOg29daUW:10,GX8n58542:false,height:\"100%\",id:\"AQLqYCrnU\",iEicOZPKE:false,L9ij4STKZ:\"Sophisticated Workflow in Minutes\",layoutId:\"AQLqYCrnU\",NwizKtUKE:\"Publish in the Way You Want\",QC1xWcD52:\"Build Upon Other\u2019s Creation\",style:{width:\"100%\"},t8BNlKYGg:\"8px 0px 8px 0px\",tlpqA0YXv:\"40px 8px 40px 8px\",tSNzytU9Q:\"Choose from flexible publishing options tailored to your diverse needs, while Dify's Backend-as-a-Service handles the complexities.\",variant:\"v8l23oajn\",vNM18p5gP:false,width:\"100%\"})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ho3f4f hidden-nyekym\",\"data-framer-name\":\"feature3\",id:elementId16,ref:ref19,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t6m4pi\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{background:{alt:\"\",fit:\"fill\",pixelHeight:552,pixelWidth:414,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg\",srcSet:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg 414w\"}},vbCekHcm9:{background:{alt:\"\",fit:\"fill\",pixelHeight:552,pixelWidth:414,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`,src:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg\",srcSet:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg 414w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:552,pixelWidth:414,src:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg\",srcSet:\"https://framerusercontent.com/images/k0eXtegdA5mLFs2vtAa9Xk2zdNo.jpg 414w\"},className:\"framer-10keur6\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-sra1ba\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:560},className:\"framer-e9bu26\",\"data-framer-name\":\"UI-content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{background:{alt:\"\",fit:\"fill\",pixelHeight:1520,pixelWidth:2026,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 5.4 - 20px)`,src:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png\",srcSet:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png 2026w\"}},vbCekHcm9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1520,pixelWidth:2026,sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px) * 0.9 - 20px)`,src:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png\",srcSet:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png 2026w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1520,pixelWidth:2026,src:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png\",srcSet:\"https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RJAh2iSJ1q3Nl2LmIKwnab21I.png 2026w\"},className:\"framer-nzk3mh\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-59jsb7-container\",nodeId:\"IhVCZSi7t\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(BuildTextContainer,{aNspB8tNs:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\",bjbNd29o3:false,duX6J7vzV:false,DYqiS4OYB:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",ep5wSYwZ6:false,GOg29daUW:10,GX8n58542:false,height:\"100%\",id:\"IhVCZSi7t\",iEicOZPKE:false,L9ij4STKZ:\"Sophisticated Workflow in Minutes\",layoutId:\"IhVCZSi7t\",NwizKtUKE:\"Publish in the Way You Want\",QC1xWcD52:\"Build Upon Other\u2019s Creation\",style:{width:\"100%\"},t8BNlKYGg:\"8px 0px 8px 0px\",tlpqA0YXv:\"40px 8px 40px 8px\",tSNzytU9Q:\"Choose from flexible publishing options tailored to your diverse needs, while Dify's Backend-as-a-Service handles the complexities.\",variant:\"DJNF8ZU2r\",vNM18p5gP:false,width:\"100%\"})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wemvks hidden-nyekym\",\"data-framer-name\":\"feature1\",id:elementId17,ref:ref20,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t1lr95\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18c5866-container\",nodeId:\"CK3LRLzly\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(BuildTextContainer,{aNspB8tNs:\"Loop everyone in to build AI workflow: Dify's DSL format makes it easy to save, share, and contribute seamless for the entire team.\",bjbNd29o3:true,duX6J7vzV:false,DYqiS4OYB:\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",ep5wSYwZ6:false,GOg29daUW:10,GX8n58542:false,height:\"100%\",id:\"CK3LRLzly\",iEicOZPKE:false,L9ij4STKZ:\"Sophisticated Workflow in Minutes\",layoutId:\"CK3LRLzly\",NwizKtUKE:\"Publish in the Way You Want\",QC1xWcD52:\"Build Upon Other\u2019s Creation\",style:{width:\"100%\"},t8BNlKYGg:\"8px 0px 8px 0px\",tlpqA0YXv:\"40px 8px 40px 8px\",tSNzytU9Q:\"Choose from flexible publishing options tailored to your diverse needs, while Dify's Backend-as-a-Service handles the complexities.\",variant:\"OPWgsGia8\",vNM18p5gP:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:864,pixelWidth:1152,src:\"https://framerusercontent.com/images/uFV9fkmYZXtIjWnloEUBJz4h4E.jpg?scale-down-to=1024\"},className:\"framer-1ia63h\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tqvgk0\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:560},className:\"framer-1ybnugq\",\"data-framer-name\":\"UI-content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vdmlnl-container\",isModuleExternal:true,nodeId:\"aLCL9wOIP\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"aLCL9wOIP\",isMixedBorderRadius:false,layoutId:\"aLCL9wOIP\",loop:false,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/he09KNgvEDSAG9exzWXYhZ9JS0.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=QohH89Eu5iM\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})]})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+1986+0+51+0+3200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+2068+0+51+0+3200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w0fzmr-container\",nodeId:\"Zf10uy1XH\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"Zf10uy1XH\",layoutId:\"Zf10uy1XH\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-olxn7z\",\"data-framer-name\":\"section3.2\",id:elementId18,ref:ref21,children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":W5HnIxmmm\",webPageId:\"gY3E5c66J\"},motionChild:true,nodeId:\"klGVbXXMX\",openInNewTab:false,scopeId:\"gY3E5c66J\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1volaqc framer-x1vqoh\",\"data-framer-name\":\"Section-Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sf0nln-container\",nodeId:\"IaY0__XAX\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{XecZrhFkR:\"0px 0px 0px 80px\"},PYdrRSIXB:{XecZrhFkR:\"0px 0px 0px 20px\"},uELy0nRXr:{XecZrhFkR:\"0px 0px 0px 80px\"},vbCekHcm9:{variant:\"kPaQA_Km5\",XecZrhFkR:\"0px 0px 0px 10px\"}},children:/*#__PURE__*/_jsx(SectionHeader,{bU7PNa93F:20,ByKcAP_uj:\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",height:\"100%\",id:\"IaY0__XAX\",iSeqLz55O:true,lacHpA_fL:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"IaY0__XAX\",NW1trG1SF:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},UDpL_rIeZ:\"Connect\",variant:\"L0vCDIpu3\",width:\"100%\",XecZrhFkR:\"0px 0px 0px 100px\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-23sed9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hythoc\",\"data-framer-name\":\"panel\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g3wiaj\",\"data-framer-name\":\"left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqbap1\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojzgo6\",\"data-framer-name\":\"Build-Hero-Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qnqccj\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3sihv\",\"data-framer-name\":\"Hero-text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\"},children:\"Supercharge AI applications with \"}),\"global large language models, RAG pipelines, tools, agent strategies, and more.\"]})}),className:\"framer-5ke5d8\",\"data-framer-name\":\"From sketch to live, bring your AI vision to life and beyond.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+137.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3)`,y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+137.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ujplqh-container hidden-uayhca hidden-7296qt\",nodeId:\"M434qxDHL\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"M434qxDHL\",layoutId:\"M434qxDHL\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-iwsxvw hidden-uayhca hidden-7296qt\",\"data-framer-name\":\"Text-Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iqy42p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvsxpl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+138.6+0+0+0+0+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"594px\",y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+138.6+0+0+0+0+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nmi4rj-container\",nodeId:\"SDJ6pnL40\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(CaseStudyItemENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref22,target:\"mjtHoT6VZ\"},{ref:ref23,target:\"uOHNB0poU\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,abhsiu0vM:\"Extract data from various sources, transform it, and index it into vector databases for optimal LLM use.\",height:\"100%\",id:\"SDJ6pnL40\",layoutId:\"SDJ6pnL40\",style:{width:\"100%\"},variant:\"uOHNB0poU\",wGYORxxZl:\"XVrWxOAu8\",width:\"100%\",ZDpdb4GQT:false,zlPy7mPpi:\"Get Your Data LLM Ready\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+138.6+0+0+0+0+24+126}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"594px\",y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+138.6+0+0+0+0+24+126,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2u22kh-container\",nodeId:\"pnf832LtI\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(CaseStudyItemENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref23,target:\"mjtHoT6VZ\"},{ref:ref24,target:\"uOHNB0poU\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,abhsiu0vM:\"Access, switch and compare performance of different LLMs worldwide, including open-source, proprietary, and more.\\u2028\",height:\"100%\",id:\"pnf832LtI\",layoutId:\"pnf832LtI\",style:{width:\"100%\"},variant:\"uOHNB0poU\",wGYORxxZl:\"xK2RovsIo\",width:\"100%\",ZDpdb4GQT:false,zlPy7mPpi:\"Amplify with Any Global Large Language Models\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+138.6+0+0+0+0+24+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"594px\",y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+138.6+0+0+0+0+24+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-163ifk6-container\",nodeId:\"eB9cMhKI8\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(CaseStudyItemENWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref24,target:\"KqRa1tDnF\"},{ref:ref25,target:\"uOHNB0poU\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,abhsiu0vM:\"Expand capabilities of your AI application with a versatile set of plugins.\",height:\"100%\",id:\"eB9cMhKI8\",layoutId:\"eB9cMhKI8\",style:{width:\"100%\"},variant:\"uOHNB0poU\",wGYORxxZl:\"XVrWxOAu8\",width:\"100%\",ZDpdb4GQT:false,zlPy7mPpi:\"Add Wings with Tools\"})})})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 3)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+564.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 3)`,y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+564.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xl8zfw-container hidden-uayhca hidden-7296qt\",nodeId:\"Ovrz1Zwy1\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"Ovrz1Zwy1\",layoutId:\"Ovrz1Zwy1\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7eih3a\",\"data-framer-name\":\"right\",id:elementId19,ref:ref26,children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-krc4ha hidden-uayhca hidden-7296qt\",\"data-framer-name\":\"Desktop-Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref23,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sdijjy\",\"data-framer-name\":\"feature1\",id:elementId20,ref:ref22,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+0+0+0),pixelHeight:858,pixelWidth:572,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+0+0+0),pixelHeight:858,pixelWidth:572,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg?scale-down-to=512\"},className:\"framer-1cey1rl\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ludq9c\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+0+0+0+0+298+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+0+0+0+0+298+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s0r9ku-container\",nodeId:\"Sp_HeW8as\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{variant:\"JXyHQL8Qi\"},uELy0nRXr:{variant:\"JXyHQL8Qi\"},WYajY4aty:{variant:\"IPVyw6Tfr\"}},children:/*#__PURE__*/_jsx(UI,{height:\"100%\",id:\"Sp_HeW8as\",layoutId:\"Sp_HeW8as\",mMdn8SBhm:true,NJ7ry53yj:\"https://framerusercontent.com/assets/ZiXUj7iVG4JcOi0SMvnzH8fjds.mp4\",SHcN4LH1x:false,UJD6GtqLs:\"12px\",variant:\"aOMpVsmwC\",width:\"100%\"})})})})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref24,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-on7dpq\",\"data-framer-name\":\"feature2\",id:elementId21,ref:ref23,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+1e3+0+0),pixelHeight:1466,pixelWidth:977,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+1e3+0+0),pixelHeight:1466,pixelWidth:977,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg?scale-down-to=512\"},className:\"framer-4qdx26\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1np17e9\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+1e3+0+0+0+298+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+1e3+0+0+0+298+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1inxip4-container\",nodeId:\"Z6CUvvpa3\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{variant:\"JXyHQL8Qi\"},uELy0nRXr:{variant:\"JXyHQL8Qi\"},WYajY4aty:{variant:\"IPVyw6Tfr\"}},children:/*#__PURE__*/_jsx(UI,{height:\"100%\",id:\"Z6CUvvpa3\",layoutId:\"Z6CUvvpa3\",mMdn8SBhm:true,NJ7ry53yj:\"https://framerusercontent.com/assets/QscSmH2VqGHPqGADVemUtB5ZZpQ.mp4\",SHcN4LH1x:false,UJD6GtqLs:\"12px\",variant:\"aOMpVsmwC\",width:\"100%\"})})})})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13swtza\",\"data-framer-name\":\"feature3\",id:elementId22,ref:ref24,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+2e3+0+0),pixelHeight:1410,pixelWidth:940,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+2e3+0+0),pixelHeight:1410,pixelWidth:940,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg?scale-down-to=512\"},className:\"framer-10zfr2v\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-npswqx\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+0+0+0+0+0+0+2e3+0+0+0+298+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+0+0+0+0+0+0+2e3+0+0+0+298+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ymvcq4-container\",nodeId:\"OdaSB3INr\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{variant:\"JXyHQL8Qi\"},uELy0nRXr:{variant:\"JXyHQL8Qi\"},WYajY4aty:{variant:\"IPVyw6Tfr\"}},children:/*#__PURE__*/_jsx(UI,{height:\"100%\",id:\"OdaSB3INr\",layoutId:\"OdaSB3INr\",mMdn8SBhm:true,NJ7ry53yj:\"https://framerusercontent.com/assets/duzzJ37cLMHD2R8pFq5EdXDLos.mp4\",SHcN4LH1x:false,UJD6GtqLs:\"12px\",variant:\"aOMpVsmwC\",width:\"100%\"})})})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m28hv2\",\"data-framer-name\":\"feature4\",id:elementId23,ref:ref25})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x9wy10 hidden-nyekym hidden-1p8ytaq hidden-uhvcyq hidden-1sdix6d\",\"data-framer-name\":\"Mobile-container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sy4zvo\",\"data-framer-name\":\"feature2\",id:elementId24,ref:ref27,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i3e0mu\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{background:{alt:\"\",fit:\"fill\",pixelHeight:1466,pixelWidth:977,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg\",srcSet:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg 977w\"}},vbCekHcm9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1466,pixelWidth:977,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg\",srcSet:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg 977w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1466,pixelWidth:977,src:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg\",srcSet:\"https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/YIQZdlNJNVQthy5MxWX2LzfKidw.jpg 977w\"},className:\"framer-s4dnrg\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-hf21cl\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:560},className:\"framer-1ci0z4q\",\"data-framer-name\":\"UI-content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15iqjfh-container\",isModuleExternal:true,nodeId:\"W29bnWBsb\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"W29bnWBsb\",isMixedBorderRadius:false,layoutId:\"W29bnWBsb\",loop:false,muted:true,objectFit:\"contain\",playing:true,poster:\"https://framerusercontent.com/images/YrZcHlqmnxUSlT5WelXY98E00.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Lk0T4Puvqbs27DNRxKrQSTr0g2k.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=QohH89Eu5iM\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dtty1\",\"data-framer-name\":\"Text-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14pcdkh\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Amplify with Any Global Large Language Models\"})}),className:\"framer-13pa32u\",\"data-framer-name\":\"Sophisticated Workflow In Minutes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\"},children:\"Access, switch and compare performance of different LLMs worldwide, including open-source, proprietary, and more.\\u2028\\u2028\"})}),className:\"framer-ziuyxs\",\"data-framer-name\":\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tyb05b\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u98549\",\"data-framer-name\":\"Set 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vkn8dw\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gzytqm\",\"data-framer-name\":\"Symbol\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73659)\">\\n<path d=\"M14.9326 7.5199C15.2926 6.4199 15.1726 5.1999 14.5926 4.1999C13.7126 2.6599 11.9326 1.8799 10.1926 2.2399C9.43255 1.3799 8.31255 0.899902 7.15255 0.899902C5.37255 0.899902 3.81255 2.0399 3.25255 3.7199C2.11255 3.9599 1.13255 4.6599 0.552551 5.6799C-0.327449 7.2199 -0.127449 9.1399 1.05255 10.4599C0.692551 11.5799 0.832551 12.7799 1.41255 13.7799C2.29255 15.3199 4.07255 16.1199 5.81255 15.7399C6.59255 16.5999 7.69255 17.0999 8.85255 17.0999C10.6326 17.0999 12.1926 15.9599 12.7526 14.2799C13.8926 14.0399 14.8726 13.3399 15.4526 12.3199C16.3326 10.7799 16.1326 8.8399 14.9326 7.5199ZM8.85255 16.0399C8.13255 16.0399 7.45255 15.7999 6.91255 15.3399C6.93255 15.3199 6.99255 15.2999 7.01255 15.2799L10.2326 13.4199C10.3926 13.3199 10.4926 13.1599 10.4926 12.9599V8.4199L11.8526 9.1999C11.8726 9.1999 11.8726 9.2199 11.8726 9.2399V12.9999C11.8926 14.6799 10.5326 16.0399 8.85255 16.0399ZM2.33255 13.2599C1.97255 12.6399 1.85255 11.9199 1.97255 11.2199C1.99255 11.2399 2.03255 11.2599 2.07255 11.2799L5.29255 13.1399C5.45255 13.2399 5.65255 13.2399 5.81255 13.1399L9.75255 10.8599V12.4399C9.75255 12.4599 9.75255 12.4799 9.73255 12.4799L6.47255 14.3599C5.03255 15.1999 3.17255 14.6999 2.33255 13.2599ZM1.49255 6.2199C1.85255 5.5999 2.41255 5.1399 3.07255 4.8799V8.7199C3.07255 8.8999 3.17255 9.0799 3.33255 9.1799L7.27255 11.4599L5.91255 12.2399C5.89255 12.2399 5.87255 12.2599 5.87255 12.2399L2.61255 10.3599C1.13255 9.5199 0.652551 7.6599 1.49255 6.2199ZM12.6926 8.8199L8.75255 6.5399L10.1126 5.7599C10.1326 5.7599 10.1526 5.7399 10.1526 5.7599L13.4126 7.6399C14.8726 8.4799 15.3526 10.3399 14.5126 11.7799C14.1526 12.3999 13.5926 12.8599 12.9326 13.0999V9.2799C12.9526 9.0999 12.8526 8.9199 12.6926 8.8199ZM14.0326 6.7799C14.0126 6.7599 13.9726 6.7399 13.9326 6.7199L10.7126 4.8599C10.5526 4.7599 10.3526 4.7599 10.1926 4.8599L6.25255 7.1399V5.5599C6.25255 5.5399 6.25255 5.5199 6.27255 5.5199L9.53255 3.6399C10.9926 2.7999 12.8326 3.2999 13.6726 4.7599C14.0326 5.3599 14.1526 6.0799 14.0326 6.7799ZM5.51255 9.5799L4.15255 8.7999C4.13255 8.7999 4.13255 8.7799 4.13255 8.7599V4.9999C4.13255 3.3199 5.49255 1.9599 7.17255 1.9599C7.89255 1.9599 8.57255 2.1999 9.11255 2.6599C9.09255 2.6799 9.05255 2.6999 9.01255 2.7199L5.79255 4.5799C5.63255 4.6799 5.53255 4.8399 5.53255 5.0399V9.5799H5.51255ZM6.25255 7.9799L8.01255 6.9599L9.77255 7.9799V9.9999L8.01255 11.0199L6.25255 9.9999V7.9799Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73659\">\\n<rect width=\"15.98\" height=\"16.2\" fill=\"white\" transform=\"translate(0.0117188 0.899902)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dw171s\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3y400s\",\"data-framer-name\":\"ollama-seeklogo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"16\" viewBox=\"0 0 12 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73663)\">\\n<path d=\"M2.6123 0.00449542C2.46427 0.0286138 2.28663 0.106711 2.16137 0.203185C1.78219 0.493754 1.4884 1.1105 1.36428 1.87884C1.31759 2.16941 1.28571 2.57253 1.28571 2.88034C1.28571 3.24326 1.32784 3.70724 1.38819 4.02767C1.40185 4.09889 1.40869 4.16206 1.40299 4.16665C1.39844 4.17124 1.34264 4.21718 1.28001 4.26771C1.06593 4.43998 0.821107 4.70529 0.652577 4.94763C0.329181 5.41047 0.119657 5.93649 0.0319752 6.50614C-0.00218634 6.73124 -0.0112961 7.18604 0.0160332 7.41115C0.0763852 7.93027 0.231251 8.36899 0.496572 8.77098L0.583115 8.90076L0.558063 8.94325C0.380422 9.24416 0.228973 9.67944 0.158373 10.0975C0.102576 10.4283 0.0957435 10.5167 0.0957435 10.96C0.0957435 11.4068 0.101437 11.4952 0.153818 11.8042C0.216448 12.174 0.343984 12.5656 0.486323 12.8263C0.533012 12.9113 0.646884 13.0882 0.660548 13.0974C0.665103 13.0997 0.651438 13.1421 0.629803 13.1915C0.465827 13.5533 0.325765 14.0345 0.267689 14.44C0.226696 14.7179 0.221002 14.8075 0.221002 15.1003C0.221002 15.4736 0.241499 15.6551 0.318933 15.9525L0.33032 15.9962H0.81769H1.3062L1.27432 15.9353C1.07732 15.5678 1.0591 14.8856 1.22877 14.2045C1.3062 13.8898 1.39388 13.659 1.55786 13.3408L1.65579 13.1479V13.0296C1.65579 12.9193 1.65351 12.9067 1.61821 12.8344C1.59088 12.7792 1.55444 12.7321 1.48953 12.6678C1.37908 12.5599 1.29937 12.4462 1.2356 12.306C0.955477 11.6927 0.900817 10.782 1.09782 10.0056C1.1798 9.68172 1.31531 9.39346 1.45765 9.23612C1.55444 9.12815 1.60454 9.00757 1.60454 8.88238C1.60454 8.7526 1.559 8.64579 1.45651 8.53439C1.16272 8.21741 0.981667 7.83149 0.916759 7.38245C0.824523 6.74273 0.991915 6.04558 1.37225 5.49317C1.74461 4.95106 2.26728 4.60307 2.85145 4.51005C2.98239 4.48823 3.22722 4.49167 3.36386 4.51695C3.51305 4.54336 3.60641 4.53531 3.70207 4.48937C3.8205 4.43311 3.87972 4.36304 3.94917 4.20225C4.01066 4.0587 4.05849 3.98059 4.18716 3.81866C4.34203 3.62456 4.4912 3.49248 4.73032 3.33283C5.00363 3.15253 5.3145 3.0216 5.62423 2.95843C5.73695 2.93546 5.78933 2.93201 6 2.93201C6.21067 2.93201 6.26305 2.93546 6.37577 2.95843C6.83012 3.05147 7.28107 3.28806 7.6409 3.6234C7.71832 3.69576 7.90393 3.92776 7.96315 4.02424C7.98593 4.06213 8.02579 4.14254 8.05083 4.20225C8.12029 4.36304 8.1795 4.43311 8.29793 4.48937C8.39017 4.53416 8.48695 4.54336 8.63043 4.51923C8.85704 4.48019 9.03126 4.48364 9.25332 4.52957C10.0094 4.68347 10.6676 5.3117 10.9591 6.15356C11.2131 6.89203 11.1413 7.66497 10.7633 8.25529C10.6995 8.35522 10.6357 8.43562 10.5435 8.53439C10.3442 8.74915 10.3442 9.01561 10.5424 9.23612C10.868 9.5956 11.0719 10.4799 11.0104 11.2598C10.9694 11.7743 10.8384 12.2348 10.6585 12.4956C10.6266 12.5415 10.5606 12.6196 10.5105 12.6678C10.4456 12.7321 10.4091 12.7792 10.3818 12.8344C10.3465 12.9067 10.3442 12.9193 10.3442 13.0296V13.1479L10.4421 13.3408C10.6061 13.659 10.6938 13.8898 10.7712 14.2045C10.9386 14.8764 10.9238 15.5448 10.7325 15.925C10.7166 15.9571 10.7029 15.987 10.7029 15.9904C10.7029 15.9939 10.9204 15.9962 11.1869 15.9962H11.6697L11.6822 15.9468C11.689 15.9204 11.7004 15.8802 11.7061 15.8572C11.7187 15.8067 11.7437 15.6574 11.7642 15.5138C11.7836 15.3691 11.7836 14.8362 11.7642 14.6754C11.6913 14.092 11.5695 13.6291 11.3702 13.1915C11.3486 13.1421 11.3349 13.0997 11.3394 13.0974C11.3451 13.0939 11.377 13.048 11.4112 12.9963C11.6594 12.6173 11.812 12.1407 11.8895 11.5113C11.9099 11.3379 11.9099 10.5925 11.8895 10.4259C11.8348 9.99642 11.7688 9.70469 11.6594 9.40954C11.6139 9.28665 11.4932 9.02709 11.4419 8.94325L11.4169 8.90076L11.5034 8.77098C11.7688 8.36899 11.9236 7.93027 11.984 7.41115C12.0113 7.18604 12.0022 6.73124 11.968 6.50614C11.8792 5.93533 11.6708 5.41162 11.3474 4.94763C11.1789 4.70529 10.9341 4.43998 10.72 4.26771C10.6574 4.21718 10.6016 4.17124 10.597 4.16665C10.5913 4.16206 10.5982 4.09889 10.6118 4.02767C10.7496 3.30297 10.745 2.39912 10.6004 1.69279C10.4752 1.07719 10.2474 0.587931 9.95363 0.305402C9.71905 0.0802959 9.47993 -0.0161779 9.19297 0.00219811C8.53479 0.0412469 8.00415 0.804997 7.79461 2.00862C7.76045 2.20272 7.73086 2.43013 7.73086 2.49214C7.73086 2.51625 7.72629 2.53578 7.72061 2.53578C7.7149 2.53578 7.67051 2.51281 7.62268 2.4841C7.11481 2.18089 6.54999 2.01896 6 2.01896C5.45001 2.01896 4.88519 2.18089 4.37733 2.4841C4.32949 2.51281 4.2851 2.53578 4.27939 2.53578C4.27371 2.53578 4.26914 2.51625 4.26914 2.49214C4.26914 2.42782 4.2384 2.19354 4.20539 2.00862C4.01521 0.927886 3.57908 0.212373 2.99948 0.0320587C2.91977 0.0079403 2.69316 -0.00813804 2.6123 0.00449542ZM2.8059 0.939373C2.96987 1.0703 3.15206 1.44471 3.25683 1.86391C3.27619 1.93971 3.29668 2.027 3.30238 2.05915C3.30693 2.09017 3.31945 2.16023 3.3297 2.2142C3.37412 2.45769 3.39461 2.72069 3.39689 3.04112L3.39803 3.35697L3.31945 3.4741L3.24089 3.59239H3.05755C2.84348 3.59239 2.63053 3.61997 2.42669 3.67509C2.35382 3.69347 2.28321 3.71185 2.26956 3.7153C2.24792 3.71989 2.2445 3.71299 2.23198 3.61881C2.16479 3.10773 2.16821 2.54153 2.24224 2.07063C2.32421 1.54578 2.51552 1.0703 2.70227 0.930185C2.74668 0.896877 2.75465 0.898026 2.8059 0.939373ZM9.29887 0.931332C9.4116 1.01517 9.53573 1.23798 9.62796 1.52281C9.81357 2.09246 9.86595 2.87459 9.76802 3.61881C9.7555 3.71299 9.75208 3.71989 9.73044 3.7153C9.71679 3.71185 9.64618 3.69347 9.57331 3.67509C9.36947 3.61997 9.15652 3.59239 8.94245 3.59239H8.75911L8.68055 3.4741L8.60198 3.35697L8.60311 3.04112C8.60539 2.5955 8.64639 2.24751 8.7443 1.86047C8.84794 1.44471 9.03126 1.0703 9.1941 0.939373C9.24535 0.898026 9.25332 0.896877 9.29887 0.931332Z\" fill=\"black\"/>\\n<path d=\"M5.82644 6.71168C5.57933 6.73582 5.51216 6.745 5.39372 6.76913C5.20127 6.80931 4.94392 6.89891 4.76515 6.98734C4.14341 7.29398 3.71526 7.80506 3.5843 8.39654C3.55811 8.51369 3.55469 8.55273 3.55469 8.75028C3.55469 8.94552 3.55811 8.98801 3.58316 9.09941C3.75739 9.87236 4.46338 10.4432 5.37664 10.5477C5.57477 10.5695 6.4311 10.5695 6.62923 10.5477C7.36257 10.4638 7.99342 10.063 8.27697 9.50024C8.35211 9.34979 8.38855 9.25216 8.42271 9.09941C8.44777 8.98801 8.45119 8.94552 8.45119 8.75028C8.45119 8.55273 8.44777 8.51369 8.42158 8.39654C8.2314 7.53746 7.4047 6.86101 6.39124 6.73237C6.25915 6.71629 5.91298 6.7025 5.82644 6.71168ZM6.25231 7.33647C6.59052 7.37323 6.931 7.49497 7.20428 7.67873C7.35118 7.7775 7.55843 7.98423 7.64724 8.11976C7.75656 8.28742 7.81918 8.45855 7.84766 8.66644C7.86018 8.76176 7.85336 8.83412 7.81918 8.98801C7.76567 9.21771 7.59941 9.45775 7.37509 9.62543C7.27032 9.70237 7.05284 9.81379 6.91961 9.85743C6.66681 9.93896 6.50169 9.95389 5.91183 9.9493C5.52696 9.94586 5.45862 9.94241 5.34817 9.92174C4.97126 9.85053 4.67292 9.69893 4.45656 9.46809C4.28119 9.28203 4.20148 9.11206 4.15822 8.83757C4.13886 8.71007 4.17529 8.49876 4.24931 8.32073C4.33928 8.10367 4.57157 7.83378 4.80159 7.67873C5.06804 7.49956 5.41877 7.37209 5.74103 7.33763C5.86515 7.32384 6.12819 7.32384 6.25231 7.33647Z\" fill=\"black\"/>\\n<path d=\"M5.56553 8.17483C5.47898 8.22191 5.41863 8.34135 5.43685 8.42978C5.45734 8.5251 5.54047 8.62159 5.67027 8.70084C5.73975 8.74333 5.7443 8.74906 5.74772 8.79156C5.74998 8.81683 5.74088 8.88919 5.72836 8.9535C5.71469 9.01666 5.70444 9.08328 5.70444 9.10166C5.70559 9.15105 5.75113 9.23144 5.79895 9.27049C5.8411 9.30494 5.84907 9.30609 5.96749 9.30953C6.07567 9.31298 6.09845 9.31068 6.14171 9.29001C6.25331 9.23487 6.28177 9.13381 6.24078 8.93971C6.20661 8.77779 6.21345 8.75251 6.29886 8.70312C6.38881 8.65029 6.48447 8.55727 6.51293 8.49409C6.5676 8.37351 6.51748 8.23684 6.39678 8.17366C6.36718 8.15873 6.33074 8.15186 6.27722 8.15186C6.19409 8.15186 6.14058 8.17138 6.04265 8.23454L5.98684 8.27015L5.95155 8.24832C5.80694 8.16218 5.78074 8.15186 5.69305 8.153C5.63043 8.153 5.59627 8.15873 5.56553 8.17483Z\" fill=\"black\"/>\\n<path d=\"M2.80306 6.84143C2.60151 6.90575 2.45119 7.05505 2.37377 7.26753C2.33619 7.3686 2.31797 7.52825 2.33391 7.61437C2.37148 7.81996 2.53887 8.00716 2.72905 8.05885C2.96818 8.12201 3.14695 8.08066 3.30524 7.92218C3.39747 7.83144 3.44758 7.75219 3.49768 7.62355C3.53411 7.53284 3.5364 7.51676 3.5364 7.38813L3.53753 7.25031L3.48971 7.15154C3.4134 6.99534 3.27563 6.87933 3.11621 6.83684C3.02625 6.81387 2.88163 6.81503 2.80306 6.84143Z\" fill=\"black\"/>\\n<path d=\"M8.88161 6.83803C8.72561 6.88052 8.58668 6.99765 8.51266 7.15156L8.46484 7.25034L8.46598 7.38815C8.46598 7.51679 8.46826 7.53287 8.50469 7.62358C8.55481 7.75222 8.60491 7.83147 8.69713 7.92221C8.85542 8.08069 9.03419 8.12204 9.27334 8.05888C9.41112 8.02212 9.54889 7.90497 9.61495 7.7683C9.67188 7.6523 9.68554 7.56846 9.66733 7.43638C9.6252 7.13433 9.44983 6.91497 9.18906 6.83803C9.11277 6.81506 8.96474 6.81506 8.88161 6.83803Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73663\">\\n<rect width=\"12\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-190067y\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pvykyq\",\"data-framer-name\":\"Symbol (1)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"14\" viewBox=\"0 0 20 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73670)\">\\n<path d=\"M14.0812 0.5H11.2612L16.4012 13.5H19.2212L14.0812 0.5ZM5.92125 0.5L0.78125 13.5H3.66125L4.72125 10.78H10.1012L11.1412 13.5H14.0212L8.88125 0.5H5.92125ZM5.64125 8.36L7.40125 3.8L9.16125 8.36H5.64125Z\" fill=\"#181818\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73670\">\\n<rect width=\"18.44\" height=\"13\" fill=\"white\" transform=\"translate(0.78125 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kwhkdj\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wtj4nu\",\"data-framer-name\":\"moonshot\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73673)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.61371 9.86776L6.17813 11.3564C6.17064 11.7521 6.18232 12.1478 6.21313 12.5423L9.68746 13.4716C8.65699 13.8969 7.53981 14.0699 6.42896 13.9762L6.32396 13.9668L6.29829 13.9645L6.24929 13.9593L6.19446 13.9534C6.16391 13.9497 6.13338 13.9459 6.10288 13.9418L6.04046 13.9336L5.97629 13.9243C5.91394 13.9152 5.85171 13.9053 5.78963 13.8945L5.76513 13.8898L5.72138 13.8823L5.65896 13.8706L5.61813 13.8618L5.56388 13.8508L5.52013 13.8414L5.46471 13.8298L5.40813 13.8163L5.35329 13.8035L5.31363 13.7936L5.26229 13.7808L5.20979 13.7668L5.15438 13.7522L5.10654 13.7388L5.04296 13.7213L5.00679 13.7096L4.95779 13.695L4.90354 13.6787L4.84229 13.6588L4.80846 13.6478L4.76179 13.6326L4.70929 13.6145L4.67079 13.6005C4.66223 13.5976 4.65367 13.5947 4.64513 13.5918L4.60546 13.5772L4.54654 13.5556L4.51329 13.5428L4.46663 13.5253L4.41588 13.5048L4.36454 13.4844L4.31846 13.4658L4.26304 13.4424L4.22629 13.4261L4.18954 13.4103C4.18156 13.4069 4.17359 13.4034 4.16563 13.3998L4.12713 13.3823L4.06704 13.3549L4.03671 13.3409L3.98071 13.3141L3.94454 13.2966L3.89554 13.2733L3.84538 13.2476L3.79113 13.2202L3.76079 13.2044L3.70071 13.1723L3.66746 13.1548L3.63363 13.1362C3.62466 13.1312 3.61572 13.1261 3.60679 13.121L3.55196 13.0901L3.51696 13.0703L3.48721 13.0528L3.44521 13.0288L3.39738 12.9997L3.34313 12.967L3.31279 12.9483L3.26379 12.9174L3.22821 12.8947L3.18213 12.8655L3.14129 12.8381L3.11038 12.8177C3.09985 12.8107 3.08935 12.8037 3.07888 12.7967L3.05321 12.7792L3.02754 12.7617C3.01974 12.7563 3.01197 12.7508 3.00421 12.7453L2.97096 12.722L2.92663 12.6905L2.88638 12.6613L2.84321 12.6298L2.81054 12.6053L2.76621 12.5721L2.72188 12.5377L2.67171 12.4986L2.64546 12.4782L2.60813 12.4478L2.56496 12.4128L2.51304 12.3703L2.48621 12.3475L2.45938 12.3248C2.45099 12.3176 2.44263 12.3104 2.43429 12.3032L2.40804 12.2798L2.37246 12.2489L2.33163 12.2128L2.29196 12.1778L2.25579 12.1439L2.21671 12.1078L2.18579 12.0786L2.13446 12.0296C2.11511 12.0108 2.09586 11.992 2.07671 11.973L2.05979 11.9567L2.03588 11.9322L1.99563 11.8913L1.96646 11.8616L1.93729 11.8307C1.90397 11.7965 1.8713 11.7617 1.83929 11.7263L1.79263 11.6749L1.75646 11.6341L1.71504 11.5874L1.69054 11.5588L1.65963 11.5227L1.62579 11.483L1.59896 11.4503C1.59369 11.4439 1.58844 11.4375 1.58321 11.4311L1.55696 11.399L1.51846 11.3512L1.49454 11.3208L1.46538 11.2835L1.45371 11.2689C1.11994 10.8363 0.838015 10.366 0.61371 9.86776ZM0.01871 6.48793L6.64129 8.25951C6.53042 8.64569 6.43911 9.03721 6.36771 9.4326L12.6776 11.1208C12.3641 11.55 12.0031 11.9423 11.6014 12.2903L0.383293 9.28851L0.37396 9.26168L0.353543 9.20101C0.343621 9.17133 0.333899 9.14158 0.324377 9.11176L0.320293 9.09835C0.275393 8.9556 0.235122 8.81144 0.199543 8.6661L0.182043 8.5926L0.171543 8.54593L0.159293 8.48935L0.148793 8.4421L0.138293 8.3896L0.128377 8.3406L0.117877 8.28576C0.10271 8.20351 0.08871 8.12068 0.07646 8.03726L0.0665434 7.96843L0.0601267 7.92001L0.0525434 7.86051C0.0486377 7.82923 0.0449432 7.79793 0.04146 7.7666L0.0385434 7.73918C-0.00503969 7.3235 -0.0116768 6.90478 0.01871 6.48793ZM0.94796 3.48376L7.91763 5.3481C7.70296 5.70101 7.50638 6.06618 7.32846 6.44185L13.9172 8.20468C13.8344 8.68301 13.7025 9.14501 13.5275 9.58426L6.79004 7.78176L0.0723767 5.9851L0.0811267 5.92676L0.0857934 5.89818L0.0916267 5.8591L0.100377 5.80835L0.110877 5.75118C0.126043 5.66485 0.143543 5.5791 0.16221 5.49335L0.178543 5.42101L0.19021 5.37143L0.20421 5.31485C0.217043 5.26235 0.23046 5.20985 0.245043 5.15851L0.261377 5.09901L0.274793 5.0506L0.292293 4.99226L0.306877 4.94443L0.324377 4.88843L0.339543 4.8406L0.357627 4.78518C0.508684 4.33206 0.706119 3.89575 0.946793 3.48318L0.94796 3.48376ZM3.53913 0.917095L10.122 2.6776C9.77466 2.99289 9.44589 3.32809 9.13738 3.68151L13.7008 4.90243C13.8565 5.39943 13.9586 5.91976 14 6.45701L1.22854 3.04101L1.25479 3.0031L1.27054 2.97976L1.29388 2.94768L1.32071 2.90976L1.35279 2.86543L1.38429 2.82343L1.42163 2.77326L1.45079 2.73535L1.48404 2.69276L1.51613 2.65193L1.55113 2.60876L1.58321 2.56851L1.62113 2.5236L1.65263 2.4851L1.69113 2.44018L1.72204 2.40518L1.76404 2.35735L1.79496 2.32235L1.83404 2.27918L1.86554 2.24535L1.90813 2.19985L1.94196 2.16485L1.97871 2.12576L2.07671 2.0266L2.13504 1.96943L2.16946 1.93676L2.21379 1.89535C2.61582 1.51859 3.06064 1.19026 3.53913 0.917095ZM7.00996 9.50522e-05H7.06654L7.11438 0.000678386L7.15463 0.00126172L7.18613 0.00242839L7.22579 0.00359505L7.25263 0.00417839L7.29696 0.00592839L7.32438 0.00709505L7.35938 0.00884505L7.39088 0.0100117L7.44163 0.0129284L7.50288 0.0170117L7.58688 0.0234284L7.63821 0.0275117L7.66388 0.0298451L7.70879 0.0345117L7.75663 0.0391784L7.78404 0.0420951L7.84354 0.0490951L7.87271 0.0525951L7.93571 0.0607617L7.98296 0.0665951L8.00746 0.0700951L8.04538 0.0759284L8.16613 0.0945951L8.20696 0.101595L8.24488 0.108012L8.32654 0.123178L8.38021 0.133678L8.44438 0.146512L8.47121 0.152345L8.51496 0.161678L8.53888 0.167512L8.57504 0.175095L8.59954 0.180928L8.63746 0.189678L8.66604 0.196678L8.70746 0.206595L8.76346 0.220595L8.82879 0.238095L8.89471 0.255595L8.96063 0.274262L8.98979 0.283012L9.03063 0.294678L9.07613 0.308678L9.11871 0.322095L9.14788 0.331428L9.17704 0.340762L9.22138 0.355345L9.27913 0.374595L9.33863 0.395595L9.36663 0.405512L9.40396 0.418928L9.45821 0.438762L9.52238 0.462678L9.59004 0.488928L9.64838 0.512262L9.67579 0.523928L9.71079 0.537928L9.73471 0.548428L9.77146 0.563595L9.79479 0.574095L9.82804 0.588678L9.89221 0.616678L9.95054 0.643512L9.99371 0.663928L10.0375 0.684928L10.0725 0.701262L10.1261 0.728095L10.1792 0.754345L10.2387 0.784678L10.2696 0.801012L10.2982 0.816178L10.325 0.830178L10.36 0.849428L10.384 0.862262L10.4143 0.879178L10.4656 0.908345L10.5275 0.943345L10.5782 0.973095L10.6115 0.992928L10.6424 1.0116L10.6984 1.04601L10.7497 1.0781L10.8069 1.11426L10.8279 1.12826L10.8652 1.15218L10.9142 1.18485L10.9375 1.2006L10.9737 1.2251L11.0099 1.25018L11.0233 1.2601C11.0548 1.28168 11.0863 1.30385 11.1172 1.3266L11.1656 1.3616L11.2035 1.3896L11.2362 1.41468L11.2864 1.4526L11.3342 1.48993L11.3575 1.50743L11.3867 1.53135L11.4369 1.5716L11.483 1.60951L11.5325 1.65093C11.9479 2.00093 12.3218 2.39935 12.6461 2.83568L4.21288 0.579928L4.24904 0.564178L4.28696 0.547845L4.33421 0.528012L4.38438 0.507595C4.45029 0.481345 4.51679 0.455095 4.58329 0.431178L4.63929 0.410762L4.69354 0.391512L4.74254 0.374012L4.79854 0.355928C4.84929 0.338428 4.90121 0.322095 4.95254 0.306345L5.00563 0.290595L5.05579 0.276012L5.11529 0.258512L5.16488 0.245095L5.22321 0.229928L5.27338 0.215928L5.32588 0.202512L5.37896 0.189678L5.43438 0.176845L5.48688 0.165178L5.54404 0.152928L5.59713 0.141262L5.65254 0.130762L5.70621 0.120262L5.76454 0.109762L5.81763 0.100428L5.87479 0.0905117L5.92846 0.0823451L5.98504 0.0735951L6.03871 0.0660117L6.09821 0.0584284L6.15129 0.0514284L6.21254 0.0444284L6.26504 0.0385951L6.32629 0.0327617C6.38054 0.0269284 6.43479 0.0222617 6.48963 0.0187617L6.55146 0.0140951L6.60396 0.0111784L6.66813 0.00767839L6.72238 0.00534505L6.78071 0.00301172L6.83729 0.00184505L6.89504 0.000678386L7.00996 -0.000488281V9.50522e-05Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73673\">\\n<rect width=\"14\" height=\"14\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18u9c7g\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15d98rx\",\"data-framer-name\":\"Microsoft_Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73676)\">\\n<path d=\"M0.609375 0.608643H6.69633V6.6956H0.609375V0.608643Z\" fill=\"#F35325\"/>\\n<path d=\"M7.30469 0.608643H13.3916V6.6956H7.30469V0.608643Z\" fill=\"#81BC06\"/>\\n<path d=\"M0.609375 7.30444H6.69633V13.3914H0.609375V7.30444Z\" fill=\"#05A6F0\"/>\\n<path d=\"M7.30469 7.30444H13.3916V13.3914H7.30469V7.30444Z\" fill=\"#FFBA08\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73676\">\\n<rect width=\"14\" height=\"14\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13zs7w1\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-117nib7\",\"data-framer-name\":\"idPu03Khfd_logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73682)\">\\n<path d=\"M16.8507 0.837298C16.682 0.749788 16.6094 0.916558 16.5108 1.00128C16.477 1.02861 16.4485 1.06413 16.4199 1.09692C16.1734 1.37568 15.8854 1.55886 15.5091 1.53696C14.9589 1.50414 14.4892 1.68732 14.074 2.13285C13.9858 1.58346 13.6925 1.25541 13.2462 1.04499C13.0126 0.935638 12.7765 0.826288 12.613 0.588478C12.4988 0.419068 12.4677 0.230458 12.4106 0.0445781C12.3742 -0.0674719 12.3379 -0.182312 12.2159 -0.201452C12.0836 -0.223292 12.0317 -0.105812 11.9798 -0.00735194C11.7722 0.394468 11.6917 0.837268 11.6995 1.28553C11.7176 2.29416 12.1199 3.09771 12.9191 3.669C13.01 3.73461 13.0333 3.80016 13.0048 3.89589C12.9503 4.09269 12.8854 4.284 12.8283 4.4808C12.792 4.60656 12.7375 4.63389 12.6103 4.57917C12.1718 4.38516 11.7929 4.09812 11.4581 3.75102C10.8898 3.16881 10.376 2.52648 9.73502 2.02353C9.58451 1.90599 9.43398 1.7967 9.27826 1.69278C8.6243 1.02042 9.36391 0.468238 9.53519 0.402688C9.71422 0.334348 9.59746 0.099238 9.01875 0.102028C8.44005 0.104728 7.91067 0.309748 7.23596 0.583078C7.13736 0.624088 7.03352 0.654118 6.92713 0.678718C6.31471 0.555748 5.67891 0.528358 5.01457 0.607678C3.76374 0.755248 2.76468 1.3812 2.03028 2.44995C1.14798 3.73461 0.940383 5.19417 1.1947 6.71667C1.462 8.3211 2.2353 9.6495 3.42386 10.6882C4.65653 11.7651 6.07603 12.2926 7.69533 12.1915C8.67887 12.1314 9.77398 11.992 11.0092 10.885C11.3206 11.049 11.6476 11.1146 12.19 11.1638C12.6078 11.2048 13.01 11.1419 13.3214 11.0736C13.8093 10.9643 13.7756 10.4859 13.5991 10.3985C12.1693 9.6933 12.4832 9.98028 12.1978 9.74793C12.9244 8.83776 14.0195 7.89198 14.4477 4.8279C14.4814 4.58466 14.4529 4.43157 14.4477 4.23477C14.4451 4.11453 14.4711 4.06809 14.6008 4.05438C14.9589 4.01064 15.3067 3.90681 15.6259 3.72093C16.5523 3.18522 16.926 2.30508 17.0142 1.25001C17.0272 1.08873 17.0116 0.921958 16.8507 0.837298ZM8.77747 10.3328C7.39171 9.17943 6.71962 8.79945 6.44192 8.81586C6.18242 8.83227 6.22914 9.14661 6.2862 9.35163C6.3459 9.55386 6.42376 9.6933 6.53273 9.87093C6.60798 9.98847 6.65992 10.1634 6.45751 10.2946C6.01114 10.5871 5.23521 10.1962 5.19885 10.1771C4.29581 9.61398 3.54065 8.87049 3.00863 7.85376C2.49481 6.87516 2.1964 5.82561 2.14707 4.70493C2.13409 4.43436 2.20935 4.33863 2.46367 4.28949C2.79843 4.22388 3.14358 4.21017 3.47834 4.2621C4.89268 4.4808 6.09677 5.15046 7.10623 6.21099C7.68233 6.81504 8.11829 7.53669 8.56726 8.24187C9.04474 8.99076 9.55856 9.70422 10.2125 10.2891C10.4435 10.4941 10.6277 10.6499 10.8042 10.7647C10.2722 10.8276 9.38471 10.8413 8.77747 10.3328ZM9.4418 5.8092C9.4418 5.68893 9.53264 5.59329 9.64685 5.59329C9.6728 5.59329 9.69615 5.59869 9.71692 5.60688C9.74548 5.61786 9.77143 5.63427 9.79217 5.65881C9.82852 5.69712 9.84926 5.75175 9.84926 5.80917C9.84926 5.92944 9.75845 6.02508 9.6443 6.02508C9.53014 6.02508 9.4418 5.92947 9.4418 5.8092ZM11.5049 6.92988C11.3725 6.9873 11.2402 7.03644 11.113 7.04193C10.9158 7.05285 10.7004 6.9681 10.5837 6.86424C10.402 6.70296 10.2722 6.61281 10.2178 6.33126C10.1944 6.21099 10.2074 6.02511 10.2282 5.91855C10.2749 5.68893 10.2229 5.54136 10.0699 5.40738C9.94528 5.29803 9.78698 5.268 9.6131 5.268C9.54822 5.268 9.48858 5.23791 9.44443 5.21331C9.37176 5.17506 9.31212 5.07939 9.36918 4.96185C9.38734 4.92363 9.4756 4.83066 9.49637 4.81428C9.73253 4.67211 10.005 4.71861 10.2567 4.8252C10.4903 4.92633 10.6668 5.11221 10.9211 5.37459C11.1806 5.69163 11.2273 5.77917 11.3752 6.01692C11.492 6.2028 11.5984 6.39411 11.671 6.61281C11.7152 6.74949 11.658 6.86154 11.5049 6.92988Z\" fill=\"#4D6BFE\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73682\">\\n<rect width=\"17\" height=\"12\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hxnehm\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zfhybz\",\"data-framer-name\":\"idKpB5u1dr_logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73685)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.36 9.44C5.76 9.44 6.56 9.42 7.68 8.96C8.98 8.42 11.54 7.46 13.4 6.46C14.7 5.76 15.26 4.84 15.26 3.6C15.26 1.9 13.88 0.5 12.16 0.5H4.96C2.5 0.5 0.5 2.5 0.5 4.96C0.5 7.42 2.38 9.44 5.36 9.44Z\" fill=\"#39594D\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.57812 12.5002C6.57812 11.3002 7.29812 10.2002 8.41812 9.74022L10.6781 8.80022C12.9781 7.86022 15.4981 9.54022 15.4981 12.0202C15.4981 13.9402 13.9381 15.5002 12.0181 15.5002H9.55812C7.91812 15.5002 6.57812 14.1602 6.57812 12.5002Z\" fill=\"#D18EE2\"/>\\n<path d=\"M3.08 10.02C1.66 10.02 0.5 11.18 0.5 12.6V12.94C0.5 14.34 1.66 15.5 3.08 15.5C4.5 15.5 5.66 14.34 5.66 12.92V12.58C5.64 11.18 4.5 10.02 3.08 10.02Z\" fill=\"#FF7759\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73685\">\\n<rect width=\"15\" height=\"15\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qsdacf\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hfsp8e\",\"data-framer-name\":\"ideEMm3Xr6_logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73693)\">\\n<path d=\"M9.94219 15.4999C11.7854 15.4999 13.5532 14.7676 14.8566 13.4642C16.16 12.1609 16.8922 10.3931 16.8922 8.54985C16.8922 6.7066 16.16 4.93884 14.8566 3.63546C13.5532 2.33208 11.7854 1.59985 9.94219 1.59985C8.09893 1.59985 6.33117 2.33208 5.0278 3.63546C3.72442 4.93884 2.99219 6.7066 2.99219 8.54985C2.99219 10.3931 3.72442 12.1609 5.0278 13.4642C6.33117 14.7676 8.09893 15.4999 9.94219 15.4999Z\" fill=\"#FFD21E\"/>\\n<path d=\"M16.8914 8.5498C16.8914 6.70655 16.1592 4.93879 14.8558 3.63541C13.5524 2.33203 11.7847 1.5998 9.94141 1.5998C8.09815 1.5998 6.33039 2.33203 5.02701 3.63541C3.72364 4.93879 2.99141 6.70655 2.99141 8.5498C2.99141 10.3931 3.72364 12.1608 5.02701 13.4642C6.33039 14.7676 8.09815 15.4998 9.94141 15.4998C11.7847 15.4998 13.5524 14.7676 14.8558 13.4642C16.1592 12.1608 16.8914 10.3931 16.8914 8.5498ZM2.19141 8.5498C2.19141 7.53206 2.39187 6.52428 2.78134 5.58401C3.17081 4.64373 3.74167 3.78938 4.46133 3.06973C5.18098 2.35007 6.03534 1.77921 6.97561 1.38974C7.91588 1.00026 8.92366 0.799805 9.94141 0.799805C10.9592 0.799805 11.9669 1.00026 12.9072 1.38974C13.8475 1.77921 14.7018 2.35007 15.4215 3.06973C16.1411 3.78938 16.712 4.64373 17.1015 5.58401C17.4909 6.52428 17.6914 7.53206 17.6914 8.5498C17.6914 10.6052 16.8749 12.5765 15.4215 14.0299C13.9681 15.4833 11.9968 16.2998 9.94141 16.2998C7.88598 16.2998 5.91474 15.4833 4.46133 14.0299C3.00792 12.5765 2.19141 10.6052 2.19141 8.5498Z\" fill=\"#FF9D0B\"/>\\n<path d=\"M12.1988 6.65992C12.4548 6.74792 12.5548 7.27192 12.8128 7.13592C12.9875 7.04317 13.1308 6.90069 13.2245 6.72651C13.3182 6.55233 13.3582 6.35426 13.3393 6.15737C13.3205 5.96047 13.2437 5.77359 13.1186 5.62036C12.9935 5.46712 12.8258 5.35442 12.6367 5.29651C12.4476 5.2386 12.2455 5.23807 12.0561 5.295C11.8667 5.35193 11.6984 5.46375 11.5725 5.61633C11.4466 5.76891 11.3688 5.95539 11.349 6.15219C11.3291 6.34898 11.368 6.54725 11.4608 6.72192C11.5828 6.95192 11.9708 6.57792 12.2008 6.65792L12.1988 6.65992ZM7.48882 6.65992C7.23282 6.74792 7.13082 7.27192 6.87482 7.13592C6.70012 7.04317 6.55685 6.90069 6.46313 6.72651C6.36941 6.55233 6.32945 6.35426 6.3483 6.15737C6.36716 5.96047 6.44398 5.77359 6.56905 5.62036C6.69412 5.46712 6.86183 5.35442 7.05096 5.29651C7.24009 5.2386 7.44214 5.23807 7.63157 5.295C7.82099 5.35193 7.98928 5.46375 8.11515 5.61633C8.24102 5.76891 8.31881 5.95539 8.33869 6.15219C8.35857 6.34898 8.31964 6.54725 8.22682 6.72192C8.10482 6.95192 7.71482 6.57792 7.48682 6.65792L7.48882 6.65992Z\" fill=\"#3A3B45\"/>\\n<path d=\"M9.89487 11.4579C11.8609 11.4579 12.4949 9.70585 12.4949 8.80585C12.4949 8.33785 12.1809 8.48585 11.6769 8.73385C11.2109 8.96385 10.5849 9.28185 9.89688 9.28185C8.45888 9.28185 7.29688 7.90585 7.29688 8.80585C7.29688 9.70585 7.92887 11.4579 9.89688 11.4579H9.89487Z\" fill=\"#FF323D\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.38306 10.9999C8.48859 10.7854 8.63718 10.595 8.81955 10.4405C9.00193 10.286 9.21417 10.1707 9.44306 10.1019C9.52306 10.0779 9.60506 10.2159 9.69106 10.3579C9.77106 10.4939 9.85506 10.6319 9.93906 10.6319C10.0291 10.6319 10.1191 10.4959 10.2051 10.3619C10.2951 10.2219 10.3831 10.0859 10.4691 10.1119C10.8987 10.2483 11.2577 10.5477 11.4691 10.9459C12.2151 10.3579 12.4891 9.39787 12.4891 8.80587C12.4891 8.33787 12.1751 8.48587 11.6711 8.73387L11.6431 8.74787C11.1811 8.97787 10.5651 9.28187 9.88906 9.28187C9.21306 9.28187 8.59906 8.97787 8.13506 8.74787C7.61506 8.48987 7.28906 8.32787 7.28906 8.80587C7.28906 9.41587 7.58106 10.4179 8.38306 10.9999Z\" fill=\"#3A3B45\"/>\\n<path d=\"M14.6416 7.5998C14.8139 7.5998 14.9793 7.53132 15.1012 7.40942C15.2231 7.28753 15.2916 7.1222 15.2916 6.9498C15.2916 6.77741 15.2231 6.61208 15.1012 6.49019C14.9793 6.36829 14.8139 6.2998 14.6416 6.2998C14.4692 6.2998 14.3038 6.36829 14.1819 6.49019C14.06 6.61208 13.9916 6.77741 13.9916 6.9498C13.9916 7.1222 14.06 7.28753 14.1819 7.40942C14.3038 7.53132 14.4692 7.5998 14.6416 7.5998ZM5.34155 7.5998C5.51394 7.5998 5.67927 7.53132 5.80117 7.40942C5.92307 7.28753 5.99155 7.1222 5.99155 6.9498C5.99155 6.77741 5.92307 6.61208 5.80117 6.49019C5.67927 6.36829 5.51394 6.2998 5.34155 6.2998C5.16916 6.2998 5.00383 6.36829 4.88193 6.49019C4.76003 6.61208 4.69155 6.77741 4.69155 6.9498C4.69155 7.1222 4.76003 7.28753 4.88193 7.40942C5.00383 7.53132 5.16916 7.5998 5.34155 7.5998ZM4.00355 9.7998C3.67955 9.7998 3.39155 9.9318 3.18955 10.1738C3.0173 10.3866 2.92339 10.6521 2.92355 10.9258C2.79762 10.8879 2.66704 10.8677 2.53555 10.8658C2.22555 10.8658 1.94555 10.9838 1.74755 11.1978C1.57091 11.3812 1.45953 11.6177 1.43062 11.8707C1.4017 12.1237 1.45685 12.3792 1.58755 12.5978C1.41055 12.7423 1.28498 12.9401 1.22955 13.1618C1.18155 13.3418 1.13355 13.7218 1.38955 14.1098C1.29359 14.2574 1.23648 14.4268 1.22354 14.6023C1.2106 14.7778 1.24225 14.9538 1.31555 15.1138C1.51955 15.5778 2.02955 15.9418 3.01955 16.3338C3.63355 16.5778 4.19755 16.7338 4.20155 16.7358C4.91403 16.9332 5.64839 17.0407 6.38755 17.0558C7.55955 17.0558 8.39755 16.6958 8.87955 15.9878C9.65555 14.8498 9.54555 13.8078 8.53955 12.8038C7.98555 12.2478 7.61555 11.4298 7.53955 11.2498C7.38355 10.7178 6.97155 10.1258 6.28955 10.1258C6.10812 10.1287 5.92998 10.1748 5.76997 10.2604C5.60995 10.346 5.47268 10.4685 5.36955 10.6178C5.16955 10.3658 4.97355 10.1678 4.79755 10.0538C4.56269 9.89481 4.28709 9.80664 4.00355 9.7998ZM4.00355 10.5998C4.10555 10.5998 4.23155 10.6438 4.36755 10.7298C4.79555 11.0018 5.61755 12.4158 5.91955 12.9658C6.01955 13.1498 6.19355 13.2278 6.34755 13.2278C6.65755 13.2278 6.89755 12.9218 6.37755 12.5318C5.59355 11.9458 5.86755 10.9878 6.24155 10.9298C6.25755 10.9258 6.27555 10.9258 6.28955 10.9258C6.62955 10.9258 6.77955 11.5118 6.77955 11.5118C6.77955 11.5118 7.21955 12.6158 7.97555 13.3718C8.72955 14.1258 8.76955 14.7318 8.21955 15.5378C7.84355 16.0878 7.12555 16.2538 6.38755 16.2538C5.62555 16.2538 4.84155 16.0738 4.40355 15.9618C4.38155 15.9558 1.71355 15.2018 2.05155 14.5618C2.10755 14.4538 2.20155 14.4098 2.31955 14.4098C2.79555 14.4098 3.65955 15.1178 4.03355 15.1178C4.11555 15.1178 4.17355 15.0838 4.19955 14.9978C4.35755 14.4278 1.78755 14.1878 2.00355 13.3638C2.04355 13.2178 2.14555 13.1598 2.29155 13.1598C2.91955 13.1598 4.33155 14.2658 4.62755 14.2658C4.64955 14.2658 4.66755 14.2598 4.67555 14.2458C4.82355 14.0058 4.74155 13.8378 3.69555 13.2058C2.65355 12.5738 1.91955 12.1938 2.33555 11.7398C2.38355 11.6878 2.45155 11.6638 2.53555 11.6638C3.16955 11.6638 4.66755 13.0278 4.66755 13.0278C4.66755 13.0278 5.07155 13.4478 5.31755 13.4478C5.37355 13.4478 5.42155 13.4278 5.45355 13.3718C5.62555 13.0798 3.84155 11.7278 3.74155 11.1698C3.67355 10.7898 3.78955 10.5998 4.00355 10.5998Z\" fill=\"#FF9D0B\"/>\\n<path d=\"M8.22109 15.5379C8.77109 14.7299 8.73109 14.1239 7.97709 13.3699C7.22109 12.6159 6.78109 11.5099 6.78109 11.5099C6.78109 11.5099 6.61709 10.8699 6.24309 10.9299C5.86909 10.9899 5.59509 11.9459 6.37909 12.5319C7.16109 13.1179 6.22309 13.5159 5.92109 12.9659C5.62109 12.4159 4.79709 11.0019 4.36909 10.7299C3.94309 10.4599 3.64309 10.6099 3.74309 11.1699C3.84309 11.7279 5.62909 13.0799 5.45509 13.3699C5.28109 13.6639 4.66909 13.0279 4.66909 13.0279C4.66909 13.0279 2.75509 11.2859 2.33709 11.7399C1.92109 12.1939 2.65509 12.5739 3.69709 13.2059C4.74309 13.8379 4.82509 14.0059 4.67709 14.2459C4.52709 14.4859 2.22109 12.5399 2.00509 13.3659C1.78909 14.1879 4.35909 14.4259 4.20109 14.9959C4.04109 15.5659 2.38909 13.9199 2.05309 14.5599C1.71309 15.2019 4.38309 15.9559 4.40509 15.9619C5.26509 16.1859 7.45509 16.6599 8.22109 15.5379Z\" fill=\"#FFD21E\"/>\\n<path d=\"M15.9787 9.7998C16.3027 9.7998 16.5927 9.9318 16.7927 10.1738C16.9649 10.3866 17.0588 10.6521 17.0587 10.9258C17.1852 10.8878 17.3165 10.8676 17.4487 10.8658C17.7587 10.8658 18.0387 10.9838 18.2367 11.1978C18.4133 11.3812 18.5247 11.6177 18.5536 11.8707C18.5825 12.1237 18.5274 12.3792 18.3967 12.5978C18.5729 12.7426 18.6978 12.9404 18.7527 13.1618C18.8007 13.3418 18.8487 13.7218 18.5927 14.1098C18.6886 14.2574 18.7457 14.4268 18.7587 14.6023C18.7716 14.7778 18.74 14.9538 18.6667 15.1138C18.4627 15.5778 17.9527 15.9418 16.9647 16.3338C16.3487 16.5778 15.7847 16.7338 15.7807 16.7358C15.0682 16.9332 14.3338 17.0407 13.5947 17.0558C12.4227 17.0558 11.5847 16.6958 11.1027 15.9878C10.3267 14.8498 10.4367 13.8078 11.4427 12.8038C11.9987 12.2478 12.3687 11.4298 12.4447 11.2498C12.6007 10.7178 13.0107 10.1258 13.6927 10.1258C13.8741 10.1287 14.0522 10.1748 14.2122 10.2604C14.3723 10.346 14.5095 10.4685 14.6127 10.6178C14.8127 10.3658 15.0087 10.1678 15.1867 10.0538C15.4209 9.89517 15.6958 9.80702 15.9787 9.7998ZM15.9787 10.5998C15.8767 10.5998 15.7527 10.6438 15.6147 10.7298C15.1887 11.0018 14.3647 12.4158 14.0627 12.9658C14.0219 13.0443 13.9605 13.1102 13.8851 13.1563C13.8097 13.2025 13.7231 13.2272 13.6347 13.2278C13.3267 13.2278 13.0847 12.9218 13.6067 12.5318C14.3887 11.9458 14.1147 10.9878 13.7407 10.9298C13.7248 10.9272 13.7087 10.9259 13.6927 10.9258C13.3527 10.9258 13.2027 11.5118 13.2027 11.5118C13.2027 11.5118 12.7627 12.6158 12.0087 13.3718C11.2527 14.1258 11.2127 14.7318 11.7647 15.5378C12.1387 16.0878 12.8587 16.2538 13.5947 16.2538C14.3587 16.2538 15.1407 16.0738 15.5807 15.9618C15.6007 15.9558 18.2707 15.2018 17.9327 14.5618C17.8747 14.4538 17.7827 14.4098 17.6647 14.4098C17.1887 14.4098 16.3227 15.1178 15.9507 15.1178C15.8667 15.1178 15.8087 15.0838 15.7847 14.9978C15.6247 14.4278 18.1947 14.1878 17.9787 13.3638C17.9407 13.2178 17.8387 13.1598 17.6907 13.1598C17.0627 13.1598 15.6507 14.2658 15.3547 14.2658C15.3347 14.2658 15.3167 14.2598 15.3087 14.2458C15.1607 14.0058 15.2407 13.8378 16.2847 13.2058C17.3307 12.5738 18.0647 12.1938 17.6447 11.7398C17.5987 11.6878 17.5307 11.6638 17.4487 11.6638C16.8127 11.6638 15.3147 13.0278 15.3147 13.0278C15.3147 13.0278 14.9107 13.4478 14.6667 13.4478C14.6392 13.449 14.6119 13.4426 14.5878 13.4291C14.5638 13.4157 14.544 13.3959 14.5307 13.3718C14.3567 13.0798 16.1407 11.7278 16.2407 11.1698C16.3087 10.7898 16.1927 10.5998 15.9787 10.5998Z\" fill=\"#FF9D0B\"/>\\n<path d=\"M11.7641 15.5379C11.2141 14.7299 11.2521 14.1239 12.0081 13.3699C12.7621 12.6159 13.2021 11.5099 13.2021 11.5099C13.2021 11.5099 13.3661 10.8699 13.7421 10.9299C14.1141 10.9899 14.3881 11.9459 13.6061 12.5319C12.8221 13.1179 13.7621 13.5159 14.0621 12.9659C14.3641 12.4159 15.1881 11.0019 15.6141 10.7299C16.0401 10.4599 16.3421 10.6099 16.2401 11.1699C16.1401 11.7279 14.3561 13.0799 14.5301 13.3699C14.7021 13.6639 15.3141 13.0279 15.3141 13.0279C15.3141 13.0279 17.2301 11.2859 17.6461 11.7399C18.0621 12.1939 17.3301 12.5739 16.2861 13.2059C15.2401 13.8379 15.1601 14.0059 15.3061 14.2459C15.4561 14.4859 17.7621 12.5399 17.9781 13.3659C18.1941 14.1879 15.6261 14.4259 15.7841 14.9959C15.9441 15.5659 17.5941 13.9199 17.9321 14.5599C18.2701 15.2019 15.6021 15.9559 15.5801 15.9619C14.7181 16.1859 12.5281 16.6599 11.7641 15.5379Z\" fill=\"#FFD21E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73693\">\\n<rect width=\"19\" height=\"17.6\" fill=\"white\" transform=\"translate(0.5 0.199951)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1evo0\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xwhaxj\",\"data-framer-name\":\"grok-seeklogo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_73704)\">\\n<path d=\"M8.79275 13.7266L15.4001 8.84265C15.7242 8.60358 16.1877 8.69598 16.3417 9.06852C17.1542 11.0294 16.7905 13.3864 15.1742 15.0056C13.5579 16.6233 11.3095 16.9782 9.25328 16.1701L7.00781 17.2114C10.2286 19.4158 14.1402 18.8703 16.5837 16.4224C18.5226 14.482 19.1225 11.8361 18.5607 9.44985L18.5651 9.45425C17.7511 5.94892 18.7646 4.54825 20.8429 1.68385C20.8913 1.61638 20.9411 1.54745 20.991 1.47852L18.2571 4.21532V4.20652L8.79128 13.7281\" fill=\"black\"/>\\n<path d=\"M7.43119 14.9132C5.11972 12.703 5.51865 9.28124 7.48985 7.30711C8.94772 5.84631 11.3384 5.25084 13.424 6.12644L15.6651 5.09097C15.2617 4.79911 14.744 4.48524 14.15 4.26377C11.4675 3.15791 8.25399 3.70791 6.07305 5.89031C3.97572 7.99057 3.31572 11.2202 4.44799 13.976C5.29425 16.0352 3.90679 17.4931 2.50905 18.9627C2.01332 19.4834 1.51759 20.0055 1.11719 20.557L7.42825 14.9132\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_73704\">\\n<rect width=\"22\" height=\"22\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gx8l8s\",\"data-framer-name\":\"feature3\",id:elementId25,ref:ref28,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18daiiz\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{background:{alt:\"\",fit:\"fill\",pixelHeight:1410,pixelWidth:940,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg\",srcSet:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg 940w\"}},vbCekHcm9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1410,pixelWidth:940,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg\",srcSet:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg 940w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1410,pixelWidth:940,src:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg\",srcSet:\"https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/T6iL0b2DZSLDCwf2tZrPx8uL0.jpg 940w\"},className:\"framer-oilbiw\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-tl0hta\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:560},className:\"framer-1qonjwb\",\"data-framer-name\":\"UI-content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1plt4a-container\",isModuleExternal:true,nodeId:\"Ce7_5uW5p\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ce7_5uW5p\",isMixedBorderRadius:false,layoutId:\"Ce7_5uW5p\",loop:false,muted:true,objectFit:\"contain\",playing:true,poster:\"https://framerusercontent.com/images/12ha0xcu8UDaFFEJpBtYDdMgpNc.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/IG4w5BPebsw3S047ddL7aeKNyU.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=QohH89Eu5iM\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdkv6i\",\"data-framer-name\":\"Text-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y2aavg\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Add Wings with Tools\"})}),className:\"framer-iatobl\",\"data-framer-name\":\"Sophisticated Workflow In Minutes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\"},children:\"Expand capabilities of your AI application with a versatile set of plugins.\"})}),className:\"framer-1na5wk5\",\"data-framer-name\":\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1raseaw\",\"data-framer-name\":\"feature1\",id:elementId26,ref:ref29,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hua3y2\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-puaurv\",\"data-framer-name\":\"Text-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ourm1g\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Get Your Data LLM Ready\"})}),className:\"framer-1dlrzts\",\"data-framer-name\":\"Sophisticated Workflow In Minutes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-def6f197-2fed-4889-b029-9896d7d6b43b, rgb(153, 153, 153))\"},children:\"Extract data from various sources, transform it, and index it into vector databases for optimal LLM use.\"})}),className:\"framer-vs8gur\",\"data-framer-name\":\"Drag and drop to visually create AI apps and workflows that are capable of diverse tasks and evolving needs.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bntlv0\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chbogy\",\"data-framer-name\":\"Set 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hzgc9\",\"data-framer-name\":\"Frame 4939\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ij81k1\",\"data-framer-name\":\"Github\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g3pzw8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00107 0.335938C6.10189 0.336923 4.26498 1.00958 2.81881 2.23362C1.37263 3.45766 0.411497 5.15328 0.107258 7.01727C-0.196981 8.88126 0.175513 10.7921 1.15814 12.4081C2.14077 14.024 3.66945 15.2398 5.47085 15.8379C5.86826 15.9117 6.01796 15.6654 6.01796 15.4559C6.01796 15.2465 6.01001 14.6393 6.00736 13.9754C3.78183 14.4562 3.31155 13.0363 3.31155 13.0363C2.94858 12.1142 2.42399 11.8719 2.42399 11.8719C1.69804 11.3792 2.4783 11.3885 2.4783 11.3885C3.28241 11.4451 3.705 12.2091 3.705 12.2091C4.4177 13.4248 5.57682 13.0731 6.03253 12.8677C6.10406 12.3526 6.31205 12.0023 6.54123 11.8034C4.76345 11.6032 2.89559 10.9209 2.89559 7.87288C2.88457 7.08241 3.17958 6.31797 3.71957 5.73772C3.63744 5.53751 3.36321 4.72876 3.79772 3.63022C3.79772 3.63022 4.46936 3.41684 5.99809 4.44556C7.30934 4.08902 8.69281 4.08902 10.0041 4.44556C11.5315 3.41684 12.2018 3.63022 12.2018 3.63022C12.6376 4.72612 12.3634 5.53488 12.2813 5.73772C12.823 6.31806 13.1186 7.08384 13.1065 7.87552C13.1065 10.9301 11.2347 11.6032 9.45429 11.7994C9.74043 12.0471 9.9961 12.5305 9.9961 13.2734C9.9961 14.3376 9.98683 15.1938 9.98683 15.4559C9.98683 15.668 10.1312 15.9156 10.5366 15.8379C12.3382 15.2397 13.867 14.0237 14.8496 12.4075C15.8323 10.7912 16.2046 8.88014 15.9 7.01597C15.5954 5.15181 14.6338 3.45617 13.1871 2.23234C11.7405 1.00851 9.90313 0.336298 8.00372 0.335938H8.00107Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16dfkzs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:2,svg:'<svg width=\"2\" height=\"1\" viewBox=\"0 0 2 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.02905 0.752472C1.01183 0.791987 0.948247 0.803843 0.896582 0.776182C0.844918 0.748521 0.806504 0.697151 0.82505 0.656318C0.843596 0.615485 0.905858 0.604947 0.957522 0.632608C1.00919 0.660269 1.04893 0.712956 1.02905 0.752472Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16rzvvb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:1,svg:'<svg width=\"1\" height=\"2\" viewBox=\"0 0 1 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.355455 1.11149C0.32802 1.12523 0.296634 1.12907 0.266668 1.12234C0.236703 1.11562 0.210023 1.09874 0.19119 1.07461C0.139526 1.01929 0.128923 0.942892 0.168664 0.908646C0.208406 0.874399 0.279947 0.890205 0.331611 0.945526C0.383275 1.00085 0.395197 1.07724 0.355455 1.11149Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r4vkq0\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.668601 0.571841C0.619587 0.606088 0.536124 0.571843 0.489759 0.503349C0.476938 0.491062 0.466744 0.476329 0.459778 0.460035C0.452813 0.44374 0.449219 0.426217 0.449219 0.408512C0.449219 0.390806 0.452813 0.373282 0.459778 0.356987C0.466744 0.340692 0.476938 0.325962 0.489759 0.313675C0.538774 0.280745 0.622236 0.313674 0.668601 0.38085C0.714967 0.448026 0.716291 0.537594 0.668601 0.571841V0.571841Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1niisjc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:2,svg:'<svg width=\"2\" height=\"2\" viewBox=\"0 0 2 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.09774 1.01155C1.05402 1.06029 0.965265 1.04712 0.892406 0.981258C0.819546 0.915399 0.80232 0.825829 0.846036 0.778411C0.889751 0.730992 0.978509 0.744166 1.05402 0.808707C1.12953 0.873249 1.1441 0.964134 1.09774 1.01155V1.01155Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1px3leq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.698751 0.272258C0.67888 0.334166 0.588798 0.361826 0.498717 0.335483C0.408636 0.309139 0.349024 0.235375 0.366245 0.17215C0.383466 0.108925 0.474873 0.0799471 0.566279 0.108925C0.657685 0.137904 0.715973 0.207716 0.698751 0.272258Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17zzyv4\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.350912 0.319063C0.350912 0.383605 0.276731 0.438926 0.181351 0.440243C0.0859709 0.441561 0.0078125 0.388873 0.0078125 0.324331C0.0078125 0.259788 0.0819929 0.204467 0.177373 0.20315C0.272753 0.201833 0.350912 0.253203 0.350912 0.319063Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i5y241\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1,intrinsicWidth:1,svg:'<svg width=\"1\" height=\"1\" viewBox=\"0 0 1 1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.960938 0.215932C0.972861 0.280474 0.906624 0.347651 0.811244 0.363457C0.715864 0.379263 0.632406 0.341064 0.620484 0.277839C0.608561 0.214615 0.677447 0.146123 0.770178 0.128999C0.862908 0.111876 0.949016 0.15139 0.960938 0.215932Z\" fill=\"#191717\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mzsb9u\",\"data-framer-name\":\"Logo-frame\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k213lz\",\"data-framer-name\":\"Notion\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vsb372\",\"data-framer-name\":\"notion logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1460_5190)\">\\n<path d=\"M2.97284 2.80517C3.47017 3.20917 3.65684 3.1785 4.59151 3.11584L13.4015 2.58717C13.5882 2.58717 13.4328 2.4005 13.3708 2.36984L11.9068 1.31183C11.6268 1.0945 11.2528 0.845168 10.5368 0.907168L2.00684 1.52983C1.69617 1.5605 1.63351 1.7165 1.75751 1.8405L2.97284 2.80517ZM3.50151 4.8585V14.1278C3.50151 14.6258 3.75017 14.8125 4.31084 14.7812L13.9928 14.2212C14.5535 14.1905 14.6162 13.8478 14.6162 13.4432V4.23584C14.6162 3.83184 14.4608 3.61384 14.1175 3.6445L3.99951 4.23584C3.62617 4.26717 3.50151 4.45384 3.50151 4.85784V4.8585ZM13.0595 5.35517C13.1215 5.63517 13.0595 5.91517 12.7795 5.94717L12.3128 6.0405V12.8832C11.9075 13.1012 11.5342 13.2258 11.2228 13.2258C10.7242 13.2258 10.5995 13.0698 10.2262 12.6038L7.17484 7.81317V12.4478L8.14017 12.6665C8.14017 12.6665 8.14017 13.2265 7.3615 13.2265L5.21351 13.3505C5.15151 13.2265 5.21351 12.9152 5.43151 12.8532L5.99151 12.6978V6.56917L5.21484 6.5065C5.15217 6.2265 5.30817 5.8225 5.7435 5.79117L8.04751 5.63584L11.2235 10.4885V6.19517L10.4135 6.1025C10.3515 5.75984 10.6002 5.51117 10.9115 5.4805L13.0595 5.35517ZM1.29084 0.689835L10.1642 0.0365013C11.2535 -0.056832 11.5342 0.00516797 12.2188 0.503168L15.0515 2.49384C15.5182 2.83584 15.6742 2.92917 15.6742 3.3025V14.2212C15.6742 14.9052 15.4255 15.3105 14.5542 15.3718L4.24884 15.9945C3.59551 16.0258 3.2835 15.9325 2.94084 15.4965L0.854839 12.7898C0.481505 12.2918 0.326172 11.9192 0.326172 11.4832V1.77783C0.326172 1.2185 0.575505 0.751168 1.29084 0.689835V0.689835Z\" fill=\"#2F3437\"/>\\n<path d=\"M2.97284 2.80517C3.47017 3.20917 3.65684 3.1785 4.59151 3.11584L13.4015 2.58717C13.5882 2.58717 13.4328 2.4005 13.3708 2.36984L11.9068 1.31183C11.6268 1.0945 11.2528 0.845168 10.5368 0.907168L2.00684 1.52983C1.69617 1.5605 1.63351 1.7165 1.75751 1.8405L2.97284 2.80517Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.50151 4.8585V14.1278C3.50151 14.6258 3.75017 14.8125 4.31084 14.7812L13.9928 14.2212C14.5535 14.1905 14.6162 13.8478 14.6162 13.4432V4.23584C14.6162 3.83184 14.4608 3.61384 14.1175 3.6445L3.99951 4.23584C3.62617 4.26717 3.50151 4.45384 3.50151 4.85784V4.8585ZM12.7795 5.94717C13.0595 5.91517 13.1215 5.63517 13.0595 5.35517L10.9115 5.4805C10.6002 5.51117 10.3515 5.75984 10.4135 6.1025L11.2235 6.19517V10.4885L8.04751 5.63584L5.7435 5.79117C5.30817 5.8225 5.15217 6.2265 5.21484 6.5065L5.99151 6.56917V12.6978L5.43151 12.8532C5.21351 12.9152 5.15151 13.2265 5.21351 13.3505L7.3615 13.2265C8.14017 13.2265 8.14017 12.6665 8.14017 12.6665L7.17484 12.4478V7.81317L10.2262 12.6038L10.2269 12.6047C10.5997 13.07 10.7245 13.2258 11.2228 13.2258C11.5342 13.2258 11.9075 13.1012 12.3128 12.8832V6.0405L12.7795 5.94717Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1460_5190\">\\n<rect width=\"16\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jse726\",\"data-framer-name\":\"Logo-frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2tzgii\",\"data-framer-name\":\"Group 69\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.6953 8.18137C15.6953 7.63591 15.6507 7.09248 15.5574 6.55469H8.00586V9.63519H12.3305C12.1517 10.629 11.5747 11.5082 10.7316 12.0654V14.0667H13.3135C14.825 12.6768 15.6953 10.6174 15.6953 8.18137Z\" fill=\"#4285F4\"/>\\n<path d=\"M8.00468 15.9989C10.1651 15.9989 11.9855 15.2904 13.3123 14.0675L10.7305 12.0662C10.0116 12.5535 9.08684 12.831 8.00468 12.831C5.91628 12.831 4.14444 11.4239 3.5092 9.5293H0.851562V11.5907C2.21143 14.2947 4.97794 15.9989 8.00468 15.9989Z\" fill=\"#34A853\"/>\\n<path d=\"M3.51197 9.53059C3.17594 8.53875 3.17594 7.46142 3.51197 6.4677V4.4082H0.852454C-0.284151 6.66945 -0.284151 9.3326 0.852454 11.594L3.51197 9.53059Z\" fill=\"#FBBC04\"/>\\n<path d=\"M8.00468 3.16818C9.14706 3.15071 10.2486 3.57976 11.0762 4.36783L13.3628 2.08507C11.9136 0.726416 9.99414 -0.0209258 8.00468 0.00044606C4.97794 0.00044606 2.20955 1.70656 0.851562 4.40856L3.51108 6.46993C4.14444 4.57348 5.91628 3.16818 8.00468 3.16818Z\" fill=\"#EA4335\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gk9fs8\",\"data-framer-name\":\"Logo-frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k5j3gv\",\"data-framer-name\":\"Microsoft_Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.39062 0.697266H8.34714V7.65379H1.39062V0.697266Z\" fill=\"#F35325\"/>\\n<path d=\"M9.04297 0.697266H15.9995V7.65379H9.04297V0.697266Z\" fill=\"#81BC06\"/>\\n<path d=\"M1.39062 8.34766H8.34714V15.3042H1.39062V8.34766Z\" fill=\"#05A6F0\"/>\\n<path d=\"M9.04297 8.34766H15.9995V15.3042H9.04297V8.34766Z\" fill=\"#FFBA08\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uaonzf\",\"data-framer-name\":\"Logo-frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19fw98g\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:47,svg:'<svg width=\"47\" height=\"16\" viewBox=\"0 0 47 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.173 12.1548C22.173 12.7337 21.7209 13.2029 21.1632 13.2029H20.4728V12.3847H20.4482C20.3743 12.4954 20.2757 12.6105 20.1525 12.7298C20.049 12.8296 19.9256 12.9224 19.7822 13.0083L19.7336 13.0367C19.5776 13.1304 19.401 13.2071 19.2038 13.2669C19.0149 13.3265 18.8178 13.3563 18.6125 13.3563C18.169 13.3563 17.7665 13.2796 17.4051 13.1261C17.0437 12.9642 16.7316 12.7426 16.4688 12.4613C16.2142 12.1715 16.0171 11.8306 15.8774 11.4385C15.7378 11.0464 15.668 10.616 15.668 10.1472C15.668 9.7125 15.7296 9.29907 15.8528 8.90691C15.9842 8.50637 16.1649 8.15257 16.3949 7.84572C16.6205 7.55506 16.8904 7.32174 17.2045 7.14579L17.2573 7.117C17.594 6.92948 17.976 6.83571 18.403 6.83571C18.7891 6.83571 19.1464 6.89964 19.4749 7.0275C19.8117 7.14683 20.0868 7.35565 20.3003 7.65404H20.325V4.5851C20.325 4.00631 20.7771 3.53711 21.3348 3.53711H22.173V12.1548ZM20.4728 10.096C20.4728 9.6272 20.3414 9.24793 20.0786 8.95805C19.824 8.66828 19.4626 8.52335 18.9944 8.52335C18.5262 8.52335 18.1608 8.66828 17.8979 8.95805C17.6433 9.24793 17.516 9.6272 17.516 10.096C17.516 10.5648 17.6433 10.9441 17.8979 11.2339C18.1608 11.5237 18.5262 11.6687 18.9944 11.6687C19.4626 11.6687 19.824 11.5237 20.0786 11.2339C20.3414 10.9441 20.4728 10.5648 20.4728 10.096ZM23.3687 8.03708C23.3687 7.45835 23.8208 6.98914 24.3785 6.98914H25.2167V7.98636H25.2413C25.4299 7.61952 25.6522 7.34231 25.9084 7.1548L25.9436 7.12978C26.2146 6.93373 26.5554 6.83571 26.9661 6.83571C27.0729 6.83571 27.1796 6.83998 27.2865 6.8485C27.3932 6.85702 27.4918 6.87407 27.5821 6.89964V8.65125C27.4507 8.6086 27.3193 8.57873 27.1879 8.56165C27.0647 8.53608 26.9332 8.52329 26.7937 8.52329C26.4404 8.52329 26.1612 8.57444 25.9559 8.67672C25.7505 8.779 25.5903 8.92394 25.4754 9.11143C25.3686 9.29042 25.2988 9.50778 25.266 9.76349C25.233 10.0193 25.2167 10.3005 25.2167 10.6073V12.1548C25.2167 12.7336 24.7646 13.2029 24.2068 13.2029H23.3687V8.03708ZM32.0644 12.4231H32.0398C31.8345 12.7556 31.5593 12.9942 31.2144 13.1391C30.8777 13.284 30.5204 13.3564 30.1425 13.3564C29.8848 13.3564 29.634 13.3201 29.3902 13.2475L29.3294 13.2286C29.0748 13.1519 28.8489 13.0325 28.6518 12.8706C28.4546 12.7086 28.2986 12.5083 28.1836 12.2696C28.0687 12.031 28.0111 11.754 28.0111 11.4386C28.0111 11.0807 28.0727 10.778 28.1959 10.5309C28.3274 10.2837 28.4999 10.0791 28.7134 9.91718C28.9351 9.75516 29.1857 9.6316 29.4649 9.5464C29.7442 9.4526 30.0316 9.38438 30.3273 9.34172C30.6313 9.29917 30.931 9.2736 31.2267 9.26501L31.4257 9.25999C31.6535 9.25486 31.8664 9.25233 32.0644 9.25233C32.0644 8.92349 31.9537 8.66209 31.7322 8.46802L31.7072 8.44674C31.4772 8.24217 31.202 8.13989 30.8817 8.13989C30.5778 8.13989 30.2986 8.20811 30.0439 8.34445C29.7975 8.47241 29.5758 8.65141 29.3787 8.88145L28.393 7.83303C28.723 7.51512 29.1056 7.27513 29.5408 7.11314L29.6004 7.09153C30.0604 6.92105 30.5367 6.83582 31.0296 6.83582C31.5716 6.83582 32.0152 6.90827 32.3601 7.05317C32.7134 7.18955 32.9926 7.39412 33.1979 7.66682C33.4115 7.93962 33.5593 8.27634 33.6414 8.67688C33.7236 9.06904 33.7646 9.52502 33.7646 10.0449V12.1551C33.7646 12.7338 33.3125 13.203 32.7548 13.203H32.0644V12.4231ZM32.0644 10.4796H31.6086L31.5416 10.4802C31.4138 10.4825 31.2596 10.4908 31.0788 10.5052C30.8735 10.5138 30.6723 10.5479 30.4751 10.6075C30.2863 10.6672 30.122 10.7567 29.9823 10.876C29.851 10.9953 29.7852 11.1616 29.7852 11.3747C29.7852 11.6049 29.8797 11.7753 30.0686 11.886C30.2575 11.9969 30.4546 12.0522 30.6599 12.0522C30.8407 12.0522 31.0132 12.0267 31.1774 11.9755C31.3499 11.9244 31.5019 11.852 31.6332 11.7582C31.7546 11.6717 31.8514 11.5633 31.9237 11.4332L31.9412 11.4002C32.0234 11.2554 32.0644 11.0848 32.0644 10.8889V10.4796ZM35.0475 8.03708C35.0475 7.45835 35.4996 6.98914 36.0574 6.98914H36.8216V7.83293H36.8463C36.9037 7.71367 36.9858 7.59432 37.0927 7.47499C37.1994 7.35565 37.3268 7.24912 37.4746 7.15535C37.6224 7.06159 37.7908 6.98487 37.9797 6.92521C38.1686 6.86555 38.374 6.83571 38.5957 6.83571C39.0452 6.83571 39.4113 6.90641 39.6942 7.04781L39.7292 7.06585C40.0022 7.20351 40.216 7.39502 40.3706 7.64032L40.3945 7.6795C40.5587 7.94381 40.6695 8.25485 40.7271 8.61285C40.7846 8.97084 40.8134 9.3587 40.8134 9.77643V12.1548C40.8134 12.7337 40.3612 13.2029 39.8035 13.2029H38.9653V10.1599C38.9653 9.98089 38.9571 9.7977 38.9407 9.61011C38.9324 9.41414 38.8955 9.23514 38.8298 9.07323C38.7722 8.91121 38.6778 8.77906 38.5464 8.67677C38.4232 8.57449 38.2425 8.52335 38.0044 8.52335C37.7802 8.52335 37.596 8.56494 37.4519 8.64794L37.4253 8.66399C37.2775 8.74929 37.1625 8.86855 37.0804 9.02198C37.0064 9.16692 36.9572 9.33313 36.9325 9.52061C36.9079 9.70821 36.8955 9.90418 36.8955 10.1087V12.1548C36.8955 12.7337 36.4434 13.2029 35.8857 13.2029H35.0475V8.03708ZM46.3235 7.47536C46.3235 8.05411 45.8714 8.52329 45.3136 8.52329H44.6972V10.5946C44.6972 10.7651 44.7055 10.9228 44.7219 11.0676C44.7383 11.2041 44.7753 11.3233 44.8327 11.4256C44.8903 11.5279 44.9765 11.6089 45.0915 11.6686C45.2147 11.7198 45.3748 11.7452 45.572 11.7452C45.6705 11.7452 45.7979 11.7367 45.9539 11.7197C46.1182 11.6941 46.2414 11.6431 46.3235 11.5663V12.4806C46.3235 12.8909 46.0759 13.2726 45.6828 13.3179C45.4611 13.3434 45.2434 13.3562 45.0299 13.3562C44.7178 13.3562 44.4303 13.3222 44.1675 13.2539C43.9047 13.1858 43.6747 13.0792 43.4775 12.9344C43.2804 12.781 43.1244 12.5849 43.0094 12.3462C42.9026 12.1075 42.8492 11.8178 42.8492 11.4768V8.52329H41.6665V8.03703C41.6665 7.45828 42.1187 6.98909 42.6763 6.98909H42.8492V6.19597C42.8492 5.61717 43.3014 5.14798 43.859 5.14798H44.6972V6.98909H46.3235V7.47536Z\" fill=\"#DC244C\"/>\\n<path d=\"M11.1752 14.6813L10.8683 5.90085L10.3125 3.58594L14.0222 3.99349V14.6149L11.7561 15.9721L11.1752 14.6813Z\" fill=\"#24386C\"/>\\n<path d=\"M14.0234 3.99285L11.7573 5.35104L7.08093 4.28649L1.60726 6.59931L0.695312 3.99285L4.0268 1.99642L7.35929 0L10.6909 1.99642L14.0234 3.99285Z\" fill=\"#7589BE\"/>\\n<path d=\"M0.695312 3.99425L2.96141 5.35244L4.27502 9.4067L8.71036 13.0896L7.35939 15.9728L4.0269 13.9763L0.695312 11.9798V3.99414\" fill=\"#B2BFE8\"/>\\n<path d=\"M8.86172 10.959L7.35938 13.2574V15.9728L9.49116 14.6963L10.5896 12.9942\" fill=\"#24386C\"/>\\n<path d=\"M7.36121 10.5413L5.22852 6.70929L5.68788 5.43922L7.43421 4.56055L9.49208 6.70935L7.36121 10.5413Z\" fill=\"#7589BE\"/>\\n<path d=\"M5.22778 6.70898L7.35957 7.98544V10.5404L5.38794 10.6285L4.19531 9.0481L5.22778 6.70899\" fill=\"#B2BFE8\"/>\\n<path d=\"M7.35938 7.98533L9.49116 6.70898L10.942 9.21599L9.18629 10.7214L7.35938 10.5404V7.98533Z\" fill=\"#24386C\"/>\\n<path d=\"M9.4906 14.6933L11.7567 15.9698V5.34949L9.55725 4.03217L7.35882 2.71484L5.15937 4.03217L2.96094 5.34949V10.6197L5.15937 11.9371L7.35882 13.2545L9.4906 11.9769V14.6933ZM9.4906 9.26154L7.35882 10.539L5.22703 9.26154V6.70759L7.35882 5.43008L9.4906 6.70759V9.26154Z\" fill=\"#DC244C\"/>\\n<path d=\"M7.36091 13.2578V10.542L5.24023 9.27539V11.9866L7.36091 13.2578Z\" fill=\"url(#paint0_linear_1619_21068)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1619_21068\" x1=\"178.207\" y1=\"187.853\" x2=\"-33.1137\" y2=\"187.853\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3364\"/>\\n<stop offset=\"1\" stop-color=\"#C91540\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x2nwuq\",\"data-framer-name\":\"Logo-frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5b3j5c\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"16\" viewBox=\"0 0 71 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.47194 2.33899C8.61244 -0.777061 13.705 -0.777061 16.8455 2.33899C19.991 5.45505 19.991 10.5071 16.8455 13.6181C13.705 16.729 8.61244 16.729 5.47194 13.613L0.338901 8.52001C0.0354706 8.21863 0.0354706 7.73336 0.338901 7.43193L5.47194 2.33899ZM15.6267 3.83572C13.3206 1.54721 9.57833 1.54721 7.27228 3.83572L3.49963 7.575C3.27711 7.79974 3.27711 8.15732 3.49963 8.37699L7.27731 12.1214C9.5834 14.4099 13.3257 14.4099 15.6318 12.1214C17.9379 9.83287 17.9379 6.12423 15.6267 3.83572ZM11.4796 3.98386C13.6666 3.98386 15.4394 5.77463 15.4394 7.98366C15.4394 10.1927 13.6666 11.9835 11.4796 11.9835C9.29274 11.9835 7.51991 10.1927 7.51991 7.98366C7.51991 5.77463 9.29274 3.98386 11.4796 3.98386ZM23.5714 7.437L21.3109 5.15362C21.1743 5.01566 20.9467 5.14339 20.9923 5.33238C21.3817 7.07431 21.3817 8.89288 20.9923 10.6348C20.9518 10.8238 21.1794 10.9464 21.3109 10.8136L23.5714 8.53019C23.8522 8.24172 23.8687 7.79486 23.621 7.49202L23.5714 7.437Z\" fill=\"#4FC4F9\"/>\\n<path d=\"M28.3066 7.27796C28.3066 6.85255 28.3792 6.48582 28.5245 6.17778C28.6697 5.86969 28.8729 5.60569 29.1344 5.38565C29.3957 5.1656 29.7007 5.00424 30.0492 4.90156C30.3978 4.79887 30.7899 4.74019 31.1966 4.74019C31.7048 4.74019 32.155 4.82819 32.5616 5.00424C32.9537 5.18028 33.2877 5.41496 33.5346 5.72301C33.7815 5.41496 34.101 5.18028 34.4931 5.00424C34.8852 4.82819 35.3354 4.74019 35.8436 4.74019C36.2503 4.74019 36.6278 4.79887 36.9764 4.90156C37.3249 5.00424 37.6299 5.1656 37.8913 5.38565C38.1526 5.60569 38.356 5.86969 38.5012 6.17778C38.6464 6.48582 38.7191 6.85255 38.7191 7.27796V11.4733H36.6714V7.86468C36.6714 7.42464 36.5843 7.1166 36.41 6.92587C36.2358 6.73519 35.9889 6.64719 35.6549 6.64719C35.3209 6.64719 35.0594 6.7645 34.8416 6.98455C34.6383 7.20459 34.5366 7.55664 34.5366 8.05541V11.4879H32.489V8.05541C32.489 7.57132 32.3874 7.21928 32.184 6.98455C31.9807 6.7645 31.7193 6.64719 31.3853 6.64719C31.0658 6.64719 30.8045 6.73519 30.6302 6.92587C30.4413 7.1166 30.3542 7.42464 30.3542 7.86468V11.4733H28.3066V7.27796ZM40.4182 3.17058C40.4182 2.84786 40.5199 2.56915 40.7377 2.34911C40.9556 2.12908 41.2169 2.01172 41.551 2.01172C41.8704 2.01172 42.1464 2.12908 42.3642 2.34911C42.5821 2.56915 42.6982 2.84786 42.6982 3.17058C42.6982 3.4933 42.5821 3.77201 42.3642 3.99205C42.1464 4.21208 41.8704 4.31477 41.551 4.31477C41.2315 4.31477 40.9556 4.21208 40.7377 3.99205C40.5344 3.75734 40.4182 3.4933 40.4182 3.17058ZM40.5344 5.84032C40.5344 5.50296 40.636 5.26824 40.8248 5.13624C41.0136 5.00419 41.275 4.93087 41.5945 4.93087C41.8269 4.93087 42.0302 4.96019 42.219 5.01887L42.4495 5.08673C42.5094 5.10324 42.553 5.11424 42.5821 5.12155V11.4879H40.5344V5.84032ZM44.4698 2.92121C44.4698 2.58382 44.5714 2.34911 44.7602 2.21709C44.949 2.08507 45.2104 2.01172 45.5299 2.01172C45.7623 2.01172 45.9656 2.04106 46.1544 2.09974L46.3369 2.15414C46.4221 2.17835 46.4811 2.19325 46.5174 2.20242V11.4733H44.4698V2.92121ZM50.2639 11.4733C50.0025 11.0039 49.7411 10.5198 49.4943 10.021L49.1368 9.29673C49.0606 9.14148 48.9868 8.99031 48.916 8.84376L48.6651 8.31736C48.5241 8.01689 48.4016 7.74733 48.3034 7.52727L48.1676 7.21302C48.1101 7.08311 48.0682 6.99335 48.042 6.94055C47.9875 6.80852 47.9331 6.66825 47.8786 6.51971L47.8242 6.36841C47.7374 6.14842 47.7079 5.95769 47.7079 5.79632C47.7079 5.56164 47.7952 5.35628 47.9694 5.18024C48.144 5.01887 48.3907 4.93087 48.7394 4.93087C49.0151 4.93087 49.2329 4.96019 49.4075 5.01887L49.6646 5.10759C49.6796 5.11332 49.6905 5.1179 49.6979 5.12155C49.8431 5.54696 49.9883 5.97237 50.1624 6.39778C50.2583 6.65302 50.3541 6.8977 50.4467 7.13181L50.6269 7.58596C50.7726 7.95268 50.9031 8.27541 51.0335 8.55414L51.1521 8.83134C51.2111 8.96556 51.2588 9.06755 51.295 9.14091L51.3419 9.03913C51.3839 8.94286 51.4344 8.81793 51.5006 8.66438L51.5422 8.56882C51.6352 8.35758 51.7279 8.11816 51.8283 7.86562L52.6311 5.85501L52.7131 5.66616C52.7267 5.6359 52.7408 5.6061 52.756 5.57653L52.8057 5.48828C52.8636 5.37096 52.9509 5.28292 53.0377 5.19492C53.125 5.10692 53.2413 5.04824 53.3575 5.00419C53.488 4.96019 53.6479 4.94556 53.822 4.94556C53.9613 4.94556 54.0821 4.95492 54.1992 4.9812L54.2865 5.00419C54.4175 5.03356 54.548 5.07755 54.65 5.12155L54.764 5.17343C54.8166 5.19843 54.862 5.22133 54.8967 5.23892C54.9546 5.28292 54.9982 5.2976 55.0129 5.31228C54.984 5.4736 54.8967 5.69364 54.7662 6.01637L54.4585 6.7556C54.4131 6.86329 54.3657 6.97406 54.3159 7.08723L54.0997 7.57564C53.9882 7.82595 53.8716 8.08472 53.7494 8.34877L53.2981 9.31415L53.154 9.62495C52.9651 10.0357 52.7763 10.4024 52.6021 10.7398L52.4797 10.9704C52.3653 11.1891 52.2753 11.3706 52.2102 11.5026H50.2639V11.4733ZM58.1208 8.42209C58.1208 9.3169 58.5127 9.757 59.3117 9.757C60.1102 9.757 60.5026 9.3169 60.5026 8.42209V5.84037C60.5026 5.50296 60.6042 5.26824 60.793 5.13624C60.9818 5.00419 61.2428 4.93087 61.5626 4.93087C61.7951 4.93087 61.9982 4.96019 62.187 5.01887L62.4176 5.08673C62.4775 5.10324 62.521 5.11424 62.55 5.12155V8.8035C62.55 9.28759 62.4627 9.69831 62.3032 10.0504C62.1433 10.4024 61.9109 10.6958 61.6205 10.9305C61.3301 11.1652 60.9961 11.3413 60.5894 11.4586C60.1975 11.5759 59.762 11.6346 59.3117 11.6346C58.8467 11.6346 58.4258 11.5759 58.0335 11.4586C57.6415 11.3413 57.2928 11.1652 57.0024 10.9305C56.712 10.6958 56.4943 10.4024 56.3201 10.0504C56.1602 9.69831 56.0729 9.27291 56.0729 8.8035V5.84037C56.0729 5.50296 56.1749 5.26824 56.3638 5.13624C56.5521 5.00419 56.8136 4.93087 57.1334 4.93087C57.3654 4.93087 57.5689 4.96019 57.7578 5.01887L57.9884 5.08673C58.0483 5.10324 58.0918 5.11424 58.1208 5.12155V8.42209ZM64.6267 9.47832C64.6993 9.53695 64.8009 9.59563 64.9608 9.669C65.1207 9.74236 65.3095 9.81568 65.5273 9.87436C65.7451 9.93304 65.9918 9.99172 66.268 10.0357C66.5436 10.0797 66.834 10.1091 67.1391 10.1091C67.4878 10.1091 67.7493 10.0797 67.9234 10.0064C68.0975 9.94772 68.1848 9.83036 68.1848 9.669C68.1848 9.49295 68.1122 9.37563 67.967 9.31695C67.8219 9.25827 67.5894 9.19959 67.27 9.15559L66.602 9.08222C66.268 9.03823 65.9482 8.97954 65.6435 8.89154C65.3385 8.80354 65.0623 8.68618 64.8303 8.52482C64.5978 8.36345 64.409 8.15809 64.2785 7.90873C64.1475 7.65932 64.0749 7.35128 64.0749 6.96987C64.0749 6.64719 64.1328 6.35378 64.2491 6.08973C64.3653 5.82569 64.5394 5.59101 64.7866 5.38565C65.0025 5.20595 65.274 5.05995 65.5915 4.95747L65.7304 4.91624C66.1081 4.79888 66.5726 4.74019 67.0954 4.74019C67.633 4.74019 68.0833 4.76951 68.4752 4.84287C68.8671 4.91624 69.1869 5.01892 69.4773 5.1656C69.6372 5.2536 69.7677 5.35628 69.8692 5.47365C69.9712 5.59101 70.0144 5.75237 70.0144 5.92837C70.0144 6.06042 69.9855 6.19242 69.9276 6.2951C69.8692 6.39778 69.8113 6.50046 69.7387 6.57382C69.6843 6.62885 69.6298 6.67561 69.5814 6.71412L69.5352 6.74987C69.4773 6.79387 69.4336 6.82319 69.4189 6.82319C69.39 6.79387 69.3174 6.74987 69.2159 6.67651C69.0996 6.60314 68.9544 6.54451 68.7514 6.47114C68.5625 6.41246 68.33 6.35378 68.0686 6.2951C67.8071 6.23641 67.5021 6.22178 67.1538 6.22178C66.7761 6.22178 66.5 6.26578 66.3548 6.35378C66.2096 6.44182 66.137 6.55914 66.137 6.70582C66.137 6.85255 66.2096 6.95523 66.3405 7.01391C66.471 7.07255 66.6746 7.13123 66.9503 7.17528L68.1122 7.33659C68.4026 7.38064 68.6783 7.43932 68.9397 7.52732C69.2012 7.61532 69.4484 7.73268 69.6514 7.87936C69.855 8.04073 70.0291 8.23141 70.1454 8.46614C70.2616 8.70082 70.3342 8.99423 70.3342 9.34627C70.3342 10.065 70.0581 10.6225 69.521 11.0332C68.9834 11.4293 68.2285 11.6347 67.27 11.6347C66.7761 11.6347 66.3258 11.6053 65.9339 11.5319C65.5415 11.4586 65.2222 11.3853 64.9318 11.2973C64.6557 11.2093 64.4237 11.1066 64.2491 11.0185L63.8861 10.7985L64.6267 9.47832Z\" fill=\"#4FC4F9\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-amc16i\",\"data-framer-name\":\"Logo-frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zr02jb\",\"data-framer-name\":\"Group 69\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.6953 8.18137C15.6953 7.63591 15.6507 7.09248 15.5574 6.55469H8.00586V9.63519H12.3305C12.1517 10.629 11.5747 11.5082 10.7316 12.0654V14.0667H13.3135C14.825 12.6768 15.6953 10.6174 15.6953 8.18137Z\" fill=\"#4285F4\"/>\\n<path d=\"M8.00468 15.9989C10.1651 15.9989 11.9855 15.2904 13.3123 14.0675L10.7305 12.0662C10.0116 12.5535 9.08684 12.831 8.00468 12.831C5.91628 12.831 4.14444 11.4239 3.5092 9.5293H0.851562V11.5907C2.21143 14.2947 4.97794 15.9989 8.00468 15.9989Z\" fill=\"#34A853\"/>\\n<path d=\"M3.51197 9.53059C3.17594 8.53875 3.17594 7.46142 3.51197 6.4677V4.4082H0.852454C-0.284151 6.66945 -0.284151 9.3326 0.852454 11.594L3.51197 9.53059Z\" fill=\"#FBBC04\"/>\\n<path d=\"M8.00468 3.16818C9.14706 3.15071 10.2486 3.57976 11.0762 4.36783L13.3628 2.08507C11.9136 0.726416 9.99414 -0.0209258 8.00468 0.00044606C4.97794 0.00044606 2.20955 1.70656 0.851562 4.40856L3.51108 6.46993C4.14444 4.57348 5.91628 3.16818 8.00468 3.16818Z\" fill=\"#EA4335\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1esfau2\",\"data-framer-name\":\"Frame 4941\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:165,pixelWidth:400,src:\"https://framerusercontent.com/images/iJHLloCLDWCX0B4LdCp4638HpE.png\"},className:\"framer-3d42se\",\"data-framer-name\":\"image 40\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yffryp\",\"data-framer-name\":\"Frame 4942\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:152,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/K0Lcbp1Yt59aggkxQpXqGv2fTI.png\"},className:\"framer-gzjytc\",\"data-framer-name\":\"image 41\"})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{background:{alt:\"\",fit:\"fill\",pixelHeight:858,pixelWidth:572,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg\",srcSet:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg 572w\"}},vbCekHcm9:{background:{alt:\"\",fit:\"fill\",pixelHeight:858,pixelWidth:572,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,src:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg\",srcSet:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg 572w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:858,pixelWidth:572,src:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg\",srcSet:\"https://framerusercontent.com/images/r8A4sQofrcKzo1aWCeW0olDYZI.jpg 572w\"},className:\"framer-1w3pdmp\",\"data-framer-name\":\"UI-container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:50,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-nhtl1z\",\"data-framer-name\":\"UI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:560},className:\"framer-1m2w5aw\",\"data-framer-name\":\"UI-content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hugte0-container\",isModuleExternal:true,nodeId:\"LfioKLfVl\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LfioKLfVl\",isMixedBorderRadius:false,layoutId:\"LfioKLfVl\",loop:false,muted:true,objectFit:\"contain\",playing:true,poster:\"https://framerusercontent.com/images/Gst2mj18aEezLPOr6ftN5riUNIE.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/5Ddq7V7pWF8BuRpIXR2i5T6TG4.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=QohH89Eu5iM\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})})]})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+5238+0+51+0+3200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+5320+0+51+0+3200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8hciyw-container\",nodeId:\"hkzLbuQjw\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"hkzLbuQjw\",layoutId:\"hkzLbuQjw\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kzid7q\",\"data-framer-name\":\"Production Ready\",id:elementId27,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p2lyl6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{background:{alt:\"\",fit:\"fill\",pixelHeight:1546,pixelWidth:1024,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png\",srcSet:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png?scale-down-to=1024 678w,https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png 1024w\"}},vbCekHcm9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1546,pixelWidth:1024,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png\",srcSet:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png?scale-down-to=1024 678w,https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png 1024w\"}},WYajY4aty:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+8490+200+0),pixelHeight:1546,pixelWidth:1024,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png\",srcSet:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png?scale-down-to=1024 678w,https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png 1024w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+8572+200+0),pixelHeight:1546,pixelWidth:1024,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png\",srcSet:\"https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png?scale-down-to=1024 678w,https://framerusercontent.com/images/T1zlsLWGsXRnHF7NruiLfQhSv6Q.png 1024w\"},className:\"framer-nte2zy\",\"data-framer-name\":\"Border\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bd1j1d\",\"data-framer-name\":\"border-right\",style:{rotate:-180}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tf5skf\",\"data-framer-name\":\"border-right\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhxjmh\",\"data-framer-name\":\"Content-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161a29y\",\"data-framer-name\":\"_Production Ready \\xb7 Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gm3trp\",\"data-framer-name\":\"Hero-text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Production Ready since Day One\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"You\u2019re All Set\"})]}),className:\"framer-1cyr2f3\",\"data-framer-name\":\"Production Ready since Day One. You\u2019re All Set.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 80px)`,y:undefined},vbCekHcm9:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+195.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 240px)`,y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+195.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7m1zlu-container\",nodeId:\"wokzrERf7\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"wokzrERf7\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"wokzrERf7\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v95oif\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysktp0\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{height:0,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"1px\",y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fuh39-container\",nodeId:\"PkbxAwrRv\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"PkbxAwrRv\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"PkbxAwrRv\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 90px) / 3, 1px)`,y:undefined},vbCekHcm9:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 290px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wb2mrk-container\",nodeId:\"ibpAvvWW8\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Home_3ColCard,{EtVrJjUaz:\"Effortlessly handle increasing traffic and evolving needs.\",height:\"100%\",id:\"ibpAvvWW8\",KtvLP_WId:\"01\",layoutId:\"ibpAvvWW8\",style:{height:\"100%\",width:\"100%\"},VxKmKJIXd:\"Scalable\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{height:0,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"1px\",y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5u68m7-container\",nodeId:\"SVkfaYUcK\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"SVkfaYUcK\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"SVkfaYUcK\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 90px) / 3, 1px)`,y:undefined},vbCekHcm9:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 290px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11algnc-container\",nodeId:\"IaUwEIBrK\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Home_3ColCard,{EtVrJjUaz:\"Operate with peace of mind knowing you have a rock-solid foundation.\",height:\"100%\",id:\"IaUwEIBrK\",KtvLP_WId:\"02\",layoutId:\"IaUwEIBrK\",style:{height:\"100%\",width:\"100%\"},VxKmKJIXd:\"Stable\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{height:0,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"1px\",y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwstx-container\",nodeId:\"naZZ1oIeg\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"naZZ1oIeg\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"naZZ1oIeg\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 90px) / 3, 1px)`,y:undefined},vbCekHcm9:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 290px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g6tn2w-container\",nodeId:\"xnpE4IViC\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Home_3ColCard,{EtVrJjUaz:\"Enterprise-grade security for your critical data assets.\",height:\"100%\",id:\"xnpE4IViC\",KtvLP_WId:\"03\",layoutId:\"xnpE4IViC\",style:{height:\"100%\",width:\"100%\"},VxKmKJIXd:\"Secure\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{height:0,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+8490+200+120+0+0+0+0+196.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,width:\"1px\",y:(componentViewport?.y||0)+0+0+0+0+0+8572+200+120+0+0+0+0+196.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11xk89u-container\",nodeId:\"FSKkJ_B25\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"FSKkJ_B25\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"FSKkJ_B25\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})})]})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15c0zdu\",\"data-border\":true,\"data-framer-name\":\"Section-5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bo84o9\",\"data-framer-name\":\"ENTERPRISE\",id:elementId28,ref:ref30,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gY3E5c66J\"},motionChild:true,nodeId:\"kafuH_eRL\",openInNewTab:false,scopeId:\"gY3E5c66J\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ghz4vu framer-x1vqoh\",\"data-framer-name\":\"Section-Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dhaab2-container\",nodeId:\"ZX7wfgob1\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{XecZrhFkR:\"0px 0px 0px 80px\"},PYdrRSIXB:{XecZrhFkR:\"0px 0px 0px 20px\"},uELy0nRXr:{XecZrhFkR:\"0px 0px 0px 80px\"},vbCekHcm9:{variant:\"kPaQA_Km5\",XecZrhFkR:\"0px 0px 0px 10px\"}},children:/*#__PURE__*/_jsx(SectionHeader,{bU7PNa93F:20,ByKcAP_uj:\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",height:\"100%\",id:\"ZX7wfgob1\",iSeqLz55O:true,lacHpA_fL:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"ZX7wfgob1\",NW1trG1SF:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},UDpL_rIeZ:\"Enterprise\",variant:\"L0vCDIpu3\",width:\"100%\",XecZrhFkR:\"0px 0px 0px 100px\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fot7ps\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3iem67\",\"data-framer-name\":\"Hero-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e65chz\",\"data-framer-name\":\"Hero-text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uxxwsy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Solid AI Infrastructure\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"for Enterprise Success\"})]}),className:\"framer-frckrb\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x1v046\",\"data-styles-preset\":\"RTKpYVSdC\",style:{\"--framer-text-color\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},children:\"The AI transformation for enterprise requires not just tools, but grounded infrastructure. Dify offers a reliable platform to distribute AI capabilities across multiple departments for unparalleled efficiency.\"})}),className:\"framer-trcgyz\",\"data-framer-name\":\"The AI transformation for enterprise requires not just tools, but grounded infrastructure. Dify offers a reliable platform to distribute AI capabilities across multiple departments for unparalleled efficiency.\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c5lyh3\",\"data-framer-name\":\"Section-Enterprise\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7u77ue\",\"data-framer-name\":\"Subheader\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xqfyz-container\",nodeId:\"ghugavRQK\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"ghugavRQK\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"ghugavRQK\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":x7AretZFE\",webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{hash:\":x7AretZFE\",webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{hash:\":x7AretZFE\",webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{hash:\":x7AretZFE\",webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{hash:\":x7AretZFE\",webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined},{href:{webPageId:\"gY3E5c66J\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6)`},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+0+0+1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+0+0+1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3wlnl-container hidden-uayhca\",nodeId:\"PyB3SSLmL\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{bAa80lhP5:resolvedLinks1[9],VDtD2Xcg0:resolvedLinks1[8]},PYdrRSIXB:{bAa80lhP5:resolvedLinks1[5],VDtD2Xcg0:resolvedLinks1[4]},uELy0nRXr:{bAa80lhP5:resolvedLinks1[3],VDtD2Xcg0:resolvedLinks1[2]},WYajY4aty:{bAa80lhP5:resolvedLinks1[7],VDtD2Xcg0:resolvedLinks1[6]}},children:/*#__PURE__*/_jsx(EnterpriseSubheaderContentWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:90,ref:ref31,target:\"WWarM7bo5\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,bAa80lhP5:resolvedLinks1[1],BAIkb8FVe:\"j1vs2\",cP9LSmFs_:\"https://langgenius.typeform.com/dify-business?typeform-source=dify.ai\",height:\"100%\",id:\"PyB3SSLmL\",jZrNoqgHu:\"8px\",layoutId:\"PyB3SSLmL\",style:{height:\"100%\",width:\"100%\"},tUDvMPucS:\"Contact Sales\",variant:\"G2pejgPUN\",VDtD2Xcg0:resolvedLinks1[0],width:\"100%\",wTSys90Hb:ref31})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1adxvxv hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11nh589\",\"data-framer-name\":\"Frame 4064\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-74xan0\",\"data-styles-preset\":\"m8c5DMR11\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"IMPACT\"})}),className:\"framer-1m9urt1\",\"data-framer-name\":\"IMPACT\",fonts:[\"Inter\"],text:Fsp6hTlD_bKjP8M1dc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-emz1di\",\"data-framer-name\":\"Rectangle 2487\",style:{rotate:-90}})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+0+0+51}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+0+0+51,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vy1nyp-container\",nodeId:\"PvMu5c8yZ\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"PvMu5c8yZ\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"PvMu5c8yZ\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufltnn\",\"data-framer-name\":\"Numbers\",id:elementId29,ref:ref31,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13qegtu-container\",nodeId:\"yhTWqtQqS\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"},vbCekHcm9:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"}},children:/*#__PURE__*/_jsx(EnterpriseDataCard,{bvc4VwzXJ:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",dp_3koSTz:\"Dify accelerates every team to build, deploy and scale AI applications, turning bold ideas into reality.\",E8S8W0s5f:\"K+\",height:\"100%\",HtIrirgr3:true,id:\"yhTWqtQqS\",layoutId:\"yhTWqtQqS\",P2U9hvaFd:\"Built for Ambitious Teams\",q3TkePW8D:\"Teams\",style:{height:\"100%\",width:\"100%\"},tHMBWFNj1:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",UyJ7do4fG:10,variant:\"O1Jnm7Lq5\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63eft9-container hidden-uayhca hidden-7296qt\",nodeId:\"CyI3cdO5v\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"CyI3cdO5v\",layoutId:\"CyI3cdO5v\",style:{height:\"100%\"},variant:\"Y5hgUyFFc\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c0ei62-container\",nodeId:\"HR6vSpqLh\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"},vbCekHcm9:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"}},children:/*#__PURE__*/_jsx(EnterpriseDataCard,{bvc4VwzXJ:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",dp_3koSTz:\"From biomedicine to automotive, Dify delivers reliable solutions for them to gain a competitive edge.\",E8S8W0s5f:\"+\",height:\"100%\",HtIrirgr3:true,id:\"HR6vSpqLh\",layoutId:\"HR6vSpqLh\",P2U9hvaFd:\"Trusted by Industry Leaders\",q3TkePW8D:\"Industries\",style:{height:\"100%\",width:\"100%\"},tHMBWFNj1:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",UyJ7do4fG:60,variant:\"O1Jnm7Lq5\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17unv4g-container hidden-uayhca hidden-7296qt\",nodeId:\"WFqTciLxn\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"WFqTciLxn\",layoutId:\"WFqTciLxn\",style:{height:\"100%\"},variant:\"Y5hgUyFFc\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fpb8dq-container\",nodeId:\"pR68rIhE8\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"},vbCekHcm9:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"}},children:/*#__PURE__*/_jsx(EnterpriseDataCard,{bvc4VwzXJ:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",dp_3koSTz:\"The stable, scalable, and compliance-secure infrastructure for AI innovation anytime, anywhere.\",E8S8W0s5f:\"+\",height:\"100%\",HtIrirgr3:true,id:\"pR68rIhE8\",layoutId:\"pR68rIhE8\",P2U9hvaFd:\"AI Without Borders\",q3TkePW8D:\"Countries\",style:{height:\"100%\",width:\"100%\"},tHMBWFNj1:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",UyJ7do4fG:150,variant:\"O1Jnm7Lq5\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ney1f0-container hidden-uayhca hidden-7296qt\",nodeId:\"oUW5pnj8o\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"oUW5pnj8o\",layoutId:\"oUW5pnj8o\",style:{height:\"100%\"},variant:\"Y5hgUyFFc\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6)`,y:undefined},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+52+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+52+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qw9b12-container\",nodeId:\"gnp0OsBMF\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"},vbCekHcm9:{style:{width:\"100%\"},variant:\"W_rWs8TgE\"}},children:/*#__PURE__*/_jsx(EnterpriseDataCard,{bvc4VwzXJ:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",dp_3koSTz:\"Today, there're over a million apps running and solving real-world problems, deployed across departments and industries worldwide.\",E8S8W0s5f:\"M+\",height:\"100%\",HtIrirgr3:true,id:\"gnp0OsBMF\",layoutId:\"gnp0OsBMF\",P2U9hvaFd:\"Powered by Dify\",q3TkePW8D:\"Applications\",style:{height:\"100%\",width:\"100%\"},tHMBWFNj1:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",UyJ7do4fG:1,variant:\"O1Jnm7Lq5\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0vh3k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`max(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6, 1px)`},PYdrRSIXB:{width:`max(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 80px) / 6, 50px) * 6, 1px)`,y:undefined},uELy0nRXr:{width:`max(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 200px) / 6, 50px) * 6, 1px)`},vbCekHcm9:{width:`max(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 6, 1px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+0+0+50+0+381.2+0+468+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:831,width:`max(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 240px) / 6, 50px) * 6, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+0+0+50+0+381.2+0+468+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fy5hmx-container\",nodeId:\"UZsuhowhj\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"vk437t416\"},vbCekHcm9:{style:{width:\"100%\"},variant:\"dxNahBUgy\"}},children:/*#__PURE__*/_jsx(CasesEN,{height:\"100%\",id:\"UZsuhowhj\",layoutId:\"UZsuhowhj\",NX1EcCVGy:\"j1vs2\",p14m3oUE1:\"2qds3n\",style:{height:\"100%\",width:\"100%\"},variant:\"hxhDKGrkF\",width:\"100%\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{height:50,width:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9993 - 40px) / 6, 50px) * 5)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1z0msat-container hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",nodeId:\"VnPcyqCYF\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-6fb885fd-a529-4a6b-bb67-60ceb98870aa, rgb(0, 44, 214))\",En8F1FnWK:\"Get started\",height:\"100%\",id:\"VnPcyqCYF\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"VnPcyqCYF\",N_d2uuC0E:false,oM3fyv42q:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",SQLyqSrMa:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},T1Y25gYST:true,variant:\"mbYv9EQTs\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21r13p\",\"data-framer-name\":\"STARTUP\",id:elementId30,ref:ref32,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gY3E5c66J\"},motionChild:true,nodeId:\"vXA2Pr5fm\",openInNewTab:false,scopeId:\"gY3E5c66J\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hd2ca4 framer-x1vqoh\",\"data-framer-name\":\"Section-Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3u26l-container\",nodeId:\"uwE5Rxb2n\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{XecZrhFkR:\"0px 0px 0px 80px\"},PYdrRSIXB:{XecZrhFkR:\"0px 0px 0px 20px\"},uELy0nRXr:{XecZrhFkR:\"0px 0px 0px 80px\"},vbCekHcm9:{variant:\"kPaQA_Km5\",XecZrhFkR:\"0px 0px 0px 10px\"}},children:/*#__PURE__*/_jsx(SectionHeader,{bU7PNa93F:20,ByKcAP_uj:\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",height:\"100%\",id:\"uwE5Rxb2n\",iSeqLz55O:true,lacHpA_fL:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"uwE5Rxb2n\",NW1trG1SF:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},UDpL_rIeZ:\"Startup\",variant:\"L0vCDIpu3\",width:\"100%\",XecZrhFkR:\"0px 0px 0px 100px\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y52vts\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e90uv6\",\"data-framer-name\":\"Hero-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qv4zrx\",\"data-framer-name\":\"Hero-text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fwj28n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Unlock Your Potential\"})}),className:\"framer-dtjv8d\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"with AI\"})}),className:\"framer-1ybwh70\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x1v046\",\"data-styles-preset\":\"RTKpYVSdC\",style:{\"--framer-text-color\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},children:\"From AI idea validation to seek growth, Dify offers everything you need to make a real impact.  Enjoy everything out of the box and hit MVP with speed and agility in record time.\"})}),className:\"framer-1ae1hy1\",\"data-framer-name\":\"The AI transformation for enterprise requires not just tools, but grounded infrastructure. Dify offers a reliable platform to distribute AI capabilities across multiple departments for unparalleled efficiency.\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1954btk\",\"data-framer-name\":\"Button-container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18amyyu hidden-uayhca\",\"data-framer-name\":\"Empty\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16412t4\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`max(max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 5px) / 6, 50px) * 2, 1px)`},PYdrRSIXB:{width:`max(max((max((${componentViewport?.width||\"100vw\"} - 85px) / 6, 50px) * 6 + 5px) / 6, 50px) * 2, 1px)`,y:undefined},uELy0nRXr:{width:`max(max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 5px) / 6, 50px) * 2, 1px)`},vbCekHcm9:{width:`max(max((max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px) / 6, 50px) * 5, 1px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+51+0+382.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max(max((max((${componentViewport?.width||\"100vw\"} - 245px) / 6, 50px) * 6 + 5px) / 6, 50px) * 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+51+0+382.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19v9knb-container\",nodeId:\"DUKqaOPPJ\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-6fb885fd-a529-4a6b-bb67-60ceb98870aa, rgb(0, 44, 214))\",En8F1FnWK:\"Get Started\",height:\"100%\",id:\"DUKqaOPPJ\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"DUKqaOPPJ\",N_d2uuC0E:false,oM3fyv42q:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",SQLyqSrMa:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},T1Y25gYST:true,tenuaCvri:\"https://cloud.dify.ai/signin\",variant:\"mbYv9EQTs\",width:\"100%\",XMjKNHjmA:\"j1vs2\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e4u5bq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 3px) / 3, 1px)`},PYdrRSIXB:{height:310.5,width:`max((max((${componentViewport?.width||\"100vw\"} - 85px) / 6, 50px) * 6 + 3px) / 3, 1px)`,y:undefined},uELy0nRXr:{width:`max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 3px) / 3, 1px)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+51+0+433.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:`max((max((${componentViewport?.width||\"100vw\"} - 245px) / 6, 50px) * 6 + 3px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+51+0+433.2+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b8mmvm-container\",nodeId:\"l1VMRCKcH\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"l1VMRCKcH\",K41K7Grg5:false,layoutId:\"l1VMRCKcH\",MEbI4gDVG:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",o2RdmeNgL:addImageAlt({pixelHeight:50,pixelWidth:50,src:\"https://framerusercontent.com/images/GgcxmX78tOHBVj2OW3NpIXYXk.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},sZwnrgdW8:\"01\",tMbVOFMz_:true,variant:\"Ryxscuc2V\",width:\"100%\",wsiQzn74h:\"Go to Market at Velocity\",y0owaMkmz:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",zhRbjQDYn:\"Focus on your idea and validate your idea in record time without complex settings.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{height:310.5,y:undefined},vbCekHcm9:{height:0,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+51+0+433.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"1px\",y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+51+0+433.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rn71z3-container\",nodeId:\"swLSw9DAB\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"swLSw9DAB\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"swLSw9DAB\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 3px) / 3, 1px)`},PYdrRSIXB:{height:310.5,width:`max((max((${componentViewport?.width||\"100vw\"} - 85px) / 6, 50px) * 6 + 3px) / 3, 1px)`,y:undefined},uELy0nRXr:{width:`max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 3px) / 3, 1px)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+51+0+433.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:`max((max((${componentViewport?.width||\"100vw\"} - 245px) / 6, 50px) * 6 + 3px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+51+0+433.2+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i8gop0-container\",nodeId:\"BjuBPImZD\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"BjuBPImZD\",K41K7Grg5:false,layoutId:\"BjuBPImZD\",MEbI4gDVG:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",o2RdmeNgL:addImageAlt({pixelHeight:51,pixelWidth:50,src:\"https://framerusercontent.com/images/wbQvRJ7lB5blCUaTvTeqViSIo.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},sZwnrgdW8:\"01\",tMbVOFMz_:true,variant:\"Ryxscuc2V\",width:\"100%\",wsiQzn74h:\"Pivot with Agility, Not Pain\",y0owaMkmz:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",zhRbjQDYn:\"Easily bridge to models and tools that bring your application to the next level.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{height:310.5,y:undefined},vbCekHcm9:{height:0,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+51+0+433.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"1px\",y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+51+0+433.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ikili5-container\",nodeId:\"cAs9TUZIl\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineV,{height:\"100%\",id:\"cAs9TUZIl\",J5sIQhrfv:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"cAs9TUZIl\",style:{height:\"100%\",width:\"100%\"},variant:\"qcwqUshUK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 3px) / 3, 1px)`},PYdrRSIXB:{height:310.5,width:`max((max((${componentViewport?.width||\"100vw\"} - 85px) / 6, 50px) * 6 + 3px) / 3, 1px)`,y:undefined},uELy0nRXr:{width:`max((max((${componentViewport?.width||\"100vw\"} - 205px) / 6, 50px) * 6 + 3px) / 3, 1px)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 6, 50px) * 6 + 5px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+9500.2+0+1930.2+0+51+0+433.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:`max((max((${componentViewport?.width||\"100vw\"} - 245px) / 6, 50px) * 6 + 3px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+9582.2+0+1930.2+0+51+0+433.2+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-940l39-container\",nodeId:\"Jlh09Cnrx\",rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"Jlh09Cnrx\",K41K7Grg5:false,layoutId:\"Jlh09Cnrx\",MEbI4gDVG:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",o2RdmeNgL:addImageAlt({pixelHeight:50,pixelWidth:51,src:\"https://framerusercontent.com/images/WVWaFYaj8QQwu9nsYblfDFWRGx4.svg\"},\"\"),style:{width:\"100%\"},sZwnrgdW8:\"01\",tMbVOFMz_:true,variant:\"Ryxscuc2V\",width:\"100%\",wsiQzn74h:\"Data-Driven Success\",y0owaMkmz:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",zhRbjQDYn:\"Iterate based on concrete insights, and march towards product-market fit from the start.\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uoigl0\",\"data-framer-name\":\"Section-6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d12uxw\",\"data-framer-name\":\"COMMUNITY\",id:elementId31,ref:ref33,children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":zYJcwkUfB\",webPageId:\"gY3E5c66J\"},motionChild:true,nodeId:\"OWXjE_Ufx\",openInNewTab:false,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10aghhz framer-x1vqoh\",\"data-framer-name\":\"Section-Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jnh2sb-container\",\"data-framer-name\":\"Section-Header\",name:\"Section-Header\",nodeId:\"FC69Ndxb0\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{XecZrhFkR:\"0px 0px 0px 80px\"},PYdrRSIXB:{XecZrhFkR:\"0px 0px 0px 20px\"},uELy0nRXr:{XecZrhFkR:\"0px 0px 0px 80px\"},vbCekHcm9:{variant:\"kPaQA_Km5\",XecZrhFkR:\"0px 0px 0px 10px\"}},children:/*#__PURE__*/_jsx(SectionHeader,{bU7PNa93F:20,ByKcAP_uj:\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",height:\"100%\",id:\"FC69Ndxb0\",iSeqLz55O:true,lacHpA_fL:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"FC69Ndxb0\",name:\"Section-Header\",NW1trG1SF:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},UDpL_rIeZ:\"Community\",variant:\"L0vCDIpu3\",width:\"100%\",XecZrhFkR:\"0px 0px 0px 100px\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-38j8l2\",\"data-framer-name\":\"Community \\xb7 Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zfnqq7\",\"data-framer-name\":\"Hero-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h5oau2\",\"data-framer-name\":\"Hero-text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0xnna\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"Become Part of Our\"})}),className:\"framer-2dmfmh\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"Vibrant Community\"})}),className:\"framer-jxqkax\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x1v046\",\"data-styles-preset\":\"RTKpYVSdC\",style:{\"--framer-text-color\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},children:\"Dify is powered by the community of AI innovators worldwide. Join us and push the boundary of GenAI app development platform. \"})}),className:\"framer-mv25x\",\"data-framer-name\":\"The AI transformation for enterprise requires not just tools, but grounded infrastructure. Dify offers a reliable platform to distribute AI capabilities across multiple departments for unparalleled efficiency.\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-862amk\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 2)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 2)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 2)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+51+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 2)`,y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+51+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15xo0en-container\",nodeId:\"JIxGkb2Fq\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-6fb885fd-a529-4a6b-bb67-60ceb98870aa, rgb(0, 44, 214))\",En8F1FnWK:\"GitHub\",height:\"100%\",id:\"JIxGkb2Fq\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"JIxGkb2Fq\",N_d2uuC0E:true,oM3fyv42q:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",SQLyqSrMa:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},T1Y25gYST:true,tenuaCvri:\"https://github.com/langgenius/dify\",variant:\"mbYv9EQTs\",width:\"100%\",XMjKNHjmA:\"j1vs2\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ebvfvy\",\"data-framer-name\":\"Frame 4505\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jnv3qs\",\"data-framer-name\":\"Frame 4496\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"5M+\"})}),className:\"framer-1s6wepr\",\"data-framer-name\":\"4M+\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-922cbb65-3af9-48f8-a7de-4cb44e1a248d, rgb(138, 161, 255))\"},children:\"Downloads\"})}),className:\"framer-nw7q4h\",\"data-framer-name\":\"Downloads\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ng49k\",\"data-framer-name\":\"Frame 4498\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16il6tn-container\",\"data-framer-name\":\"Github Star Count\",isAuthoredByUser:true,name:\"Github Star Count\",nodeId:\"qwE7YkWlX\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{fontSize:\"1.3rem\"},PYdrRSIXB:{fontSize:\"1.1rem\"},uELy0nRXr:{fontSize:\"1.3rem\"},vbCekHcm9:{fontSize:\"1.2rem\"}},children:/*#__PURE__*/_jsx(App,{color:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",defaultText:\"GitHub\",fontFamily:\"'S\\xf6hne Buch', system-ui, -apple-system, sans-serif\",fontSize:\"1.4rem\",fontWeight:\"600\",height:\"100%\",id:\"qwE7YkWlX\",layoutId:\"qwE7YkWlX\",lineHeight:\"1.2\",name:\"Github Star Count\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-922cbb65-3af9-48f8-a7de-4cb44e1a248d, rgb(138, 161, 255))\"},children:\"Stars\"})}),className:\"framer-azqmor\",\"data-framer-name\":\"Stars\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pkn5c5\",\"data-framer-name\":\"Frame 4497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qxsago\",\"data-styles-preset\":\"jfgWTQKwu\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"800+\"})}),className:\"framer-1kr5xn9\",\"data-framer-name\":\"769\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auvqs0\",\"data-styles-preset\":\"e4tvnx951\",style:{\"--framer-text-color\":\"var(--token-922cbb65-3af9-48f8-a7de-4cb44e1a248d, rgb(138, 161, 255))\"},children:\"Contributors\"})}),className:\"framer-6om7wa\",\"data-framer-name\":\"Contributors\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo2873\",\"data-framer-name\":\"Button\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-c7uh9e hidden-uayhca\",\"data-framer-name\":\"Empty\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) / 1, 50px) * 2)`},PYdrRSIXB:{width:`calc(max(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) / 1, 50px) * 2)`,y:undefined},uELy0nRXr:{width:`calc(max(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) / 1, 50px) * 2)`},vbCekHcm9:{width:`calc(max(max((${componentViewport?.width||\"100vw\"} - 40px) / 6, 50px) / 1, 50px) * 5)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+51+0+382.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) / 1, 50px) * 2)`,y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+51+0+382.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da3dhb-container\",nodeId:\"gmmg7jMh4\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-34aef211-1374-4e82-9930-5e7a9b3f02f6, rgb(183, 198, 255))\",En8F1FnWK:\"Discord Community\",height:\"100%\",id:\"gmmg7jMh4\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\",layoutId:\"gmmg7jMh4\",N_d2uuC0E:true,oM3fyv42q:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",SQLyqSrMa:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},T1Y25gYST:true,tenuaCvri:\"https://discord.com/invite/FngNHpbcY7\",variant:\"mbYv9EQTs\",width:\"100%\",XGzPNnea3:addImageAlt({pixelHeight:20,pixelWidth:21,src:\"https://framerusercontent.com/images/uyO9ifRnwnQ9vuyklwVEINM7E.svg\"},\"\")})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4h9r3a hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",\"data-framer-name\":\"Mobile-Twitter\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-de4fj3\",\"data-framer-name\":\"Scroll\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l4q1nk\",\"data-framer-name\":\"Cards\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17lz3cy-container\",nodeId:\"OfCTsZXVg\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@TommyFalkowski\",Gb3sX9kZ0:true,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:385,pixelWidth:691,src:\"https://framerusercontent.com/images/3GRfhbJI7dJ5liovzjuQjMpviTk.png\",srcSet:\"https://framerusercontent.com/images/3GRfhbJI7dJ5liovzjuQjMpviTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/3GRfhbJI7dJ5liovzjuQjMpviTk.png 691w\"},\"\"),id:\"OfCTsZXVg\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Just tried out \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"OfCTsZXVg\",openInNewTab:true,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\" for the first time and I'm blown away. This is one of the most polished LLM-centric application I have used so far! Also includes support for local models through @ollama and any OpenAI-like API.\"]})}),jZLoPmgWW:\"9:05 PM \\xb7 Jun 26, 2024\",layoutId:\"OfCTsZXVg\",variant:\"hmqKD4c9s\",width:\"100%\",xm9LduPix:\"Tommy Falkowski\",ziyxUAW8F:true,ZuCMtR5uC:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jdxf7m-container\",nodeId:\"FVVfCDeVX\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@BamChrisI\",Gb3sX9kZ0:true,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:397,pixelWidth:691,src:\"https://framerusercontent.com/images/3Mkmjlg5Y4qQHoNijS30uk51gU.png\",srcSet:\"https://framerusercontent.com/images/3Mkmjlg5Y4qQHoNijS30uk51gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Mkmjlg5Y4qQHoNijS30uk51gU.png 691w\"},\"\"),id:\"FVVfCDeVX\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Wait, with \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"FVVfCDeVX\",openInNewTab:true,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\" you can build an no-code workflow to generate an AI podcast like notebooklm. Mindblowing.\"]})}),jZLoPmgWW:\"7:29 AM \\xb7 Oct 22, 2024\",layoutId:\"FVVfCDeVX\",tyYp6UNF0:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/Q7KYuJLIgtX5c35pBjWpAlb8ieA.jpg\"},\"\"),variant:\"hmqKD4c9s\",width:\"100%\",xm9LduPix:\"Chris\",ziyxUAW8F:true,ZuCMtR5uC:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,children:/*#__PURE__*/_jsx(Container,{className:\"framer-akol4l-container\",nodeId:\"AdBuPTeaG\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@_rajmehta_\",Gb3sX9kZ0:true,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:168,pixelWidth:329,src:\"https://framerusercontent.com/images/VFRvlyNgoLxIt8IiKfXu905Eps.jpeg\"},\"\"),id:\"AdBuPTeaG\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"If you are building AI applications it might be worth checking out the workflow feature by \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"AdBuPTeaG\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\". It allows developers to build complex LLM flows using a simple drag-and-drop interface. And the whole thing is open source too. Link to repo: \",/*#__PURE__*/_jsx(Link,{href:\"https://t.co/VR6oQKTXd3\",motionChild:true,nodeId:\"AdBuPTeaG\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"https://github.com/langgenius/dify\"})})]})}),jZLoPmgWW:\"11:54 PM \\xb7 Jan 8, 2025\",layoutId:\"AdBuPTeaG\",tyYp6UNF0:addImageAlt({pixelHeight:399,pixelWidth:399,src:\"https://framerusercontent.com/images/79gAcDtbLGUzv4NsOSuPhYgVGMw.jpg\"},\"\"),variant:\"hmqKD4c9s\",width:\"100%\",xm9LduPix:\"Raj Mehta\",ziyxUAW8F:true,ZuCMtR5uC:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3teqle-container\",nodeId:\"w07E6AGIY\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@FDgeo6\",Gb3sX9kZ0:false,height:\"100%\",id:\"w07E6AGIY\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Using Dify has been amazing so far and this is a milestone. Love it\"})}),jZLoPmgWW:\"11:07 PM \\xb7 Feb 10, 2025\",layoutId:\"w07E6AGIY\",tyYp6UNF0:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/lD9eG5dSObaomVkGcB9SA7WREsA.jpg\"},\"\"),variant:\"hmqKD4c9s\",width:\"100%\",xm9LduPix:\"Geo FD\",ziyxUAW8F:false,ZuCMtR5uC:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vtfvh-container\",nodeId:\"ejQsZZXbe\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@tomas_hk\",Gb3sX9kZ0:false,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:954,pixelWidth:1052,src:\"https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg\",srcSet:\"https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg 1052w\"},\"\"),id:\"ejQsZZXbe\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"That feeling when you give someone their 50,000th star on github \",/*#__PURE__*/_jsx(\"br\",{}),\"Congrats \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"ejQsZZXbe\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\". Amazing repo!\"]})}),jZLoPmgWW:\"12:24 AM \\xb7 Oct 30, 2024\",layoutId:\"ejQsZZXbe\",tyYp6UNF0:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/osbd7kFIRTWLMpsIYJfzRpIsK2Y.jpg\"},\"\"),variant:\"hmqKD4c9s\",width:\"100%\",xm9LduPix:\"Tomas Hernand Kofman\",ziyxUAW8F:true,ZuCMtR5uC:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15h0ems-container\",nodeId:\"kLSrsSdLc\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@shenjun1995\",Gb3sX9kZ0:false,height:\"100%\",id:\"kLSrsSdLc\",jQZ8zqvRG:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Perfect for generating multiple format marketing copy: AI Workflow tools for running 2 ChatGPT prompt in same time! \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Built my first AI demo using @Dify_AI workflows - it runs multiple prompts simultaneously and processes them in sequence. \"})]}),jZLoPmgWW:\"3:00 PM \\xb7 Nov 18, 2024\",layoutId:\"kLSrsSdLc\",tyYp6UNF0:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/2IVcDjjmGKy7JeLXVTyxG0tzYAU.webp\"},\"\"),variant:\"hmqKD4c9s\",width:\"100%\",xm9LduPix:\"Jun\",ziyxUAW8F:false,ZuCMtR5uC:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5zys4\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmq8iu hidden-uayhca\",\"data-framer-name\":\"Desktop-Twitter\",id:elementId32,ref:ref34,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x463h4\",\"data-framer-name\":\"Scroll\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m0fs6n\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:undefined,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+0+0+0+193+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"360px\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+0+0+0+193+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l6i36n-container\",nodeId:\"Ue8Fjo5qd\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"hmqKD4c9s\"}},children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@TommyFalkowski\",Gb3sX9kZ0:true,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:385,pixelWidth:691,src:\"https://framerusercontent.com/images/3GRfhbJI7dJ5liovzjuQjMpviTk.png\",srcSet:\"https://framerusercontent.com/images/3GRfhbJI7dJ5liovzjuQjMpviTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/3GRfhbJI7dJ5liovzjuQjMpviTk.png 691w\"},\"\"),id:\"Ue8Fjo5qd\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Just tried out \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"Ue8Fjo5qd\",openInNewTab:true,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\" for the first time and I'm blown away. This is one of the most polished LLM-centric application I have used so far! Also includes support for local models through @ollama and any OpenAI-like API.\"]})}),jZLoPmgWW:\"9:05 PM \\xb7 Jun 26, 2024\",layoutId:\"Ue8Fjo5qd\",style:{width:\"100%\"},variant:\"BG39v7ngj\",width:\"100%\",xm9LduPix:\"Tommy Falkowski\",ziyxUAW8F:true,ZuCMtR5uC:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:undefined,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+0+0+0+193+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"360px\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+0+0+0+193+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hmtnbq-container\",nodeId:\"xOjW3ycuG\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"hmqKD4c9s\"}},children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@BamChrisI\",Gb3sX9kZ0:true,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:397,pixelWidth:691,src:\"https://framerusercontent.com/images/3Mkmjlg5Y4qQHoNijS30uk51gU.png\",srcSet:\"https://framerusercontent.com/images/3Mkmjlg5Y4qQHoNijS30uk51gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Mkmjlg5Y4qQHoNijS30uk51gU.png 691w\"},\"\"),id:\"xOjW3ycuG\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Wait, with \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"xOjW3ycuG\",openInNewTab:true,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\" you can build an no-code workflow to generate an AI podcast like notebooklm. Mindblowing.\"]})}),jZLoPmgWW:\"7:29 AM \\xb7 Oct 22, 2024\",layoutId:\"xOjW3ycuG\",style:{width:\"100%\"},tyYp6UNF0:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/Q7KYuJLIgtX5c35pBjWpAlb8ieA.jpg\"},\"\"),variant:\"BG39v7ngj\",width:\"100%\",xm9LduPix:\"Chris\",ziyxUAW8F:true,ZuCMtR5uC:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:undefined,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+0+0+0+193+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"360px\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+0+0+0+193+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6viu22-container\",nodeId:\"hxog6CqDW\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"hmqKD4c9s\"}},children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@_rajmehta_\",Gb3sX9kZ0:true,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:168,pixelWidth:329,src:\"https://framerusercontent.com/images/VFRvlyNgoLxIt8IiKfXu905Eps.jpeg\"},\"\"),id:\"hxog6CqDW\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"If you are building AI applications it might be worth checking out the workflow feature by \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"hxog6CqDW\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\". It allows developers to build complex LLM flows using a simple drag-and-drop interface. And the whole thing is open source too. Link to repo: \",/*#__PURE__*/_jsx(Link,{href:\"https://t.co/VR6oQKTXd3\",motionChild:true,nodeId:\"hxog6CqDW\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"https://github.com/langgenius/dify\"})})]})}),jZLoPmgWW:\"11:54 PM \\xb7 Jan 8, 2025\",layoutId:\"hxog6CqDW\",style:{width:\"100%\"},tyYp6UNF0:addImageAlt({pixelHeight:399,pixelWidth:399,src:\"https://framerusercontent.com/images/79gAcDtbLGUzv4NsOSuPhYgVGMw.jpg\"},\"\"),variant:\"BG39v7ngj\",width:\"100%\",xm9LduPix:\"Raj Mehta\",ziyxUAW8F:true,ZuCMtR5uC:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:undefined,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+0+0+0+193+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"360px\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+0+0+0+193+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-70urnm-container\",nodeId:\"dj3xSrMVS\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"hmqKD4c9s\"}},children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@FDgeo6\",Gb3sX9kZ0:false,height:\"100%\",id:\"dj3xSrMVS\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Using Dify has been amazing so far and this is a milestone. Love it\"})}),jZLoPmgWW:\"11:07 PM \\xb7 Feb 10, 2025\",layoutId:\"dj3xSrMVS\",style:{width:\"100%\"},tyYp6UNF0:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/lD9eG5dSObaomVkGcB9SA7WREsA.jpg\"},\"\"),variant:\"BG39v7ngj\",width:\"100%\",xm9LduPix:\"Geo FD\",ziyxUAW8F:false,ZuCMtR5uC:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:undefined,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+0+0+0+193+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"360px\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+0+0+0+193+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vw4mkj-container\",nodeId:\"gB0BdMfUZ\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"hmqKD4c9s\"}},children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@tomas_hk\",Gb3sX9kZ0:false,height:\"100%\",IADdbHZE3:addImageAlt({pixelHeight:954,pixelWidth:1052,src:\"https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg\",srcSet:\"https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ppNRseS4h3JdOKmIAqvvxoJkJc.jpeg 1052w\"},\"\"),id:\"gB0BdMfUZ\",jQZ8zqvRG:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"That feeling when you give someone their 50,000th star on github \",/*#__PURE__*/_jsx(\"br\",{}),\"Congrats \",/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dify_ai\",motionChild:true,nodeId:\"gB0BdMfUZ\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"@dify_ai\"})}),\". Amazing repo!\"]})}),jZLoPmgWW:\"12:24 AM \\xb7 Oct 30, 2024\",layoutId:\"gB0BdMfUZ\",style:{width:\"100%\"},tyYp6UNF0:addImageAlt({pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/osbd7kFIRTWLMpsIYJfzRpIsK2Y.jpg\"},\"\"),variant:\"BG39v7ngj\",width:\"100%\",xm9LduPix:\"Tomas Hernand Kofman\",ziyxUAW8F:true,ZuCMtR5uC:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{width:undefined,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+0+0+0+193+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:\"360px\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+0+0+0+193+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojd6ea-container\",nodeId:\"ZhQAw_qL_\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"hmqKD4c9s\"}},children:/*#__PURE__*/_jsx(Comunity_twitter_card,{AdkLJGdO8:\"@shenjun1995\",Gb3sX9kZ0:true,height:\"100%\",id:\"ZhQAw_qL_\",jQZ8zqvRG:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Perfect for generating multiple format marketing copy: AI Workflow tools for running 2 ChatGPT prompt in same time! \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Built my first AI demo using @Dify_AI workflows - it runs multiple prompts simultaneously and processes them in sequence. \"})]}),jZLoPmgWW:\"3:00 PM \\xb7 Nov 18, 2024\",layoutId:\"ZhQAw_qL_\",style:{width:\"100%\"},tyYp6UNF0:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/2IVcDjjmGKy7JeLXVTyxG0tzYAU.webp\"},\"\"),variant:\"BG39v7ngj\",width:\"100%\",xm9LduPix:\"Jun\",ziyxUAW8F:false,ZuCMtR5uC:true})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max(${componentViewport?.width||\"100vw\"} / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+0+0+484.2+0+801}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:309,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+0+0+484.2+0+801,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xzdh3f-container\",nodeId:\"ERFGOtKpm\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{variant:\"GLs66tdmd\"}},children:/*#__PURE__*/_jsx(ReadyToBuild,{height:\"100%\",id:\"ERFGOtKpm\",layoutId:\"ERFGOtKpm\",style:{width:\"100%\"},variant:\"ODwplWIUC\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{height:1,width:`calc(max(${componentViewport?.width||\"100vw\"} / 6, 50px) * 6)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j2i70o-container hidden-nyekym hidden-1p8ytaq hidden-7296qt hidden-uhvcyq hidden-1sdix6d\",nodeId:\"MFkDMK6J5\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"MFkDMK6J5\",layoutId:\"MFkDMK6J5\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u12wb5\",\"data-framer-name\":\"ECOSYSTEM\",id:elementId33,ref:ref35,children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":tDJTORtUD\",webPageId:\"gY3E5c66J\"},motionChild:true,nodeId:\"Evzkz_4Nr\",openInNewTab:false,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ndbi4a framer-x1vqoh\",\"data-framer-name\":\"Section-Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+1595.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+1595.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kn6wub-container\",\"data-framer-name\":\"Section-Header\",name:\"Section-Header\",nodeId:\"i3GCooF3j\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{XecZrhFkR:\"0px 0px 0px 80px\"},PYdrRSIXB:{XecZrhFkR:\"0px 0px 0px 20px\"},uELy0nRXr:{XecZrhFkR:\"0px 0px 0px 80px\"},vbCekHcm9:{variant:\"kPaQA_Km5\",XecZrhFkR:\"0px 0px 0px 10px\"}},children:/*#__PURE__*/_jsx(SectionHeader,{bU7PNa93F:20,ByKcAP_uj:\"var(--token-3aaa4625-90f3-4e8c-ad24-9f8084b685ed, rgb(0, 0, 0))\",height:\"100%\",id:\"i3GCooF3j\",iSeqLz55O:true,lacHpA_fL:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"i3GCooF3j\",name:\"Section-Header\",NW1trG1SF:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},UDpL_rIeZ:\"Ecosystem\",variant:\"L0vCDIpu3\",width:\"100%\",XecZrhFkR:\"0px 0px 0px 100px\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qj1wr3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kd1nl2\",\"data-framer-name\":\"Hero-text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4wzca8\",\"data-framer-name\":\"Hero-text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xsuws2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-52cc61e9-0c51-46a1-a113-8323d31c84aa, rgb(51, 51, 51))\"},children:\"And, \"})}),className:\"framer-q4x678\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kfe3z4\",\"data-styles-preset\":\"PizrjbfHA\",style:{\"--framer-text-color\":\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\"},children:\"an Expanding Ecosystem Ahead\"})}),className:\"framer-dpicx6\",\"data-framer-name\":\"Solid AI Infrastructure for Enterprise Success\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbCekHcm9:{effect:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x1v046\",\"data-styles-preset\":\"RTKpYVSdC\",style:{\"--framer-text-color\":\"var(--token-1177b214-77e8-48ee-9d08-a4def50a6ad5, rgb(102, 102, 102))\"},children:\"Bridge any models and tools with plugins in seconds without touching the source code.  Discover, extend, or submit a plugin that brings more capabilities to the community.  \"})}),className:\"framer-zzxglp\",\"data-framer-name\":\"The AI transformation for enterprise requires not just tools, but grounded infrastructure. Dify offers a reliable platform to distribute AI capabilities across multiple departments for unparalleled efficiency.\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-arf1ni\",\"data-framer-name\":\"Button-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`max(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 2, 1px)`},PYdrRSIXB:{width:`max(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 2, 1px)`,y:undefined},uELy0nRXr:{width:`max(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 2, 1px)`},vbCekHcm9:{width:`max(max((${componentViewport?.width||\"100vw\"} - 38px) / 6, 50px) * 4.8, 1px)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+1595.2+0+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+1595.2+0+50+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kuj0qj-container\",nodeId:\"QVYaxZyZK\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(ButtonRollingEN,{c017Zn8sn:\"var(--token-6fb885fd-a529-4a6b-bb67-60ceb98870aa, rgb(0, 44, 214))\",En8F1FnWK:\"Explore Marketplace\",height:\"100%\",id:\"QVYaxZyZK\",IsgaRSR2p:true,jM75yS3bz:0,l5OPo9vEP:\"var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, rgb(0, 51, 255))\",layoutId:\"QVYaxZyZK\",N_d2uuC0E:false,oM3fyv42q:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",SQLyqSrMa:\"var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},T1Y25gYST:true,tenuaCvri:\"https://marketplace.dify.ai/?language=en-US\",variant:\"mbYv9EQTs\",width:\"100%\",XMjKNHjmA:\"j1vs2\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},PYdrRSIXB:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 6, 50px) * 6)`,y:undefined},uELy0nRXr:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 6, 50px) * 6)`},vbCekHcm9:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 38px) / 6, 50px) * 6)`,y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+1595.2+0+50+0+381.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:557,width:`calc(max((${componentViewport?.width||\"100vw\"} - 240px) / 6, 50px) * 6)`,y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+1595.2+0+50+0+381.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpeI4Ryot:{__framer__styleAppearEffectEnabled:undefined},PYdrRSIXB:{__framer__styleAppearEffectEnabled:undefined},uELy0nRXr:{__framer__styleAppearEffectEnabled:undefined},vbCekHcm9:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j1a1zu-container\",id:elementId34,nodeId:\"KPGesxHTV\",ref:ref2,rendersWithMotion:true,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{variant:\"MEGzy21BU\"},vbCekHcm9:{variant:\"TzRYrR0k3\"}},children:/*#__PURE__*/_jsx(EcosystemGallery,{height:\"100%\",id:\"KPGesxHTV\",layoutId:\"KPGesxHTV\",style:{width:\"100%\"},variant:\"lAwQAsbUt\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+12375.6+0+2583.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+12457.6+0+2583.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-na439l-container\",nodeId:\"iHggRXnss\",scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(LineH,{height:\"100%\",id:\"iHggRXnss\",layoutId:\"iHggRXnss\",style:{height:\"100%\",width:\"100%\"},variant:\"WKelwIDyj\",width:\"100%\",XI2eYLI_1:\"var(--token-99305e00-df49-420f-9023-3051f04a7455, rgb(229, 234, 255))\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{y:undefined},vbCekHcm9:{y:undefined},WYajY4aty:{y:(componentViewport?.y||0)+0+0+0+0+0+14960}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+15042,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wfmsto-container\",id:elementId35,nodeId:\"EEkqblwds\",ref:ref36,scopeId:\"gY3E5c66J\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PYdrRSIXB:{J7uGVVZOU:\"120px 40px 120px 40px\"},vbCekHcm9:{J7uGVVZOU:\"120px 20px 120px 20px\",variant:\"MlMC5zd79\"}},children:/*#__PURE__*/_jsx(FinalCTA,{height:\"100%\",id:\"EEkqblwds\",J7uGVVZOU:\"120px\",layoutId:\"EEkqblwds\",style:{width:\"100%\"},variant:\"NvH7ujaZJ\",width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gu9339 hidden-uayhca hidden-7296qt\",\"data-framer-name\":\"Helper (Same height as footer)\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u9alpw\",\"data-framer-name\":\"Progress Bar\",children:/*#__PURE__*/_jsx(MotionDivWithProgress1dk0sfj,{className:\"framer-1dk0sfj\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n6t9i6\",\"data-framer-name\":\"Head\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sV4ft.framer-x1vqoh, .framer-sV4ft .framer-x1vqoh { display: block; }\",\".framer-sV4ft.framer-nyekym { align-content: center; align-items: center; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #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: 1512px; }\",\".framer-sV4ft .framer-1lviifd-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-sV4ft .framer-1bq5lul-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-kv4kyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px 119px 0px 119px; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-297179, .framer-sV4ft .framer-1h7vx8p, .framer-sV4ft .framer-1oihkfe, .framer-sV4ft .framer-1tdwbbo, .framer-sV4ft .framer-12ef33x, .framer-sV4ft .framer-1asz8b8, .framer-sV4ft .framer-12n2cfu { background-color: var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); flex: none; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-sV4ft .framer-1fb7ncc-container { bottom: 0px; flex: none; height: 85vh; left: calc(50.00000000000002% - 100% / 2); pointer-events: auto; position: fixed; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-kcwegp-container { flex: none; height: 5vh; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 4; }\",\".framer-sV4ft .framer-1b6dt3n { align-content: center; align-items: center; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; pointer-events: none; position: relative; width: 100%; }\",\".framer-sV4ft .framer-aue4ca { align-content: center; align-items: center; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-sV4ft .framer-v6wdoz { box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(0, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 71px 120px 0px 120px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-t49gn8 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 5; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 100%; z-index: 10; }\",\".framer-sV4ft .framer-i993xw-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sV4ft .framer-o9yvnw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-ef7h1k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sV4ft .framer-bxx84u-container, .framer-sV4ft .framer-ut1zqo-container, .framer-sV4ft .framer-buao70-container, .framer-sV4ft .framer-1t5wvir-container, .framer-sV4ft .framer-13bti0h-container, .framer-sV4ft .framer-s0r9ku-container, .framer-sV4ft .framer-1inxip4-container, .framer-sV4ft .framer-ymvcq4-container, .framer-sV4ft .framer-16il6tn-container, .framer-sV4ft .framer-17lz3cy-container, .framer-sV4ft .framer-jdxf7m-container, .framer-sV4ft .framer-akol4l-container, .framer-sV4ft .framer-3teqle-container, .framer-sV4ft .framer-vtfvh-container, .framer-sV4ft .framer-15h0ems-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sV4ft .framer-1riaocz, .framer-sV4ft .framer-1m9urt1, .framer-sV4ft .framer-1s6wepr, .framer-sV4ft .framer-nw7q4h, .framer-sV4ft .framer-azqmor, .framer-sV4ft .framer-1kr5xn9, .framer-sV4ft .framer-6om7wa { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sV4ft .framer-wlgoi6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; left: 0px; pointer-events: none; position: absolute; top: 0px; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-sV4ft .framer-1b38ut7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sV4ft .framer-8bh3na-container { flex: none; height: 6px; position: relative; width: 6px; }\",\".framer-sV4ft .framer-9o3roj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sV4ft .framer-1melqt1 { --framer-paragraph-spacing: 5px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sV4ft .framer-nqco52-container, .framer-sV4ft .framer-1j2i70o-container { align-self: start; flex: none; grid-column: 1 / -1; height: 1px; justify-self: start; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1gwa8b0 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; grid-column: span 3; height: 249px; justify-content: space-between; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-sV4ft .framer-1ujylo4 { 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: 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-f77fdz { --framer-paragraph-spacing: 5px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sV4ft .framer-1whk1ld-container { flex: none; height: 50px; position: relative; width: 50%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sV4ft .framer-ybxnhi { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: 1 / -1; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-1pvmn8o-container, .framer-sV4ft .framer-eumdjr-container, .framer-sV4ft .framer-dqkv9d-container, .framer-sV4ft .framer-1uccnh2-container, .framer-sV4ft .framer-1wmtnvi-container, .framer-sV4ft .framer-1nmi4rj-container, .framer-sV4ft .framer-2u22kh-container, .framer-sV4ft .framer-163ifk6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sV4ft .framer-kxswus-container { align-self: start; flex: none; grid-column: span 6; height: auto; justify-self: start; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1pkqnft { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-63cluj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-1v8ez0v-container, .framer-sV4ft .framer-euoeht-container { flex: none; height: 1px; position: relative; width: 100%; z-index: 0; }\",\".framer-sV4ft .framer-1lm8hu1 { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(0, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-2m625n-container { align-self: center; flex: none; grid-column: 1 / -1; height: auto; justify-self: center; position: relative; width: 100%; }\",\".framer-sV4ft .framer-h853l1 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-ckcxg2 { 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: visible; padding: 0px 20px 0px 20px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-xjtp7-container, .framer-sV4ft .framer-10xxefs-container, .framer-sV4ft .framer-tcnzja-container, .framer-sV4ft .framer-w0fzmr-container, .framer-sV4ft .framer-1ujplqh-container, .framer-sV4ft .framer-xl8zfw-container, .framer-sV4ft .framer-8hciyw-container, .framer-sV4ft .framer-7m1zlu-container, .framer-sV4ft .framer-2xqfyz-container, .framer-sV4ft .framer-vy1nyp-container, .framer-sV4ft .framer-na439l-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1pyqdlh { align-content: center; align-items: center; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 430px; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-9mow4s-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-sV4ft .framer-thxa7n, .framer-sV4ft .framer-olxn7z, .framer-sV4ft .framer-1d12uxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-sV4ft .framer-1x2zkkm, .framer-sV4ft .framer-1volaqc, .framer-sV4ft .framer-hd2ca4, .framer-sV4ft .framer-10aghhz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; text-decoration: none; top: 0px; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-6lghwq-container, .framer-sV4ft .framer-1sf0nln-container, .framer-sV4ft .framer-1dhaab2-container, .framer-sV4ft .framer-1jnh2sb-container { flex: none; height: 5vh; min-height: 50px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-f4efz0, .framer-sV4ft .framer-r98z9e, .framer-sV4ft .framer-1elwlo4, .framer-sV4ft .framer-t6m4pi, .framer-sV4ft .framer-t1lr95, .framer-sV4ft .framer-23sed9, .framer-sV4ft .framer-krc4ha, .framer-sV4ft .framer-1i3e0mu, .framer-sV4ft .framer-18daiiz, .framer-sV4ft .framer-hua3y2, .framer-sV4ft .framer-1uxxwsy, .framer-sV4ft .framer-1fwj28n, .framer-sV4ft .framer-1c0xnna, .framer-sV4ft .framer-xsuws2 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-5wqsji, .framer-sV4ft .framer-hythoc { display: grid; flex: none; gap: 0px 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-oc4158, .framer-sV4ft .framer-g3wiaj { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 3; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1spj1kg, .framer-sV4ft .framer-1pqbap1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 760px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1c81pi7, .framer-sV4ft .framer-ojzgo6 { align-content: center; align-items: center; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); box-shadow: 0px 0px 0px 0.75px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 42px 40px 42px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-tfbavn, .framer-sV4ft .framer-qnqccj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sV4ft .framer-1askuq9, .framer-sV4ft .framer-t3sihv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-4hoas8, .framer-sV4ft .framer-17b1fi2, .framer-sV4ft .framer-5ke5d8, .framer-sV4ft .framer-frckrb, .framer-sV4ft .framer-dtjv8d, .framer-sV4ft .framer-1ybwh70, .framer-sV4ft .framer-2dmfmh, .framer-sV4ft .framer-jxqkax, .framer-sV4ft .framer-q4x678, .framer-sV4ft .framer-dpicx6 { --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-sV4ft .framer-bork7a { 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: flex-start; overflow: visible; padding: 0px 42px 0px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-bqvqch { align-content: flex-start; align-items: flex-start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-no2iog { align-content: center; align-items: center; align-self: start; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 3; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1wc5l7c, .framer-sV4ft .framer-1v1ytxm, .framer-sV4ft .framer-1vc7q9, .framer-sV4ft .framer-sdijjy, .framer-sV4ft .framer-on7dpq, .framer-sV4ft .framer-13swtza { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1ug6jr6, .framer-sV4ft .framer-10w4kxx, .framer-sV4ft .framer-188ta7r, .framer-sV4ft .framer-1cey1rl, .framer-sV4ft .framer-4qdx26, .framer-sV4ft .framer-10zfr2v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-19z13xn { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sV4ft .framer-1jtdfnf, .framer-sV4ft .framer-1432bdi { align-content: flex-end; align-items: flex-end; 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: min-content; }\",\".framer-sV4ft .framer-1npn739, .framer-sV4ft .framer-ar018k, .framer-sV4ft .framer-ludq9c, .framer-sV4ft .framer-1np17e9, .framer-sV4ft .framer-npswqx { 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: min-content; }\",\".framer-sV4ft .framer-xdod4l { --border-bottom-width: 1.0080000162124634px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1.0080000162124634px; --border-right-width: 1.0080000162124634px; --border-style: solid; --border-top-width: 1.0080000162124634px; -webkit-backdrop-filter: blur(20px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(20px); background-color: rgba(255, 255, 255, 0.2); 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: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-sV4ft .framer-qwgmzn-container { flex: none; height: 404px; position: relative; width: 505px; }\",\".framer-sV4ft .framer-qkj3qv, .framer-sV4ft .framer-m28hv2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1jqg4t5, .framer-sV4ft .framer-x9wy10 { align-content: center; align-items: center; background-color: var(--token-343b514b-aefd-4269-a5c8-e6e91764b2af, #ffffff); 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-sV4ft .framer-y04wn4, .framer-sV4ft .framer-1ho3f4f, .framer-sV4ft .framer-1wemvks, .framer-sV4ft .framer-1sy4zvo, .framer-sV4ft .framer-gx8l8s, .framer-sV4ft .framer-1raseaw { align-content: center; align-items: center; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1m97oxz, .framer-sV4ft .framer-10keur6, .framer-sV4ft .framer-s4dnrg, .framer-sV4ft .framer-oilbiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 50vh; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1w37yxh, .framer-sV4ft .framer-sra1ba, .framer-sV4ft .framer-1tqvgk0, .framer-sV4ft .framer-hf21cl, .framer-sV4ft .framer-tl0hta, .framer-sV4ft .framer-nhtl1z { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: rgba(229, 234, 255, 0.1); 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: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sV4ft .framer-zgmd7w, .framer-sV4ft .framer-e9bu26, .framer-sV4ft .framer-1ybnugq, .framer-sV4ft .framer-1ci0z4q, .framer-sV4ft .framer-1qonjwb, .framer-sV4ft .framer-1m2w5aw { aspect-ratio: 1.3341493268053854 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); position: relative; width: 100%; }\",\".framer-sV4ft .framer-1y42664-container, .framer-sV4ft .framer-15iqjfh-container, .framer-sV4ft .framer-1plt4a-container, .framer-sV4ft .framer-1hugte0-container { flex: none; height: 100%; left: calc(49.8305084745763% - 100% / 2); position: absolute; top: calc(50.22624434389142% - 100.4524886877828% / 2); width: 100%; }\",\".framer-sV4ft .framer-1qeil6a-container, .framer-sV4ft .framer-59jsb7-container, .framer-sV4ft .framer-18c5866-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-nzk3mh { flex: none; height: 222px; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-sV4ft .framer-1ia63h, .framer-sV4ft .framer-1w3pdmp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 50vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1vdmlnl-container { flex: none; height: 100%; left: calc(50.16949152542375% - 100% / 2); position: absolute; top: calc(49.77375565610862% - 100.4524886877828% / 2); width: 100%; }\",\".framer-sV4ft .framer-iwsxvw { 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: flex-start; overflow: hidden; padding: 0px 42px 0px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-iqy42p { align-content: flex-start; align-items: flex-start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 42px 0px 0px; position: relative; width: 636px; }\",\".framer-sV4ft .framer-1dvsxpl { 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: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-7eih3a { align-content: center; align-items: center; align-self: start; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 3; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-8dtty1, .framer-sV4ft .framer-1qdkv6i { align-content: flex-start; align-items: flex-start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 8px 40px 8px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-14pcdkh, .framer-sV4ft .framer-1y2aavg, .framer-sV4ft .framer-ourm1g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sV4ft .framer-13pa32u, .framer-sV4ft .framer-ziuyxs, .framer-sV4ft .framer-iatobl, .framer-sV4ft .framer-1na5wk5, .framer-sV4ft .framer-1dlrzts, .framer-sV4ft .framer-vs8gur { --framer-paragraph-spacing: 5px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sV4ft .framer-tyb05b, .framer-sV4ft .framer-1bntlv0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-u98549 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-vkn8dw, .framer-sV4ft .framer-dw171s, .framer-sV4ft .framer-190067y, .framer-sV4ft .framer-kwhkdj, .framer-sV4ft .framer-18u9c7g, .framer-sV4ft .framer-13zs7w1, .framer-sV4ft .framer-1hxnehm, .framer-sV4ft .framer-qsdacf, .framer-sV4ft .framer-k1evo0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sV4ft .framer-1gzytqm { flex: none; height: 16px; position: relative; width: 14px; }\",\".framer-sV4ft .framer-3y400s { flex: none; height: 16px; position: relative; width: 12px; }\",\".framer-sV4ft .framer-1pvykyq { flex: none; height: 13px; position: relative; width: 18px; }\",\".framer-sV4ft .framer-wtj4nu, .framer-sV4ft .framer-15d98rx, .framer-sV4ft .framer-zfhybz { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-sV4ft .framer-117nib7 { flex: none; height: 12px; position: relative; width: 18px; }\",\".framer-sV4ft .framer-1hfsp8e { flex: none; height: 16px; position: relative; width: 18px; }\",\".framer-sV4ft .framer-1xwhaxj { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-sV4ft .framer-puaurv { align-content: flex-start; align-items: flex-start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 20px 40px 8px; position: relative; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1chbogy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 4px 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-16hzgc9, .framer-sV4ft .framer-1mzsb9u, .framer-sV4ft .framer-jse726, .framer-sV4ft .framer-1gk9fs8, .framer-sV4ft .framer-uaonzf, .framer-sV4ft .framer-1x2nwuq, .framer-sV4ft .framer-amc16i, .framer-sV4ft .framer-1esfau2, .framer-sV4ft .framer-yffryp { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-sV4ft .framer-1ij81k1, .framer-sV4ft .framer-1k213lz { flex: none; gap: 0px; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-sV4ft .framer-1g3pzw8, .framer-sV4ft .framer-1vsb372 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-sV4ft .framer-16dfkzs { bottom: 5px; flex: none; left: 2px; position: absolute; right: 14px; top: 11px; }\",\".framer-sV4ft .framer-16rzvvb { bottom: 5px; flex: none; left: 3px; position: absolute; right: 13px; top: 11px; }\",\".framer-sV4ft .framer-r4vkq0, .framer-sV4ft .framer-1niisjc { bottom: 4px; flex: none; left: 3px; position: absolute; right: 13px; top: 12px; }\",\".framer-sV4ft .framer-1px3leq { bottom: 3px; flex: none; left: 4px; position: absolute; right: 12px; top: 13px; }\",\".framer-sV4ft .framer-17zzyv4 { bottom: 3px; flex: none; left: 5px; position: absolute; right: 11px; top: 13px; }\",\".framer-sV4ft .framer-1i5y241 { bottom: 3px; flex: none; left: 5px; position: absolute; right: 10px; top: 13px; }\",\".framer-sV4ft .framer-2tzgii, .framer-sV4ft .framer-zr02jb { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-sV4ft .framer-k5j3gv { flex: none; height: 16px; position: relative; width: 17px; }\",\".framer-sV4ft .framer-19fw98g { flex: none; height: 16px; position: relative; width: 47px; }\",\".framer-sV4ft .framer-5b3j5c { flex: none; height: 16px; position: relative; width: 71px; }\",\".framer-sV4ft .framer-3d42se { aspect-ratio: 4.166666507720947 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 67px; }\",\".framer-sV4ft .framer-gzjytc { aspect-ratio: 2.319999933242798 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); mix-blend-mode: multiply; position: relative; width: 37px; }\",\".framer-sV4ft .framer-1kzid7q { 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: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1p2lyl6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 1px; z-index: 2; }\",\".framer-sV4ft .framer-nte2zy { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-sV4ft .framer-bd1j1d { background: linear-gradient(0deg, #000000 0%, rgb(0, 14, 73) 17.790760099887848%, rgb(0, 51, 255) 100%); flex: 1 0 0px; height: 1px; position: relative; width: 10px; }\",\".framer-sV4ft .framer-1tf5skf { background: linear-gradient(90deg, var(--token-c81ff200-4032-4e31-b2c3-89f1a054da74, #000000) 0%, rgb(0, 14, 73) 17.790760099887848%, rgb(0, 51, 255) 100%); flex: none; height: 10px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-yhxjmh, .framer-sV4ft .framer-161a29y { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-gm3trp { 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: 40px 42px 40px 42px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1cyr2f3 { --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-sV4ft .framer-v95oif { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-ysktp0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1fuh39-container, .framer-sV4ft .framer-5u68m7-container, .framer-sV4ft .framer-1gwstx-container, .framer-sV4ft .framer-11xk89u-container { align-self: stretch; flex: none; height: auto; position: relative; width: 1px; }\",\".framer-sV4ft .framer-1wb2mrk-container, .framer-sV4ft .framer-11algnc-container, .framer-sV4ft .framer-g6tn2w-container { flex: 1 0 0px; height: 174px; position: relative; width: 1px; z-index: 2; }\",\".framer-sV4ft .framer-15c0zdu { --border-bottom-width: 1px; --border-color: #e5eaff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-sV4ft .framer-1bo84o9 { 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: visible; padding: 0px 0px 200px 0px; position: relative; scroll-margin-top: 40px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1ghz4vu, .framer-sV4ft .framer-1ndbi4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; text-decoration: none; top: 0px; width: 100%; z-index: 3; }\",\".framer-sV4ft .framer-1fot7ps { background-color: #ffffff; display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-3iem67 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 6; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-e65chz, .framer-sV4ft .framer-qv4zrx, .framer-sV4ft .framer-h5oau2, .framer-sV4ft .framer-4wzca8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-trcgyz, .framer-sV4ft .framer-1ae1hy1, .framer-sV4ft .framer-mv25x, .framer-sV4ft .framer-zzxglp { --framer-paragraph-spacing: 5px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 85%; word-break: break-word; word-wrap: break-word; }\",\".framer-sV4ft .framer-c5lyh3 { align-content: center; align-items: center; align-self: start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 6; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-7u77ue { align-content: center; align-items: center; background-color: var(--token-343b514b-aefd-4269-a5c8-e6e91764b2af, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 49px; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-3wlnl-container, .framer-sV4ft .framer-15xo0en-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1adxvxv { align-content: flex-start; align-items: flex-start; background-color: var(--token-fcf031dd-c493-436a-bf42-89f71585af39, #f5f5f5); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 18px 20px 18px 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-11nh589 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sV4ft .framer-emz1di { background-color: var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, #0033ff); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 4px; position: relative; width: 4px; }\",\".framer-sV4ft .framer-ufltnn { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 90px; width: 100%; }\",\".framer-sV4ft .framer-13qegtu-container, .framer-sV4ft .framer-c0ei62-container, .framer-sV4ft .framer-fpb8dq-container, .framer-sV4ft .framer-1qw9b12-container { flex: 1 0 0px; height: 416px; position: relative; width: 1px; }\",\".framer-sV4ft .framer-63eft9-container, .framer-sV4ft .framer-17unv4g-container, .framer-sV4ft .framer-1ney1f0-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-sV4ft .framer-1f0vh3k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1fy5hmx-container { flex: 1 0 0px; height: 831px; position: relative; width: 1px; }\",\".framer-sV4ft .framer-1z0msat-container { align-self: start; flex: none; grid-column: span 5; height: 50px; justify-self: start; position: relative; width: 100%; }\",\".framer-sV4ft .framer-21r13p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 200px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-sV4ft .framer-d3u26l-container, .framer-sV4ft .framer-1kn6wub-container { flex: none; height: 5vh; min-height: 50px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-y52vts { display: grid; flex: none; gap: 1px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1e90uv6 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 6; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1954btk { align-self: center; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: grid; flex: none; gap: 0px 0px; grid-auto-rows: min-content; grid-column: 1 / -1; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: end; justify-self: end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-18amyyu { align-self: center; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: grid; flex: none; gap: 0px 0px; grid-auto-rows: min-content; grid-column: span 4; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: end; justify-self: end; min-height: 50px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-16412t4 { align-content: center; align-items: center; align-self: center; background-color: #0033ff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: span 2; height: min-content; justify-content: center; justify-self: end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-19v9knb-container, .framer-sV4ft .framer-1kuj0qj-container { flex: 1 0 0px; height: 50px; position: relative; width: 1px; }\",\".framer-sV4ft .framer-e4u5bq { align-content: center; align-items: center; align-self: start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: span 6; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1b8mmvm-container, .framer-sV4ft .framer-i8gop0-container { align-self: stretch; flex: 2 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-sV4ft .framer-rn71z3-container, .framer-sV4ft .framer-ikili5-container { align-self: stretch; flex: none; height: auto; position: relative; width: 1px; z-index: 0; }\",\".framer-sV4ft .framer-940l39-container { flex: 2 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-sV4ft .framer-uoigl0 { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-38j8l2 { display: grid; flex: none; gap: 1px 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-zfnqq7 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 4; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-862amk { align-content: flex-end; align-items: flex-end; align-self: start; background-color: #ffffff; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 2; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1ebvfvy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1jnv3qs, .framer-sV4ft .framer-18ng49k, .framer-sV4ft .framer-pkn5c5 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sV4ft .framer-1eo2873 { align-self: start; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-column: span 6; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: end; justify-self: end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-c7uh9e { align-self: center; display: grid; flex: none; gap: 0px 0px; grid-auto-rows: min-content; grid-column: span 4; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: end; justify-self: end; min-height: 50px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1da3dhb-container { align-self: start; flex: none; grid-column: span 2; height: 50px; justify-self: start; position: relative; width: 100%; }\",\".framer-sV4ft .framer-4h9r3a { align-content: center; align-items: center; background-color: var(--token-343b514b-aefd-4269-a5c8-e6e91764b2af, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 390px; }\",\".framer-sV4ft .framer-de4fj3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 60px 0px 60px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1l4q1nk, .framer-sV4ft .framer-1m0fs6n { 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: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sV4ft .framer-1h5zys4 { display: grid; flex: none; gap: 1px 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 1px 120px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-dmq8iu { align-content: center; align-items: center; align-self: start; background-color: var(--token-343b514b-aefd-4269-a5c8-e6e91764b2af, #ffffff); box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: 1 / -1; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1x463h4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 250px; height: 80vh; justify-content: flex-start; overflow: auto; padding: 120px 0px 120px 20px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-1l6i36n-container, .framer-sV4ft .framer-hmtnbq-container, .framer-sV4ft .framer-6viu22-container, .framer-sV4ft .framer-70urnm-container, .framer-sV4ft .framer-1vw4mkj-container, .framer-sV4ft .framer-ojd6ea-container { flex: none; height: auto; position: relative; width: 360px; }\",\".framer-sV4ft .framer-xzdh3f-container { align-self: start; flex: none; grid-column: span 6; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-sV4ft .framer-u12wb5 { align-content: center; align-items: center; background-color: var(--token-343b514b-aefd-4269-a5c8-e6e91764b2af, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 40px; width: 100%; z-index: 1; }\",\".framer-sV4ft .framer-qj1wr3 { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(6, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-kd1nl2 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 4; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-arf1ni { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: span 2; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1j1a1zu-container { align-self: start; flex: none; grid-column: 1 / -1; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-sV4ft .framer-wfmsto-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-sV4ft .framer-gu9339 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 85vh; justify-content: center; opacity: 0; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; }\",\".framer-sV4ft .framer-1u9alpw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 2px; justify-content: flex-start; left: -25px; overflow: visible; padding: 0px; position: fixed; top: 0px; width: 103%; z-index: 4; }\",\".framer-sV4ft .framer-1dk0sfj { background-color: var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, #0033ff); flex: none; height: 2px; overflow: visible; position: relative; width: 1%; z-index: 3; }\",\".framer-sV4ft .framer-n6t9i6 { -webkit-filter: blur(15px); background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -17px; filter: blur(15px); flex: none; overflow: hidden; position: absolute; right: -26px; top: -17px; width: 52px; will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-sV4ft[data-border=\"true\"]::after, .framer-sV4ft [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; }','.framer-sV4ft[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-sV4ft [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-sV4ft[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-sV4ft [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-sV4ft[data-hide-scrollbars=\"true\"], .framer-sV4ft [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (max-width: 809px) { .framer-sV4ft.framer-nyekym { width: 390px; } .framer-sV4ft .framer-1lviifd-container, .framer-sV4ft .framer-kxswus-container, .framer-sV4ft .framer-1qeil6a-container, .framer-sV4ft .framer-59jsb7-container, .framer-sV4ft .framer-1wemvks, .framer-sV4ft .framer-18c5866-container, .framer-sV4ft .framer-8dtty1, .framer-sV4ft .framer-1qdkv6i, .framer-sV4ft .framer-1raseaw, .framer-sV4ft .framer-puaurv, .framer-sV4ft .framer-ourm1g, .framer-sV4ft .framer-16hzgc9 { order: 0; } .framer-sV4ft .framer-kv4kyj { order: 2; padding: 0px 19px 0px 19px; } .framer-sV4ft .framer-1fb7ncc-container { bottom: unset; height: auto; left: unset; order: 6; position: relative; z-index: 2; } .framer-sV4ft .framer-kcwegp-container { bottom: 0px; height: 50px; order: 1; right: unset; top: unset; width: 100%; } .framer-sV4ft .framer-1b6dt3n { order: 4; padding: 70px 0px 0px 0px; } .framer-sV4ft .framer-v6wdoz, .framer-sV4ft .framer-f4efz0, .framer-sV4ft .framer-23sed9, .framer-sV4ft .framer-1fot7ps, .framer-sV4ft .framer-y52vts, .framer-sV4ft .framer-38j8l2 { padding: 0px 20px 0px 20px; } .framer-sV4ft .framer-t49gn8 { grid-column: span 6; order: 1; padding: 40px 8px 40px 8px; } .framer-sV4ft .framer-o9yvnw { gap: 30px; } .framer-sV4ft .framer-ef7h1k { width: 100%; } .framer-sV4ft .framer-1riaocz { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-sV4ft .framer-1b38ut7 { will-change: unset; } .framer-sV4ft .framer-nqco52-container, .framer-sV4ft .framer-1ho3f4f, .framer-sV4ft .framer-gx8l8s, .framer-sV4ft .framer-jse726, .framer-sV4ft .framer-c5lyh3, .framer-sV4ft .framer-xzdh3f-container { order: 2; } .framer-sV4ft .framer-1gwa8b0 { background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); gap: 40px; grid-column: span 5; height: min-content; justify-content: flex-start; order: 4; } .framer-sV4ft .framer-1ujylo4 { padding: 20px 8px 20px 8px; } .framer-sV4ft .framer-1whk1ld-container { width: 100%; will-change: unset; } .framer-sV4ft .framer-ybxnhi { grid-column: span 6; order: 5; } .framer-sV4ft .framer-thxa7n, .framer-sV4ft .framer-olxn7z { background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); gap: 0px; padding: 0px 0px 160px 0px; } .framer-sV4ft .framer-1x2zkkm, .framer-sV4ft .framer-1volaqc, .framer-sV4ft .framer-1ghz4vu, .framer-sV4ft .framer-hd2ca4, .framer-sV4ft .framer-10aghhz { height: 5vh; min-height: 50px; } .framer-sV4ft .framer-6lghwq-container { height: 100%; } .framer-sV4ft .framer-5wqsji { background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); gap: 1px 1px; padding: 0px; z-index: 1; } .framer-sV4ft .framer-oc4158, .framer-sV4ft .framer-g3wiaj { grid-column: 1 / -1; order: 0; position: relative; top: unset; z-index: 2; } .framer-sV4ft .framer-1spj1kg { height: min-content; order: 0; } .framer-sV4ft .framer-1c81pi7, .framer-sV4ft .framer-ojzgo6 { box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); padding: 60px 8px 60px 8px; } .framer-sV4ft .framer-no2iog, .framer-sV4ft .framer-7eih3a { background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); grid-column: 1 / -1; order: 1; } .framer-sV4ft .framer-1jqg4t5, .framer-sV4ft .framer-x9wy10 { gap: 60px; } .framer-sV4ft .framer-y04wn4, .framer-sV4ft .framer-1m97oxz, .framer-sV4ft .framer-10keur6, .framer-sV4ft .framer-1ia63h, .framer-sV4ft .framer-1sy4zvo, .framer-sV4ft .framer-s4dnrg, .framer-sV4ft .framer-oilbiw, .framer-sV4ft .framer-1mzsb9u, .framer-sV4ft .framer-1w3pdmp, .framer-sV4ft .framer-1z0msat-container, .framer-sV4ft .framer-1j2i70o-container { order: 1; } .framer-sV4ft .framer-zgmd7w, .framer-sV4ft .framer-1ybnugq, .framer-sV4ft .framer-1ci0z4q, .framer-sV4ft .framer-1qonjwb { height: var(--framer-aspect-ratio-supported, 221px); } .framer-sV4ft .framer-e9bu26, .framer-sV4ft .framer-1m2w5aw { height: var(--framer-aspect-ratio-supported, 222px); } .framer-sV4ft .framer-1sf0nln-container, .framer-sV4ft .framer-1dhaab2-container, .framer-sV4ft .framer-d3u26l-container, .framer-sV4ft .framer-1jnh2sb-container { height: 100%; min-height: unset; } .framer-sV4ft .framer-hythoc { padding: 0px; z-index: 1; } .framer-sV4ft .framer-1pqbap1 { height: min-content; } .framer-sV4ft .framer-1gk9fs8 { order: 3; } .framer-sV4ft .framer-uaonzf { order: 4; } .framer-sV4ft .framer-1x2nwuq { order: 5; } .framer-sV4ft .framer-amc16i { order: 6; } .framer-sV4ft .framer-1esfau2 { order: 7; } .framer-sV4ft .framer-yffryp { order: 8; } .framer-sV4ft .framer-1kzid7q { padding: 0px 0px 100px 0px; } .framer-sV4ft .framer-1p2lyl6 { padding: 120px 20px 120px 20px; } .framer-sV4ft .framer-bd1j1d { width: 4px; } .framer-sV4ft .framer-1tf5skf { height: 4px; } .framer-sV4ft .framer-gm3trp { padding: 40px 20px 40px 20px; } .framer-sV4ft .framer-ysktp0 { flex-direction: column; padding: 0px; } .framer-sV4ft .framer-1fuh39-container, .framer-sV4ft .framer-5u68m7-container, .framer-sV4ft .framer-1gwstx-container, .framer-sV4ft .framer-11xk89u-container, .framer-sV4ft .framer-rn71z3-container, .framer-sV4ft .framer-ikili5-container { align-self: unset; flex: 1 0 0px; height: 1px; } .framer-sV4ft .framer-1wb2mrk-container, .framer-sV4ft .framer-11algnc-container, .framer-sV4ft .framer-g6tn2w-container, .framer-sV4ft .framer-940l39-container { flex: none; width: 100%; } .framer-sV4ft .framer-15c0zdu { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-sV4ft .framer-3iem67 { gap: 24px; order: 0; padding: 60px 8px 60px 8px; } .framer-sV4ft .framer-e65chz { gap: 24px; } .framer-sV4ft .framer-ufltnn, .framer-sV4ft .framer-e4u5bq { flex-direction: column; } .framer-sV4ft .framer-13qegtu-container, .framer-sV4ft .framer-c0ei62-container, .framer-sV4ft .framer-fpb8dq-container, .framer-sV4ft .framer-1qw9b12-container { flex: none; height: auto; width: 100%; } .framer-sV4ft .framer-1fy5hmx-container { height: auto; } .framer-sV4ft .framer-21r13p, .framer-sV4ft .framer-1d12uxw { gap: 0px; } .framer-sV4ft .framer-1e90uv6 { padding: 60px 8px 60px 8px; } .framer-sV4ft .framer-16412t4, .framer-sV4ft .framer-1da3dhb-container { grid-column: span 5; } .framer-sV4ft .framer-1b8mmvm-container, .framer-sV4ft .framer-i8gop0-container { align-self: unset; flex: none; width: 100%; } .framer-sV4ft .framer-zfnqq7 { grid-column: 1 / -1; padding: 60px 8px 60px 8px; } .framer-sV4ft .framer-862amk { grid-column: span 6; } .framer-sV4ft .framer-1ebvfvy { flex: none; height: min-content; padding: 40px 16px 40px 16px; } .framer-sV4ft .framer-4h9r3a { background-color: unset; box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); width: 100%; } .framer-sV4ft .framer-1h5zys4 { padding: 0px; } .framer-sV4ft .framer-1ndbi4a { gap: 0px; height: 5vh; min-height: 50px; } .framer-sV4ft .framer-1kn6wub-container { height: 100%; min-height: unset; order: 0; top: 46px; } .framer-sV4ft .framer-qj1wr3 { padding: 0px 19px 0px 19px; } .framer-sV4ft .framer-kd1nl2 { grid-column: 1 / -1; padding: 40px 8px 40px 8px; } .framer-sV4ft .framer-arf1ni { grid-column: 1 / -1; width: 80%; } .framer-sV4ft .framer-1u9alpw { align-content: flex-start; align-items: flex-start; flex-direction: column; left: -6px; order: 5; width: 103%; } .framer-sV4ft .framer-n6t9i6 { -webkit-filter: blur(0px); background-color: var(--token-1bf8479d-b6a4-4f0a-9249-8bfab2a76212, #0033ff); border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; bottom: 0px; filter: blur(0px); left: 0px; right: unset; top: 0px; width: 0px; will-change: unset; }}\",\"@media (min-width: 1440px) and (max-width: 1511px) { .framer-sV4ft.framer-nyekym { width: 1440px; } .framer-sV4ft .framer-v6wdoz { padding: 71px 100px 0px 100px; } .framer-sV4ft .framer-ybxnhi { align-self: center; justify-self: center; } .framer-sV4ft .framer-1lm8hu1, .framer-sV4ft .framer-5wqsji, .framer-sV4ft .framer-hythoc, .framer-sV4ft .framer-1fot7ps, .framer-sV4ft .framer-y52vts, .framer-sV4ft .framer-38j8l2, .framer-sV4ft .framer-qj1wr3 { padding: 0px 100px 0px 100px; } .framer-sV4ft .framer-qwgmzn-container { height: 330px; width: 440px; } .framer-sV4ft .framer-1h5zys4 { padding: 0px 100px 1px 100px; }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-sV4ft.framer-nyekym { width: 810px; } .framer-sV4ft .framer-1lviifd-container, .framer-sV4ft .framer-1qeil6a-container, .framer-sV4ft .framer-59jsb7-container, .framer-sV4ft .framer-1wemvks, .framer-sV4ft .framer-8dtty1, .framer-sV4ft .framer-1qdkv6i { order: 0; } .framer-sV4ft .framer-1bq5lul-container, .framer-sV4ft .framer-y04wn4 { order: 1; } .framer-sV4ft .framer-1fb7ncc-container { bottom: unset; left: unset; order: 5; position: relative; } .framer-sV4ft .framer-kcwegp-container { order: 3; right: unset; width: 100%; } .framer-sV4ft .framer-1b6dt3n { order: 4; } .framer-sV4ft .framer-v6wdoz { padding: 71px 40px 0px 40px; } .framer-sV4ft .framer-t49gn8, .framer-sV4ft .framer-no2iog { grid-column: span 6; } .framer-sV4ft .framer-1whk1ld-container { width: 100%; } .framer-sV4ft .framer-1pkqnft { padding: 120px 0px 120px 0px; } .framer-sV4ft .framer-63cluj, .framer-sV4ft .framer-1spj1kg { height: min-content; } .framer-sV4ft .framer-1lm8hu1, .framer-sV4ft .framer-5wqsji, .framer-sV4ft .framer-hythoc, .framer-sV4ft .framer-1fot7ps, .framer-sV4ft .framer-y52vts, .framer-sV4ft .framer-38j8l2, .framer-sV4ft .framer-qj1wr3 { padding: 0px 40px 0px 40px; } .framer-sV4ft .framer-1x2zkkm, .framer-sV4ft .framer-1volaqc { z-index: 3; } .framer-sV4ft .framer-6lghwq-container, .framer-sV4ft .framer-1sf0nln-container, .framer-sV4ft .framer-1jnh2sb-container, .framer-sV4ft .framer-1kn6wub-container { height: 50px; min-height: unset; } .framer-sV4ft .framer-oc4158, .framer-sV4ft .framer-g3wiaj { background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); grid-column: 1 / -1; justify-content: flex-start; top: 50px; z-index: 2; } .framer-sV4ft .framer-1c81pi7, .framer-sV4ft .framer-ojzgo6 { padding: 40px 8px 40px 8px; } .framer-sV4ft .framer-1jqg4t5, .framer-sV4ft .framer-x9wy10 { gap: 60px; } .framer-sV4ft .framer-1m97oxz, .framer-sV4ft .framer-10keur6, .framer-sV4ft .framer-s4dnrg, .framer-sV4ft .framer-oilbiw { height: 590px; order: 1; } .framer-sV4ft .framer-zgmd7w, .framer-sV4ft .framer-e9bu26, .framer-sV4ft .framer-1ybnugq, .framer-sV4ft .framer-1ci0z4q, .framer-sV4ft .framer-1qonjwb, .framer-sV4ft .framer-1m2w5aw { height: var(--framer-aspect-ratio-supported, 478px); } .framer-sV4ft .framer-1ho3f4f { order: 2; } .framer-sV4ft .framer-nzk3mh, .framer-sV4ft .framer-940l39-container, .framer-sV4ft .framer-zfnqq7 { height: 100%; } .framer-sV4ft .framer-1ia63h, .framer-sV4ft .framer-1w3pdmp { height: 590px; } .framer-sV4ft .framer-1pqbap1 { background-color: var(--token-f8eefac5-9d84-42a8-8393-db643ea5fe70, #ffffff); height: min-content; } .framer-sV4ft .framer-7eih3a { grid-column: 1 / -1; } .framer-sV4ft .framer-tyb05b { width: 70%; } .framer-sV4ft .framer-1p2lyl6 { padding: 120px 40px 120px 40px; } .framer-sV4ft .framer-gm3trp { padding: 40px 20px 40px 20px; } .framer-sV4ft .framer-ysktp0 { padding: 0px; } .framer-sV4ft .framer-1dhaab2-container, .framer-sV4ft .framer-d3u26l-container { min-height: unset; } .framer-sV4ft .framer-ufltnn { flex-direction: column; } .framer-sV4ft .framer-13qegtu-container, .framer-sV4ft .framer-c0ei62-container, .framer-sV4ft .framer-fpb8dq-container, .framer-sV4ft .framer-1qw9b12-container { flex: none; height: auto; width: 100%; } .framer-sV4ft .framer-e4u5bq { height: 311px; } .framer-sV4ft .framer-1b8mmvm-container, .framer-sV4ft .framer-rn71z3-container, .framer-sV4ft .framer-i8gop0-container, .framer-sV4ft .framer-ikili5-container { align-self: unset; height: 100%; } .framer-sV4ft .framer-1ebvfvy { flex: none; flex-direction: column; gap: 20px; height: min-content; justify-content: center; padding: 30px; } .framer-sV4ft .framer-1h5zys4 { padding: 0px 40px 1px 40px; } .framer-sV4ft .framer-1x463h4 { height: min-content; padding: 100px 0px 100px 40px; } .framer-sV4ft .framer-1l6i36n-container, .framer-sV4ft .framer-hmtnbq-container, .framer-sV4ft .framer-6viu22-container, .framer-sV4ft .framer-70urnm-container, .framer-sV4ft .framer-1vw4mkj-container, .framer-sV4ft .framer-ojd6ea-container { width: auto; } .framer-sV4ft .framer-1u9alpw { order: 6; }}\",\"@media (min-width: 1728px) { .framer-sV4ft.framer-nyekym { width: 1728px; } .framer-sV4ft .framer-1lviifd-container { height: 70px; left: calc(50.00000000000002% - 100% / 2); transform: unset; } .framer-sV4ft .framer-1fb7ncc-container, .framer-sV4ft .framer-gu9339 { height: 100vh; } .framer-sV4ft .framer-1pkqnft { justify-content: flex-start; } .framer-sV4ft .framer-63cluj { gap: 100px; height: min-content; justify-content: flex-start; } .framer-sV4ft .framer-qwgmzn-container { height: 440px; width: 586px; } .framer-sV4ft .framer-uoigl0 { box-shadow: 0px 0px 0px 1px var(--token-99305e00-df49-420f-9023-3051f04a7455, #e5eaff); }}\",\"@media (min-width: 1280px) and (max-width: 1439px) { .framer-sV4ft.framer-nyekym { width: 1280px; } .framer-sV4ft .framer-v6wdoz { padding: 71px 100px 0px 100px; } .framer-sV4ft .framer-1lm8hu1, .framer-sV4ft .framer-5wqsji, .framer-sV4ft .framer-hythoc, .framer-sV4ft .framer-1fot7ps, .framer-sV4ft .framer-y52vts, .framer-sV4ft .framer-38j8l2, .framer-sV4ft .framer-qj1wr3 { padding: 0px 100px 0px 100px; } .framer-sV4ft .framer-qwgmzn-container { height: 330px; width: 439px; } .framer-sV4ft .framer-1h5zys4 { padding: 0px 100px 1px 100px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14198\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vbCekHcm9\":{\"layout\":[\"fixed\",\"auto\"]},\"uELy0nRXr\":{\"layout\":[\"fixed\",\"auto\"]},\"PYdrRSIXB\":{\"layout\":[\"fixed\",\"auto\"]},\"WYajY4aty\":{\"layout\":[\"fixed\",\"auto\"]},\"FpeI4Ryot\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Gh5Py1uUn\":{\"pattern\":\":Gh5Py1uUn\",\"name\":\"nav\"},\"wo5tNdAPZ\":{\"pattern\":\":wo5tNdAPZ\",\"name\":\"footer\"},\"ECekae9mV\":{\"pattern\":\":ECekae9mV\",\"name\":\"start\"},\"nv36vVcL8\":{\"pattern\":\":nv36vVcL8\",\"name\":\"logos\"},\"rdmiRZ98t\":{\"pattern\":\":rdmiRZ98t\",\"name\":\"Section-2\"},\"TQ65lWDTn\":{\"pattern\":\":TQ65lWDTn\",\"name\":\"video\"},\"OPvt5vSJB\":{\"pattern\":\":OPvt5vSJB\",\"name\":\"Section-2\"},\"KMCtoh4UC\":{\"pattern\":\":KMCtoh4UC\",\"name\":\"video\"},\"WSSmrWHfQ\":{\"pattern\":\":WSSmrWHfQ\",\"name\":\"build\"},\"JaxUGtfvh\":{\"pattern\":\":JaxUGtfvh\",\"name\":\"feature-stack\"},\"lM3vk13Be\":{\"pattern\":\":lM3vk13Be\",\"name\":\"desktop-build-feature-1-1\"},\"TLEHaJ6oH\":{\"pattern\":\":TLEHaJ6oH\",\"name\":\"feature-1\"},\"qKiWHAnjm\":{\"pattern\":\":qKiWHAnjm\",\"name\":\"desktop-build-feature-2-2\"},\"VKJvUer90\":{\"pattern\":\":VKJvUer90\",\"name\":\"desktop-build-feature-3-3\"},\"YQhWAdxfW\":{\"pattern\":\":YQhWAdxfW\",\"name\":\"feature-4-4\"},\"Of2CmfPvM\":{\"pattern\":\":Of2CmfPvM\",\"name\":\"feature-2-mobile\"},\"Foonh4WbY\":{\"pattern\":\":Foonh4WbY\",\"name\":\"feature-3-mobile\"},\"Fl3A8QW_0\":{\"pattern\":\":Fl3A8QW_0\",\"name\":\"feature-1-mobile\"},\"W5HnIxmmm\":{\"pattern\":\":W5HnIxmmm\",\"name\":\"connect\"},\"vBmUbUBev\":{\"pattern\":\":vBmUbUBev\",\"name\":\"feature-stack\"},\"K9dISMoGC\":{\"pattern\":\":K9dISMoGC\",\"name\":\"desktop-connect-feature-1\"},\"eBUoHLy88\":{\"pattern\":\":eBUoHLy88\",\"name\":\"desktop-connect-feature-2\"},\"cz1dIFV3R\":{\"pattern\":\":cz1dIFV3R\",\"name\":\"desktop-connect-feature-3\"},\"WCK_uVQn6\":{\"pattern\":\":WCK_uVQn6\",\"name\":\"feature-4-connect\"},\"LMFva5DJ6\":{\"pattern\":\":LMFva5DJ6\",\"name\":\"feature-2-mobile-connect\"},\"WATNk4UHo\":{\"pattern\":\":WATNk4UHo\",\"name\":\"feature-3-mobile-connect\"},\"k5zQV1JKX\":{\"pattern\":\":k5zQV1JKX\",\"name\":\"feature-1-mobile-connect\"},\"SUzdJtsMG\":{\"pattern\":\":SUzdJtsMG\",\"name\":\"production-ready\"},\"UudRAyPeg\":{\"pattern\":\":UudRAyPeg\",\"name\":\"enterprise\"},\"x7AretZFE\":{\"pattern\":\":x7AretZFE\",\"name\":\"numbers\"},\"amRN_uA57\":{\"pattern\":\":amRN_uA57\",\"name\":\"startup\"},\"zYJcwkUfB\":{\"pattern\":\":zYJcwkUfB\",\"name\":\"community\"},\"sBAHIzBwo\":{\"pattern\":\":sBAHIzBwo\",\"name\":\"trigger-1\"},\"tDJTORtUD\":{\"pattern\":\":tDJTORtUD\",\"name\":\"ecosystem\"},\"KPGesxHTV\":{\"pattern\":\":KPGesxHTV\",\"name\":\"ecosystem-gallery\"},\"EEkqblwds\":{\"pattern\":\":EEkqblwds\",\"name\":\"end\"}}\n * @framerResponsiveScreen\n */const FramergY3E5c66J=withCSS(Component,css,\"framer-sV4ft\");export default FramergY3E5c66J;FramergY3E5c66J.displayName=\"Home_new\";FramergY3E5c66J.defaultProps={height:14198,width:1512};addFonts(FramergY3E5c66J,[{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:\"S\\xf6hne Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/T9Fql1IJzsRbyXzJJa8AIOQDWs.woff2\"}]},...MegaMenuENFonts,...LinesFonts,...FooterENFonts,...FixedNavButtonENFonts,...NoticeBarFonts,..._HeroTextHeadlineFonts,...BallSmFonts,...AppFonts,...GitHubMotionFonts,...LineHFonts,...ButtonRollingENFonts,...MainLogoComboFonts,...MainVideoFonts,...YouTubeFonts,...MainVideoMobileFonts,...SectionHeaderFonts,...CaseStudyItemENFonts,...UIFonts,...UIImageFonts,...VideoFonts,...BuildTextContainerFonts,...LineVFonts,...Home_3ColCardFonts,...EnterpriseSubheaderContentFonts,...EnterpriseDataCardFonts,...CasesENFonts,...CardFonts,...Comunity_twitter_cardFonts,...ReadyToBuildFonts,...EcosystemGalleryFonts,...FinalCTAFonts,...BlueDotCursorFonts,...WhiteDotCursorFonts,...TransparentDotCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergY3E5c66J\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"Gh5Py1uUn\\\":{\\\"pattern\\\":\\\":Gh5Py1uUn\\\",\\\"name\\\":\\\"nav\\\"},\\\"wo5tNdAPZ\\\":{\\\"pattern\\\":\\\":wo5tNdAPZ\\\",\\\"name\\\":\\\"footer\\\"},\\\"ECekae9mV\\\":{\\\"pattern\\\":\\\":ECekae9mV\\\",\\\"name\\\":\\\"start\\\"},\\\"nv36vVcL8\\\":{\\\"pattern\\\":\\\":nv36vVcL8\\\",\\\"name\\\":\\\"logos\\\"},\\\"rdmiRZ98t\\\":{\\\"pattern\\\":\\\":rdmiRZ98t\\\",\\\"name\\\":\\\"Section-2\\\"},\\\"TQ65lWDTn\\\":{\\\"pattern\\\":\\\":TQ65lWDTn\\\",\\\"name\\\":\\\"video\\\"},\\\"OPvt5vSJB\\\":{\\\"pattern\\\":\\\":OPvt5vSJB\\\",\\\"name\\\":\\\"Section-2\\\"},\\\"KMCtoh4UC\\\":{\\\"pattern\\\":\\\":KMCtoh4UC\\\",\\\"name\\\":\\\"video\\\"},\\\"WSSmrWHfQ\\\":{\\\"pattern\\\":\\\":WSSmrWHfQ\\\",\\\"name\\\":\\\"build\\\"},\\\"JaxUGtfvh\\\":{\\\"pattern\\\":\\\":JaxUGtfvh\\\",\\\"name\\\":\\\"feature-stack\\\"},\\\"lM3vk13Be\\\":{\\\"pattern\\\":\\\":lM3vk13Be\\\",\\\"name\\\":\\\"desktop-build-feature-1-1\\\"},\\\"TLEHaJ6oH\\\":{\\\"pattern\\\":\\\":TLEHaJ6oH\\\",\\\"name\\\":\\\"feature-1\\\"},\\\"qKiWHAnjm\\\":{\\\"pattern\\\":\\\":qKiWHAnjm\\\",\\\"name\\\":\\\"desktop-build-feature-2-2\\\"},\\\"VKJvUer90\\\":{\\\"pattern\\\":\\\":VKJvUer90\\\",\\\"name\\\":\\\"desktop-build-feature-3-3\\\"},\\\"YQhWAdxfW\\\":{\\\"pattern\\\":\\\":YQhWAdxfW\\\",\\\"name\\\":\\\"feature-4-4\\\"},\\\"Of2CmfPvM\\\":{\\\"pattern\\\":\\\":Of2CmfPvM\\\",\\\"name\\\":\\\"feature-2-mobile\\\"},\\\"Foonh4WbY\\\":{\\\"pattern\\\":\\\":Foonh4WbY\\\",\\\"name\\\":\\\"feature-3-mobile\\\"},\\\"Fl3A8QW_0\\\":{\\\"pattern\\\":\\\":Fl3A8QW_0\\\",\\\"name\\\":\\\"feature-1-mobile\\\"},\\\"W5HnIxmmm\\\":{\\\"pattern\\\":\\\":W5HnIxmmm\\\",\\\"name\\\":\\\"connect\\\"},\\\"vBmUbUBev\\\":{\\\"pattern\\\":\\\":vBmUbUBev\\\",\\\"name\\\":\\\"feature-stack\\\"},\\\"K9dISMoGC\\\":{\\\"pattern\\\":\\\":K9dISMoGC\\\",\\\"name\\\":\\\"desktop-connect-feature-1\\\"},\\\"eBUoHLy88\\\":{\\\"pattern\\\":\\\":eBUoHLy88\\\",\\\"name\\\":\\\"desktop-connect-feature-2\\\"},\\\"cz1dIFV3R\\\":{\\\"pattern\\\":\\\":cz1dIFV3R\\\",\\\"name\\\":\\\"desktop-connect-feature-3\\\"},\\\"WCK_uVQn6\\\":{\\\"pattern\\\":\\\":WCK_uVQn6\\\",\\\"name\\\":\\\"feature-4-connect\\\"},\\\"LMFva5DJ6\\\":{\\\"pattern\\\":\\\":LMFva5DJ6\\\",\\\"name\\\":\\\"feature-2-mobile-connect\\\"},\\\"WATNk4UHo\\\":{\\\"pattern\\\":\\\":WATNk4UHo\\\",\\\"name\\\":\\\"feature-3-mobile-connect\\\"},\\\"k5zQV1JKX\\\":{\\\"pattern\\\":\\\":k5zQV1JKX\\\",\\\"name\\\":\\\"feature-1-mobile-connect\\\"},\\\"SUzdJtsMG\\\":{\\\"pattern\\\":\\\":SUzdJtsMG\\\",\\\"name\\\":\\\"production-ready\\\"},\\\"UudRAyPeg\\\":{\\\"pattern\\\":\\\":UudRAyPeg\\\",\\\"name\\\":\\\"enterprise\\\"},\\\"x7AretZFE\\\":{\\\"pattern\\\":\\\":x7AretZFE\\\",\\\"name\\\":\\\"numbers\\\"},\\\"amRN_uA57\\\":{\\\"pattern\\\":\\\":amRN_uA57\\\",\\\"name\\\":\\\"startup\\\"},\\\"zYJcwkUfB\\\":{\\\"pattern\\\":\\\":zYJcwkUfB\\\",\\\"name\\\":\\\"community\\\"},\\\"sBAHIzBwo\\\":{\\\"pattern\\\":\\\":sBAHIzBwo\\\",\\\"name\\\":\\\"trigger-1\\\"},\\\"tDJTORtUD\\\":{\\\"pattern\\\":\\\":tDJTORtUD\\\",\\\"name\\\":\\\"ecosystem\\\"},\\\"KPGesxHTV\\\":{\\\"pattern\\\":\\\":KPGesxHTV\\\",\\\"name\\\":\\\"ecosystem-gallery\\\"},\\\"EEkqblwds\\\":{\\\"pattern\\\":\\\":EEkqblwds\\\",\\\"name\\\":\\\"end\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vbCekHcm9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uELy0nRXr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PYdrRSIXB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WYajY4aty\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FpeI4Ryot\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"14198\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_1Body", "_1Number", "_1ShowLogos", "_1Title", "_2Body", "_2Number", "_2ShowLogos", "_2Title", "_3Body", "_3Number", "_3ShowLogos", "_3Title", "gap", "height", "id", "logoPadding", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "L9ij4STKZ", "DYqiS4OYB", "NwizKtUKE", "tSNzytU9Q", "QC1xWcD52", "aNspB8tNs", "duX6J7vzV", "ep5wSYwZ6", "vNM18p5gP", "iEicOZPKE", "GX8n58542", "bjbNd29o3", "tlpqA0YXv", "GOg29daUW", "t8BNlKYGg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1qo68et", "args", "scopingClassNames", "cx", "isDisplayed", "value1", "value2", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText", "SVG", "Image2", "css", "FramerA5zbxh_SA", "withCSS", "A5zbxh_SA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NumberFonts", "getFonts", "Y7ihChBL5_default", "CornerContainerFonts", "JZcY0KWwv_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "number", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "VxKmKJIXd", "EtVrJjUaz", "KtvLP_WId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerb4fg3rxVx", "withCSS", "b4fg3rxVx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framerdcz0c3c69", "withCSS", "dcz0c3c69_default", "addPropertyControls", "ControlType", "addFonts", "__EcosystemGalleryControlItemFonts", "getFonts", "qZaUUt4_n_default", "LineHFonts", "dEa6h5jx5_default", "__EcosystemImageContainerFonts", "uwkMVxrMM_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "HdXKo0RZ31uzmkc4", "args", "HdXKo0RZ314nasf4", "HdXKo0RZ3z7v1tw", "HdXKo0RZ31hzotmd", "HdXKo0RZ3lp3z8h", "HdXKo0RZ3zwsbov", "HdXKo0RZ31bm5kc5", "HdXKo0RZ3sx53zo", "HdXKo0RZ3smpx14", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerEZfMPrMNn", "withCSS", "EZfMPrMNn_default", "addPropertyControls", "ControlType", "addFonts", "_EnterpriseSubheaderContentTabFonts", "getFonts", "bKjP8M1dc_default", "_EnterpriseSubheaderContentTabWithVariantAppearEffect", "withVariantAppearEffect", "ButtonRollingENFonts", "EjrjXoDPl_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "casesSection", "casestudyLink", "cursor", "getStarted", "height", "id", "impactLink", "impactSection", "link", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "VDtD2Xcg0", "bAa80lhP5", "wTSys90Hb", "UQizhXbiq", "tUDvMPucS", "jZrNoqgHu", "cP9LSmFs_", "BAIkb8FVe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "qHjjob7b0ynvd8q", "args", "qHjjob7b01lubnmd", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerkjTgd4Pe9", "withCSS", "kjTgd4Pe9_default", "addPropertyControls", "ControlType", "addFonts", "QuotationMarkFonts", "getFonts", "NC8OTiYhn_default", "_TestimonialTextsENFonts", "vEvkbSXqJ_default", "ArrowOnDarkBgFonts", "eEOH_o8D5_default", "_TestimonialTextsENControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableEnumMap2", "humanReadableVariantMap", "getProps", "card1", "card2", "card3", "content1", "content2", "content3", "cursorTransparent", "direction", "distribute", "gap", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WH7nHWRzl", "QOeJ0y2vP", "MTDsfepx9", "qIcBqhljJ", "CEtoRTXwV", "DZitwU8An", "Zc4RZ93eB", "P42yNQzGq", "dYncExrQK", "SUZljNWhM", "wsQvWqe3Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "UD5SL2dil1ndi77u", "args", "UD5SL2dil1sddsi5", "UD5SL2dilhca1nm", "UD5SL2dil1rje7pk", "UD5SL2dilsy6rgo", "UD5SL2dil1c92erb", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerM4oY9BFLC", "withCSS", "M4oY9BFLC_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "SVG", "css", "FramerE4mMEA4te", "withCSS", "E4mMEA4te_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "_TestimonialsDataTexts2Fonts", "getFonts", "E4mMEA4te_default", "ArrowOnLightBgFonts", "su6fFSOyP_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "direction", "distribute", "gap", "height", "id", "transparentCursor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WH7nHWRzl", "QOeJ0y2vP", "qIcBqhljJ", "Jq3TNKyLE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "UD5SL2dil1dhzoav", "args", "UD5SL2diluli901", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramernthZ_DDLD", "withCSS", "nthZ_DDLD_default", "addPropertyControls", "ControlType", "addFonts", "TestimonialsENFonts", "getFonts", "M4oY9BFLC_default", "_Testimonials2Fonts", "nthZ_DDLD_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "cursorTransparent", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NX1EcCVGy", "p14m3oUE1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramermRt7xKEN4", "withCSS", "mRt7xKEN4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearcjs3fo", "args", "onAppear7oc0jz", "onAppear1m4yaak", "onAppear5tuifa", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "SVG", "css", "FramerW3Eko70eC", "withCSS", "W3Eko70eC_default", "addPropertyControls", "ControlType", "addFonts", "__HeroTextHeadlineIconLandingIconAnimationFonts", "getFonts", "W3Eko70eC_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerQOmBfXUGw", "withCSS", "QOmBfXUGw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__HeroTextHeadlineIconLandingFonts", "getFonts", "QOmBfXUGw_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "transition3", "animation1", "animation2", "transition4", "textEffect1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1avcer1", "args", "onMouseLeave10ldol0", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "css", "FramerR3FzGMWWh", "withCSS", "R3FzGMWWh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LogosFonts", "getFonts", "CgSDK_wf3_default", "MotionDivWithFX", "withFX", "motion", "LogosControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "body", "height", "id", "logo", "logoGroup", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zlPy7mPpi", "abhsiu0vM", "ZDpdb4GQT", "wGYORxxZl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerWw0D3VWQ3", "withCSS", "Ww0D3VWQ3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MegaMenuENFonts", "getFonts", "rhoBsjeYw_default", "ContainerWithFX", "withFX", "Container", "LinesFonts", "wCQeBvN8h_default", "LinesWithVariantAppearEffect", "withVariantAppearEffect", "FooterENFonts", "J0EIg2xjn_default", "FooterENWithVariantAppearEffect", "FixedNavButtonENFonts", "e0svwJ2jo_default", "FixedNavButtonENWithVariantAppearEffect", "NoticeBarFonts", "TFsWiX9AH_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "_HeroTextHeadlineFonts", "R3FzGMWWh_default", "BallSmFonts", "NHJQLaaLc_default", "AppFonts", "App", "GitHubMotionFonts", "Pqhs5t7At_default", "MotionDivWithOptimizedAppearEffect", "motion", "LineHFonts", "dEa6h5jx5_default", "ButtonRollingENFonts", "EjrjXoDPl_default", "MainLogoComboFonts", "LhHri3WYB_default", "MainVideoFonts", "V8oM3RQQr_default", "MotionDivWithFX", "YouTubeFonts", "Youtube", "MainVideoMobileFonts", "UW_U6rmTM_default", "SectionHeaderFonts", "M2uHiRWhC_default", "CaseStudyItemENFonts", "Ww0D3VWQ3_default", "CaseStudyItemENWithVariantAppearEffect", "UIFonts", "qfHR1p7Sd_default", "ImageWithFX", "Image2", "UIImageFonts", "dcz0c3c69_default", "VideoFonts", "Video", "BuildTextContainerFonts", "A5zbxh_SA_default", "LineVFonts", "OAx9fQzXC_default", "Home_3ColCardFonts", "b4fg3rxVx_default", "EnterpriseSubheaderContentFonts", "kjTgd4Pe9_default", "EnterpriseSubheaderContentWithVariantAppearEffect", "EnterpriseDataCardFonts", "yzQczX5Y6_default", "CasesENFonts", "mRt7xKEN4_default", "CardFonts", "qgPWzHYAm_default", "Comunity_twitter_cardFonts", "IxGEVE4aB_default", "ReadyToBuildFonts", "kaZKSbZ6j_default", "EcosystemGalleryFonts", "EZfMPrMNn_default", "FinalCTAFonts", "VP0Zhzuau_default", "MotionDivWithProgress1dk0sfj", "withCodeBoundaryForOverrides", "withProgress", "BlueDotCursorFonts", "pQd0CGvQ8_default", "WhiteDotCursorFonts", "QUrZZnynA_default", "TransparentDotCursorFonts", "nscjZ6Y8z_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transition2", "animation1", "animation2", "animation3", "transition3", "textEffect", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "textEffect1", "textEffect2", "animation7", "transition7", "animation8", "animation9", "transition8", "transition9", "transition10", "textEffect3", "animation10", "transition11", "textEffect4", "transition12", "animation11", "transition13", "animation12", "transition14", "animation13", "addImageAlt", "image", "alt", "transition15", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "cursor2", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "qHjjob7b0", "Fsp6hTlD_bKjP8M1dc", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "router", "useRouter", "ref1", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "ref3", "ref4", "ref5", "elementId2", "ref6", "isDisplayed2", "elementId3", "ref7", "elementId4", "ref8", "elementId5", "ref9", "elementId6", "ref10", "elementId7", "ref11", "elementId8", "ref12", "ref13", "ref14", "ref15", "elementId9", "ref16", "elementId10", "elementId11", "ref17", "elementId12", "elementId13", "elementId14", "isDisplayed3", "elementId15", "ref18", "elementId16", "ref19", "elementId17", "ref20", "elementId18", "ref21", "ref22", "ref23", "ref24", "ref25", "elementId19", "ref26", "elementId20", "elementId21", "elementId22", "elementId23", "elementId24", "ref27", "elementId25", "ref28", "elementId26", "ref29", "elementId27", "elementId28", "ref30", "ref31", "elementId29", "elementId30", "ref32", "elementId31", "ref33", "elementId32", "ref34", "elementId33", "ref35", "elementId34", "elementId35", "ref36", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText", "Link", "getLoadingLazyAtYPosition", "SVG", "resolvedLinks1", "css", "FramergY3E5c66J", "withCSS", "gY3E5c66J_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
