{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/ujXAIqGGtLKb0ULk8fR3/QhvPJ0Q7VpdVkz8GH8j5/DY3AA4AKK.js", "ssg:https://framerusercontent.com/modules/cI9X20C9udIOhsYnfjse/BhDHi3jZ4ohTLwKo5WWd/EF6fDW9Ad.js", "ssg:https://framerusercontent.com/modules/jfC7pEos4vmgt2uMb5TL/D29wL5OK2hFC4EqREw4E/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}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(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";const ClipboardFonts=getFonts(Clipboard);const cycleOrder=[\"xPXXEyjt8\",\"AuOtwJymI\"];const serializationHash=\"framer-GYl3D\";const variantClassNames={AuOtwJymI:\"framer-v-t9cwil\",xPXXEyjt8:\"framer-v-1247uas\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"xPXXEyjt8\",\"Variant 2\":\"AuOtwJymI\"};const getProps=({cursor,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,EMgcGzrCM:cursor!==null&&cursor!==void 0?cursor:props.EMgcGzrCM,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"xPXXEyjt8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EMgcGzrCM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xPXXEyjt8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterinh2zs=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"AuOtwJymI\");});const onMouseLeavegw4mza=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"xPXXEyjt8\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"AuOtwJymI\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"wa.me/916392176434\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1247uas\",className,classNames)} framer-y3okdu`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xPXXEyjt8\",onMouseEnter:onMouseEnterinh2zs,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({AuOtwJymI:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavegw4mza}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"Get 10% Off \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"On 6 Months Plan\"})]}),className:\"framer-196icco\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"r4UyAUiVN\",style:{\"--extracted-2gxw0f\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\",\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ckkcsp\",\"data-framer-cursor\":EMgcGzrCM,\"data-framer-name\":\"Copy\",layoutDependency:layoutDependency,layoutId:\"Kq8cDnoSr\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,WebkitBackdropFilter:\"blur(10px)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lodneg-container\",layoutDependency:layoutDependency,layoutId:\"MSZIv5Urd-container\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgb(255, 255, 255)\",content:\"1 Slot Available\",fill:\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\",font:{},height:\"100%\",id:\"MSZIv5Urd\",isMixedBorderRadius:false,label:\"1 Slot Available\",layoutId:\"MSZIv5Urd\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,topLeftRadius:50,topRightRadius:50,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255)))\"},children:\"Hurry Up !\"})}),className:\"framer-1ur49mo\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"A9rMYiHcE\",style:{\"--extracted-r6o4lv\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GYl3D.framer-y3okdu, .framer-GYl3D .framer-y3okdu { display: block; }\",\".framer-GYl3D.framer-1247uas { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-width: 142px; overflow: hidden; padding: 8px 18px 8px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-GYl3D .framer-196icco, .framer-GYl3D .framer-1ur49mo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GYl3D .framer-ckkcsp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: -136px; overflow: visible; padding: 4px 0px 0px 0px; position: absolute; top: -45px; width: min-content; z-index: 1; }\",\".framer-GYl3D .framer-1lodneg-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GYl3D.framer-1247uas, .framer-GYl3D .framer-ckkcsp { gap: 0px; } .framer-GYl3D.framer-1247uas > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GYl3D.framer-1247uas > :first-child { margin-left: 0px; } .framer-GYl3D.framer-1247uas > :last-child { margin-right: 0px; } .framer-GYl3D .framer-ckkcsp > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-GYl3D .framer-ckkcsp > :first-child { margin-top: 0px; } .framer-GYl3D .framer-ckkcsp > :last-child { margin-bottom: 0px; } }\",\".framer-GYl3D.framer-v-t9cwil.framer-1247uas { overflow: visible; }\",\".framer-GYl3D.framer-v-t9cwil .framer-196icco, .framer-GYl3D.framer-v-t9cwil .framer-1lodneg-container { order: 1; }\",\".framer-GYl3D.framer-v-t9cwil .framer-ckkcsp, .framer-GYl3D.framer-v-t9cwil .framer-1ur49mo { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 142\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"142px\",null,null,null]},\"AuOtwJymI\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"142px\",null,null,null]}}}\n * @framerVariables {\"EMgcGzrCM\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDY3AA4AKK=withCSS(Component,css,\"framer-GYl3D\");export default FramerDY3AA4AKK;FramerDY3AA4AKK.displayName=\"Pro plan\";FramerDY3AA4AKK.defaultProps={height:45,width:142};addPropertyControls(FramerDY3AA4AKK,{variant:{options:[\"xPXXEyjt8\",\"AuOtwJymI\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},EMgcGzrCM:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerDY3AA4AKK,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...ClipboardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDY3AA4AKK\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"45\",\"framerVariables\":\"{\\\"EMgcGzrCM\\\":\\\"cursor\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"142px\\\",null,null,null]},\\\"AuOtwJymI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"142px\\\",null,null,null]}}}\",\"framerIntrinsicWidth\":\"142\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DY3AA4AKK.map", "// Generated by Framer (6124c77)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={JdrF7FpXt:{hover:true}};const cycleOrder=[\"JdrF7FpXt\"];const serializationHash=\"framer-iEnb2\";const variantClassNames={JdrF7FpXt:\"framer-v-kiie9u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,logoName,text,width,...props})=>{var _ref,_ref1,_ref2;return{...props,AZ4GdMV7F:(_ref=logoName!==null&&logoName!==void 0?logoName:props.AZ4GdMV7F)!==null&&_ref!==void 0?_ref:\"Figma\",IZpDv4PoZ:(_ref1=text!==null&&text!==void 0?text:props.IZpDv4PoZ)!==null&&_ref1!==void 0?_ref1:\"Notion is a versatile all-in-one workspace application\",teKQKu6vj:(_ref2=image!==null&&image!==void 0?image:props.teKQKu6vj)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/SJGCHs8XRh6cEyikCeXsAGIxYiM.png\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,teKQKu6vj,AZ4GdMV7F,IZpDv4PoZ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JdrF7FpXt\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"JdrF7FpXt-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kiie9u\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"JdrF7FpXt\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2.299999952316284px\",\"--border-color\":\"rgb(19, 20, 18)\",\"--border-left-width\":\"2.299999952316284px\",\"--border-right-width\":\"2.299999952316284px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2.299999952316284px\",backgroundColor:\"var(--token-4beffe50-8e66-4520-9112-4a39aa4d8b5f, rgb(19, 20, 18))\",...style},...addPropertyOverrides({\"JdrF7FpXt-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irqo1r\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"xvnSfC4wK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:173,intrinsicWidth:172,pixelHeight:173,pixelWidth:172,sizes:\"86px\",...toResponsiveImage(teKQKu6vj)},className:\"framer-19l68f8\",layoutDependency:layoutDependency,layoutId:\"EAKQUp0Ck\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pm60ia\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"BquNane8y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Figma\"})}),className:\"framer-p1pofl\",\"data-framer-name\":\"Figma\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"dncLoXK_b\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:AZ4GdMV7F,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197)))\"},children:\"Notion is a versatile all-in-one workspace application\"})}),className:\"framer-1hxuj3b\",\"data-framer-name\":\"Figma\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mPK5MQ1ei\",style:{\"--extracted-r6o4lv\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\",\"--framer-paragraph-spacing\":\"0px\"},text:IZpDv4PoZ,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8bz9i0\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"yTYJ2ME_j\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zgmt6\",\"data-framer-name\":\"Frame 39624\",layoutDependency:layoutDependency,layoutId:\"v_jlcSsGj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d3vh8q\",\"data-framer-name\":\"Rectangle 3013\",layoutDependency:layoutDependency,layoutId:\"WKvckAcEi\",style:{background:\"linear-gradient(90deg, rgba(160, 224, 13, 0) 0%, rgba(160, 224, 13, 1) 52.85966992378235%, rgba(160, 224, 13, 0) 100%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o8zw1y\",\"data-framer-name\":\"Ellipse 2335\",layoutDependency:layoutDependency,layoutId:\"m8BwxFE1K\",style:{background:\"linear-gradient(180deg, rgba(160, 224, 13, 0) 0%, rgba(160, 224, 13, 1) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(45px)\",WebkitFilter:\"blur(45px)\"}})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iEnb2.framer-r9cnqv, .framer-iEnb2 .framer-r9cnqv { display: block; }\",\".framer-iEnb2.framer-kiie9u { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 302px; justify-content: flex-start; overflow: hidden; padding: 48px 24px 48px 24px; position: relative; width: 304px; }\",\".framer-iEnb2 .framer-irqo1r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-iEnb2 .framer-19l68f8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 86px); overflow: visible; position: relative; width: 86px; }\",\".framer-iEnb2 .framer-1pm60ia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iEnb2 .framer-p1pofl, .framer-iEnb2 .framer-1hxuj3b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iEnb2 .framer-8bz9i0 { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 202px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-iEnb2 .framer-11zgmt6 { flex: none; height: 202px; overflow: hidden; position: relative; width: 370px; }\",\".framer-iEnb2 .framer-d3vh8q { flex: none; height: 3px; left: calc(46.08108108108108% - 343px / 2); position: absolute; top: 199px; width: 343px; }\",\".framer-iEnb2 .framer-o8zw1y { flex: none; height: 76px; left: calc(49.86486486486486% - 257px / 2); position: absolute; top: 152px; width: 257px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iEnb2.framer-kiie9u, .framer-iEnb2 .framer-irqo1r, .framer-iEnb2 .framer-1pm60ia, .framer-iEnb2 .framer-8bz9i0 { gap: 0px; } .framer-iEnb2.framer-kiie9u > *, .framer-iEnb2 .framer-8bz9i0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iEnb2.framer-kiie9u > :first-child, .framer-iEnb2 .framer-8bz9i0 > :first-child { margin-left: 0px; } .framer-iEnb2.framer-kiie9u > :last-child, .framer-iEnb2 .framer-8bz9i0 > :last-child { margin-right: 0px; } .framer-iEnb2 .framer-irqo1r > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-iEnb2 .framer-irqo1r > :first-child, .framer-iEnb2 .framer-1pm60ia > :first-child { margin-top: 0px; } .framer-iEnb2 .framer-irqo1r > :last-child, .framer-iEnb2 .framer-1pm60ia > :last-child { margin-bottom: 0px; } .framer-iEnb2 .framer-1pm60ia > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",'.framer-iEnb2[data-border=\"true\"]::after, .framer-iEnb2 [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 302\n * @framerIntrinsicWidth 304\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bka6Nrcpv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"teKQKu6vj\":\"image\",\"AZ4GdMV7F\":\"logoName\",\"IZpDv4PoZ\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEF6fDW9Ad=withCSS(Component,css,\"framer-iEnb2\");export default FramerEF6fDW9Ad;FramerEF6fDW9Ad.displayName=\"Intragations card 3\";FramerEF6fDW9Ad.defaultProps={height:302,width:304};addPropertyControls(FramerEF6fDW9Ad,{teKQKu6vj:{__defaultAssetReference:\"data:framer/asset-reference,SJGCHs8XRh6cEyikCeXsAGIxYiM.png?originalFilename=Asana.png&preferredSize=full\",title:\"Image\",type:ControlType.ResponsiveImage},AZ4GdMV7F:{defaultValue:\"Figma\",displayTextArea:false,title:\"Logo Name\",type:ControlType.String},IZpDv4PoZ:{defaultValue:\"Notion is a versatile all-in-one workspace application\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerEF6fDW9Ad,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEF6fDW9Ad\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bka6Nrcpv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"teKQKu6vj\\\":\\\"image\\\",\\\"AZ4GdMV7F\\\":\\\"logoName\\\",\\\"IZpDv4PoZ\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"302\",\"framerIntrinsicWidth\":\"304\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EF6fDW9Ad.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MiniCard11 from\"https://framerusercontent.com/modules/5nkN17A5Yv5vPYq0Qsk4/NQVi0PyAWSFDvHbffqdr/BMPZMQFdM.js\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import ProPlan from\"#framer/local/canvasComponent/DY3AA4AKK/DY3AA4AKK.js\";import IntragationsCard3 from\"#framer/local/canvasComponent/EF6fDW9Ad/EF6fDW9Ad.js\";import Testimonials from\"#framer/local/canvasComponent/KrqgJff4d/KrqgJff4d.js\";import MiniCard1 from\"#framer/local/canvasComponent/kUq3kaWx5/kUq3kaWx5.js\";import Footer from\"#framer/local/canvasComponent/pzGGgopxU/pzGGgopxU.js\";import FAQ from\"#framer/local/canvasComponent/sVh1EPKLQ/sVh1EPKLQ.js\";import Cursor from\"#framer/local/canvasComponent/tdzOWJJC7/tdzOWJJC7.js\";import NavbarDark from\"#framer/local/canvasComponent/YY93V46WN/YY93V46WN.js\";import Button1 from\"#framer/local/canvasComponent/z9JUHUfmV/z9JUHUfmV.js\";import*as sharedStyle3 from\"#framer/local/css/FcNLOZCHo/FcNLOZCHo.js\";import*as sharedStyle1 from\"#framer/local/css/FlOuLrjJI/FlOuLrjJI.js\";import*as sharedStyle from\"#framer/local/css/iUUogcGUI/iUUogcGUI.js\";import*as sharedStyle2 from\"#framer/local/css/nextLLEvq/nextLLEvq.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ProPlanFonts=getFonts(ProPlan);const MiniCard1Fonts=getFonts(MiniCard1);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const EmbedFonts=getFonts(Embed);const NavbarDarkFonts=getFonts(NavbarDark);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const MaterialFonts=getFonts(Material);const MotionDivWithFX=withFX(motion.div);const MiniCard11Fonts=getFonts(MiniCard11);const YouTubeFonts=getFonts(YouTube);const TestimonialsFonts=getFonts(Testimonials);const Button1Fonts=getFonts(Button1);const IntragationsCard3Fonts=getFonts(IntragationsCard3);const FAQFonts=getFonts(FAQ);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={S0A0xPRj8:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\",zjqIIsYr1:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HAp3E\";const variantClassNames={S0A0xPRj8:\"framer-v-dfkg0k\",WQLkyLRf1:\"framer-v-72rtr7\",zjqIIsYr1:\"framer-v-1rj31h2\"};const transition1={damping:20,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:20,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:40,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-108};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const transition4={damping:20,delay:.25,mass:1,stiffness:150,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:20};const transition5={damping:20,delay:.3,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:20};const transition6={damping:20,delay:.35,mass:1,stiffness:150,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:20};const transition7={damping:20,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:20};const transition8={damping:20,delay:.45,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:20};const transition9={damping:20,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:20};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition10={damping:20,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"zjqIIsYr1\",Tablet:\"S0A0xPRj8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"N8lv3V8UE\"};const cursor1={component:Cursor,variant:\"EDrzfq0XD\"};const cursor2={component:Cursor,variant:\"Op01_bOR7\"};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"zjqIIsYr1\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"zjqIIsYr1\")return true;return false;};const elementId=useRouteElementId(\"YWVZL8WLG\");const ref1=React.useRef(null);useCustomCursors({\"1d8jtdc\":cursor1,\"1r4p2yj\":{...cursor,variant:\"N8lv3V8UE\"},\"1tpcieq\":cursor2});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1r4p2yj\",ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:889,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5vaby-container hidden-1rj31h2\",\"data-framer-cursor\":\"1d8jtdc\",layoutScroll:true,nodeId:\"a489cUtUJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProPlan,{EMgcGzrCM:\"1tpcieq\",height:\"100%\",id:\"a489cUtUJ\",layoutId:\"a489cUtUJ\",variant:\"xPXXEyjt8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zjqIIsYr1:{background:undefined}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2580,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:2580,pixelWidth:2880,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,src:\"https://framerusercontent.com/images/pkVckAy4hre6SOgAjgjXMYt9vc0.png\",srcSet:\"https://framerusercontent.com/images/pkVckAy4hre6SOgAjgjXMYt9vc0.png?scale-down-to=512 512w,https://framerusercontent.com/images/pkVckAy4hre6SOgAjgjXMYt9vc0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pkVckAy4hre6SOgAjgjXMYt9vc0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pkVckAy4hre6SOgAjgjXMYt9vc0.png 2880w\"},className:\"framer-1dobzkw\",\"data-framer-cursor\":\"1r4p2yj\",\"data-framer-name\":\"Hero section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1tzj0\",\"data-framer-name\":\"Tittle section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k8emox\",\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{y:(componentViewport?.y||0)+0+0+120+0+0+0+0+0},zjqIIsYr1:{width:\"217px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1q5uq9x-container\",\"data-framer-appear-id\":\"1q5uq9x\",initial:animation1,nodeId:\"Vy3UG0HnR\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zjqIIsYr1:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"Vy3UG0HnR\",isAHbpQQ9:\"Grow 2-5x in 90-120 Days\",layoutId:\"Vy3UG0HnR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zjqIIsYr1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ultimate Growth Partner \",/*#__PURE__*/_jsx(\"br\",{}),\"For \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Brands & Creators\"})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Growvize Sales Funnel\"}),\" Adds $100k+ In Sales Pipeline Within \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"6 months\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"OR\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\" You Don't Pay\"})]})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1flc905\",\"data-styles-preset\":\"iUUogcGUI\",children:[\"Ultimate Growth Partner \",/*#__PURE__*/_jsx(\"br\",{}),\"For \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Brands & Creators\"})]}),/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-zovyoh\",\"data-styles-preset\":\"FlOuLrjJI\",children:[\"Our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Growvize Sales Funnel\"}),\" Adds $100k+ In Sales Pipeline Within \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"6 months\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"OR\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\" You Don't Pay\"})]})]}),className:\"framer-19r9khx\",\"data-framer-appear-id\":\"19r9khx\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zqmz27\",\"data-framer-name\":\"Form\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkwy09\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2qmmti-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OpTc3GLPl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://fast.wistia.com/embed/medias/t1df2sw5is.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:56.25% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_t1df2sw5is seo=false videoFoam=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/t1df2sw5is/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',id:\"OpTc3GLPl\",layoutId:\"OpTc3GLPl\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnk90l hidden-72rtr7 hidden-dfkg0k\",\"data-framer-name\":\"backround\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n202or hidden-72rtr7\",\"data-framer-name\":\"Bg elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1024,intrinsicWidth:1740,svg:'<svg width=\"1740\" height=\"1024\" viewBox=\"0 0 1740 1024\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_318_5950)\">\\n<ellipse cx=\"812.5\" cy=\"762\" rx=\"427.5\" ry=\"68\" transform=\"rotate(180 812.5 762)\" fill=\"#91CB0B\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_318_5950\" x=\"65\" y=\"374\" width=\"1495\" height=\"776\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"160\" result=\"effect1_foregroundBlur_318_5950\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ywory hidden-72rtr7 hidden-dfkg0k\",\"data-framer-name\":\"line\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-nzgh4k hidden-72rtr7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:530,intrinsicWidth:1175,svg:'<svg width=\"1175\" height=\"530\" viewBox=\"-1 -1 1175 530\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.3\" d=\"M547.782 73.0416V528V0M624.262 73.0416V528V0M702.653 73.0416V528V0M78.3912 73.0416L78.3912 528L78.3912 0M781.044 73.0416V528V0M156.782 73.0416L156.782 528L156.782 0M859.435 73.0416V528V0M157.738 73.0416L157.738 528L157.738 0M937.826 73.0416V528V0M236.13 73.0416L236.13 528L236.13 0M1016.22 73.0416V528V0M314.521 73.0416L314.521 528L314.521 0M1094.61 73.0416V528V0M392.912 73.0416L392.912 528L392.912 0M1173 73.0416V528H0.956019M1173 73.0416H0.956019M1173 73.0416C1095.56 72.5642 2.91745e-05 73.0416 2.91745e-05 73.0416L0 528L2.91745e-05 0M1173 73.0416V0H471.303M471.303 528V73.0416V0M0.956019 451.617H1173M0.956019 375.233H1173M0.956019 298.85H1173M0.956019 222.467H1173M2.17081e-05 146.083C2.17081e-05 146.083 1095.56 145.606 1173 146.083M0.956019 0H471.303\" stroke=\"url(#paint0_radial_319_5999)\" stroke-width=\"1.2\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_319_5999\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(586.5 244) rotate(90) scale(356 790.886)\">\\n<stop stop-color=\"#454C28\"/>\\n<stop offset=\"1\" stop-color=\"#454C28\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},zjqIIsYr1:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 240px)`,y:20,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation3},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kicnse-container\",layoutScroll:true,nodeId:\"RJXWWgc1x\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{variant:\"xFFdGV3rK\"},zjqIIsYr1:{variant:\"AAG3zjhBM\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"RJXWWgc1x\",layoutId:\"RJXWWgc1x\",style:{width:\"100%\"},variant:\"Jlh2m8itc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x2jjt6\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qyftcm\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1z11ehd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MNCfAlDKh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:46,height:\"100%\",hoverFactor:.25,id:\"MNCfAlDKh\",layoutId:\"MNCfAlDKh\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-181l87p\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qc9f7e\",\"data-framer-name\":\"Rectangle 3018\"}),/*#__PURE__*/_jsx(Link,{href:\"kodekloud.com\",motionChild:true,nodeId:\"ZWVTBukhR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1112,intrinsicWidth:3768,pixelHeight:1390,pixelWidth:4710,sizes:\"180px\",src:\"https://framerusercontent.com/images/GrQtkFNnSNnbvBeZro6p0FpBuw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/GrQtkFNnSNnbvBeZro6p0FpBuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/GrQtkFNnSNnbvBeZro6p0FpBuw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GrQtkFNnSNnbvBeZro6p0FpBuw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GrQtkFNnSNnbvBeZro6p0FpBuw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/GrQtkFNnSNnbvBeZro6p0FpBuw.png 4710w\"},className:\"framer-scx639 framer-lux5qc\",\"data-framer-name\":\"Horizontal\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lx4e42\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o4hek5\",\"data-framer-name\":\"Rectangle 3017\"}),/*#__PURE__*/_jsx(Link,{href:\"legistify.com\",motionChild:true,nodeId:\"kW7Fg4v1i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1312,intrinsicWidth:4376,pixelHeight:1640,pixelWidth:5470,sizes:\"110px\",src:\"https://framerusercontent.com/images/ffDNwxMIPqVNPoeOwTEedwQgpU.png\",srcSet:\"https://framerusercontent.com/images/ffDNwxMIPqVNPoeOwTEedwQgpU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ffDNwxMIPqVNPoeOwTEedwQgpU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ffDNwxMIPqVNPoeOwTEedwQgpU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ffDNwxMIPqVNPoeOwTEedwQgpU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ffDNwxMIPqVNPoeOwTEedwQgpU.png 5470w\"},className:\"framer-z0d96b framer-lux5qc\",\"data-framer-name\":\"White_logo\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ik5vfa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ppibgn\",\"data-framer-name\":\"Rectangle 3014\"}),/*#__PURE__*/_jsx(Link,{href:\"docsumo.com\",motionChild:true,nodeId:\"Iy2KAaSfk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:296,intrinsicWidth:2048,pixelHeight:370,pixelWidth:2560,sizes:\"145px\",src:\"https://framerusercontent.com/images/0PIqBBX0vJUSDiPjnWIZjh5V8U.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0PIqBBX0vJUSDiPjnWIZjh5V8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/0PIqBBX0vJUSDiPjnWIZjh5V8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0PIqBBX0vJUSDiPjnWIZjh5V8U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0PIqBBX0vJUSDiPjnWIZjh5V8U.png 2560w\"},className:\"framer-o07uix framer-lux5qc\",\"data-framer-name\":\"Docsumo\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19dfsxy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lgddmg\",\"data-framer-name\":\"Rectangle 3015\"}),/*#__PURE__*/_jsx(Link,{href:\"edyct.com\",motionChild:true,nodeId:\"v5l9rtsF2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:157.6,intrinsicWidth:507.2,pixelHeight:197,pixelWidth:634,sizes:\"144px\",src:\"https://framerusercontent.com/images/bc5Ui0bL6eGHP5fCWto1NskRYzI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bc5Ui0bL6eGHP5fCWto1NskRYzI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bc5Ui0bL6eGHP5fCWto1NskRYzI.png 634w\"},className:\"framer-13jt9cy framer-lux5qc\",\"data-framer-name\":\"EDYST_YC_19_\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dnoxvy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c777rm\",\"data-framer-name\":\"Rectangle 3016\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53.6,intrinsicWidth:178.4,pixelHeight:67,pixelWidth:223,src:\"https://framerusercontent.com/images/RZ6HC3ASz9QtJWcaIJ0dBWRbVVk.png\"},className:\"framer-175j4w5\",\"data-framer-name\":\"Ayurveda_\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nbc46g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v8b8ae\",\"data-framer-name\":\"Rectangle 3016\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:122.4,intrinsicWidth:240,pixelHeight:153,pixelWidth:300,src:\"https://framerusercontent.com/images/XbT6QD4mpde2tpXamijdTqDxEu8.png\"},className:\"framer-1wo6rd7\",\"data-framer-name\":\"exly_logo_edge_to_edge_06_300x153\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vuht3j\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-otpsnw\",\"data-framer-name\":\"Rectangle 3016\"}),/*#__PURE__*/_jsx(Link,{href:\"ionio.io\",motionChild:true,nodeId:\"RFVjJadJh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:133.6,intrinsicWidth:353.6,pixelHeight:167,pixelWidth:442,src:\"https://framerusercontent.com/images/wTvBIc3xoaxLuDtkXkcrzrQ.png\"},className:\"framer-4wpt97 framer-lux5qc\",\"data-framer-name\":\"Ionio\"})})]})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-3aj7a2\",\"data-framer-name\":\"How it works\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hyqzb5\",\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{y:(componentViewport?.y||0)+0+1283.6+0+0+0+0},zjqIIsYr1:{y:(componentViewport?.y||0)+0+1391+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+1323.6+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xpcwnm-container\",nodeId:\"TvukiFB6u\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"TvukiFB6u\",isAHbpQQ9:\"HOW IT WORKS\",layoutId:\"TvukiFB6u\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"center\"},children:[\" Our Process At \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Growvize.\"})]})}),className:\"framer-16q33z3\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vj8at2\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bzknf5\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rpeid7\",\"data-framer-name\":\"Frame 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjdhzd\",\"data-framer-name\":\"Frame 165\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rqnka5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QOIb1Qbox\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Search\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"QOIb1Qbox\",layoutId:\"QOIb1Qbox\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x4p543\",\"data-framer-name\":\"Frame 807\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},children:\"Explore\"})}),className:\"framer-ots8di\",\"data-framer-name\":\"Extremely Flexible\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Begin by letting us know your interests and the challenges you're facing through our booking form.\"})}),className:\"framer-x1pe2g\",\"data-framer-name\":\"We believe in pushing the boundaries of what's possible explore emerging technology\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bacsb4\",\"data-framer-name\":\"Frame 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x4ne47\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cj3glw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RWboqn1hi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ContactMail\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RWboqn1hi\",layoutId:\"RWboqn1hi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uuq9le\",\"data-framer-name\":\"fi-br-transform\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d3h7ui\",\"data-framer-name\":\"Frame 807\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},children:\"Contact\"})}),className:\"framer-1tqso1l\",\"data-framer-name\":\"Extremely Flexible\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"After receiving your booking form, we'll reach out via email to gather more details about your brand and content.\"})}),className:\"framer-1o1bqib\",\"data-framer-name\":\"We believe in pushing the boundaries of what's possible explore emerging technology\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11uas4l\",\"data-framer-name\":\"Frame 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17cilh7\",\"data-framer-name\":\"Frame 165\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cswhko\",\"data-framer-name\":\"fi-bs-search-alt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yy1jgk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"24\" viewBox=\"0 0 22 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6 9V6H14V9H6ZM19.814 23.936L17.3 21.416C16.5923 21.7949 15.8028 21.9953 15 22C14.0111 22 13.0444 21.7068 12.2221 21.1573C11.3999 20.6079 10.759 19.827 10.3806 18.9134C10.0022 17.9998 9.90315 16.9945 10.0961 16.0245C10.289 15.0546 10.7652 14.1637 11.4645 13.4645C12.1637 12.7652 13.0546 12.289 14.0245 12.0961C14.9945 11.9031 15.9998 12.0022 16.9134 12.3806C17.827 12.759 18.6079 13.3999 19.1573 14.2221C19.7068 15.0444 20 16.0111 20 17C19.9953 17.8028 19.7949 18.5923 19.416 19.3L21.936 21.819L19.814 23.936ZM17 17C17 16.6044 16.8827 16.2178 16.6629 15.8889C16.4432 15.56 16.1308 15.3036 15.7654 15.1522C15.3999 15.0009 14.9978 14.9613 14.6098 15.0384C14.2219 15.1156 13.8655 15.3061 13.5858 15.5858C13.3061 15.8655 13.1156 16.2219 13.0384 16.6098C12.9613 16.9978 13.0009 17.3999 13.1522 17.7654C13.3036 18.1308 13.56 18.4432 13.8889 18.6629C14.2178 18.8827 14.6044 19 15 19C15.5304 19 16.0391 18.7893 16.4142 18.4142C16.7893 18.0391 17 17.5304 17 17ZM8.079 21H3.5C3.36739 21 3.24021 20.9473 3.14645 20.8536C3.05268 20.7598 3 20.6326 3 20.5V3.5C3 3.36739 3.05268 3.24021 3.14645 3.14645C3.24021 3.05268 3.36739 3 3.5 3H17V9.262C18.095 9.54362 19.1177 10.0549 20 10.762V0H3.5C2.57174 0 1.6815 0.368749 1.02513 1.02513C0.368749 1.6815 0 2.57174 0 3.5V20.5C0 21.4283 0.368749 22.3185 1.02513 22.9749C1.6815 23.6313 2.57174 24 3.5 24H11.13C9.86051 23.2942 8.80611 22.2574 8.079 21Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18z7qjn\",\"data-framer-name\":\"Frame 807\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},children:\"Discover\"})}),className:\"framer-qmz6qq\",\"data-framer-name\":\"Extremely Flexible\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Within 48 hours, expect to receive personalized recommendations tailored to your needs.\"})}),className:\"framer-1j80bog\",\"data-framer-name\":\"We believe in pushing the boundaries of what's possible explore emerging technology\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q6mkbz\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n12frm\",\"data-framer-name\":\"Frame 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-37iuv1\",\"data-framer-name\":\"Frame 165\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlbiwm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EseZQaHuM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"WrapText\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"EseZQaHuM\",layoutId:\"EseZQaHuM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ingmo2\",\"data-framer-name\":\"Frame 807\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},children:\"Strategize\"})}),className:\"framer-6ma6uk\",\"data-framer-name\":\"Extremely Flexible\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"This is where we truly get to know you, your current standing, and where you envision your brand heading.\"})}),className:\"framer-1h1pue6\",\"data-framer-name\":\"We believe in pushing the boundaries of what's possible explore emerging technology\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wjhr4v\",\"data-framer-name\":\"Frame 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1df6ew8\",\"data-framer-name\":\"Frame 165\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8xawp\",\"data-framer-name\":\"fi-bs-user\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1obfiim-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RmHI4lEvY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Widgets\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RmHI4lEvY\",layoutId:\"RmHI4lEvY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5adat\",\"data-framer-name\":\"Frame 807\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},children:\"Create\"})}),className:\"framer-apntsg\",\"data-framer-name\":\"Extremely Flexible\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Let the magic begin! Once we agree on a start date, we'll guide you through our seamless setup process.\"})}),className:\"framer-1i6d5df\",\"data-framer-name\":\"We believe in pushing the boundaries of what's possible explore emerging technology\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10zfwzt\",\"data-framer-name\":\"Frame 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4xhzr\",\"data-framer-name\":\"Frame 165\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1klrk4p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aLF23Dif9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"MonetizationOn\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"aLF23Dif9\",layoutId:\"aLF23Dif9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tn9a4n\",\"data-framer-name\":\"fi-br-stats\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h95lft\",\"data-framer-name\":\"Frame 807\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},children:\"Monetize\"})}),className:\"framer-1es6kke\",\"data-framer-name\":\"Extremely Flexible\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.245px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Now that your brand is thriving, it's time to reap the rewards. We'll work closely with you to explore monetization opportunities\"})}),className:\"framer-2a78do\",\"data-framer-name\":\"We believe in pushing the boundaries of what's possible explore emerging technology\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1qbmjtn\",\"data-framer-name\":\"Feature\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ysq9re\",\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nr3d2f-container\",isModuleExternal:true,nodeId:\"FRNmr2oSY\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard11,{height:\"100%\",id:\"FRNmr2oSY\",isAHbpQQ9:\"TESTIMONIALS\",layoutId:\"FRNmr2oSY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"Our clients\"}),\" on their \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"amazing results\"})]})}),className:\"framer-1hj321e\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1immkk4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3s9m27\",\"data-framer-name\":\"Feature 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-96todi\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1emmfyj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bgrk5y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1du6ike\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{y:(componentViewport?.y||0)+0+2959.2+53+218+0+0+0+0+0+0+0+0+0+0+0},zjqIIsYr1:{y:(componentViewport?.y||0)+0+3054.6+68+218+0+0+0+245+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+2006.8+53+218+0+0+12+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iqcyoz-container\",nodeId:\"UBfyeYUNZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard1,{height:\"100%\",id:\"UBfyeYUNZ\",isAHbpQQ9:\"Testimonial - ExlyApp\",layoutId:\"UBfyeYUNZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:[\"Empowering \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"ExlyApp's \"}),\"Growth Journey\"]})}),className:\"framer-76eyxw\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our approach to content marketing for ExlyApp really hit the mark. We crafted a strategy that truly showcased their one-of-a-kind product with content that was not only engaging but also relatable. This helped us forge genuine connections with their perfect audience.\"})}),className:\"framer-jpd2q6\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c056xo\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p47zii-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oo4rHQeoX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"oo4rHQeoX\",isMixedBorderRadius:false,isRed:true,layoutId:\"oo4rHQeoX\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://youtu.be/IbnaM8QPFVg?si=8KUN1-19viMjk7DA\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqbv5o\",\"data-framer-name\":\"Feature 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-arvis7\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wdd3sd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"enRsAkAwB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"enRsAkAwB\",isMixedBorderRadius:false,isRed:true,layoutId:\"enRsAkAwB\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://youtu.be/K8Q4USdFP4U?si=5TX5deS87BJatvqK\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10f56ua\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4je22y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0eihs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2clq1d-container\",isModuleExternal:true,nodeId:\"wHthTK_W8\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard11,{height:\"100%\",id:\"wHthTK_W8\",isAHbpQQ9:\"Testimonial - Docsumo\",layoutId:\"wHthTK_W8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Scaling \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Docsumo's\"}),\" Influence\"]})}),className:\"framer-mdtobv\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our content series highlighted the special aspects of Docsumo and helped them connect with people on a personal level. This led to noticeable growth and recognition within the industry.\"})}),className:\"framer-1qqvgdx\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11o3ei9\",\"data-framer-name\":\"Offer\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19k2dc3\",\"data-framer-name\":\"Frame 39555\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16amc5j\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1omn9qg\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Engaging Stories: Captivating narratives reflecting Docsumo's essence.\"})}),className:\"framer-1p0yj0z\",\"data-framer-name\":\"Task charts for project timelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyamr2\",\"data-framer-name\":\"Frame 39554\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8e55w\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hagif2\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Innovation Spotlight: Showcasing cutting-edge features, sparking interest.\"})}),className:\"framer-ej2tog\",\"data-framer-name\":\"User friendly task creation\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mn9dl2\",\"data-framer-name\":\"Frame 39552\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i9jywg\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r7cuoq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Human Connections: Content fostering genuine relationships.\"})}),className:\"framer-1gjbk6m\",\"data-framer-name\":\"Task organization and tracking\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gepvxt\",\"data-framer-name\":\"Frame 39553\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pvncba\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-493ibh\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Expanding Horizons: Guiding into new territories for growth.\"})}),className:\"framer-1pcwbiq\",\"data-framer-name\":\"Seamless collaboration\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yownxs\",\"data-framer-name\":\"Frame 39553\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y2jfde\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18rhkfh\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Trust Pillar: Solidifying industry credibility through content.\"})}),className:\"framer-cub6vh\",\"data-framer-name\":\"Seamless collaboration\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e68j13\",\"data-framer-name\":\"Feature 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gjoz7g\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xyi4zc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-166rvmc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xfz709-container\",isModuleExternal:true,nodeId:\"MPWwNcngD\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard11,{height:\"100%\",id:\"MPWwNcngD\",isAHbpQQ9:\"Testimonial - KodeKloud\",layoutId:\"MPWwNcngD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"left\"},children:[\"0 to 183k Subs \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"KodeKloud's\"}),\" Growth\"]})}),className:\"framer-1wxb3nu\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Discover how we helped KodeKloud grow to 183k subscribers on YouTube in record time\"})}),className:\"framer-35k0lw\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2cvt7n\",\"data-framer-name\":\"Offer\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vb88xz\",\"data-framer-name\":\"Frame 39555\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfebbw\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7tz8as\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Customized content plan accelerates subscriber growth.\"})}),className:\"framer-1o2n0y0\",\"data-framer-name\":\"Task charts for project timelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9at2ho\",\"data-framer-name\":\"Frame 39554\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t098rh\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1emz36a\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Compelling video production captivates viewers effectively.\"})}),className:\"framer-yatc\",\"data-framer-name\":\"User friendly task creation\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d9ejs7\",\"data-framer-name\":\"Frame 39552\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uueazu\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v7dedr\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Strategic promotion and optimization enhance visibility.\"})}),className:\"framer-1x4mlv2\",\"data-framer-name\":\"Task organization and tracking\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11y18a\",\"data-framer-name\":\"Frame 39553\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ree5xi\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6gmiaw\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Collaborative tactics unlock channel's full potential.\"})}),className:\"framer-1w3u6w3\",\"data-framer-name\":\"Seamless collaboration\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qyl8mr\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-169nth6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CphdmsMnC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"CphdmsMnC\",isMixedBorderRadius:false,isRed:true,layoutId:\"CphdmsMnC\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://youtu.be/WD9iTJVmpE0\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t0v7c6\",\"data-framer-name\":\"Feature 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x8bhkm\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k23o0s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nqqlelO2J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"nqqlelO2J\",isMixedBorderRadius:false,isRed:true,layoutId:\"nqqlelO2J\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://youtu.be/VxJu20AK5ZA\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66corf\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q90kp9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qp4a78\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1njtmn6-container\",isModuleExternal:true,nodeId:\"Z2HJMWMJg\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard11,{height:\"100%\",id:\"Z2HJMWMJg\",isAHbpQQ9:\"Testimonial - Edyst\",layoutId:\"Z2HJMWMJg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Growing \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Edyst\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},children:\"0 to 35k Subs\"})]})}),className:\"framer-9lerpa\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"left\"},children:\"We partnered, collaborated, and went viral to grow Edyst's audience and boost subscribers.\"})}),className:\"framer-511s6p\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-umz27j\",\"data-framer-name\":\"Offer\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1br6282\",\"data-framer-name\":\"Frame 39555\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-juujzc\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-119nmvu\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Strategic Marketing\"})}),className:\"framer-1ajx7fq\",\"data-framer-name\":\"Task charts for project timelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p301ro\",\"data-framer-name\":\"Frame 39554\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dzn3xq\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lphrw5\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Compelling Content Creation\"})}),className:\"framer-1kzhg3c\",\"data-framer-name\":\"User friendly task creation\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mpopo\",\"data-framer-name\":\"Frame 39552\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n8dvtp\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oq1qno\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Enhanced User Experience\"})}),className:\"framer-kbafrl\",\"data-framer-name\":\"Task organization and tracking\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dz6480\",\"data-framer-name\":\"Frame 39553\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5lpy4\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-giwlpd\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Data-Driven Insights\"})}),className:\"framer-13i0x4e\",\"data-framer-name\":\"Seamless collaboration\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yr1ak2\",\"data-framer-name\":\"Frame 39553\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ajr07\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x2913x\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Amplified Reach\"})}),className:\"framer-qobq2n\",\"data-framer-name\":\"Seamless collaboration\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aizwnx\",\"data-framer-name\":\"Feature 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0aetc\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1egq9xt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibup10\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ne1b3c-container\",isModuleExternal:true,nodeId:\"eXTzIi_HF\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MiniCard11,{height:\"100%\",id:\"eXTzIi_HF\",isAHbpQQ9:\"Testimonial - Legistify\",layoutId:\"eXTzIi_HF\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"left\"},children:[\"3X Growth for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Legistify\"})]})}),className:\"framer-zlle51\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"left\"},children:\"More than content creators, we became Legistify's bridge to building trust and credibility as a leading legal technology solution.\"})}),className:\"framer-1kf6dx8\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sbyuq2\",\"data-framer-name\":\"Offer\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19f8dz8\",\"data-framer-name\":\"Frame 39555\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lybf7k\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9s0ixd\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"A Targeted Content Roadmap\"})}),className:\"framer-1cbivq1\",\"data-framer-name\":\"Task charts for project timelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bs0twr\",\"data-framer-name\":\"Frame 39554\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14aenwd\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ooluwx\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Authoritative and Engaging Content\"})}),className:\"framer-1m47rwj\",\"data-framer-name\":\"User friendly task creation\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bhu1ys\",\"data-framer-name\":\"Frame 39552\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iw8uqh\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e89t0\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Strategic Content Distribution\"})}),className:\"framer-42w3lw\",\"data-framer-name\":\"Task organization and tracking\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-opp24u\",\"data-framer-name\":\"Frame 39553\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qd8go9\",\"data-framer-name\":\"fi-br-check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yc269b\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.52036 11.0532C4.12296 11.0533 3.74183 10.8954 3.46106 10.6141L0.258452 7.41271C-0.0861507 7.068 -0.0861507 6.50922 0.258452 6.16451C0.603165 5.81991 1.16194 5.81991 1.50666 6.16451L4.52036 9.17821L12.4933 1.20523C12.8381 0.860627 13.3968 0.860627 13.7415 1.20523C14.0862 1.54994 14.0862 2.10872 13.7415 2.45344L5.57966 10.6141C5.29889 10.8954 4.91776 11.0533 4.52036 11.0532Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4232ca0-c773-41aa-8fa7-971bcc73dbec, rgb(197, 198, 197))\"},children:\"Impressive Growth Metrics\"})}),className:\"framer-1kucy57\",\"data-framer-name\":\"Seamless collaboration\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hg5prv\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1obqt8l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"schgMZKPV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"schgMZKPV\",isMixedBorderRadius:false,isRed:true,layoutId:\"schgMZKPV\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://youtu.be/_kJd_IwOxDE?si=hUsXN5b8GjgfB7te\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-17vdlym\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"li\",{className:\"framer-kjxoo\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hznj9w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aQ_PD5wCq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:.25,id:\"aQ_PD5wCq\",layoutId:\"aQ_PD5wCq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t9ukpu-container\",inComponentSlot:true,nodeId:\"DRbJhyCPf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Our marketing team loves Growvize! It keeps everyone on the same page and helps us run smoother campaigns that get results for our clients.\"',height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/MmW68TcOAtivjnudwHRpxfqJTY.jpeg\",srcSet:\"https://framerusercontent.com/images/MmW68TcOAtivjnudwHRpxfqJTY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MmW68TcOAtivjnudwHRpxfqJTY.jpeg 800w\"},\"\"),id:\"DRbJhyCPf\",layoutId:\"DRbJhyCPf\",Oe4Q9T3oL:\"Founder - Docsumo\",PQ4NsqLtd:\"Rushabh Sheth\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mfk45j-container\",inComponentSlot:true,nodeId:\"POoTd2Fwq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Growvize team boosted my brand on social media and helped me reach new clients. Growvize turns dreams into reality - highly recommend!\"',height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/dVS48dOFNsmO844caLnBM8hSGSw.png\"},\"\"),id:\"POoTd2Fwq\",layoutId:\"POoTd2Fwq\",Oe4Q9T3oL:\"Founder - Renterio \",PQ4NsqLtd:\"Poornachandra Shankar\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vky4pd-container\",inComponentSlot:true,nodeId:\"bJJWyO_cQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Growvize helped me grow my brand and reach new fans across social media. They\\'re the perfect partner to take your brand to the next level\"',height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:1173,pixelWidth:1080,src:\"https://framerusercontent.com/images/69tQXNsYtKIykeQf4p6yX8Nv4.jpg\",srcSet:\"https://framerusercontent.com/images/69tQXNsYtKIykeQf4p6yX8Nv4.jpg?scale-down-to=1024 942w,https://framerusercontent.com/images/69tQXNsYtKIykeQf4p6yX8Nv4.jpg 1080w\"},\"\"),id:\"bJJWyO_cQ\",layoutId:\"bJJWyO_cQ\",Oe4Q9T3oL:\"CEO - Admire Beauty & Admire Fit\",PQ4NsqLtd:\"Anjali Singh ( 2 Million Subs )\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-szoxy3-container\",inComponentSlot:true,nodeId:\"zWCialsKe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Ionio\\'s founder here. Growvize team was amazing. They helped us reach more clients and explode our social media presence.\"\\n',height:\"100%\",id:\"zWCialsKe\",layoutId:\"zWCialsKe\",Oe4Q9T3oL:\"Founder - ionio.io\",PQ4NsqLtd:\"Rohan Sawant\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c83k5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IoTeiYWw5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:.25,id:\"IoTeiYWw5\",layoutId:\"IoTeiYWw5\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sqrct3-container\",inComponentSlot:true,nodeId:\"yWPbwz1ee\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Growvize totally changed my social media game! They helped my brand explode across platforms and reach new audiences. Growvize: the secret weapon for social media success!\"',height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:872,pixelWidth:837,src:\"https://framerusercontent.com/images/gDCCTCyEVM7GZT3bwXfNoI9P0.png\",srcSet:\"https://framerusercontent.com/images/gDCCTCyEVM7GZT3bwXfNoI9P0.png 837w\"},\"\"),id:\"yWPbwz1ee\",layoutId:\"yWPbwz1ee\",Oe4Q9T3oL:\" \",PQ4NsqLtd:\"Roopa Rani\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wsgzuk-container\",inComponentSlot:true,nodeId:\"CjhOSSjlw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Growvize helped us crack the social media code for CAT aspirants. They boosted our reach and engagement, making Catking a top online destination. Growvize: Your key to unlocking success in the education space!\"',height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:387,pixelWidth:390,src:\"https://framerusercontent.com/images/SWwKRVnuw7ZQOYZnTQrUtR86sJc.jpeg\"},\"\"),id:\"CjhOSSjlw\",layoutId:\"CjhOSSjlw\",Oe4Q9T3oL:\"Founder of CATKing Educare\",PQ4NsqLtd:\"Sumit Singh Gandhi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cpkwd1-container\",inComponentSlot:true,nodeId:\"Fpyl5Yrvi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:'\"Growvize has been a game-changer for our edtech business. Their social media magic helped us reach more students and grow our online presence. Growvize: The perfect partner to amplify your education brand! \"',height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/3jzDv4fpqsjjjFswqhLV2CJc.jpeg\"},\"\"),id:\"Fpyl5Yrvi\",layoutId:\"Fpyl5Yrvi\",Oe4Q9T3oL:\"Co-Founder at Edyst\",PQ4NsqLtd:\"Aneeq Dholakia\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1she9yt-container\",inComponentSlot:true,nodeId:\"lAwlE4GFW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{A6QjeEh60:\"\\\"Growing KodeKloud's social media presence was a challenge, but Growvize's social media magic did the trick! Their targeted campaigns helped us reach more students and boost our online following. Highly recommend Growvize for anyone looking to up their social media game!\\\"\",height:\"100%\",iC8wxXvNq:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/0xIG4eUxtrrRxUpsTr8JQlm8Bg.jpeg\",srcSet:\"https://framerusercontent.com/images/0xIG4eUxtrrRxUpsTr8JQlm8Bg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0xIG4eUxtrrRxUpsTr8JQlm8Bg.jpeg 800w\"},\"\"),id:\"lAwlE4GFW\",layoutId:\"lAwlE4GFW\",Oe4Q9T3oL:\"Founder & CEO at KodeKloud\",PQ4NsqLtd:\"Mumshad Mannambeth\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1p0l6qh\",\"data-framer-name\":\"Integrations\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axxnmm\",\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b7aubz\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ej0h9f\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"44\" height=\"44\" rx=\"8\" fill=\"#20211F\"/>\\n<path d=\"M27 31.375C28.1604 31.375 29.2731 30.9141 30.0936 30.0936C30.9141 29.2731 31.375 28.1604 31.375 27C31.375 25.8397 30.9141 24.7269 30.0936 23.9064C29.2731 23.086 28.1604 22.625 27 22.625H23.25C23.1677 22.6242 23.0861 22.6398 23.0099 22.6709C22.9337 22.7021 22.8645 22.7481 22.8063 22.8063C22.7481 22.8645 22.7021 22.9337 22.6709 23.0099C22.6398 23.0861 22.6242 23.1677 22.625 23.25V27C22.6263 28.16 23.0876 29.272 23.9078 30.0922C24.728 30.9124 25.8401 31.3738 27 31.375Z\" fill=\"#A0E00D\"/>\\n<path d=\"M27 12.625C25.8401 12.6263 24.728 13.0876 23.9078 13.9078C23.0876 14.728 22.6263 15.8401 22.625 17V20.75C22.6242 20.8323 22.6398 20.9139 22.6709 20.9901C22.7021 21.0663 22.7481 21.1356 22.8063 21.1938C22.8645 21.252 22.9337 21.298 23.0099 21.3291C23.0861 21.3602 23.1677 21.3758 23.25 21.375H27C28.1604 21.375 29.2731 20.9141 30.0936 20.0936C30.9141 19.2731 31.375 18.1603 31.375 17C31.375 15.8397 30.9141 14.7269 30.0936 13.9064C29.2731 13.0859 28.1604 12.625 27 12.625Z\" fill=\"#A0E00D\"/>\\n<path d=\"M17 31.375C18.1599 31.3738 19.272 30.9124 20.0922 30.0922C20.9124 29.272 21.3737 28.16 21.375 27V23.25C21.3758 23.1677 21.3602 23.0861 21.3291 23.0099C21.298 22.9337 21.252 22.8645 21.1938 22.8063C21.1356 22.7481 21.0663 22.7021 20.9901 22.6709C20.9139 22.6398 20.8323 22.6242 20.75 22.625H17C15.8397 22.625 14.7269 23.086 13.9064 23.9064C13.0859 24.7269 12.625 25.8397 12.625 27C12.625 28.1604 13.0859 29.2731 13.9064 30.0936C14.7269 30.9141 15.8397 31.375 17 31.375Z\" fill=\"#A0E00D\"/>\\n<path d=\"M17 21.375H20.75C20.8323 21.3758 20.9139 21.3602 20.9901 21.3291C21.0663 21.298 21.1356 21.252 21.1938 21.1938C21.252 21.1356 21.298 21.0663 21.3291 20.9901C21.3602 20.9139 21.3758 20.8323 21.375 20.75V17C21.375 16.1347 21.1184 15.2888 20.6377 14.5694C20.157 13.8499 19.4737 13.2892 18.6742 12.958C17.8748 12.6269 16.9951 12.5403 16.1465 12.7091C15.2978 12.8779 14.5183 13.2946 13.9064 13.9064C13.2946 14.5183 12.8779 15.2978 12.7091 16.1465C12.5403 16.9951 12.6269 17.8748 12.958 18.6742C13.2892 19.4737 13.8499 20.157 14.5694 20.6377C15.2888 21.1184 16.1347 21.375 17 21.375Z\" fill=\"#A0E00D\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13yhbpc\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"left\"},children:\"Growth-Oriented Strategy\"})}),className:\"framer-javqrj\",\"data-framer-name\":\"Growth-oriented integration\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9790h\",\"data-styles-preset\":\"FcNLOZCHo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stop struggling to grow! We turn your content into a growth machine, reaching more people and boosting engagement.\"})}),className:\"framer-vzlpkb\",\"data-framer-name\":\"Empower your business with flexible and growth-oriented integration solutions & technologies\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{y:(componentViewport?.y||0)+0+7160.2+0+0+0+316},zjqIIsYr1:{y:(componentViewport?.y||0)+0+9302.6+0+0+0+316}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+7139.8+219+0+316,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19adjqq-container\",nodeId:\"rs9SVhg79\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"rs9SVhg79\",layoutId:\"rs9SVhg79\",PI9Hk9WtQ:\"Discover More\",TRYqz29GT:\"https://calendly.com/adarsh-growvize/discovery-call\",variant:\"qsIOPoESe\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182qzgs\",\"data-framer-name\":\"Brand\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vdxt5a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eV4HJ9wk6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.5,id:\"eV4HJ9wk6\",layoutId:\"eV4HJ9wk6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-676cz6-container\",inComponentSlot:true,nodeId:\"R_W2gFU3f\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"YouTube\",height:\"100%\",id:\"R_W2gFU3f\",IZpDv4PoZ:\"We turn your expertise into binge-worthy YouTube content that grows your audience.\",layoutId:\"R_W2gFU3f\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/Bxu7Ver8mmsL8C17kZHezqrTI.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vz0hvq-container\",inComponentSlot:true,nodeId:\"BewgMs2I3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"Instagram\",height:\"100%\",id:\"BewgMs2I3\",IZpDv4PoZ:\"We craft magnetic Instagram content that makes you go viral on Instagram\",layoutId:\"BewgMs2I3\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/wi8JaIiN2doYfwm3xVqcOawHcw.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cjue2s-container\",inComponentSlot:true,nodeId:\"y9W2lYK0q\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"Linkedin\",height:\"100%\",id:\"y9W2lYK0q\",IZpDv4PoZ:\"We elevate your LinkedIn presence that positions you as an industry leader.\",layoutId:\"y9W2lYK0q\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/Tsv27v9ZRC431zNb8n9Jpj0xki4.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15b8a4g-container\",inComponentSlot:true,nodeId:\"PXXO146Gf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"X ( Twitter )\",height:\"100%\",id:\"PXXO146Gf\",IZpDv4PoZ:\"We write Twitter threads your audience will retweet and growing your network.\",layoutId:\"PXXO146Gf\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/c83DwflY1WsQyz72uVVqRBl3uNQ.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-it8r6v-container\",inComponentSlot:true,nodeId:\"bbZs7jdGf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"Meta \",height:\"100%\",id:\"bbZs7jdGf\",IZpDv4PoZ:\"We create buzz-worthy Facebook content that gets shared across Meta \",layoutId:\"bbZs7jdGf\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/DzTk1wZPWlvl9x7woYJHyN7mk.png\"},\"\"),width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jmku0i-container hidden-1rj31h2\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fybEvMVU7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.5,id:\"fybEvMVU7\",layoutId:\"fybEvMVU7\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9o5any-container\",inComponentSlot:true,nodeId:\"xfVfxs51e\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"Skool\",height:\"100%\",id:\"xfVfxs51e\",IZpDv4PoZ:\"We build thriving communities on Skool, connecting you with your ideal audience.\",layoutId:\"xfVfxs51e\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/TccpAKa9IGkHzNKzhwVgD5KXqw.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1faydyo-container\",inComponentSlot:true,nodeId:\"Y60ZIqOsz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"Reddit\",height:\"100%\",id:\"Y60ZIqOsz\",IZpDv4PoZ:\"We craft Reddit-worthy content that gets upvoted and sparks conversations in your niche.\",layoutId:\"Y60ZIqOsz\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/q05OzjlZBJXuj8X3zJr6IyC7V48.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14h7ogx-container\",inComponentSlot:true,nodeId:\"pCmpZvvNk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"SnapChat\",height:\"100%\",id:\"pCmpZvvNk\",IZpDv4PoZ:\"We craft disappearing Snapchat delights that fuel engagement and grow your audience.\",layoutId:\"pCmpZvvNk\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/mGy5u6AWIddQDMpn92R1guya6O0.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mbya3s-container\",inComponentSlot:true,nodeId:\"MXCgI0ed9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"TikTok\",height:\"100%\",id:\"MXCgI0ed9\",IZpDv4PoZ:\"We make viral-worthy TikToks that stop the scroll and skyrocket your engagement.\",layoutId:\"MXCgI0ed9\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/RCLVRThQB6WYrzNqiR8jejRJvU.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"304px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rexqef-container\",inComponentSlot:true,nodeId:\"CAbVf7iOj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntragationsCard3,{AZ4GdMV7F:\"Discord\",height:\"100%\",id:\"CAbVf7iOj\",IZpDv4PoZ:\"We spark conversations and build communities on Discord with engaging content \",layoutId:\"CAbVf7iOj\",style:{height:\"100%\",width:\"100%\"},teKQKu6vj:addImageAlt({pixelHeight:173,pixelWidth:172,src:\"https://framerusercontent.com/images/gXVJ5AElQAhLkJzkeXvdqYma0.png\"},\"\"),width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cv9snx\",\"data-framer-name\":\"FAQs\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions (FAQs)\"})}),className:\"framer-cognft\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mgkowm\",\"data-framer-name\":\"Q&A\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+9430.2+51+152+0+0},zjqIIsYr1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+10679.6+0+152+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:`min(${componentViewport?.width||\"100vw\"} - 270px, 800px)`,y:(componentViewport?.y||0)+0+7939.8+51+152+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hs970o-container\",nodeId:\"KK4bY21C2\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{CM1C23HdI:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",height:\"100%\",id:\"KK4bY21C2\",layoutId:\"KK4bY21C2\",m1wBZJAoM:\"Building an online audience takes time, but the rewards are huge! we're your partner in growth. We'll work with you long-term, strategize like a teammate, and help you achieve amazing results. Let's chat and see what we can do together!\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Xgjb2whXi\",vd59XDbg4:\"What results can I expect?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+9430.2+51+152+0+232},zjqIIsYr1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+10679.6+0+152+0+232}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:`min(${componentViewport?.width||\"100vw\"} - 270px, 800px)`,y:(componentViewport?.y||0)+0+7939.8+51+152+0+232,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-144w6bv-container\",nodeId:\"DUl2sXPlG\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{CM1C23HdI:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",height:\"100%\",id:\"DUl2sXPlG\",layoutId:\"DUl2sXPlG\",m1wBZJAoM:\"We've seen incredible results with \\\"founder-first\\\" marketing! Imagine amplifying your voice alongside your brand's social media magic.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"MDiouwstx\",vd59XDbg4:\"Can you help my startup?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+9430.2+51+152+0+464},zjqIIsYr1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+10679.6+0+152+0+464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:`min(${componentViewport?.width||\"100vw\"} - 270px, 800px)`,y:(componentViewport?.y||0)+0+7939.8+51+152+0+464,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p3aevg-container\",nodeId:\"hQtBgD9ri\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{CM1C23HdI:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",height:\"100%\",id:\"hQtBgD9ri\",layoutId:\"hQtBgD9ri\",m1wBZJAoM:\"We get you! Understanding your audience and content goals is our jam. We'll seamlessly integrate with your existing systems or build a strategy from scratch, saving you precious time.\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"MDiouwstx\",vd59XDbg4:\"What sets Growvize apart and makes it a compelling choice?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+9430.2+51+152+0+696},zjqIIsYr1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+10679.6+0+152+0+696}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:`min(${componentViewport?.width||\"100vw\"} - 270px, 800px)`,y:(componentViewport?.y||0)+0+7939.8+51+152+0+696,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b42knd-container\",nodeId:\"YiUAFSdlg\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{CM1C23HdI:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",height:\"100%\",id:\"YiUAFSdlg\",layoutId:\"YiUAFSdlg\",m1wBZJAoM:\"No time-wasting here! We keep things smooth and efficient. Hop on Slack and get a response from our team \u2013 lightning fast. We're always here to support you!\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"MDiouwstx\",vd59XDbg4:\"What do you need from me to make this a success?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+9430.2+51+152+0+928},zjqIIsYr1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 800px)`,y:(componentViewport?.y||0)+0+10679.6+0+152+0+928}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:208,width:`min(${componentViewport?.width||\"100vw\"} - 270px, 800px)`,y:(componentViewport?.y||0)+0+7939.8+51+152+0+928,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dan1ff-container\",nodeId:\"voQUXgd8y\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQ,{CM1C23HdI:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",height:\"100%\",id:\"voQUXgd8y\",layoutId:\"voQUXgd8y\",m1wBZJAoM:\"Big results take time! We recommend a minimum 3-month partnership to truly unleash the power of content. Plus, many of our creators, founders, and startups stick with us for years \u2013 that says something, right?\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"MDiouwstx\",vd59XDbg4:\"Is there a minimum partnership length?\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-of8lfy\",\"data-framer-name\":\"CTA section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ibq0wu\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wogvhw\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zjqIIsYr1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Are You Ready to Go Viral on \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Social Media ?\"})]})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3lft5b\",\"data-styles-preset\":\"nextLLEvq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Are You Ready to Go Viral on \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\"},children:\"Social Media ?\"})]})}),className:\"framer-1xyoc7y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc67e90e-48dc-4f80-982e-70997b015a08, rgb(198, 199, 198))\"},children:\"Join thousands of teams worldwide who trust Saasta to simplify their project workflows and drive success.\"})})},zjqIIsYr1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc67e90e-48dc-4f80-982e-70997b015a08, rgb(198, 199, 198))\"},children:\"Join thousands of teams worldwide who trust Saasta to simplify their project workflows and drive success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc67e90e-48dc-4f80-982e-70997b015a08, rgb(198, 199, 198))\"},children:\"We've empowered brands & Creators of all sizes, industries, and growth stages. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc67e90e-48dc-4f80-982e-70997b015a08, rgb(198, 199, 198))\"},children:\"What can we do for yours?\"})]}),className:\"framer-1d9z3yy\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{y:(componentViewport?.y||0)+0+10929.2+0+0+80+0+248},zjqIIsYr1:{y:(componentViewport?.y||0)+0+12035.6+0+0+24+0+220.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+9438.8+0+0+80+0+392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wokjvb-container\",nodeId:\"eOfJcoN4q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"eOfJcoN4q\",layoutId:\"eOfJcoN4q\",PI9Hk9WtQ:\"YES! LET'S GET STARTED\",TRYqz29GT:\"https://calendly.com/adarsh-growvize/discovery-call\",variant:\"qsIOPoESe\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c6pceh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xCo5bEzDv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Calendly inline widget begin -->\\n<div class=\"calendly-inline-widget\" data-url=\"https://calendly.com/adarsh-growvize/discovery-call\" style=\"min-width:320px;height:700px;\"></div>\\n<script type=\"text/javascript\" src=\"https://assets.calendly.com/assets/external/widget.js\" async></script>\\n<!-- Calendly inline widget end -->',id:\"xCo5bEzDv\",layoutId:\"xCo5bEzDv\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{y:(componentViewport?.y||0)+0+12318.2},zjqIIsYr1:{y:(componentViewport?.y||0)+0+13275.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:481,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10971.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kylgf9-container\",nodeId:\"qVqzlMNQE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S0A0xPRj8:{variant:\"CVNkY2SiI\"},zjqIIsYr1:{variant:\"pJ0BMkNca\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qVqzlMNQE\",layoutId:\"qVqzlMNQE\",style:{width:\"100%\"},variant:\"SaP9NLc9J\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HAp3E.framer-lux5qc, .framer-HAp3E .framer-lux5qc { display: block; }\",\".framer-HAp3E.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, #070806); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-HAp3E .framer-1i5vaby-container { bottom: 66px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 5; }\",\".framer-HAp3E .framer-1dobzkw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 160px 135px 0px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-o1tzj0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-HAp3E .framer-k8emox, .framer-HAp3E .framer-1hyqzb5, .framer-HAp3E .framer-bgrk5y, .framer-HAp3E .framer-4je22y, .framer-HAp3E .framer-1xyi4zc, .framer-HAp3E .framer-q90kp9, .framer-HAp3E .framer-1egq9xt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1q5uq9x-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HAp3E .framer-19r9khx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-HAp3E .framer-zqmz27 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 14px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-jkwy09 { align-content: center; align-items: center; aspect-ratio: 1.56 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 750px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-2qmmti-container { flex: none; height: 750px; position: relative; width: 1171px; }\",\".framer-HAp3E .framer-pnk90l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 54%; min-height: 265px; min-width: 450px; overflow: visible; padding: 0px; position: absolute; top: -175px; transform: translateX(-50%); width: min-content; z-index: 0; }\",\".framer-HAp3E .framer-n202or { flex: none; height: 265px; position: relative; width: 450px; }\",\".framer-HAp3E .framer-16ywory { align-content: center; align-items: center; bottom: 84px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: -327px; overflow: hidden; padding: 0px; position: absolute; right: -328px; top: 26px; z-index: 0; }\",\".framer-HAp3E .framer-nzgh4k { flex: none; height: 530px; position: relative; width: 1175px; }\",\".framer-HAp3E .framer-kicnse-container { flex: none; height: auto; left: 120px; position: fixed; right: 120px; top: 20px; z-index: 9; }\",\".framer-HAp3E .framer-1x2jjt6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 2000px; overflow: hidden; padding: 7px 135px 0px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-qyftcm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1z11ehd-container { flex: none; height: 167px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-181l87p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 236px; }\",\".framer-HAp3E .framer-qc9f7e, .framer-HAp3E .framer-o4hek5, .framer-HAp3E .framer-1ppibgn, .framer-HAp3E .framer-1lgddmg, .framer-HAp3E .framer-c777rm, .framer-HAp3E .framer-1v8b8ae, .framer-HAp3E .framer-otpsnw { background-color: #20211f; flex: none; height: 52px; position: relative; width: 3px; }\",\".framer-HAp3E .framer-scx639 { aspect-ratio: 3.3884892086330933 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; text-decoration: none; width: 180px; }\",\".framer-HAp3E .framer-1lx4e42 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 162px; }\",\".framer-HAp3E .framer-z0d96b { aspect-ratio: 3.3353658536585367 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; text-decoration: none; width: 110px; }\",\".framer-HAp3E .framer-1ik5vfa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 203px; }\",\".framer-HAp3E .framer-o07uix { aspect-ratio: 6.918918918918919 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); overflow: visible; position: relative; text-decoration: none; width: 145px; }\",\".framer-HAp3E .framer-19dfsxy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 197px; }\",\".framer-HAp3E .framer-13jt9cy { aspect-ratio: 3.218274111675127 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; text-decoration: none; width: 144px; }\",\".framer-HAp3E .framer-1dnoxvy, .framer-HAp3E .framer-1vuht3j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 243px; }\",\".framer-HAp3E .framer-175j4w5 { aspect-ratio: 3.328358208955224 / 1; flex: none; height: 58px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 193px); }\",\".framer-HAp3E .framer-nbc46g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 143px; }\",\".framer-HAp3E .framer-1wo6rd7 { aspect-ratio: 1.9607843137254901 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 92px; z-index: 1; }\",\".framer-HAp3E .framer-4wpt97 { aspect-ratio: 2.6467065868263475 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: visible; position: relative; text-decoration: none; width: 178px; }\",\".framer-HAp3E .framer-3aj7a2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 135px 0px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-xpcwnm-container, .framer-HAp3E .framer-1nr3d2f-container, .framer-HAp3E .framer-iqcyoz-container, .framer-HAp3E .framer-2clq1d-container, .framer-HAp3E .framer-1xfz709-container, .framer-HAp3E .framer-1njtmn6-container, .framer-HAp3E .framer-ne1b3c-container, .framer-HAp3E .framer-19adjqq-container, .framer-HAp3E .framer-wokjvb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HAp3E .framer-16q33z3, .framer-HAp3E .framer-1hj321e, .framer-HAp3E .framer-76eyxw, .framer-HAp3E .framer-jpd2q6, .framer-HAp3E .framer-mdtobv, .framer-HAp3E .framer-1qqvgdx, .framer-HAp3E .framer-1wxb3nu, .framer-HAp3E .framer-35k0lw, .framer-HAp3E .framer-9lerpa, .framer-HAp3E .framer-511s6p, .framer-HAp3E .framer-zlle51, .framer-HAp3E .framer-1kf6dx8, .framer-HAp3E .framer-cognft, .framer-HAp3E .framer-1xyoc7y, .framer-HAp3E .framer-1d9z3yy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HAp3E .framer-1vj8at2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-bzknf5, .framer-HAp3E .framer-1q6mkbz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-rpeid7, .framer-HAp3E .framer-1bacsb4, .framer-HAp3E .framer-11uas4l, .framer-HAp3E .framer-1n12frm, .framer-HAp3E .framer-wjhr4v, .framer-HAp3E .framer-10zfwzt { align-content: flex-start; align-items: flex-start; background-color: #131412; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-HAp3E .framer-yjdhzd, .framer-HAp3E .framer-x4ne47, .framer-HAp3E .framer-17cilh7, .framer-HAp3E .framer-37iuv1, .framer-HAp3E .framer-1df6ew8, .framer-HAp3E .framer-y4xhzr { align-content: center; align-items: center; background-color: #20211f; 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: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 56px; }\",\".framer-HAp3E .framer-rqnka5-container, .framer-HAp3E .framer-dlbiwm-container, .framer-HAp3E .framer-1obfiim-container, .framer-HAp3E .framer-1klrk4p-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 41px; z-index: 1; }\",\".framer-HAp3E .framer-1x4p543, .framer-HAp3E .framer-d3h7ui, .framer-HAp3E .framer-18z7qjn, .framer-HAp3E .framer-ingmo2, .framer-HAp3E .framer-x5adat, .framer-HAp3E .framer-h95lft { 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-HAp3E .framer-ots8di, .framer-HAp3E .framer-x1pe2g, .framer-HAp3E .framer-1tqso1l, .framer-HAp3E .framer-1o1bqib, .framer-HAp3E .framer-qmz6qq, .framer-HAp3E .framer-1j80bog, .framer-HAp3E .framer-6ma6uk, .framer-HAp3E .framer-1h1pue6, .framer-HAp3E .framer-apntsg, .framer-HAp3E .framer-1i6d5df, .framer-HAp3E .framer-1es6kke, .framer-HAp3E .framer-2a78do, .framer-HAp3E .framer-javqrj, .framer-HAp3E .framer-vzlpkb { --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-HAp3E .framer-1cj3glw-container { aspect-ratio: 1.2058823529411764 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 48%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 41px; z-index: 1; }\",\".framer-HAp3E .framer-uuq9le, .framer-HAp3E .framer-1cswhko, .framer-HAp3E .framer-l8xawp, .framer-HAp3E .framer-tn9a4n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-HAp3E .framer-yy1jgk { bottom: 0px; flex: none; left: 2px; position: absolute; right: 0px; top: 0px; }\",\".framer-HAp3E .framer-1qbmjtn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 53px 135px 53px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1ysq9re { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1immkk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-3s9m27, .framer-HAp3E .framer-1xqbv5o, .framer-HAp3E .framer-e68j13, .framer-HAp3E .framer-t0v7c6, .framer-HAp3E .framer-1aizwnx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-96todi, .framer-HAp3E .framer-10f56ua, .framer-HAp3E .framer-1gjoz7g, .framer-HAp3E .framer-66corf, .framer-HAp3E .framer-1t0aetc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-HAp3E .framer-1emmfyj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1du6ike, .framer-HAp3E .framer-q0eihs, .framer-HAp3E .framer-166rvmc, .framer-HAp3E .framer-qp4a78, .framer-HAp3E .framer-ibup10 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1c056xo, .framer-HAp3E .framer-arvis7, .framer-HAp3E .framer-1qyl8mr, .framer-HAp3E .framer-1x8bhkm, .framer-HAp3E .framer-hg5prv { 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; padding: 0px; position: relative; width: 1px; }\",\".framer-HAp3E .framer-1p47zii-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 298px); position: relative; width: 530px; }\",\".framer-HAp3E .framer-wdd3sd-container, .framer-HAp3E .framer-169nth6-container, .framer-HAp3E .framer-k23o0s-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); position: relative; width: 534px; }\",\".framer-HAp3E .framer-11o3ei9, .framer-HAp3E .framer-2cvt7n, .framer-HAp3E .framer-umz27j, .framer-HAp3E .framer-1sbyuq2, .framer-HAp3E .framer-13yhbpc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-19k2dc3, .framer-HAp3E .framer-qyamr2, .framer-HAp3E .framer-mn9dl2, .framer-HAp3E .framer-gepvxt, .framer-HAp3E .framer-1yownxs, .framer-HAp3E .framer-vb88xz, .framer-HAp3E .framer-9at2ho, .framer-HAp3E .framer-d9ejs7, .framer-HAp3E .framer-11y18a, .framer-HAp3E .framer-1br6282, .framer-HAp3E .framer-p301ro, .framer-HAp3E .framer-15mpopo, .framer-HAp3E .framer-1dz6480, .framer-HAp3E .framer-yr1ak2, .framer-HAp3E .framer-19f8dz8, .framer-HAp3E .framer-1bs0twr, .framer-HAp3E .framer-bhu1ys, .framer-HAp3E .framer-opp24u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-16amc5j, .framer-HAp3E .framer-1e8e55w, .framer-HAp3E .framer-i9jywg, .framer-HAp3E .framer-1pvncba, .framer-HAp3E .framer-y2jfde, .framer-HAp3E .framer-dfebbw, .framer-HAp3E .framer-1t098rh, .framer-HAp3E .framer-uueazu, .framer-HAp3E .framer-ree5xi, .framer-HAp3E .framer-juujzc, .framer-HAp3E .framer-dzn3xq, .framer-HAp3E .framer-n8dvtp, .framer-HAp3E .framer-r5lpy4, .framer-HAp3E .framer-18ajr07, .framer-HAp3E .framer-lybf7k, .framer-HAp3E .framer-14aenwd, .framer-HAp3E .framer-iw8uqh, .framer-HAp3E .framer-1qd8go9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; }\",\".framer-HAp3E .framer-1omn9qg, .framer-HAp3E .framer-1hagif2, .framer-HAp3E .framer-r7cuoq, .framer-HAp3E .framer-493ibh, .framer-HAp3E .framer-18rhkfh, .framer-HAp3E .framer-7tz8as, .framer-HAp3E .framer-1emz36a, .framer-HAp3E .framer-v7dedr, .framer-HAp3E .framer-6gmiaw, .framer-HAp3E .framer-119nmvu, .framer-HAp3E .framer-1lphrw5, .framer-HAp3E .framer-1oq1qno, .framer-HAp3E .framer-giwlpd, .framer-HAp3E .framer-x2913x, .framer-HAp3E .framer-9s0ixd, .framer-HAp3E .framer-1ooluwx, .framer-HAp3E .framer-1e89t0, .framer-HAp3E .framer-1yc269b { flex: none; height: 12px; left: 0px; position: absolute; top: 1px; width: 14px; }\",\".framer-HAp3E .framer-1p0yj0z, .framer-HAp3E .framer-ej2tog, .framer-HAp3E .framer-1gjbk6m, .framer-HAp3E .framer-1pcwbiq, .framer-HAp3E .framer-cub6vh, .framer-HAp3E .framer-1o2n0y0, .framer-HAp3E .framer-yatc, .framer-HAp3E .framer-1x4mlv2, .framer-HAp3E .framer-1w3u6w3, .framer-HAp3E .framer-1ajx7fq, .framer-HAp3E .framer-1kzhg3c, .framer-HAp3E .framer-kbafrl, .framer-HAp3E .framer-13i0x4e, .framer-HAp3E .framer-qobq2n, .framer-HAp3E .framer-1cbivq1, .framer-HAp3E .framer-1m47rwj, .framer-HAp3E .framer-42w3lw, .framer-HAp3E .framer-1kucy57 { --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-HAp3E .framer-1obqt8l-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 301px); position: relative; width: 534px; }\",\".framer-HAp3E .framer-17vdlym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; list-style: none; margin: 0px; max-width: 1600px; overflow: hidden; padding: 70px 135px 160px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-kjxoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-hznj9w-container, .framer-HAp3E .framer-c83k5-container { flex: none; height: 326px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-t9ukpu-container, .framer-HAp3E .framer-1mfk45j-container, .framer-HAp3E .framer-1vky4pd-container, .framer-HAp3E .framer-szoxy3-container, .framer-HAp3E .framer-sqrct3-container, .framer-HAp3E .framer-wsgzuk-container, .framer-HAp3E .framer-cpkwd1-container, .framer-HAp3E .framer-1she9yt-container { height: auto; position: relative; width: auto; }\",\".framer-HAp3E .framer-1p0l6qh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 135px 0px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-axxnmm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HAp3E .framer-b7aubz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 44px; }\",\".framer-HAp3E .framer-ej0h9f { flex: none; height: 44px; position: relative; width: 44px; }\",\".framer-HAp3E .framer-182qzgs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HAp3E .framer-vdxt5a-container, .framer-HAp3E .framer-1jmku0i-container { flex: none; height: 800px; position: relative; width: 304px; }\",\".framer-HAp3E .framer-676cz6-container, .framer-HAp3E .framer-vz0hvq-container, .framer-HAp3E .framer-cjue2s-container, .framer-HAp3E .framer-15b8a4g-container, .framer-HAp3E .framer-it8r6v-container, .framer-HAp3E .framer-9o5any-container, .framer-HAp3E .framer-1faydyo-container, .framer-HAp3E .framer-14h7ogx-container, .framer-HAp3E .framer-1mbya3s-container, .framer-HAp3E .framer-rexqef-container { height: 302px; position: relative; width: 304px; }\",\".framer-HAp3E .framer-cv9snx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 51px 135px 160px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-mgkowm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-1hs970o-container, .framer-HAp3E .framer-144w6bv-container, .framer-HAp3E .framer-1p3aevg-container, .framer-HAp3E .framer-b42knd-container, .framer-HAp3E .framer-1dan1ff-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-of8lfy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 135px 135px 135px; position: relative; width: 100%; }\",\".framer-HAp3E .framer-ibq0wu { --border-bottom-width: 2px; --border-color: var(--token-8c47657d-c878-4673-b77f-6ba6c2327b21, #131412); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-8c47657d-c878-4673-b77f-6ba6c2327b21, #131412) 0%, rgba(0, 0, 0, 0.05) 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HAp3E .framer-wogvhw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HAp3E .framer-c6pceh-container { flex: none; height: 720px; position: relative; width: 577px; }\",\".framer-HAp3E .framer-kylgf9-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HAp3E.framer-72rtr7, .framer-HAp3E .framer-1dobzkw, .framer-HAp3E .framer-o1tzj0, .framer-HAp3E .framer-k8emox, .framer-HAp3E .framer-zqmz27, .framer-HAp3E .framer-jkwy09, .framer-HAp3E .framer-pnk90l, .framer-HAp3E .framer-16ywory, .framer-HAp3E .framer-1x2jjt6, .framer-HAp3E .framer-qyftcm, .framer-HAp3E .framer-181l87p, .framer-HAp3E .framer-1lx4e42, .framer-HAp3E .framer-1ik5vfa, .framer-HAp3E .framer-19dfsxy, .framer-HAp3E .framer-1dnoxvy, .framer-HAp3E .framer-nbc46g, .framer-HAp3E .framer-1vuht3j, .framer-HAp3E .framer-3aj7a2, .framer-HAp3E .framer-1hyqzb5, .framer-HAp3E .framer-1vj8at2, .framer-HAp3E .framer-bzknf5, .framer-HAp3E .framer-rpeid7, .framer-HAp3E .framer-yjdhzd, .framer-HAp3E .framer-1x4p543, .framer-HAp3E .framer-1bacsb4, .framer-HAp3E .framer-x4ne47, .framer-HAp3E .framer-d3h7ui, .framer-HAp3E .framer-11uas4l, .framer-HAp3E .framer-17cilh7, .framer-HAp3E .framer-18z7qjn, .framer-HAp3E .framer-1q6mkbz, .framer-HAp3E .framer-1n12frm, .framer-HAp3E .framer-37iuv1, .framer-HAp3E .framer-ingmo2, .framer-HAp3E .framer-wjhr4v, .framer-HAp3E .framer-1df6ew8, .framer-HAp3E .framer-x5adat, .framer-HAp3E .framer-10zfwzt, .framer-HAp3E .framer-y4xhzr, .framer-HAp3E .framer-h95lft, .framer-HAp3E .framer-1qbmjtn, .framer-HAp3E .framer-1ysq9re, .framer-HAp3E .framer-1immkk4, .framer-HAp3E .framer-3s9m27, .framer-HAp3E .framer-96todi, .framer-HAp3E .framer-1emmfyj, .framer-HAp3E .framer-bgrk5y, .framer-HAp3E .framer-1du6ike, .framer-HAp3E .framer-1c056xo, .framer-HAp3E .framer-1xqbv5o, .framer-HAp3E .framer-arvis7, .framer-HAp3E .framer-10f56ua, .framer-HAp3E .framer-4je22y, .framer-HAp3E .framer-q0eihs, .framer-HAp3E .framer-11o3ei9, .framer-HAp3E .framer-19k2dc3, .framer-HAp3E .framer-qyamr2, .framer-HAp3E .framer-mn9dl2, .framer-HAp3E .framer-gepvxt, .framer-HAp3E .framer-1yownxs, .framer-HAp3E .framer-e68j13, .framer-HAp3E .framer-1gjoz7g, .framer-HAp3E .framer-1xyi4zc, .framer-HAp3E .framer-166rvmc, .framer-HAp3E .framer-2cvt7n, .framer-HAp3E .framer-vb88xz, .framer-HAp3E .framer-9at2ho, .framer-HAp3E .framer-d9ejs7, .framer-HAp3E .framer-11y18a, .framer-HAp3E .framer-1qyl8mr, .framer-HAp3E .framer-t0v7c6, .framer-HAp3E .framer-1x8bhkm, .framer-HAp3E .framer-66corf, .framer-HAp3E .framer-q90kp9, .framer-HAp3E .framer-qp4a78, .framer-HAp3E .framer-umz27j, .framer-HAp3E .framer-1br6282, .framer-HAp3E .framer-p301ro, .framer-HAp3E .framer-15mpopo, .framer-HAp3E .framer-1dz6480, .framer-HAp3E .framer-yr1ak2, .framer-HAp3E .framer-1aizwnx, .framer-HAp3E .framer-1t0aetc, .framer-HAp3E .framer-1egq9xt, .framer-HAp3E .framer-ibup10, .framer-HAp3E .framer-1sbyuq2, .framer-HAp3E .framer-19f8dz8, .framer-HAp3E .framer-1bs0twr, .framer-HAp3E .framer-bhu1ys, .framer-HAp3E .framer-opp24u, .framer-HAp3E .framer-hg5prv, .framer-HAp3E .framer-17vdlym, .framer-HAp3E .framer-kjxoo, .framer-HAp3E .framer-1p0l6qh, .framer-HAp3E .framer-axxnmm, .framer-HAp3E .framer-b7aubz, .framer-HAp3E .framer-13yhbpc, .framer-HAp3E .framer-182qzgs, .framer-HAp3E .framer-cv9snx, .framer-HAp3E .framer-mgkowm, .framer-HAp3E .framer-of8lfy, .framer-HAp3E .framer-ibq0wu, .framer-HAp3E .framer-wogvhw { gap: 0px; } .framer-HAp3E.framer-72rtr7 > *, .framer-HAp3E .framer-1dobzkw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HAp3E.framer-72rtr7 > :first-child, .framer-HAp3E .framer-1dobzkw > :first-child, .framer-HAp3E .framer-o1tzj0 > :first-child, .framer-HAp3E .framer-k8emox > :first-child, .framer-HAp3E .framer-zqmz27 > :first-child, .framer-HAp3E .framer-1x2jjt6 > :first-child, .framer-HAp3E .framer-qyftcm > :first-child, .framer-HAp3E .framer-3aj7a2 > :first-child, .framer-HAp3E .framer-1hyqzb5 > :first-child, .framer-HAp3E .framer-1vj8at2 > :first-child, .framer-HAp3E .framer-1x4p543 > :first-child, .framer-HAp3E .framer-d3h7ui > :first-child, .framer-HAp3E .framer-18z7qjn > :first-child, .framer-HAp3E .framer-ingmo2 > :first-child, .framer-HAp3E .framer-x5adat > :first-child, .framer-HAp3E .framer-h95lft > :first-child, .framer-HAp3E .framer-1qbmjtn > :first-child, .framer-HAp3E .framer-1ysq9re > :first-child, .framer-HAp3E .framer-1immkk4 > :first-child, .framer-HAp3E .framer-96todi > :first-child, .framer-HAp3E .framer-1emmfyj > :first-child, .framer-HAp3E .framer-bgrk5y > :first-child, .framer-HAp3E .framer-1du6ike > :first-child, .framer-HAp3E .framer-10f56ua > :first-child, .framer-HAp3E .framer-4je22y > :first-child, .framer-HAp3E .framer-q0eihs > :first-child, .framer-HAp3E .framer-11o3ei9 > :first-child, .framer-HAp3E .framer-1gjoz7g > :first-child, .framer-HAp3E .framer-1xyi4zc > :first-child, .framer-HAp3E .framer-166rvmc > :first-child, .framer-HAp3E .framer-2cvt7n > :first-child, .framer-HAp3E .framer-66corf > :first-child, .framer-HAp3E .framer-q90kp9 > :first-child, .framer-HAp3E .framer-qp4a78 > :first-child, .framer-HAp3E .framer-umz27j > :first-child, .framer-HAp3E .framer-1t0aetc > :first-child, .framer-HAp3E .framer-1egq9xt > :first-child, .framer-HAp3E .framer-ibup10 > :first-child, .framer-HAp3E .framer-1sbyuq2 > :first-child, .framer-HAp3E .framer-17vdlym > :first-child, .framer-HAp3E .framer-kjxoo > :first-child, .framer-HAp3E .framer-axxnmm > :first-child, .framer-HAp3E .framer-13yhbpc > :first-child, .framer-HAp3E .framer-cv9snx > :first-child, .framer-HAp3E .framer-mgkowm > :first-child, .framer-HAp3E .framer-of8lfy > :first-child, .framer-HAp3E .framer-wogvhw > :first-child { margin-top: 0px; } .framer-HAp3E.framer-72rtr7 > :last-child, .framer-HAp3E .framer-1dobzkw > :last-child, .framer-HAp3E .framer-o1tzj0 > :last-child, .framer-HAp3E .framer-k8emox > :last-child, .framer-HAp3E .framer-zqmz27 > :last-child, .framer-HAp3E .framer-1x2jjt6 > :last-child, .framer-HAp3E .framer-qyftcm > :last-child, .framer-HAp3E .framer-3aj7a2 > :last-child, .framer-HAp3E .framer-1hyqzb5 > :last-child, .framer-HAp3E .framer-1vj8at2 > :last-child, .framer-HAp3E .framer-1x4p543 > :last-child, .framer-HAp3E .framer-d3h7ui > :last-child, .framer-HAp3E .framer-18z7qjn > :last-child, .framer-HAp3E .framer-ingmo2 > :last-child, .framer-HAp3E .framer-x5adat > :last-child, .framer-HAp3E .framer-h95lft > :last-child, .framer-HAp3E .framer-1qbmjtn > :last-child, .framer-HAp3E .framer-1ysq9re > :last-child, .framer-HAp3E .framer-1immkk4 > :last-child, .framer-HAp3E .framer-96todi > :last-child, .framer-HAp3E .framer-1emmfyj > :last-child, .framer-HAp3E .framer-bgrk5y > :last-child, .framer-HAp3E .framer-1du6ike > :last-child, .framer-HAp3E .framer-10f56ua > :last-child, .framer-HAp3E .framer-4je22y > :last-child, .framer-HAp3E .framer-q0eihs > :last-child, .framer-HAp3E .framer-11o3ei9 > :last-child, .framer-HAp3E .framer-1gjoz7g > :last-child, .framer-HAp3E .framer-1xyi4zc > :last-child, .framer-HAp3E .framer-166rvmc > :last-child, .framer-HAp3E .framer-2cvt7n > :last-child, .framer-HAp3E .framer-66corf > :last-child, .framer-HAp3E .framer-q90kp9 > :last-child, .framer-HAp3E .framer-qp4a78 > :last-child, .framer-HAp3E .framer-umz27j > :last-child, .framer-HAp3E .framer-1t0aetc > :last-child, .framer-HAp3E .framer-1egq9xt > :last-child, .framer-HAp3E .framer-ibup10 > :last-child, .framer-HAp3E .framer-1sbyuq2 > :last-child, .framer-HAp3E .framer-17vdlym > :last-child, .framer-HAp3E .framer-kjxoo > :last-child, .framer-HAp3E .framer-axxnmm > :last-child, .framer-HAp3E .framer-13yhbpc > :last-child, .framer-HAp3E .framer-cv9snx > :last-child, .framer-HAp3E .framer-mgkowm > :last-child, .framer-HAp3E .framer-of8lfy > :last-child, .framer-HAp3E .framer-wogvhw > :last-child { margin-bottom: 0px; } .framer-HAp3E .framer-o1tzj0 > *, .framer-HAp3E .framer-1ysq9re > *, .framer-HAp3E .framer-96todi > *, .framer-HAp3E .framer-1emmfyj > *, .framer-HAp3E .framer-10f56ua > *, .framer-HAp3E .framer-1gjoz7g > *, .framer-HAp3E .framer-66corf > *, .framer-HAp3E .framer-1t0aetc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HAp3E .framer-k8emox > *, .framer-HAp3E .framer-zqmz27 > *, .framer-HAp3E .framer-qyftcm > *, .framer-HAp3E .framer-1hyqzb5 > *, .framer-HAp3E .framer-1x4p543 > *, .framer-HAp3E .framer-d3h7ui > *, .framer-HAp3E .framer-18z7qjn > *, .framer-HAp3E .framer-ingmo2 > *, .framer-HAp3E .framer-x5adat > *, .framer-HAp3E .framer-h95lft > *, .framer-HAp3E .framer-bgrk5y > *, .framer-HAp3E .framer-4je22y > *, .framer-HAp3E .framer-1xyi4zc > *, .framer-HAp3E .framer-q90kp9 > *, .framer-HAp3E .framer-1egq9xt > *, .framer-HAp3E .framer-wogvhw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HAp3E .framer-jkwy09 > *, .framer-HAp3E .framer-pnk90l > *, .framer-HAp3E .framer-16ywory > *, .framer-HAp3E .framer-yjdhzd > *, .framer-HAp3E .framer-x4ne47 > *, .framer-HAp3E .framer-17cilh7 > *, .framer-HAp3E .framer-37iuv1 > *, .framer-HAp3E .framer-1df6ew8 > *, .framer-HAp3E .framer-y4xhzr > *, .framer-HAp3E .framer-1c056xo > *, .framer-HAp3E .framer-arvis7 > *, .framer-HAp3E .framer-1qyl8mr > *, .framer-HAp3E .framer-1x8bhkm > *, .framer-HAp3E .framer-hg5prv > *, .framer-HAp3E .framer-b7aubz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HAp3E .framer-jkwy09 > :first-child, .framer-HAp3E .framer-pnk90l > :first-child, .framer-HAp3E .framer-16ywory > :first-child, .framer-HAp3E .framer-181l87p > :first-child, .framer-HAp3E .framer-1lx4e42 > :first-child, .framer-HAp3E .framer-1ik5vfa > :first-child, .framer-HAp3E .framer-19dfsxy > :first-child, .framer-HAp3E .framer-1dnoxvy > :first-child, .framer-HAp3E .framer-nbc46g > :first-child, .framer-HAp3E .framer-1vuht3j > :first-child, .framer-HAp3E .framer-bzknf5 > :first-child, .framer-HAp3E .framer-rpeid7 > :first-child, .framer-HAp3E .framer-yjdhzd > :first-child, .framer-HAp3E .framer-1bacsb4 > :first-child, .framer-HAp3E .framer-x4ne47 > :first-child, .framer-HAp3E .framer-11uas4l > :first-child, .framer-HAp3E .framer-17cilh7 > :first-child, .framer-HAp3E .framer-1q6mkbz > :first-child, .framer-HAp3E .framer-1n12frm > :first-child, .framer-HAp3E .framer-37iuv1 > :first-child, .framer-HAp3E .framer-wjhr4v > :first-child, .framer-HAp3E .framer-1df6ew8 > :first-child, .framer-HAp3E .framer-10zfwzt > :first-child, .framer-HAp3E .framer-y4xhzr > :first-child, .framer-HAp3E .framer-3s9m27 > :first-child, .framer-HAp3E .framer-1c056xo > :first-child, .framer-HAp3E .framer-1xqbv5o > :first-child, .framer-HAp3E .framer-arvis7 > :first-child, .framer-HAp3E .framer-19k2dc3 > :first-child, .framer-HAp3E .framer-qyamr2 > :first-child, .framer-HAp3E .framer-mn9dl2 > :first-child, .framer-HAp3E .framer-gepvxt > :first-child, .framer-HAp3E .framer-1yownxs > :first-child, .framer-HAp3E .framer-e68j13 > :first-child, .framer-HAp3E .framer-vb88xz > :first-child, .framer-HAp3E .framer-9at2ho > :first-child, .framer-HAp3E .framer-d9ejs7 > :first-child, .framer-HAp3E .framer-11y18a > :first-child, .framer-HAp3E .framer-1qyl8mr > :first-child, .framer-HAp3E .framer-t0v7c6 > :first-child, .framer-HAp3E .framer-1x8bhkm > :first-child, .framer-HAp3E .framer-1br6282 > :first-child, .framer-HAp3E .framer-p301ro > :first-child, .framer-HAp3E .framer-15mpopo > :first-child, .framer-HAp3E .framer-1dz6480 > :first-child, .framer-HAp3E .framer-yr1ak2 > :first-child, .framer-HAp3E .framer-1aizwnx > :first-child, .framer-HAp3E .framer-19f8dz8 > :first-child, .framer-HAp3E .framer-1bs0twr > :first-child, .framer-HAp3E .framer-bhu1ys > :first-child, .framer-HAp3E .framer-opp24u > :first-child, .framer-HAp3E .framer-hg5prv > :first-child, .framer-HAp3E .framer-1p0l6qh > :first-child, .framer-HAp3E .framer-b7aubz > :first-child, .framer-HAp3E .framer-182qzgs > :first-child, .framer-HAp3E .framer-ibq0wu > :first-child { margin-left: 0px; } .framer-HAp3E .framer-jkwy09 > :last-child, .framer-HAp3E .framer-pnk90l > :last-child, .framer-HAp3E .framer-16ywory > :last-child, .framer-HAp3E .framer-181l87p > :last-child, .framer-HAp3E .framer-1lx4e42 > :last-child, .framer-HAp3E .framer-1ik5vfa > :last-child, .framer-HAp3E .framer-19dfsxy > :last-child, .framer-HAp3E .framer-1dnoxvy > :last-child, .framer-HAp3E .framer-nbc46g > :last-child, .framer-HAp3E .framer-1vuht3j > :last-child, .framer-HAp3E .framer-bzknf5 > :last-child, .framer-HAp3E .framer-rpeid7 > :last-child, .framer-HAp3E .framer-yjdhzd > :last-child, .framer-HAp3E .framer-1bacsb4 > :last-child, .framer-HAp3E .framer-x4ne47 > :last-child, .framer-HAp3E .framer-11uas4l > :last-child, .framer-HAp3E .framer-17cilh7 > :last-child, .framer-HAp3E .framer-1q6mkbz > :last-child, .framer-HAp3E .framer-1n12frm > :last-child, .framer-HAp3E .framer-37iuv1 > :last-child, .framer-HAp3E .framer-wjhr4v > :last-child, .framer-HAp3E .framer-1df6ew8 > :last-child, .framer-HAp3E .framer-10zfwzt > :last-child, .framer-HAp3E .framer-y4xhzr > :last-child, .framer-HAp3E .framer-3s9m27 > :last-child, .framer-HAp3E .framer-1c056xo > :last-child, .framer-HAp3E .framer-1xqbv5o > :last-child, .framer-HAp3E .framer-arvis7 > :last-child, .framer-HAp3E .framer-19k2dc3 > :last-child, .framer-HAp3E .framer-qyamr2 > :last-child, .framer-HAp3E .framer-mn9dl2 > :last-child, .framer-HAp3E .framer-gepvxt > :last-child, .framer-HAp3E .framer-1yownxs > :last-child, .framer-HAp3E .framer-e68j13 > :last-child, .framer-HAp3E .framer-vb88xz > :last-child, .framer-HAp3E .framer-9at2ho > :last-child, .framer-HAp3E .framer-d9ejs7 > :last-child, .framer-HAp3E .framer-11y18a > :last-child, .framer-HAp3E .framer-1qyl8mr > :last-child, .framer-HAp3E .framer-t0v7c6 > :last-child, .framer-HAp3E .framer-1x8bhkm > :last-child, .framer-HAp3E .framer-1br6282 > :last-child, .framer-HAp3E .framer-p301ro > :last-child, .framer-HAp3E .framer-15mpopo > :last-child, .framer-HAp3E .framer-1dz6480 > :last-child, .framer-HAp3E .framer-yr1ak2 > :last-child, .framer-HAp3E .framer-1aizwnx > :last-child, .framer-HAp3E .framer-19f8dz8 > :last-child, .framer-HAp3E .framer-1bs0twr > :last-child, .framer-HAp3E .framer-bhu1ys > :last-child, .framer-HAp3E .framer-opp24u > :last-child, .framer-HAp3E .framer-hg5prv > :last-child, .framer-HAp3E .framer-1p0l6qh > :last-child, .framer-HAp3E .framer-b7aubz > :last-child, .framer-HAp3E .framer-182qzgs > :last-child, .framer-HAp3E .framer-ibq0wu > :last-child { margin-right: 0px; } .framer-HAp3E .framer-1x2jjt6 > *, .framer-HAp3E .framer-3aj7a2 > *, .framer-HAp3E .framer-1qbmjtn > *, .framer-HAp3E .framer-17vdlym > *, .framer-HAp3E .framer-cv9snx > *, .framer-HAp3E .framer-of8lfy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-HAp3E .framer-181l87p > *, .framer-HAp3E .framer-1lx4e42 > *, .framer-HAp3E .framer-1ik5vfa > *, .framer-HAp3E .framer-19dfsxy > *, .framer-HAp3E .framer-1dnoxvy > *, .framer-HAp3E .framer-nbc46g > *, .framer-HAp3E .framer-1vuht3j > * { margin: 0px; margin-left: calc(46px / 2); margin-right: calc(46px / 2); } .framer-HAp3E .framer-1vj8at2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HAp3E .framer-bzknf5 > *, .framer-HAp3E .framer-1q6mkbz > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-HAp3E .framer-rpeid7 > *, .framer-HAp3E .framer-1bacsb4 > *, .framer-HAp3E .framer-11uas4l > *, .framer-HAp3E .framer-1n12frm > *, .framer-HAp3E .framer-wjhr4v > *, .framer-HAp3E .framer-10zfwzt > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-HAp3E .framer-1immkk4 > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-HAp3E .framer-3s9m27 > *, .framer-HAp3E .framer-1xqbv5o > *, .framer-HAp3E .framer-e68j13 > *, .framer-HAp3E .framer-t0v7c6 > *, .framer-HAp3E .framer-1aizwnx > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-HAp3E .framer-1du6ike > *, .framer-HAp3E .framer-q0eihs > *, .framer-HAp3E .framer-11o3ei9 > *, .framer-HAp3E .framer-166rvmc > *, .framer-HAp3E .framer-2cvt7n > *, .framer-HAp3E .framer-qp4a78 > *, .framer-HAp3E .framer-umz27j > *, .framer-HAp3E .framer-ibup10 > *, .framer-HAp3E .framer-1sbyuq2 > *, .framer-HAp3E .framer-13yhbpc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-HAp3E .framer-19k2dc3 > *, .framer-HAp3E .framer-qyamr2 > *, .framer-HAp3E .framer-mn9dl2 > *, .framer-HAp3E .framer-gepvxt > *, .framer-HAp3E .framer-1yownxs > *, .framer-HAp3E .framer-vb88xz > *, .framer-HAp3E .framer-9at2ho > *, .framer-HAp3E .framer-d9ejs7 > *, .framer-HAp3E .framer-11y18a > *, .framer-HAp3E .framer-1br6282 > *, .framer-HAp3E .framer-p301ro > *, .framer-HAp3E .framer-15mpopo > *, .framer-HAp3E .framer-1dz6480 > *, .framer-HAp3E .framer-yr1ak2 > *, .framer-HAp3E .framer-19f8dz8 > *, .framer-HAp3E .framer-1bs0twr > *, .framer-HAp3E .framer-bhu1ys > *, .framer-HAp3E .framer-opp24u > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HAp3E .framer-kjxoo > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-HAp3E .framer-1p0l6qh > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-HAp3E .framer-axxnmm > *, .framer-HAp3E .framer-mgkowm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HAp3E .framer-182qzgs > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-HAp3E .framer-ibq0wu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-HAp3E[data-border=\"true\"]::after, .framer-HAp3E [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-HAp3E.framer-72rtr7 { width: 810px; } .framer-HAp3E .framer-1i5vaby-container { order: 0; } .framer-HAp3E .framer-1dobzkw { order: 2; padding: 120px 40px 0px 40px; } .framer-HAp3E .framer-jkwy09 { height: var(--framer-aspect-ratio-supported, 468px); } .framer-HAp3E .framer-2qmmti-container { height: 465px; width: 731px; } .framer-HAp3E .framer-kicnse-container { left: 40px; order: 1; right: 40px; } .framer-HAp3E .framer-1x2jjt6 { order: 3; padding: 7px 40px 0px 40px; } .framer-HAp3E .framer-3aj7a2 { order: 4; padding: 0px 40px 0px 40px; } .framer-HAp3E .framer-1vj8at2 { gap: 24px; } .framer-HAp3E .framer-bzknf5, .framer-HAp3E .framer-1q6mkbz { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-HAp3E .framer-rpeid7, .framer-HAp3E .framer-1bacsb4, .framer-HAp3E .framer-11uas4l, .framer-HAp3E .framer-1n12frm, .framer-HAp3E .framer-wjhr4v, .framer-HAp3E .framer-10zfwzt { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-HAp3E .framer-1qbmjtn { order: 5; padding: 53px 40px 53px 40px; } .framer-HAp3E .framer-1p47zii-container { height: var(--framer-aspect-ratio-supported, 177px); width: 314px; } .framer-HAp3E .framer-wdd3sd-container { height: var(--framer-aspect-ratio-supported, 178px); width: 316px; } .framer-HAp3E .framer-169nth6-container { height: 178px; width: var(--framer-aspect-ratio-supported, 317px); } .framer-HAp3E .framer-k23o0s-container { height: 178px; order: 0; width: var(--framer-aspect-ratio-supported, 317px); } .framer-HAp3E .framer-1obqt8l-container { height: 176px; width: var(--framer-aspect-ratio-supported, 313px); } .framer-HAp3E .framer-17vdlym { order: 8; padding: 70px 40px 160px 40px; } .framer-HAp3E .framer-1p0l6qh { flex-direction: column; order: 6; padding: 0px 40px 120px 40px; } .framer-HAp3E .framer-axxnmm { flex: none; width: 100%; } .framer-HAp3E .framer-cv9snx { order: 9; padding: 51px 40px 160px 40px; } .framer-HAp3E .framer-of8lfy { order: 10; padding: 0px 40px 135px 40px; } .framer-HAp3E .framer-kylgf9-container { order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HAp3E .framer-1vj8at2, .framer-HAp3E .framer-bzknf5, .framer-HAp3E .framer-1q6mkbz, .framer-HAp3E .framer-1p0l6qh { gap: 0px; } .framer-HAp3E .framer-1vj8at2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HAp3E .framer-1vj8at2 > :first-child, .framer-HAp3E .framer-1p0l6qh > :first-child { margin-top: 0px; } .framer-HAp3E .framer-1vj8at2 > :last-child, .framer-HAp3E .framer-1p0l6qh > :last-child { margin-bottom: 0px; } .framer-HAp3E .framer-bzknf5 > *, .framer-HAp3E .framer-bzknf5 > :first-child, .framer-HAp3E .framer-bzknf5 > :last-child, .framer-HAp3E .framer-1q6mkbz > *, .framer-HAp3E .framer-1q6mkbz > :first-child, .framer-HAp3E .framer-1q6mkbz > :last-child { margin: 0px; } .framer-HAp3E .framer-1p0l6qh > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-HAp3E.framer-72rtr7 { width: 390px; } .framer-HAp3E .framer-1dobzkw { background-color: var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, #070806); padding: 160px 20px 0px 20px; } .framer-HAp3E .framer-1q5uq9x-container { width: 217px; } .framer-HAp3E .framer-jkwy09 { height: var(--framer-aspect-ratio-supported, 128px); overflow: visible; } .framer-HAp3E .framer-2qmmti-container { height: 231px; width: 350px; } .framer-HAp3E .framer-pnk90l { min-height: unset; min-width: unset; } .framer-HAp3E .framer-kicnse-container { left: 20px; right: 20px; } .framer-HAp3E .framer-1x2jjt6, .framer-HAp3E .framer-17vdlym { padding: 0px 20px 0px 20px; } .framer-HAp3E .framer-3aj7a2 { gap: 38px; padding: 0px 20px 0px 20px; } .framer-HAp3E .framer-bzknf5, .framer-HAp3E .framer-1q6mkbz { flex-direction: column; } .framer-HAp3E .framer-rpeid7, .framer-HAp3E .framer-1bacsb4, .framer-HAp3E .framer-11uas4l, .framer-HAp3E .framer-1n12frm, .framer-HAp3E .framer-wjhr4v, .framer-HAp3E .framer-10zfwzt, .framer-HAp3E .framer-1gjoz7g, .framer-HAp3E .framer-1qyl8mr, .framer-HAp3E .framer-1t0aetc, .framer-HAp3E .framer-hg5prv, .framer-HAp3E .framer-axxnmm { flex: none; width: 100%; } .framer-HAp3E .framer-rqnka5-container, .framer-HAp3E .framer-dlbiwm-container, .framer-HAp3E .framer-1obfiim-container, .framer-HAp3E .framer-1klrk4p-container { height: var(--framer-aspect-ratio-supported, 34px); } .framer-HAp3E .framer-1qbmjtn { padding: 68px 20px 53px 20px; } .framer-HAp3E .framer-1ysq9re { order: 0; } .framer-HAp3E .framer-1immkk4 { gap: 120px; order: 1; } .framer-HAp3E .framer-3s9m27, .framer-HAp3E .framer-1xqbv5o, .framer-HAp3E .framer-e68j13, .framer-HAp3E .framer-t0v7c6 { flex-direction: column; gap: 48px; } .framer-HAp3E .framer-96todi, .framer-HAp3E .framer-10f56ua, .framer-HAp3E .framer-66corf { flex: none; order: 1; width: 100%; } .framer-HAp3E .framer-1c056xo, .framer-HAp3E .framer-arvis7, .framer-HAp3E .framer-1x8bhkm { flex: none; order: 0; width: 100%; } .framer-HAp3E .framer-1p47zii-container, .framer-HAp3E .framer-169nth6-container, .framer-HAp3E .framer-1obqt8l-container { height: var(--framer-aspect-ratio-supported, 197px); width: 350px; } .framer-HAp3E .framer-wdd3sd-container { height: var(--framer-aspect-ratio-supported, 196px); width: 349px; } .framer-HAp3E .framer-k23o0s-container { height: 196px; width: var(--framer-aspect-ratio-supported, 348px); } .framer-HAp3E .framer-1aizwnx { flex-direction: column; gap: 48px; order: 2; } .framer-HAp3E .framer-hznj9w-container { height: 268px; } .framer-HAp3E .framer-1p0l6qh { flex-direction: column; padding: 0px 20px 135px 20px; } .framer-HAp3E .framer-cv9snx { padding: 0px 20px 68px 20px; } .framer-HAp3E .framer-of8lfy { padding: 0px 20px 135px 20px; } .framer-HAp3E .framer-ibq0wu { padding: 24px; } .framer-HAp3E .framer-c6pceh-container { height: 710px; width: 369px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HAp3E .framer-3aj7a2, .framer-HAp3E .framer-bzknf5, .framer-HAp3E .framer-1q6mkbz, .framer-HAp3E .framer-1immkk4, .framer-HAp3E .framer-3s9m27, .framer-HAp3E .framer-1xqbv5o, .framer-HAp3E .framer-e68j13, .framer-HAp3E .framer-t0v7c6, .framer-HAp3E .framer-1aizwnx, .framer-HAp3E .framer-1p0l6qh { gap: 0px; } .framer-HAp3E .framer-3aj7a2 > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-HAp3E .framer-3aj7a2 > :first-child, .framer-HAp3E .framer-bzknf5 > :first-child, .framer-HAp3E .framer-1q6mkbz > :first-child, .framer-HAp3E .framer-1immkk4 > :first-child, .framer-HAp3E .framer-3s9m27 > :first-child, .framer-HAp3E .framer-1xqbv5o > :first-child, .framer-HAp3E .framer-e68j13 > :first-child, .framer-HAp3E .framer-t0v7c6 > :first-child, .framer-HAp3E .framer-1aizwnx > :first-child, .framer-HAp3E .framer-1p0l6qh > :first-child { margin-top: 0px; } .framer-HAp3E .framer-3aj7a2 > :last-child, .framer-HAp3E .framer-bzknf5 > :last-child, .framer-HAp3E .framer-1q6mkbz > :last-child, .framer-HAp3E .framer-1immkk4 > :last-child, .framer-HAp3E .framer-3s9m27 > :last-child, .framer-HAp3E .framer-1xqbv5o > :last-child, .framer-HAp3E .framer-e68j13 > :last-child, .framer-HAp3E .framer-t0v7c6 > :last-child, .framer-HAp3E .framer-1aizwnx > :last-child, .framer-HAp3E .framer-1p0l6qh > :last-child { margin-bottom: 0px; } .framer-HAp3E .framer-bzknf5 > *, .framer-HAp3E .framer-1q6mkbz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HAp3E .framer-1immkk4 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-HAp3E .framer-3s9m27 > *, .framer-HAp3E .framer-1xqbv5o > *, .framer-HAp3E .framer-e68j13 > *, .framer-HAp3E .framer-t0v7c6 > *, .framer-HAp3E .framer-1aizwnx > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-HAp3E .framer-1p0l6qh > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9401\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"S0A0xPRj8\":{\"layout\":[\"fixed\",\"auto\"]},\"zjqIIsYr1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YWVZL8WLG\":{\"pattern\":\":YWVZL8WLG\",\"name\":\"feature\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-HAp3E\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9401,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...ProPlanFonts,...MiniCard1Fonts,...EmbedFonts,...NavbarDarkFonts,...TickerFonts,...MaterialFonts,...MiniCard11Fonts,...YouTubeFonts,...TestimonialsFonts,...Button1Fonts,...IntragationsCard3Fonts,...FAQFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"YWVZL8WLG\\\":{\\\"pattern\\\":\\\":YWVZL8WLG\\\",\\\"name\\\":\\\"feature\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9401\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S0A0xPRj8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zjqIIsYr1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "ClipboardFonts", "getFonts", "Clipboard", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EMgcGzrCM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterinh2zs", "args", "onMouseLeavegw4mza", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerDY3AA4AKK", "withCSS", "DY3AA4AKK_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "logoName", "text", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "teKQKu6vj", "AZ4GdMV7F", "IZpDv4PoZ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "css", "FramerEF6fDW9Ad", "withCSS", "EF6fDW9Ad_default", "addPropertyControls", "ControlType", "addFonts", "ProPlanFonts", "getFonts", "DY3AA4AKK_default", "MiniCard1Fonts", "kUq3kaWx5_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "EmbedFonts", "Embed", "NavbarDarkFonts", "YY93V46WN_default", "ContainerWithFX", "withFX", "TickerFonts", "Ticker", "RichTextWithFX", "MaterialFonts", "Icon", "MotionDivWithFX", "motion", "MiniCard11Fonts", "BMPZMQFdM_default", "YouTubeFonts", "Youtube", "TestimonialsFonts", "KrqgJff4d_default", "Button1Fonts", "z9JUHUfmV_default", "IntragationsCard3Fonts", "EF6fDW9Ad_default", "FAQFonts", "sVh1EPKLQ_default", "FooterFonts", "pzGGgopxU_default", "CursorFonts", "tdzOWJJC7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "animation6", "transition4", "animation7", "transition5", "animation8", "transition6", "animation9", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "addImageAlt", "image", "alt", "transition10", "animation13", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
