{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/wLWQ1ievxUCvUjjj2kpv/pZxdNZ2D5nH0yKxjo20r/EAuWzJnuW.js", "ssg:https://framerusercontent.com/modules/9qOY99VRFuiRdDZhq1NC/90RyhNYV9DtDDgUsG3Gn/yd7nMFDHh.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"W09udmIYo\"];const serializationHash=\"framer-YR70Q\";const variantClassNames={W09udmIYo:\"framer-v-df0bwr\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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,image2,image3,image4,link,width,...props})=>{return{...props,CLOjz4zPb:image2!==null&&image2!==void 0?image2:props.CLOjz4zPb,luqg6K1cu:image4!==null&&image4!==void 0?image4:props.luqg6K1cu,QMjgKwCOD:image3!==null&&image3!==void 0?image3:props.QMjgKwCOD,qrNp9b6h8:link!==null&&link!==void 0?link:props.qrNp9b6h8,TgtW39mBf:image!==null&&image!==void 0?image:props.TgtW39mBf};};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,TgtW39mBf,CLOjz4zPb,QMjgKwCOD,luqg6K1cu,qrNp9b6h8,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"W09udmIYo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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:qrNp9b6h8,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-df0bwr\",className,classNames)} framer-1nvs4lw`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"W09udmIYo\",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:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p4jebs\",layoutDependency:layoutDependency,layoutId:\"xWnmv5Iqc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yj9ra8\",layoutDependency:layoutDependency,layoutId:\"ErE4vWqSe\",style:{backgroundColor:\"var(--token-57030bfe-99b8-47c4-8c72-003051413d49, rgba(13, 13, 13, 0.05))\",borderBottomLeftRadius:140,borderBottomRightRadius:140,borderTopLeftRadius:140,borderTopRightRadius:140},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1342,intrinsicWidth:1325,pixelHeight:1342,pixelWidth:1325,sizes:\"78px\",...toResponsiveImage(TgtW39mBf)},className:\"framer-qq8c06\",layoutDependency:layoutDependency,layoutId:\"iOedSTT0A\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y5vjed\",layoutDependency:layoutDependency,layoutId:\"NemEaTXUh\",style:{backgroundColor:\"var(--token-57030bfe-99b8-47c4-8c72-003051413d49, rgba(13, 13, 13, 0.05))\",borderBottomLeftRadius:130,borderBottomRightRadius:130,borderTopLeftRadius:130,borderTopRightRadius:130,boxShadow:\"-0.3010936508871964px 0px 0.7828434923067107px -0.9166666666666666px rgba(0, 0, 0, 0.3971), -1.1442666516217286px 0px 2.975093294216494px -1.8333333333333333px rgba(0, 0, 0, 0.38479), -5px 0px 13px -2.75px rgba(0, 0, 0, 0.3285)\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1342,intrinsicWidth:1325,pixelHeight:1342,pixelWidth:1325,sizes:\"78px\",...toResponsiveImage(CLOjz4zPb)},className:\"framer-1wg9ta\",layoutDependency:layoutDependency,layoutId:\"y1LDmecj4\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4rw2sp\",layoutDependency:layoutDependency,layoutId:\"WlvCXbRE3\",style:{backgroundColor:\"var(--token-57030bfe-99b8-47c4-8c72-003051413d49, rgba(13, 13, 13, 0.05))\",borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70,boxShadow:\"-0.3010936508871964px 0px 0.7828434923067107px -0.9166666666666666px rgba(0, 0, 0, 0.3971), -1.1442666516217286px 0px 2.975093294216494px -1.8333333333333333px rgba(0, 0, 0, 0.38479), -5px 0px 13px -2.75px rgba(0, 0, 0, 0.3285)\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1342,intrinsicWidth:1325,pixelHeight:1342,pixelWidth:1325,sizes:\"78px\",...toResponsiveImage(QMjgKwCOD)},className:\"framer-w4bip7\",layoutDependency:layoutDependency,layoutId:\"S5y0L87iM\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15sxrgk\",layoutDependency:layoutDependency,layoutId:\"AsK9zd79C\",style:{backgroundColor:\"var(--token-57030bfe-99b8-47c4-8c72-003051413d49, rgba(13, 13, 13, 0.05))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"-0.3010936508871964px 0px 0.7828434923067107px -0.9166666666666666px rgba(0, 0, 0, 0.3971), -1.1442666516217286px 0px 2.975093294216494px -1.8333333333333333px rgba(0, 0, 0, 0.38479), -5px 0px 13px -2.75px rgba(0, 0, 0, 0.3285)\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:2448,pixelHeight:3264,pixelWidth:2448,sizes:\"78px\",...toResponsiveImage(luqg6K1cu)},className:\"framer-1ok2xaw\",layoutDependency:layoutDependency,layoutId:\"fqYsW6ujm\",style:{borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170}})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YR70Q.framer-1nvs4lw, .framer-YR70Q .framer-1nvs4lw { display: block; }\",\".framer-YR70Q.framer-df0bwr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-YR70Q .framer-p4jebs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 49px; justify-content: flex-start; min-width: 166px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-YR70Q .framer-1yj9ra8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: var(--framer-aspect-ratio-supported, 49px); }\",\".framer-YR70Q .framer-qq8c06, .framer-YR70Q .framer-1wg9ta, .framer-YR70Q .framer-w4bip7, .framer-YR70Q .framer-1ok2xaw { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-YR70Q .framer-y5vjed { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 38px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: var(--framer-aspect-ratio-supported, 49px); z-index: 1; }\",\".framer-YR70Q .framer-4rw2sp { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 76px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: var(--framer-aspect-ratio-supported, 49px); z-index: 1; }\",\".framer-YR70Q .framer-15sxrgk { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 114px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: var(--framer-aspect-ratio-supported, 49px); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YR70Q.framer-df0bwr, .framer-YR70Q .framer-p4jebs, .framer-YR70Q .framer-1yj9ra8, .framer-YR70Q .framer-y5vjed, .framer-YR70Q .framer-4rw2sp, .framer-YR70Q .framer-15sxrgk { gap: 0px; } .framer-YR70Q.framer-df0bwr > *, .framer-YR70Q .framer-1yj9ra8 > *, .framer-YR70Q .framer-y5vjed > *, .framer-YR70Q .framer-4rw2sp > *, .framer-YR70Q .framer-15sxrgk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YR70Q.framer-df0bwr > :first-child, .framer-YR70Q .framer-p4jebs > :first-child, .framer-YR70Q .framer-1yj9ra8 > :first-child, .framer-YR70Q .framer-y5vjed > :first-child, .framer-YR70Q .framer-4rw2sp > :first-child, .framer-YR70Q .framer-15sxrgk > :first-child { margin-left: 0px; } .framer-YR70Q.framer-df0bwr > :last-child, .framer-YR70Q .framer-p4jebs > :last-child, .framer-YR70Q .framer-1yj9ra8 > :last-child, .framer-YR70Q .framer-y5vjed > :last-child, .framer-YR70Q .framer-4rw2sp > :last-child, .framer-YR70Q .framer-15sxrgk > :last-child { margin-right: 0px; } .framer-YR70Q .framer-p4jebs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 166\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TgtW39mBf\":\"image\",\"CLOjz4zPb\":\"image2\",\"QMjgKwCOD\":\"image3\",\"luqg6K1cu\":\"image4\",\"qrNp9b6h8\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEAuWzJnuW=withCSS(Component,css,\"framer-YR70Q\");export default FramerEAuWzJnuW;FramerEAuWzJnuW.displayName=\"Tiny Images\";FramerEAuWzJnuW.defaultProps={height:49,width:166};addPropertyControls(FramerEAuWzJnuW,{TgtW39mBf:{title:\"Image\",type:ControlType.ResponsiveImage},CLOjz4zPb:{title:\"Image 2\",type:ControlType.ResponsiveImage},QMjgKwCOD:{title:\"Image 3\",type:ControlType.ResponsiveImage},luqg6K1cu:{title:\"Image 4\",type:ControlType.ResponsiveImage},qrNp9b6h8:{title:\"Link\",type:ControlType.Link}});addFonts(FramerEAuWzJnuW,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEAuWzJnuW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"166\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"TgtW39mBf\\\":\\\"image\\\",\\\"CLOjz4zPb\\\":\\\"image2\\\",\\\"QMjgKwCOD\\\":\\\"image3\\\",\\\"luqg6K1cu\\\":\\\"image4\\\",\\\"qrNp9b6h8\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"49\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EAuWzJnuW.map", "// Generated by Framer (90417e1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Project from\"#framer/local/canvasComponent/B4CrjLIFA/B4CrjLIFA.js\";import Button from\"#framer/local/canvasComponent/cBQAwTefC/cBQAwTefC.js\";import TinyImages from\"#framer/local/canvasComponent/EAuWzJnuW/EAuWzJnuW.js\";import Bullet from\"#framer/local/canvasComponent/f_SxhhPsu/f_SxhhPsu.js\";import Service from\"#framer/local/canvasComponent/F2RdVp1gj/F2RdVp1gj.js\";import BlogSingleCard from\"#framer/local/canvasComponent/fNLtYBHNV/fNLtYBHNV.js\";import FAQListCommon from\"#framer/local/canvasComponent/iV8GXG0Ck/iV8GXG0Ck.js\";import NavigationBar from\"#framer/local/canvasComponent/Kg3jp8xZU/Kg3jp8xZU.js\";import Footer from\"#framer/local/canvasComponent/oGO_MGaZp/oGO_MGaZp.js\";import Heading from\"#framer/local/canvasComponent/QJ12gIOBS/QJ12gIOBS.js\";import CursorView from\"#framer/local/canvasComponent/sJnORkkMm/sJnORkkMm.js\";import Pricing from\"#framer/local/canvasComponent/Tbsg_9IZf/Tbsg_9IZf.js\";import Review from\"#framer/local/canvasComponent/ZpizmnjAI/ZpizmnjAI.js\";import Articles,{enumToDisplayNameFunctions}from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import*as sharedStyle from\"#framer/local/css/BZqcnnsi4/BZqcnnsi4.js\";import*as sharedStyle2 from\"#framer/local/css/hwFxtQiSW/hwFxtQiSW.js\";import*as sharedStyle1 from\"#framer/local/css/iLvBdfOs8/iLvBdfOs8.js\";import*as sharedStyle3 from\"#framer/local/css/s2c1M16C7/s2c1M16C7.js\";import*as sharedStyle4 from\"#framer/local/css/XiF1LAa3c/XiF1LAa3c.js\";import metadataProvider from\"#framer/local/webPageMetadata/yd7nMFDHh/yd7nMFDHh.js\";const PatternFonts=getFonts(Pattern);const NavigationBarFonts=getFonts(NavigationBar);const TinyImagesFonts=getFonts(TinyImages);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const HeadingFonts=getFonts(Heading);const ButtonFonts=getFonts(Button);const ServiceFonts=getFonts(Service);const ContainerWithFX=withFX(Container);const MotionSectionWithFX=withFX(motion.section);const PricingFonts=getFonts(Pricing);const ProjectFonts=getFonts(Project);const ReviewFonts=getFonts(Review);const TickerFonts=getFonts(Ticker);const BulletFonts=getFonts(Bullet);const BlogSingleCardFonts=getFonts(BlogSingleCard);const FAQListCommonFonts=getFonts(FAQListCommon);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorViewFonts=getFonts(CursorView);const breakpoints={OwNhynIYY:\"(min-width: 1200px)\",P7j2A2OCI:\"(max-width: 809px)\",WgNeKo_y1:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fXfgK\";const variantClassNames={OwNhynIYY:\"framer-v-hvzz3m\",P7j2A2OCI:\"framer-v-1zvqox\",WgNeKo_y1:\"framer-v-1b4lfhe\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transition1={damping:85,delay:.4,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:170};const transition2={damping:85,delay:.2,mass:1,stiffness:212,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:170};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const transition3={damping:30,delay:0,mass:1,stiffness:118,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:170};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation6={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-90};const transition4={damping:40,delay:.3,mass:.1,stiffness:232,type:\"spring\"};const animation7={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:-90};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation8={cursor:\"grabbing\"};const animation9={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-90};const transition5={damping:40,delay:.3,mass:4.7,stiffness:232,type:\"spring\"};const animation10={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:-90};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transition6={damping:40,delay:.3,mass:4.1,stiffness:232,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:-100};const transition7={damping:40,delay:.3,mass:10,stiffness:232,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-100};const animation14={opacity:1,rotate:50,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const animation15={opacity:1,rotate:50,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-120};const animation16={opacity:1,rotate:-17,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-132};const animation17={opacity:1,rotate:-17,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-132};const animation18={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-130};const animation19={opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-130};const animation20={opacity:1,rotate:24,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-140};const animation21={opacity:1,rotate:24,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-140};const animation22={opacity:1,rotate:18,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation23={opacity:1,rotate:18,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-150};const animation24={opacity:1,rotate:-33,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-110};const animation25={opacity:1,rotate:-33,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-110};const animation26={opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const animation27={opacity:1,rotate:-10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:-120};const transition8={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,y:-10};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop-Wide\":\"OwNhynIYY\",Phone:\"P7j2A2OCI\",Tablet:\"WgNeKo_y1\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"OwNhynIYY\"};};const cursor={component:CursorView,variant:\"gug0YEWP3\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kBAWMceDjLHf_21Li6,YSKHrdVc1LHf_21Li6,r9QMyoDHsLHf_21Li6,jYgOCvKuFLHf_21Li6,DjzsZgoLULHf_21Li6,luaJ1PV3vLHf_21Li6,FRxJrVbabLHf_21Li6,Tu_Pd0zTZLHf_21Li6,idLHf_21Li6,kBAWMceDjg7gardzzi,YSKHrdVc1g7gardzzi,r9QMyoDHsg7gardzzi,jYgOCvKuFg7gardzzi,DjzsZgoLUg7gardzzi,luaJ1PV3vg7gardzzi,FRxJrVbabg7gardzzi,Tu_Pd0zTZg7gardzzi,idg7gardzzi,kBAWMceDjSoPwllC3F,YSKHrdVc1SoPwllC3F,r9QMyoDHsSoPwllC3F,jYgOCvKuFSoPwllC3F,DjzsZgoLUSoPwllC3F,luaJ1PV3vSoPwllC3F,FRxJrVbabSoPwllC3F,Tu_Pd0zTZSoPwllC3F,idSoPwllC3F,kBAWMceDjYAMo7907Z,YSKHrdVc1YAMo7907Z,r9QMyoDHsYAMo7907Z,jYgOCvKuFYAMo7907Z,DjzsZgoLUYAMo7907Z,luaJ1PV3vYAMo7907Z,FRxJrVbabYAMo7907Z,Tu_Pd0zTZYAMo7907Z,idYAMo7907Z,EZue1CzWPuop5p902E,TA3EDeQ5wuop5p902E,kBAWMceDjuop5p902E,YSKHrdVc1uop5p902E,Tu_Pd0zTZuop5p902E,iduop5p902E,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-fXfgK`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-fXfgK`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"WgNeKo_y1\",\"P7j2A2OCI\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"jGFDk87Dh\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"MERXQpASN\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"ffQKfJ0Kx\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"Usy9pnRtq\");const ref5=React.useRef(null);const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"P7j2A2OCI\")return true;return false;};const elementId4=useRouteElementId(\"UaACQKPhS\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"rZyCoDj_M\");const ref7=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId6=useRouteElementId(\"om1250aoL\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({ixfehx:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OwNhynIYY\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hvzz3m\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123wqig\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bsjpkg\",\"data-framer-name\":\"Overlay\",name:\"Overlay\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ne3cqe-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(Pattern,{back:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0))\",diagonal:true,direction:\"left\",duration:5,front:\"rgb(242, 246, 255)\",height:\"100%\",id:\"uJPrb4EIT\",layoutId:\"uJPrb4EIT\",patternType:\"groovy\",radius:0,scale:54,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-icz1s2-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"qckzdw_18\"},WgNeKo_y1:{variant:\"qckzdw_18\"}},children:/*#__PURE__*/_jsx(NavigationBar,{gGSU0bs4G:\"jcV_yFltq\",height:\"100%\",id:\"qucQ2rL9C\",layoutId:\"qucQ2rL9C\",style:{width:\"100%\"},variant:\"lzTpoNZtf\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ma85oo\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-j1yqbq\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:541,pixelWidth:1125,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Y5kJ0C6aS6oNmfUwLtNUzlX70LI.png\",srcSet:\"https://framerusercontent.com/images/Y5kJ0C6aS6oNmfUwLtNUzlX70LI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y5kJ0C6aS6oNmfUwLtNUzlX70LI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y5kJ0C6aS6oNmfUwLtNUzlX70LI.png 1125w\"},className:\"framer-he8jli\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c83yy hidden-1b4lfhe hidden-1zvqox\",\"data-border\":true,\"data-framer-name\":\"Stat\",name:\"Stat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-39le6\",\"data-styles-preset\":\"BZqcnnsi4\",children:\"Top Digital Marketing Firm \"})}),className:\"framer-yk9x6r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7xjwq8\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfd53y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:1315.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ko54m-container\",children:/*#__PURE__*/_jsx(TinyImages,{CLOjz4zPb:addImageAlt({src:\"https://framerusercontent.com/images/K6cUNifhQFa6qEX3kqNwfqMkiY.jpg?scale-down-to=512\"},\"\"),height:\"100%\",id:\"Py7IRH0ID\",layoutId:\"Py7IRH0ID\",luqg6K1cu:addImageAlt({src:\"https://framerusercontent.com/images/hn4bVCIy3rXGNQvvwT9Qi3YKiKU.jpg?scale-down-to=512\"},\"\"),QMjgKwCOD:addImageAlt({src:\"https://framerusercontent.com/images/KuIBzI0VbhnNU4FBscAHrIRO2DQ.jpg?scale-down-to=512\"},\"\"),TgtW39mBf:addImageAlt({src:\"https://framerusercontent.com/images/dUseUtuxWZALl1W4o3xjq8KWc.jpg?scale-down-to=512\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ho5v21\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8flma5\",\"data-framer-name\":\"Frame 2952\",layout:\"position\",name:\"Frame 2952\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 12\"><path d=\"M 10.122 7.429 C 9.968 7.583 9.897 7.807 9.932 8.026 L 10.462 11.056 C 10.507 11.312 10.402 11.572 10.194 11.721 C 9.99 11.875 9.719 11.893 9.496 11.77 L 6.856 10.348 C 6.764 10.297 6.662 10.27 6.558 10.267 L 6.396 10.267 C 6.34 10.276 6.285 10.294 6.235 10.322 L 3.594 11.751 C 3.463 11.819 3.315 11.843 3.17 11.819 C 2.817 11.75 2.582 11.403 2.64 11.037 L 3.17 8.007 C 3.206 7.786 3.135 7.561 2.98 7.404 L 0.827 5.249 C 0.647 5.069 0.584 4.798 0.667 4.553 C 0.747 4.309 0.951 4.132 1.197 4.092 L 4.16 3.648 C 4.386 3.624 4.583 3.482 4.685 3.273 L 5.991 0.508 C 6.022 0.446 6.062 0.39 6.11 0.342 L 6.163 0.299 C 6.191 0.267 6.224 0.24 6.259 0.218 L 6.324 0.194 L 6.426 0.151 L 6.677 0.151 C 6.901 0.175 7.098 0.313 7.202 0.52 L 8.525 3.273 C 8.62 3.474 8.805 3.614 9.019 3.648 L 11.983 4.092 C 12.233 4.128 12.442 4.307 12.525 4.553 C 12.603 4.8 12.536 5.071 12.352 5.249 Z\" fill=\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\"></path><path d=\"M 31.076 7.429 C 30.922 7.583 30.851 7.807 30.886 8.026 L 31.416 11.056 C 31.46 11.312 31.356 11.572 31.147 11.721 C 30.944 11.875 30.672 11.893 30.45 11.77 L 27.809 10.348 C 27.717 10.297 27.615 10.27 27.511 10.267 L 27.349 10.267 C 27.293 10.276 27.239 10.294 27.188 10.322 L 24.547 11.751 C 24.417 11.819 24.269 11.843 24.124 11.819 C 23.771 11.75 23.535 11.403 23.593 11.037 L 24.124 8.007 C 24.159 7.786 24.088 7.561 23.934 7.404 L 21.781 5.249 C 21.601 5.069 21.538 4.798 21.62 4.553 C 21.7 4.309 21.904 4.132 22.15 4.092 L 25.114 3.648 C 25.339 3.624 25.537 3.482 25.638 3.273 L 26.944 0.508 C 26.975 0.446 27.015 0.39 27.063 0.342 L 27.117 0.299 C 27.145 0.267 27.177 0.24 27.213 0.218 L 27.278 0.194 L 27.379 0.151 L 27.63 0.151 C 27.854 0.175 28.052 0.313 28.155 0.52 L 29.478 3.273 C 29.573 3.474 29.759 3.614 29.973 3.648 L 32.936 4.092 C 33.187 4.128 33.396 4.307 33.479 4.553 C 33.557 4.8 33.489 5.071 33.306 5.249 Z\" fill=\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\"></path><path d=\"M 52.029 7.429 C 51.875 7.583 51.804 7.807 51.839 8.026 L 52.369 11.056 C 52.414 11.312 52.309 11.572 52.101 11.721 C 51.897 11.875 51.626 11.893 51.403 11.77 L 48.763 10.348 C 48.671 10.297 48.569 10.27 48.464 10.267 L 48.303 10.267 C 48.247 10.276 48.192 10.294 48.142 10.322 L 45.501 11.751 C 45.37 11.819 45.222 11.843 45.077 11.819 C 44.724 11.75 44.489 11.403 44.547 11.037 L 45.077 8.007 C 45.112 7.786 45.041 7.561 44.887 7.404 L 42.734 5.249 C 42.554 5.069 42.491 4.798 42.574 4.553 C 42.654 4.309 42.857 4.132 43.104 4.092 L 46.067 3.648 C 46.292 3.624 46.49 3.482 46.592 3.273 L 47.897 0.508 C 47.928 0.446 47.968 0.39 48.017 0.342 L 48.07 0.299 C 48.098 0.267 48.131 0.24 48.166 0.218 L 48.231 0.194 L 48.333 0.151 L 48.584 0.151 C 48.808 0.175 49.005 0.313 49.108 0.52 L 50.431 3.273 C 50.527 3.474 50.712 3.614 50.926 3.648 L 53.89 4.092 C 54.14 4.128 54.35 4.307 54.432 4.553 C 54.511 4.8 54.443 5.071 54.259 5.249 Z\" fill=\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\"></path><path d=\"M 72.983 7.429 C 72.828 7.583 72.757 7.807 72.793 8.026 L 73.323 11.056 C 73.368 11.312 73.262 11.572 73.054 11.721 C 72.85 11.875 72.579 11.893 72.357 11.77 L 69.716 10.348 C 69.624 10.297 69.522 10.27 69.418 10.267 L 69.256 10.267 C 69.2 10.276 69.145 10.294 69.095 10.322 L 66.454 11.751 C 66.324 11.819 66.175 11.843 66.031 11.819 C 65.678 11.75 65.442 11.403 65.5 11.037 L 66.031 8.007 C 66.066 7.786 65.995 7.561 65.841 7.404 L 63.688 5.249 C 63.507 5.069 63.445 4.798 63.527 4.553 C 63.607 4.309 63.811 4.132 64.057 4.092 L 67.02 3.648 C 67.246 3.624 67.444 3.482 67.545 3.273 L 68.851 0.508 C 68.882 0.446 68.922 0.39 68.97 0.342 L 69.024 0.299 C 69.052 0.267 69.084 0.24 69.12 0.218 L 69.185 0.194 L 69.286 0.151 L 69.537 0.151 C 69.762 0.175 69.959 0.313 70.062 0.52 L 71.385 3.273 C 71.48 3.474 71.666 3.614 71.88 3.648 L 74.843 4.092 C 75.093 4.128 75.303 4.307 75.386 4.553 C 75.464 4.8 75.397 5.071 75.213 5.249 Z\" fill=\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\"></path><path d=\"M 93.936 7.429 C 93.782 7.583 93.711 7.807 93.746 8.026 L 94.276 11.056 C 94.321 11.312 94.216 11.572 94.008 11.721 C 93.804 11.875 93.533 11.893 93.31 11.77 L 90.67 10.348 C 90.578 10.297 90.476 10.27 90.372 10.267 L 90.21 10.267 C 90.154 10.276 90.099 10.294 90.049 10.322 L 87.407 11.751 C 87.277 11.819 87.129 11.843 86.984 11.819 C 86.631 11.75 86.396 11.403 86.453 11.037 L 86.984 8.007 C 87.02 7.786 86.949 7.561 86.794 7.404 L 84.641 5.249 C 84.461 5.069 84.398 4.798 84.481 4.553 C 84.56 4.309 84.764 4.132 85.011 4.092 L 87.974 3.648 C 88.199 3.624 88.397 3.482 88.499 3.273 L 89.804 0.508 C 89.836 0.446 89.875 0.39 89.923 0.342 L 89.977 0.299 C 90.005 0.267 90.037 0.24 90.073 0.218 L 90.138 0.194 L 90.24 0.151 L 90.491 0.151 C 90.715 0.175 90.912 0.313 91.016 0.52 L 92.338 3.273 C 92.434 3.474 92.619 3.614 92.833 3.648 L 95.797 4.092 C 96.047 4.128 96.256 4.307 96.339 4.553 C 96.417 4.8 96.35 5.071 96.166 5.249 Z\" fill=\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(255, 132, 66))\"></path></svg>',svgContentId:8926117321,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"50+ 5 Star Reviews\"})}),className:\"framer-1l306jp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j4z2v\",\"data-framer-name\":\"Hero Heading Content\",name:\"Hero Heading Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4w8l5h\",\"data-framer-name\":\"Heading & Subheading\",name:\"Heading & Subheading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fo77gx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"The\"})}),className:\"framer-jbkn8z\",fonts:[\"Inter\"],id:elementId,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Best\"})}),className:\"framer-1nh8e5s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r4ysuh\",style:{rotate:3},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(0, 0, 0))\"},children:\"Digital\"})}),className:\"framer-n2iyub\",fonts:[\"Inter\"],id:elementId1,ref:ref3,style:{rotate:-3},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(0, 0, 0))\"},children:\"Solutions\"})}),className:\"framer-1ty6ljs\",fonts:[\"Inter\"],id:elementId2,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Agency.\"})}),className:\"framer-harf3f\",fonts:[\"Inter\"],id:elementId3,ref:ref5,verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15cptce\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3qalfx-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"ozETDY6UC\",layoutId:\"ozETDY6UC\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://my.spline.design/flowingribbon-05f32cbd8f70808d44db80abdbbbc449/\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-skvjh4\",\"data-framer-name\":\"Services\",name:\"Services\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u76kmz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171tl\",\"data-framer-name\":\"Heading Content Wrapper\",name:\"Heading Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{y:1436}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"min(max(100vw - 80px, 1px), 1440px)\",y:1506,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xi7suj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{style:{width:\"100%\"},variant:\"KJ1G3Id0e\"},WgNeKo_y1:{variant:\"lLa5v4PpE\"}},children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"What we are offering\",GqTmcaQLx:\"Services\",height:\"100%\",id:\"mS9piqvch\",kAHPdHlCh:\"Our top-notch digital marketing agency not only delivers impressive results but also dazzles our clients with remarkable statistics. We pride ourselves on our ability to amaze customers with tangible outcomes and eye-catching figures.\",layoutId:\"mS9piqvch\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"u4P6wTRAk\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I048UAEvC\"},implicitPathVariables:undefined},{href:{webPageId:\"I048UAEvC\"},implicitPathVariables:undefined},{href:{webPageId:\"I048UAEvC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:1585}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:1655,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lajn5l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{DEX53qIxg:resolvedLinks[2],variant:\"YVt9h3DM_\"},WgNeKo_y1:{DEX53qIxg:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"View All Services\",DEX53qIxg:resolvedLinks[0],height:\"100%\",id:\"D8ZrHgbie\",layoutId:\"D8ZrHgbie\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-py75l2\",\"data-framer-name\":\"Services Wrapper\",name:\"Services Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3790c\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dcRkhFFrw\"},implicitPathVariables:undefined},{href:{webPageId:\"dcRkhFFrw\"},implicitPathVariables:undefined},{href:{webPageId:\"dcRkhFFrw\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"max((max(100vw - 80px, 1px) - 10px) / 2, 200px)\",y:1665}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:\"max((min(max(100vw - 80px, 1px), 1440px) - 10px) / 2, 200px)\",y:1765,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w8x50v-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{ocFxhgdq4:resolvedLinks1[2]},WgNeKo_y1:{ocFxhgdq4:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Service,{height:\"100%\",id:\"MRzPkaxzY\",iNyObSHzV:\"Boost your online presence with our dynamic social media marketing services. We craft engaging content, optimize your profiles, and manage your community to drive growth and engagement. Let us elevate your brand and connect you with your audience.       \",layoutId:\"MRzPkaxzY\",lxVLvSShs:\"InstagramLogo\",ocFxhgdq4:resolvedLinks1[0],p1QdeJ3VD:true,style:{width:\"100%\"},variant:\"tICj7eCix\",width:\"100%\",x6gTlITKM:\"Social Media Marketing\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GJzxKcIjx\"},implicitPathVariables:undefined},{href:{webPageId:\"GJzxKcIjx\"},implicitPathVariables:undefined},{href:{webPageId:\"GJzxKcIjx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"max((max(100vw - 80px, 1px) - 10px) / 2, 200px)\",y:1665}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:\"max((min(max(100vw - 80px, 1px), 1440px) - 10px) / 2, 200px)\",y:1765,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mrpq24-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{ocFxhgdq4:resolvedLinks2[2]},WgNeKo_y1:{ocFxhgdq4:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Service,{height:\"100%\",id:\"mz1tkgmqQ\",iNyObSHzV:\"Our product marketing services help your product stand out. We conduct market research, create strategic campaigns, build brand awareness, and engage customers. We also analyze competitors and provide sales enablement for optimal results.\\n\\n\\n\\n\\n\\n\\n\",layoutId:\"mz1tkgmqQ\",lxVLvSShs:\"Browser\",ocFxhgdq4:resolvedLinks2[0],p1QdeJ3VD:true,style:{width:\"100%\"},variant:\"tICj7eCix\",width:\"100%\",x6gTlITKM:\"Product Makreting\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vGxa0lRe4\"},implicitPathVariables:undefined},{href:{webPageId:\"vGxa0lRe4\"},implicitPathVariables:undefined},{href:{webPageId:\"vGxa0lRe4\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"max((max(100vw - 80px, 1px) - 10px) / 2, 200px)\",y:2049}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:\"max((min(max(100vw - 80px, 1px), 1440px) - 10px) / 2, 200px)\",y:2149,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lvlv5q-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{ocFxhgdq4:resolvedLinks3[2]},WgNeKo_y1:{ocFxhgdq4:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Service,{height:\"100%\",id:\"z1ecxf1W4\",iNyObSHzV:\"Optimize your business finances with our expert bookkeeping services. We handle daily transactions, account reconciliation, and financial reports, ensuring accuracy and compliance. Focus on growing your business while we manage your books.\",layoutId:\"z1ecxf1W4\",lxVLvSShs:\"GoogleLogo\",ocFxhgdq4:resolvedLinks3[0],p1QdeJ3VD:true,style:{width:\"100%\"},variant:\"tICj7eCix\",width:\"100%\",x6gTlITKM:\"Bookkeeping Services\"})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OQToYkP9W\"},implicitPathVariables:undefined},{href:{webPageId:\"OQToYkP9W\"},implicitPathVariables:undefined},{href:{webPageId:\"OQToYkP9W\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"max((max(100vw - 80px, 1px) - 10px) / 2, 200px)\",y:2049}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:\"max((min(max(100vw - 80px, 1px), 1440px) - 10px) / 2, 200px)\",y:2149,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p1yvjz-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{ocFxhgdq4:resolvedLinks4[2]},WgNeKo_y1:{ocFxhgdq4:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Service,{height:\"100%\",id:\"yMegrk7bW\",iNyObSHzV:\"Enhance your productivity with our professional virtual assistant services. We manage your administrative tasks, scheduling, and email correspondence, allowing you to focus on your core business. Let us handle the details while you drive your business forward.\",layoutId:\"yMegrk7bW\",lxVLvSShs:\"Article\",ocFxhgdq4:resolvedLinks4[0],p1QdeJ3VD:true,style:{width:\"100%\"},variant:\"tICj7eCix\",width:\"100%\",x6gTlITKM:\"Virtual Assistant Services\"})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I048UAEvC\"},implicitPathVariables:undefined},{href:{webPageId:\"I048UAEvC\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{height:50}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rsx6ko-container hidden-hvzz3m hidden-1b4lfhe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{DEX53qIxg:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"View All Services\",DEX53qIxg:resolvedLinks5[0],height:\"100%\",id:\"z7ZVeXzwT\",layoutId:\"z7ZVeXzwT\",variant:\"YVt9h3DM_\",width:\"100%\"})})})})})})]})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17who6o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a0nroh\",\"data-styles-preset\":\"s2c1M16C7\",style:{\"--framer-text-color\":\"var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(0, 0, 0))\"},children:\"Your Ambition,\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a0nroh\",\"data-styles-preset\":\"s2c1M16C7\",style:{\"--framer-text-color\":\"var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(0, 0, 0))\"},children:\"Our Execution\"})]}),className:\"framer-1y5r9c9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8hryf4-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"ENHqVSlcq\",layoutId:\"ENHqVSlcq\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://my.spline.design/chips-a9f6aeaf14eb6e8b13db5dd91368c5e8/\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ncy7c0\",\"data-framer-name\":\"Pricing\",id:elementId4,name:\"Pricing\",ref:ref6,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycslwf\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(min(max(100vw - 80px, 1px), 1000px), 1440px)\",y:2959}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"min(max(100vw - 80px, 1px), 1440px)\",y:3323,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bmjcpe-container\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Social Media Marketing Plans\",GqTmcaQLx:\"Pricing\",height:\"100%\",id:\"E9fVGDByl\",kAHPdHlCh:\"\",layoutId:\"E9fVGDByl\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(max(100vw - 80px, 1px), 1000px)\",y:3138}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:675,width:\"min(max(100vw - 80px, 1px), 1440px)\",y:3482,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ffar13-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"bvMLUjGu9\"},WgNeKo_y1:{variant:\"bvMLUjGu9\"}},children:/*#__PURE__*/_jsx(Pricing,{height:\"100%\",id:\"yEAm61l4q\",layoutId:\"yEAm61l4q\",style:{width:\"100%\"},variant:\"HpuGKETE0\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dmi1l2\",\"data-framer-name\":\"Case Studies\",name:\"Case Studies\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"calc(100vw - 24px)\",y:undefined},WgNeKo_y1:{y:3973}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"min((100vw - 80px) * 0.8, 1440px)\",y:4357,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12f4xyz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Case Studies\",GqTmcaQLx:\"Works\",height:\"100%\",id:\"D3pF31hoU\",kAHPdHlCh:\"\",layoutId:\"D3pF31hoU\",NlGfzfEF2:true,p1KubWiKz:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11iok51\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2q54w6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-44pv8d\",\"data-framer-name\":\"Project 1\",name:\"Project 1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7trqc8\",\"data-framer-name\":\"Project\",name:\"Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v5uax4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LHf_21Li6\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"LHf_21Li6\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"r9QMyoDHs\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"jYgOCvKuF\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"DjzsZgoLU\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"luaJ1PV3v\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"FRxJrVbab\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"LHf_21Li6\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LHf_21Li6\",name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mFQHnNgJd\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"kBAWMceDj\":kBAWMceDjLHf_21Li6,\"YSKHrdVc1\":YSKHrdVc1LHf_21Li6,\"r9QMyoDHs\":r9QMyoDHsLHf_21Li6,\"jYgOCvKuF\":jYgOCvKuFLHf_21Li6,\"DjzsZgoLU\":DjzsZgoLULHf_21Li6,\"luaJ1PV3v\":luaJ1PV3vLHf_21Li6,\"FRxJrVbab\":FRxJrVbabLHf_21Li6,\"Tu_Pd0zTZ\":Tu_Pd0zTZLHf_21Li6,\"id\":idLHf_21Li6},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`LHf_21Li6-${idLHf_21Li6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZLHf_21Li6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZLHf_21Li6},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZLHf_21Li6},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZLHf_21Li6},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(min(100vw - 24px, 1440px), 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(max((min(100vw - 80px, 1440px) - 20px) / 2, 1px), 1440px)\",y:9924}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"min(max((min(100vw - 80px, 1440px) - 30px) / 2, 1px), 1440px)\",y:10048,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4key13-container\",\"data-framer-cursor\":\"ixfehx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{uB3Li49Uz:resolvedLinks6[2],variant:\"JfRnu8SSW\"},WgNeKo_y1:{uB3Li49Uz:resolvedLinks6[1],variant:\"JfRnu8SSW\"}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"A91ClK7Vy\",layoutId:\"A91ClK7Vy\",M_pfzYt58:toResponsiveImage(kBAWMceDjLHf_21Li6),NYeeHdoQZ:jYgOCvKuFLHf_21Li6,oqirxxS_G:r9QMyoDHsLHf_21Li6,pvyu50sb9:luaJ1PV3vLHf_21Li6,RhNFJqKE_:false,style:{width:\"100%\"},uB3Li49Uz:resolvedLinks6[0],variant:\"U9QyqU4vh\",vjce4Tqa7:YSKHrdVc1LHf_21Li6,width:\"100%\",xxslYkG4G:DjzsZgoLULHf_21Li6,ZZxw1qd09:FRxJrVbabLHf_21Li6})})})})})})})},idLHf_21Li6);})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-kzr1ge\",\"data-framer-name\":\"Project 2\",name:\"Project 2\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x65jxd\",\"data-framer-name\":\"Project\",name:\"Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16id6eu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"g7gardzzi\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"g7gardzzi\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"r9QMyoDHs\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"jYgOCvKuF\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"DjzsZgoLU\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"luaJ1PV3v\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"FRxJrVbab\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"g7gardzzi\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"g7gardzzi\",name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mFQHnNgJd\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"kBAWMceDj\":kBAWMceDjg7gardzzi,\"YSKHrdVc1\":YSKHrdVc1g7gardzzi,\"r9QMyoDHs\":r9QMyoDHsg7gardzzi,\"jYgOCvKuF\":jYgOCvKuFg7gardzzi,\"DjzsZgoLU\":DjzsZgoLUg7gardzzi,\"luaJ1PV3v\":luaJ1PV3vg7gardzzi,\"FRxJrVbab\":FRxJrVbabg7gardzzi,\"Tu_Pd0zTZ\":Tu_Pd0zTZg7gardzzi,\"id\":idg7gardzzi},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`g7gardzzi-${idg7gardzzi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZg7gardzzi},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZg7gardzzi},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZg7gardzzi},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZg7gardzzi},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(min(100vw - 24px, 1440px), 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(max((min(100vw - 80px, 1440px) - 20px) / 2, 1px), 1440px)\",y:16140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"min(max((min(100vw - 80px, 1440px) - 30px) / 2, 1px), 1440px)\",y:16004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p393br-container\",\"data-framer-cursor\":\"ixfehx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{uB3Li49Uz:resolvedLinks7[2],variant:\"JfRnu8SSW\"},WgNeKo_y1:{uB3Li49Uz:resolvedLinks7[1],variant:\"JfRnu8SSW\"}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"tWwFiRNz5\",layoutId:\"tWwFiRNz5\",M_pfzYt58:toResponsiveImage(kBAWMceDjg7gardzzi),NYeeHdoQZ:jYgOCvKuFg7gardzzi,oqirxxS_G:r9QMyoDHsg7gardzzi,pvyu50sb9:luaJ1PV3vg7gardzzi,RhNFJqKE_:false,style:{width:\"100%\"},uB3Li49Uz:resolvedLinks7[0],variant:\"U9QyqU4vh\",vjce4Tqa7:YSKHrdVc1g7gardzzi,width:\"100%\",xxslYkG4G:DjzsZgoLUg7gardzzi,ZZxw1qd09:FRxJrVbabg7gardzzi})})})})})})})},idg7gardzzi);})})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ce5gwv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-rrl9pm\",\"data-framer-name\":\"Project 3\",name:\"Project 3\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mfki7q\",\"data-framer-name\":\"Project\",name:\"Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tr8451\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SoPwllC3F\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"SoPwllC3F\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"r9QMyoDHs\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"jYgOCvKuF\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"DjzsZgoLU\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"luaJ1PV3v\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"FRxJrVbab\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"SoPwllC3F\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"SoPwllC3F\",name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mFQHnNgJd\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"kBAWMceDj\":kBAWMceDjSoPwllC3F,\"YSKHrdVc1\":YSKHrdVc1SoPwllC3F,\"r9QMyoDHs\":r9QMyoDHsSoPwllC3F,\"jYgOCvKuF\":jYgOCvKuFSoPwllC3F,\"DjzsZgoLU\":DjzsZgoLUSoPwllC3F,\"luaJ1PV3v\":luaJ1PV3vSoPwllC3F,\"FRxJrVbab\":FRxJrVbabSoPwllC3F,\"Tu_Pd0zTZ\":Tu_Pd0zTZSoPwllC3F,\"id\":idSoPwllC3F},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`SoPwllC3F-${idSoPwllC3F}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZSoPwllC3F},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZSoPwllC3F},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZSoPwllC3F},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZSoPwllC3F},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(min(100vw - 24px, 1440px), 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(max((min(100vw - 80px, 1440px) - 20px) / 2, 1px), 1440px)\",y:10074}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"min(max((min(100vw - 80px, 1440px) - 30px) / 2, 1px), 1440px)\",y:10198,children:/*#__PURE__*/_jsx(Container,{className:\"framer-je6lbn-container\",\"data-framer-cursor\":\"ixfehx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{uB3Li49Uz:resolvedLinks8[2],variant:\"JfRnu8SSW\"},WgNeKo_y1:{uB3Li49Uz:resolvedLinks8[1],variant:\"JfRnu8SSW\"}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"evGsH2IG_\",layoutId:\"evGsH2IG_\",M_pfzYt58:toResponsiveImage(kBAWMceDjSoPwllC3F),NYeeHdoQZ:jYgOCvKuFSoPwllC3F,oqirxxS_G:r9QMyoDHsSoPwllC3F,pvyu50sb9:luaJ1PV3vSoPwllC3F,RhNFJqKE_:false,style:{width:\"100%\"},uB3Li49Uz:resolvedLinks8[0],variant:\"U9QyqU4vh\",vjce4Tqa7:YSKHrdVc1SoPwllC3F,width:\"100%\",xxslYkG4G:DjzsZgoLUSoPwllC3F,ZZxw1qd09:FRxJrVbabSoPwllC3F})})})})})})})},idSoPwllC3F);})})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:362,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-yv4exd\",\"data-framer-name\":\"Project 4\",name:\"Project 4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1apq0\",\"data-framer-name\":\"Project\",name:\"Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ucet0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YAMo7907Z\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"YAMo7907Z\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"r9QMyoDHs\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"jYgOCvKuF\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"DjzsZgoLU\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"luaJ1PV3v\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"FRxJrVbab\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"YAMo7907Z\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YAMo7907Z\",name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mFQHnNgJd\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"kBAWMceDj\":kBAWMceDjYAMo7907Z,\"YSKHrdVc1\":YSKHrdVc1YAMo7907Z,\"r9QMyoDHs\":r9QMyoDHsYAMo7907Z,\"jYgOCvKuF\":jYgOCvKuFYAMo7907Z,\"DjzsZgoLU\":DjzsZgoLUYAMo7907Z,\"luaJ1PV3v\":luaJ1PV3vYAMo7907Z,\"FRxJrVbab\":FRxJrVbabYAMo7907Z,\"Tu_Pd0zTZ\":Tu_Pd0zTZYAMo7907Z,\"id\":idYAMo7907Z},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`YAMo7907Z-${idYAMo7907Z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZYAMo7907Z},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZYAMo7907Z},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZYAMo7907Z},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZYAMo7907Z},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(min(100vw - 24px, 1440px), 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(max((min(100vw - 80px, 1440px) - 20px) / 2, 1px), 1440px)\",y:16290}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:404,width:\"min(max((min(100vw - 80px, 1440px) - 30px) / 2, 1px), 1440px)\",y:16154,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s2ssx8-container\",\"data-framer-cursor\":\"ixfehx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{uB3Li49Uz:resolvedLinks9[2],variant:\"JfRnu8SSW\"},WgNeKo_y1:{uB3Li49Uz:resolvedLinks9[1],variant:\"JfRnu8SSW\"}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"vErau4CVP\",layoutId:\"vErau4CVP\",M_pfzYt58:toResponsiveImage(kBAWMceDjYAMo7907Z),NYeeHdoQZ:jYgOCvKuFYAMo7907Z,oqirxxS_G:r9QMyoDHsYAMo7907Z,pvyu50sb9:luaJ1PV3vYAMo7907Z,RhNFJqKE_:false,style:{width:\"100%\"},uB3Li49Uz:resolvedLinks9[0],variant:\"U9QyqU4vh\",vjce4Tqa7:YSKHrdVc1YAMo7907Z,width:\"100%\",xxslYkG4G:DjzsZgoLUYAMo7907Z,ZZxw1qd09:FRxJrVbabYAMo7907Z})})})})})})})},idYAMo7907Z);})})})})})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined},{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined},{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:16754}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:16618,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yi27rj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{DEX53qIxg:resolvedLinks10[2],variant:\"YVt9h3DM_\"},WgNeKo_y1:{DEX53qIxg:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"View All Projects\",DEX53qIxg:resolvedLinks10[0],height:\"100%\",id:\"uiiDfCHCL\",layoutId:\"uiiDfCHCL\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jb38e3\",\"data-framer-name\":\"Testimonial\",id:elementId5,name:\"Testimonial\",ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckuq6i\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ekjpl\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"67.37414965986395px\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"REVIEWS\"})}),viewBox:\"0 0 377 81\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"67.37414965986395px\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"TESTIMONIAL\"})}),className:\"framer-1cdop8l\",fonts:[\"GF;Unbounded-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 566 81\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrpcii\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xzbt9-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"wkS2IcWnz\",layoutId:\"wkS2IcWnz\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:541,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltn5u5-container\",children:/*#__PURE__*/_jsx(Review,{DiVXinioL:\"Azeez\",height:\"100%\",id:\"m0L1C9xxJ\",ImE1bDbog:\"Tadd Solutions has been fantastic in handling our digital marketing needs. Their expertise in social media management, branding, and content creation made a noticeable difference in our online presence. The team's professionalism and responsiveness set them apart, delivering great results with a personal touch. Highly recommend for any business looking to boost their digital marketing efforts.\",layoutId:\"m0L1C9xxJ\",PNWVubnIT:10,style:{width:\"100%\"},variant:\"pDOy_Q9VE\",vvvuv92PD:addImageAlt({positionX:\"44.7%\",positionY:\"25.2%\",src:\"https://framerusercontent.com/images/tahg9s9L4Bct2ubZOjjWAeBlGTc.jpg\",srcSet:\"https://framerusercontent.com/images/tahg9s9L4Bct2ubZOjjWAeBlGTc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/tahg9s9L4Bct2ubZOjjWAeBlGTc.jpg 1080w\"},\"\"),width:\"100%\",wnT5LM8TP:\"MNMM Fitness\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:541,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ay5cbm-container\",children:/*#__PURE__*/_jsx(Review,{DiVXinioL:\"Yudhistira\",height:\"100%\",id:\"MVDOqwe0x\",ImE1bDbog:\"Tadd Solutions did an outstanding job on our website development. They understood our vision perfectly and created a site that\u2019s not only visually appealing but also user-friendly and optimized for performance. The team was professional, responsive, and delivered everything on time. If you need a website that truly represents your brand, I highly recommend Tadd Solutions.\",layoutId:\"MVDOqwe0x\",PNWVubnIT:10,style:{width:\"100%\"},variant:\"pDOy_Q9VE\",vvvuv92PD:addImageAlt({src:\"https://framerusercontent.com/images/51qmiw1BPeOrWZIH6SdB1gAFtk.webp\",srcSet:\"https://framerusercontent.com/images/51qmiw1BPeOrWZIH6SdB1gAFtk.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/51qmiw1BPeOrWZIH6SdB1gAFtk.webp 1080w\"},\"\"),width:\"100%\",wnT5LM8TP:\"Founder No Parking \"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:541,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15zuyfc-container\",children:/*#__PURE__*/_jsx(Review,{DiVXinioL:\"Uthej Tadisetty\",height:\"100%\",id:\"g5rlpXQGe\",ImE1bDbog:\"Tadd Solutions has transformed our social media presence. Their team is highly skilled at managing our accounts, creating engaging content, and growing our audience. The consistent branding and strategic approach they've implemented have significantly boosted our online visibility. Their professionalism and creativity make them a top choice for social media management. Highly recommend!\",layoutId:\"g5rlpXQGe\",PNWVubnIT:10,style:{width:\"100%\"},variant:\"pDOy_Q9VE\",vvvuv92PD:addImageAlt({src:\"https://framerusercontent.com/images/u7zPxX5mgOOL05u8BLnK0ToiXc.webp\"},\"\"),width:\"100%\",wnT5LM8TP:\"CEO, Tadd Solutions\"})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ytbrlw\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10as3a1\",style:{rotate:180}})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f9gKbvqbM\"},implicitPathVariables:undefined},{href:{webPageId:\"f9gKbvqbM\"},implicitPathVariables:undefined},{href:{webPageId:\"f9gKbvqbM\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:17789}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:17733,children:/*#__PURE__*/_jsx(Container,{className:\"framer-181ncho-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{DEX53qIxg:resolvedLinks11[2],variant:\"YVt9h3DM_\"},WgNeKo_y1:{DEX53qIxg:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"View All Reviews\",DEX53qIxg:resolvedLinks11[0],height:\"100%\",id:\"TTNn7kQLU\",layoutId:\"TTNn7kQLU\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17tncu9\",\"data-framer-name\":\"Specialities\",name:\"Specialities\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mng6ye\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{y:17999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"min(max(100vw - 80px, 1px), 1440px)\",y:17983,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18fk8li-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"KJ1G3Id0e\"},WgNeKo_y1:{variant:\"KJ1G3Id0e\"}},children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Our Specialities\",GqTmcaQLx:\"Why Us\",height:\"100%\",id:\"ty2_oh6O2\",kAHPdHlCh:\"Our top-notch digital marketing agency not only delivers impressive results but also dazzles our clients with remarkable statistics. We pride ourselves on our ability to amaze customers with tangible outcomes and eye-catching figures.\",layoutId:\"ty2_oh6O2\",NlGfzfEF2:true,p1KubWiKz:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"u4P6wTRAk\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3dn5k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wd7iy1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:667,pixelWidth:1e3,positionX:\"55.1%\",positionY:\"30.2%\",sizes:\"min(max(100vw - 24px, 1px), 1440px)\",src:\"https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg\",srcSet:\"https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg 1000w\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(18148),pixelHeight:667,pixelWidth:1e3,positionX:\"55.1%\",positionY:\"30.2%\",sizes:\"max((max(100vw - 80px, 1px) - 10px) / 1.5, 1px)\",src:\"https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg\",srcSet:\"https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg 1000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(18162),pixelHeight:667,pixelWidth:1e3,positionX:\"55.1%\",positionY:\"30.2%\",sizes:\"max((min(max(100vw - 80px, 1px), 1440px) - 10px) / 1.5, 1px)\",src:\"https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg\",srcSet:\"https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tpbW8SIi5ra8nVMEwdsyHi8dw.jpg 1000w\"},className:\"framer-1s6yyb6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dt0c77\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8ossu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uey7d7\",\"data-styles-preset\":\"XiF1LAa3c\",children:\"150%\"})}),className:\"framer-1rbiegj\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-39le6\",\"data-styles-preset\":\"BZqcnnsi4\",children:\"Average Traffic Increase\"})}),className:\"framer-a14alj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gbj1uu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"Clients choose to stay with us over the long run due to the exceptional results we deliver and the strong relationships we build.\"})}),className:\"framer-b2npcv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wze62\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ftuw84\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uey7d7\",\"data-styles-preset\":\"XiF1LAa3c\",children:\"$10M\"})}),className:\"framer-tgmao9\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-39le6\",\"data-styles-preset\":\"BZqcnnsi4\",children:\"Revenue Generated\"})}),className:\"framer-1nxcxry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"We help generated $10M revenue for our clients around the globe\"})}),className:\"framer-k3hsuw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-te7zln\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,pixelHeight:4500,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024\"}},WgNeKo_y1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(18618),pixelHeight:4500,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(18632),pixelHeight:4500,pixelWidth:3e3,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024\"},className:\"framer-1smoyra\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13o8rur\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18987}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:19001,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jmnool-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate1,whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Quality\",height:\"100%\",id:\"p7AMn55yN\",layoutId:\"p7AMn55yN\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18939.99481747627}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18953.99481747627,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r0o321-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:2,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Personalization\",height:\"100%\",id:\"oXyw3aYrr\",layoutId:\"oXyw3aYrr\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18950.013079344382}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18964.013079344382,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-trja7f-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:-4,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Reliability\",height:\"100%\",id:\"X8QqHiYuz\",layoutId:\"X8QqHiYuz\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18896.032013867207}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18910.032013867207,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mvrr88-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:-17,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Collaboration\",height:\"100%\",id:\"HASNsDcS3\",layoutId:\"HASNsDcS3\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18885.948954827225}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18899.948954827225,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p5yo2r-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:-14,transformPerspective:1200},transformTemplate:transformTemplate1,whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Innovation\",height:\"100%\",id:\"Blh9QJ6z1\",layoutId:\"Blh9QJ6z1\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18835.99255816816}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18849.99255816816,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3063ph-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:11,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Customer Focus\",height:\"100%\",id:\"O_tHxRvOp\",layoutId:\"O_tHxRvOp\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18833}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18847,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rsmndz-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:11,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Long-Term Relationships\",height:\"100%\",id:\"pLGjURVVi\",layoutId:\"pLGjURVVi\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18779}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18793,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t2hhas-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:-15,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Positive Experience\",height:\"100%\",id:\"pn_Wu45YU\",layoutId:\"pn_Wu45YU\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18793}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18807,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mb7acv-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:3,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Trustworthiness\",height:\"100%\",id:\"REdf2YXuu\",layoutId:\"REdf2YXuu\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18732}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18746,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aorcb3-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:24,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Passion\",height:\"100%\",id:\"xLvN11CHg\",layoutId:\"xLvN11CHg\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:18714}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:18728,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{drag:undefined,whileTap:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation26,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6cy7es-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:-28,transformPerspective:1200},whileTap:animation8,children:/*#__PURE__*/_jsx(Bullet,{ej_oyrdNG:\"Customer Support\",height:\"100%\",id:\"ABFtcuw84\",layoutId:\"ABFtcuw84\",variant:\"yWlmd8pQp\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n263oc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-elyyqd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-39le6\",\"data-styles-preset\":\"BZqcnnsi4\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Enhanced Brand Visibility\"})}),className:\"framer-g4ukzm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uey7d7\",\"data-styles-preset\":\"XiF1LAa3c\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"80%\"})}),className:\"framer-1b8zfmf\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",style:{\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Our agency developed a content marketing plan for a client, resulting in a significant increase in brand visibility and recognition. As a result, the client experienced a 80% increase in website traffic within six months.\"})}),className:\"framer-1rxwpr7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eevdia\",\"data-framer-name\":\"Blogs\",name:\"Blogs\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ljaebb\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1koixv7\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(100vw - 24px, 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(100vw - 80px, 1440px)\",y:19238}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"min(max(100vw - 80px, 1px), 1440px)\",y:19292,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tuo3iq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"KJ1G3Id0e\"},WgNeKo_y1:{variant:\"KJ1G3Id0e\"}},children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Dive into our collection of engaging blog posts\",GqTmcaQLx:\"Blogs\",height:\"100%\",id:\"UIHiuzk6K\",kAHPdHlCh:\"Your go-to destination for insightful articles, tips, and inspiration on all things landscaping and outdoor living\",layoutId:\"UIHiuzk6K\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eaYrV5aCy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"q3Pzxazm0\"},implicitPathVariables:undefined},{href:{webPageId:\"q3Pzxazm0\"},implicitPathVariables:undefined},{href:{webPageId:\"q3Pzxazm0\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:undefined},WgNeKo_y1:{y:19389}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:19443,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ntko7t-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{DEX53qIxg:resolvedLinks12[2],variant:\"YVt9h3DM_\"},WgNeKo_y1:{DEX53qIxg:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"Read Blogs\",DEX53qIxg:resolvedLinks12[0],height:\"100%\",id:\"g0svyA6Sw\",layoutId:\"g0svyA6Sw\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q15wep\",\"data-framer-name\":\"Blogs Wrapper\",name:\"Blogs Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-23xacm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WgNeKo_y1:{query:{from:{alias:\"uop5p902E\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"uop5p902E\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"TA3EDeQ5w\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"uop5p902E\",name:\"XahuzEJZy\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"uop5p902E\",name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uKBRLmciu\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uop5p902E\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"uop5p902E\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"TA3EDeQ5w\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"uop5p902E\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"uop5p902E\",name:\"XahuzEJZy\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"uop5p902E\",name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uKBRLmciu\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"EZue1CzWP\":EZue1CzWPuop5p902E,\"TA3EDeQ5w\":TA3EDeQ5wuop5p902E,\"kBAWMceDj\":kBAWMceDjuop5p902E,\"YSKHrdVc1\":YSKHrdVc1uop5p902E,\"Tu_Pd0zTZ\":Tu_Pd0zTZuop5p902E,\"id\":iduop5p902E},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`uop5p902E-${iduop5p902E}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZuop5p902E},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZuop5p902E},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZuop5p902E},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZuop5p902E},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks13=>{var _enumToDisplayNameFunctions_TA3EDeQ5w;return /*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{height:353,width:\"min(100vw - 24px, 1440px)\",y:undefined},WgNeKo_y1:{width:\"max((min(min(100vw - 80px, 1440px), 1000px) - 10px) / 2, 200px)\",y:19499}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"max((max(min(max(100vw - 80px, 1px), 1440px), 1px) - 20px) / 3, 200px)\",y:19553,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ixk6u-container\",whileHover:animation28,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{dYlp1mnOp:resolvedLinks13[2],variant:\"lb1rPr9_d\"},WgNeKo_y1:{dYlp1mnOp:resolvedLinks13[1],variant:\"lb1rPr9_d\"}},children:/*#__PURE__*/_jsx(BlogSingleCard,{bDx0AY1ti:YSKHrdVc1uop5p902E,dfGShofDn:false,dl6hFZ0zO:toResponsiveImage(kBAWMceDjuop5p902E),DVl5QgbQh:(_enumToDisplayNameFunctions_TA3EDeQ5w=enumToDisplayNameFunctions[\"TA3EDeQ5w\"])===null||_enumToDisplayNameFunctions_TA3EDeQ5w===void 0?void 0:_enumToDisplayNameFunctions_TA3EDeQ5w.call(enumToDisplayNameFunctions,TA3EDeQ5wuop5p902E,activeLocale),dYlp1mnOp:resolvedLinks13[0],height:\"100%\",id:\"zJ2e9E_1K\",layoutId:\"zJ2e9E_1K\",style:{height:\"100%\",width:\"100%\"},variant:\"zIEUcqrDu\",width:\"100%\",YoxdJjrJJ:toDateString(EZue1CzWPuop5p902E,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode)})})})})});}})})},iduop5p902E);})})})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o6dgbz\",\"data-framer-name\":\"FAQ\",id:elementId6,name:\"FAQ\",ref:ref8,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19j62tj\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(max(100vw - 24px, 1px), 1440px)\",y:undefined},WgNeKo_y1:{width:\"min(min(max(100vw - 80px, 1px), 1000px), 1440px)\",y:22505}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"min(max(100vw - 80px, 1px), 1440px)\",y:21783,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2u7rm-container\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Got Questions?\\nWe've Got Answers!\",GqTmcaQLx:\"Frequently Asked Questions\",height:\"100%\",id:\"WoYkGo2hS\",kAHPdHlCh:\"\",layoutId:\"WoYkGo2hS\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"min(min(max(100vw - 24px, 1px), 1440px), 1000px)\",y:undefined},WgNeKo_y1:{width:\"min(max(100vw - 80px, 1px), 1000px)\",y:22684}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:638,width:\"min(min(max(100vw - 80px, 1px), 1440px), 1000px)\",y:21962,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dv02ol-container\",children:/*#__PURE__*/_jsx(FAQListCommon,{height:\"100%\",id:\"Vf0IQ65Mm\",layoutId:\"Vf0IQ65Mm\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:14252},WgNeKo_y1:{y:23402}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1232,width:\"100vw\",y:22700,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q3g1oe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"BsZlXwif2\"},WgNeKo_y1:{variant:\"mKXCPqfUG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"S6HR3Mlhv\",layoutId:\"S6HR3Mlhv\",style:{width:\"100%\"},variant:\"zQXPtCkn3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bn53kh-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ZCezUq2zT\",intensity:12,layoutId:\"ZCezUq2zT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-fXfgK { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)); }`,\".framer-fXfgK.framer-k7qaoj, .framer-fXfgK .framer-k7qaoj { display: block; }\",\".framer-fXfgK.framer-hvzz3m { align-content: center; align-items: center; background-color: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-fXfgK .framer-123wqig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 0; }\",'.framer-fXfgK .framer-1bsjpkg { background: radial-gradient(43.2% 25% at 50% 18.8%, rgba(84, 84, 84, 0) 0%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)) /* {\"name\":\"Dark Green\"} */ 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }',\".framer-fXfgK .framer-ne3cqe-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: relative; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-fXfgK .framer-icz1s2-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-fXfgK .framer-1ma85oo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-j1yqbq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 1356px; justify-content: center; overflow: visible; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-he8jli { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 22%; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1c83yy { --border-bottom-width: 1px; --border-color: var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(5px); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: -70px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 22%; overflow: hidden; padding: 20px; pointer-events: none; position: absolute; transform: translateX(-50%); width: 368px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-fXfgK .framer-yk9x6r, .framer-fXfgK .framer-1l306jp, .framer-fXfgK .framer-1rxwpr7 { --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-fXfgK .framer-7xjwq8 { background-color: var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1cfd53y, .framer-fXfgK .framer-44pv8d, .framer-fXfgK .framer-kzr1ge, .framer-fXfgK .framer-rrl9pm, .framer-fXfgK .framer-yv4exd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-11ko54m-container, .framer-fXfgK .framer-lajn5l-container, .framer-fXfgK .framer-yi27rj-container, .framer-fXfgK .framer-181ncho-container, .framer-fXfgK .framer-ntko7t-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fXfgK .framer-ho5v21 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fXfgK .framer-8flma5 { flex: none; height: 12px; position: relative; width: 97px; }\",\".framer-fXfgK .framer-j4z2v { 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: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-4w8l5h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-fo77gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-jbkn8z, .framer-fXfgK .framer-1nh8e5s, .framer-fXfgK .framer-harf3f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 740px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fXfgK .framer-r4ysuh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fXfgK .framer-n2iyub { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fXfgK .framer-1ty6ljs { flex: none; height: auto; max-width: 740px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fXfgK .framer-15cptce { flex: none; height: 678px; overflow: hidden; position: relative; width: 100%; }\",\".framer-fXfgK .framer-3qalfx-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: -3px; }\",\".framer-fXfgK .framer-skvjh4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 150px 40px 100px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-1u76kmz, .framer-fXfgK .framer-1mng6ye, .framer-fXfgK .framer-1ljaebb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fXfgK .framer-171tl { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-1xi7suj-container, .framer-fXfgK .framer-bmjcpe-container, .framer-fXfgK .framer-tuo3iq-container, .framer-fXfgK .framer-1f2u7rm-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-py75l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-s3790c { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-w8x50v-container, .framer-fXfgK .framer-mrpq24-container, .framer-fXfgK .framer-lvlv5q-container, .framer-fXfgK .framer-p1yvjz-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-rsx6ko-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-fXfgK .framer-17who6o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 77px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1y5r9c9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fXfgK .framer-8hryf4-container { flex: none; height: 585px; position: relative; width: 602px; }\",\".framer-fXfgK .framer-1ncy7c0, .framer-fXfgK .framer-17tncu9, .framer-fXfgK .framer-o6dgbz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1ycslwf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-fXfgK .framer-ffar13-container, .framer-fXfgK .framer-4key13-container, .framer-fXfgK .framer-1p393br-container, .framer-fXfgK .framer-je6lbn-container, .framer-fXfgK .framer-s2ssx8-container, .framer-fXfgK .framer-q3g1oe-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1dmi1l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 200px 40px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-12f4xyz-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 80%; z-index: 1; }\",\".framer-fXfgK .framer-11iok51 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-2q54w6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fXfgK .framer-7trqc8, .framer-fXfgK .framer-1x65jxd, .framer-fXfgK .framer-1mfki7q, .framer-fXfgK .framer-1r1apq0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-fXfgK .framer-v5uax4, .framer-fXfgK .framer-16id6eu, .framer-fXfgK .framer-tr8451, .framer-fXfgK .framer-11ucet0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1ce5gwv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-fXfgK .framer-1jb38e3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-ckuq6i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 1px; }\",\".framer-fXfgK .framer-3ekjpl { -webkit-filter: blur(67px); background-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #bf3313); border-bottom-left-radius: 210px; border-bottom-right-radius: 210px; border-top-left-radius: 210px; border-top-right-radius: 210px; filter: blur(67px); flex: none; height: 148px; left: calc(46.66666666666669% - 589px / 2); overflow: hidden; position: absolute; top: -107px; width: 589px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-fXfgK .framer-1cdop8l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; opacity: 0.23; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: 100%; z-index: 0; }\",\".framer-fXfgK .framer-1xrpcii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fXfgK .framer-2xzbt9-container { flex: none; height: 805px; position: relative; width: 350px; z-index: 1; }\",\".framer-fXfgK .framer-ltn5u5-container, .framer-fXfgK .framer-1ay5cbm-container, .framer-fXfgK .framer-15zuyfc-container { height: auto; position: relative; width: 330px; }\",'.framer-fXfgK .framer-ytbrlw { background: linear-gradient(0deg, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #000000) /* {\"name\":\"Dark Green\"} */ 0%, rgba(0, 0, 0, 0) 100%); bottom: 0px; flex: none; height: 90px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }','.framer-fXfgK .framer-10as3a1 { background: radial-gradient(69.3% 75% at 50% 100%, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #bf3313) /* {\"name\":\"Light Green\"} */ 0%, rgba(0, 0, 0, 0) 100%); flex: none; height: 105px; left: calc(50.00000000000002% - 330px / 2); overflow: hidden; position: absolute; top: 0px; width: 330px; z-index: 1; }',\".framer-fXfgK .framer-18fk8li-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-x3dn5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1wd7iy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 460px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1s6yyb6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",'.framer-fXfgK .framer-dt0c77 { background: linear-gradient(243deg, rgba(84, 84, 84, 0) 54.70541257678578%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)) /* {\"name\":\"Dark Green\"} */ 84.420754785216%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }',\".framer-fXfgK .framer-1e8ossu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-fXfgK .framer-1rbiegj, .framer-fXfgK .framer-tgmao9, .framer-fXfgK .framer-1b8zfmf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 90px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fXfgK .framer-a14alj, .framer-fXfgK .framer-1nxcxry, .framer-fXfgK .framer-g4ukzm { --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; z-index: 1; }\",\".framer-fXfgK .framer-1gbj1uu { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 10px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fXfgK .framer-b2npcv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fXfgK .framer-3wze62 { align-content: center; align-items: center; background-color: var(--token-2c77483b-74d5-40f8-b894-5fb4dc69010e, #1f1d1d); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fXfgK .framer-ftuw84, .framer-fXfgK .framer-elyyqd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-k3hsuw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fXfgK .framer-te7zln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 460px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1smoyra { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fXfgK .framer-13o8rur { --border-bottom-width: 1px; --border-color: var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(8px); aspect-ratio: 1 / 1; backdrop-filter: blur(8px); border-bottom-left-radius: 350px; border-bottom-right-radius: 350px; border-top-left-radius: 350px; border-top-right-radius: 350px; flex: none; height: var(--framer-aspect-ratio-supported, 366px); overflow: hidden; position: relative; width: 366px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fXfgK .framer-1jmnool-container { bottom: 0px; cursor: grab; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-fXfgK .framer-1r0o321-container { bottom: 47px; cursor: grab; flex: none; height: auto; left: 47px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-trja7f-container { bottom: 37px; cursor: grab; flex: none; height: auto; left: 222px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-mvrr88-container { bottom: 91px; cursor: grab; flex: none; height: auto; left: 201px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-p5yo2r-container { bottom: 101px; cursor: grab; flex: none; height: auto; left: 48%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-fXfgK .framer-3063ph-container { bottom: 151px; cursor: grab; flex: none; height: auto; left: -5px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-1rsmndz-container { bottom: 154px; cursor: grab; flex: none; height: auto; left: 125px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-t2hhas-container { bottom: 208px; cursor: grab; flex: none; height: auto; left: 17px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-1mb7acv-container { bottom: 194px; cursor: grab; flex: none; height: auto; position: absolute; right: -16px; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-1aorcb3-container { bottom: 255px; cursor: grab; flex: none; height: auto; left: 192px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-6cy7es-container { bottom: 273px; cursor: grab; flex: none; height: auto; left: 28px; position: absolute; width: auto; z-index: 1; }\",\".framer-fXfgK .framer-n263oc { align-content: center; align-items: center; background-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #9154ba); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fXfgK .framer-eevdia { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1koixv7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-1q15wep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fXfgK .framer-23xacm { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-fXfgK .framer-5ixk6u-container { align-self: start; flex: none; height: 398px; justify-self: start; position: relative; width: 100%; }\",\".framer-fXfgK .framer-19j62tj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-fXfgK .framer-dv02ol-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-fXfgK .framer-1bn53kh-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fXfgK.framer-hvzz3m, .framer-fXfgK .framer-123wqig, .framer-fXfgK .framer-1ma85oo, .framer-fXfgK .framer-j1yqbq, .framer-fXfgK .framer-1c83yy, .framer-fXfgK .framer-1cfd53y, .framer-fXfgK .framer-ho5v21, .framer-fXfgK .framer-j4z2v, .framer-fXfgK .framer-4w8l5h, .framer-fXfgK .framer-fo77gx, .framer-fXfgK .framer-r4ysuh, .framer-fXfgK .framer-skvjh4, .framer-fXfgK .framer-1u76kmz, .framer-fXfgK .framer-171tl, .framer-fXfgK .framer-py75l2, .framer-fXfgK .framer-17who6o, .framer-fXfgK .framer-1ncy7c0, .framer-fXfgK .framer-1ycslwf, .framer-fXfgK .framer-1dmi1l2, .framer-fXfgK .framer-11iok51, .framer-fXfgK .framer-2q54w6, .framer-fXfgK .framer-44pv8d, .framer-fXfgK .framer-7trqc8, .framer-fXfgK .framer-v5uax4, .framer-fXfgK .framer-kzr1ge, .framer-fXfgK .framer-1x65jxd, .framer-fXfgK .framer-16id6eu, .framer-fXfgK .framer-1ce5gwv, .framer-fXfgK .framer-rrl9pm, .framer-fXfgK .framer-1mfki7q, .framer-fXfgK .framer-tr8451, .framer-fXfgK .framer-yv4exd, .framer-fXfgK .framer-1r1apq0, .framer-fXfgK .framer-11ucet0, .framer-fXfgK .framer-1jb38e3, .framer-fXfgK .framer-ckuq6i, .framer-fXfgK .framer-1xrpcii, .framer-fXfgK .framer-17tncu9, .framer-fXfgK .framer-1mng6ye, .framer-fXfgK .framer-x3dn5k, .framer-fXfgK .framer-1wd7iy1, .framer-fXfgK .framer-1s6yyb6, .framer-fXfgK .framer-1e8ossu, .framer-fXfgK .framer-1gbj1uu, .framer-fXfgK .framer-ftuw84, .framer-fXfgK .framer-te7zln, .framer-fXfgK .framer-1smoyra, .framer-fXfgK .framer-elyyqd, .framer-fXfgK .framer-eevdia, .framer-fXfgK .framer-1ljaebb, .framer-fXfgK .framer-1koixv7, .framer-fXfgK .framer-1q15wep, .framer-fXfgK .framer-o6dgbz, .framer-fXfgK .framer-19j62tj { gap: 0px; } .framer-fXfgK.framer-hvzz3m > *, .framer-fXfgK .framer-1ma85oo > *, .framer-fXfgK .framer-ho5v21 > *, .framer-fXfgK .framer-1e8ossu > *, .framer-fXfgK .framer-ftuw84 > *, .framer-fXfgK .framer-elyyqd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fXfgK.framer-hvzz3m > :first-child, .framer-fXfgK .framer-1ma85oo > :first-child, .framer-fXfgK .framer-j1yqbq > :first-child, .framer-fXfgK .framer-1c83yy > :first-child, .framer-fXfgK .framer-ho5v21 > :first-child, .framer-fXfgK .framer-j4z2v > :first-child, .framer-fXfgK .framer-4w8l5h > :first-child, .framer-fXfgK .framer-1u76kmz > :first-child, .framer-fXfgK .framer-171tl > :first-child, .framer-fXfgK .framer-py75l2 > :first-child, .framer-fXfgK .framer-1ycslwf > :first-child, .framer-fXfgK .framer-1dmi1l2 > :first-child, .framer-fXfgK .framer-2q54w6 > :first-child, .framer-fXfgK .framer-7trqc8 > :first-child, .framer-fXfgK .framer-v5uax4 > :first-child, .framer-fXfgK .framer-1x65jxd > :first-child, .framer-fXfgK .framer-16id6eu > :first-child, .framer-fXfgK .framer-1ce5gwv > :first-child, .framer-fXfgK .framer-1mfki7q > :first-child, .framer-fXfgK .framer-tr8451 > :first-child, .framer-fXfgK .framer-1r1apq0 > :first-child, .framer-fXfgK .framer-11ucet0 > :first-child, .framer-fXfgK .framer-ckuq6i > :first-child, .framer-fXfgK .framer-1mng6ye > :first-child, .framer-fXfgK .framer-x3dn5k > :first-child, .framer-fXfgK .framer-1s6yyb6 > :first-child, .framer-fXfgK .framer-1e8ossu > :first-child, .framer-fXfgK .framer-ftuw84 > :first-child, .framer-fXfgK .framer-1smoyra > :first-child, .framer-fXfgK .framer-elyyqd > :first-child, .framer-fXfgK .framer-1ljaebb > :first-child, .framer-fXfgK .framer-1koixv7 > :first-child, .framer-fXfgK .framer-19j62tj > :first-child { margin-top: 0px; } .framer-fXfgK.framer-hvzz3m > :last-child, .framer-fXfgK .framer-1ma85oo > :last-child, .framer-fXfgK .framer-j1yqbq > :last-child, .framer-fXfgK .framer-1c83yy > :last-child, .framer-fXfgK .framer-ho5v21 > :last-child, .framer-fXfgK .framer-j4z2v > :last-child, .framer-fXfgK .framer-4w8l5h > :last-child, .framer-fXfgK .framer-1u76kmz > :last-child, .framer-fXfgK .framer-171tl > :last-child, .framer-fXfgK .framer-py75l2 > :last-child, .framer-fXfgK .framer-1ycslwf > :last-child, .framer-fXfgK .framer-1dmi1l2 > :last-child, .framer-fXfgK .framer-2q54w6 > :last-child, .framer-fXfgK .framer-7trqc8 > :last-child, .framer-fXfgK .framer-v5uax4 > :last-child, .framer-fXfgK .framer-1x65jxd > :last-child, .framer-fXfgK .framer-16id6eu > :last-child, .framer-fXfgK .framer-1ce5gwv > :last-child, .framer-fXfgK .framer-1mfki7q > :last-child, .framer-fXfgK .framer-tr8451 > :last-child, .framer-fXfgK .framer-1r1apq0 > :last-child, .framer-fXfgK .framer-11ucet0 > :last-child, .framer-fXfgK .framer-ckuq6i > :last-child, .framer-fXfgK .framer-1mng6ye > :last-child, .framer-fXfgK .framer-x3dn5k > :last-child, .framer-fXfgK .framer-1s6yyb6 > :last-child, .framer-fXfgK .framer-1e8ossu > :last-child, .framer-fXfgK .framer-ftuw84 > :last-child, .framer-fXfgK .framer-1smoyra > :last-child, .framer-fXfgK .framer-elyyqd > :last-child, .framer-fXfgK .framer-1ljaebb > :last-child, .framer-fXfgK .framer-1koixv7 > :last-child, .framer-fXfgK .framer-19j62tj > :last-child { margin-bottom: 0px; } .framer-fXfgK .framer-123wqig > *, .framer-fXfgK .framer-1cfd53y > *, .framer-fXfgK .framer-fo77gx > *, .framer-fXfgK .framer-r4ysuh > *, .framer-fXfgK .framer-44pv8d > *, .framer-fXfgK .framer-kzr1ge > *, .framer-fXfgK .framer-rrl9pm > *, .framer-fXfgK .framer-yv4exd > *, .framer-fXfgK .framer-1xrpcii > *, .framer-fXfgK .framer-1wd7iy1 > *, .framer-fXfgK .framer-1gbj1uu > *, .framer-fXfgK .framer-te7zln > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fXfgK .framer-123wqig > :first-child, .framer-fXfgK .framer-1cfd53y > :first-child, .framer-fXfgK .framer-fo77gx > :first-child, .framer-fXfgK .framer-r4ysuh > :first-child, .framer-fXfgK .framer-skvjh4 > :first-child, .framer-fXfgK .framer-17who6o > :first-child, .framer-fXfgK .framer-1ncy7c0 > :first-child, .framer-fXfgK .framer-11iok51 > :first-child, .framer-fXfgK .framer-44pv8d > :first-child, .framer-fXfgK .framer-kzr1ge > :first-child, .framer-fXfgK .framer-rrl9pm > :first-child, .framer-fXfgK .framer-yv4exd > :first-child, .framer-fXfgK .framer-1jb38e3 > :first-child, .framer-fXfgK .framer-1xrpcii > :first-child, .framer-fXfgK .framer-17tncu9 > :first-child, .framer-fXfgK .framer-1wd7iy1 > :first-child, .framer-fXfgK .framer-1gbj1uu > :first-child, .framer-fXfgK .framer-te7zln > :first-child, .framer-fXfgK .framer-eevdia > :first-child, .framer-fXfgK .framer-1q15wep > :first-child, .framer-fXfgK .framer-o6dgbz > :first-child { margin-left: 0px; } .framer-fXfgK .framer-123wqig > :last-child, .framer-fXfgK .framer-1cfd53y > :last-child, .framer-fXfgK .framer-fo77gx > :last-child, .framer-fXfgK .framer-r4ysuh > :last-child, .framer-fXfgK .framer-skvjh4 > :last-child, .framer-fXfgK .framer-17who6o > :last-child, .framer-fXfgK .framer-1ncy7c0 > :last-child, .framer-fXfgK .framer-11iok51 > :last-child, .framer-fXfgK .framer-44pv8d > :last-child, .framer-fXfgK .framer-kzr1ge > :last-child, .framer-fXfgK .framer-rrl9pm > :last-child, .framer-fXfgK .framer-yv4exd > :last-child, .framer-fXfgK .framer-1jb38e3 > :last-child, .framer-fXfgK .framer-1xrpcii > :last-child, .framer-fXfgK .framer-17tncu9 > :last-child, .framer-fXfgK .framer-1wd7iy1 > :last-child, .framer-fXfgK .framer-1gbj1uu > :last-child, .framer-fXfgK .framer-te7zln > :last-child, .framer-fXfgK .framer-eevdia > :last-child, .framer-fXfgK .framer-1q15wep > :last-child, .framer-fXfgK .framer-o6dgbz > :last-child { margin-right: 0px; } .framer-fXfgK .framer-j1yqbq > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-fXfgK .framer-1c83yy > *, .framer-fXfgK .framer-py75l2 > *, .framer-fXfgK .framer-x3dn5k > *, .framer-fXfgK .framer-1smoyra > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fXfgK .framer-j4z2v > *, .framer-fXfgK .framer-1koixv7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fXfgK .framer-4w8l5h > *, .framer-fXfgK .framer-v5uax4 > *, .framer-fXfgK .framer-16id6eu > *, .framer-fXfgK .framer-tr8451 > *, .framer-fXfgK .framer-11ucet0 > *, .framer-fXfgK .framer-1s6yyb6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fXfgK .framer-skvjh4 > *, .framer-fXfgK .framer-1ncy7c0 > *, .framer-fXfgK .framer-1jb38e3 > *, .framer-fXfgK .framer-17tncu9 > *, .framer-fXfgK .framer-o6dgbz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-fXfgK .framer-1u76kmz > *, .framer-fXfgK .framer-1dmi1l2 > *, .framer-fXfgK .framer-ckuq6i > *, .framer-fXfgK .framer-1mng6ye > *, .framer-fXfgK .framer-1ljaebb > *, .framer-fXfgK .framer-19j62tj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fXfgK .framer-171tl > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fXfgK .framer-17who6o > * { margin: 0px; margin-left: calc(77px / 2); margin-right: calc(77px / 2); } .framer-fXfgK .framer-1ycslwf > *, .framer-fXfgK .framer-2q54w6 > *, .framer-fXfgK .framer-1ce5gwv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fXfgK .framer-11iok51 > *, .framer-fXfgK .framer-eevdia > *, .framer-fXfgK .framer-1q15wep > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-fXfgK .framer-7trqc8 > *, .framer-fXfgK .framer-1x65jxd > *, .framer-fXfgK .framer-1mfki7q > *, .framer-fXfgK .framer-1r1apq0 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-fXfgK { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)); } .framer-fXfgK.framer-hvzz3m { width: 810px; } .framer-fXfgK .framer-j1yqbq, .framer-fXfgK .framer-1y5r9c9, .framer-fXfgK .framer-dt0c77 { order: 0; } .framer-fXfgK .framer-fo77gx { max-width: 600px; } .framer-fXfgK .framer-jbkn8z, .framer-fXfgK .framer-1nh8e5s, .framer-fXfgK .framer-1ty6ljs, .framer-fXfgK .framer-harf3f { max-width: 490px; } .framer-fXfgK .framer-skvjh4 { order: 1; padding: 80px 40px 80px 40px; } .framer-fXfgK .framer-1u76kmz, .framer-fXfgK .framer-1mng6ye { gap: 30px; max-width: unset; } .framer-fXfgK .framer-17who6o { height: min-content; order: 2; } .framer-fXfgK .framer-8hryf4-container { height: 376px; order: 1; width: 351px; } .framer-fXfgK .framer-1ncy7c0 { order: 4; padding: 80px 40px 80px 40px; } .framer-fXfgK .framer-1ycslwf { gap: 60px; justify-content: flex-start; max-width: 1000px; } .framer-fXfgK .framer-1dmi1l2 { order: 7; padding: 80px 40px 80px 40px; } .framer-fXfgK .framer-11iok51 { gap: 20px; } .framer-fXfgK .framer-v5uax4, .framer-fXfgK .framer-16id6eu, .framer-fXfgK .framer-tr8451, .framer-fXfgK .framer-11ucet0 { gap: 40px; } .framer-fXfgK .framer-1jb38e3 { order: 8; padding: 40px 0px 0px 0px; } .framer-fXfgK .framer-ckuq6i { padding: 0px 0px 80px 0px; } .framer-fXfgK .framer-17tncu9 { order: 9; padding: 80px 40px 80px 40px; } .framer-fXfgK .framer-1s6yyb6 { gap: 9px; } .framer-fXfgK .framer-1e8ossu { justify-content: flex-end; order: 1; width: 100%; } .framer-fXfgK .framer-1rbiegj, .framer-fXfgK .framer-1b8zfmf { height: 70px; } .framer-fXfgK .framer-1gbj1uu { order: 2; } .framer-fXfgK .framer-tgmao9 { height: auto; } .framer-fXfgK .framer-1smoyra { flex: 1 0 0px; } .framer-fXfgK .framer-n263oc { flex: 0.7 0 0px; } .framer-fXfgK .framer-eevdia { flex-direction: column; order: 10; padding: 80px 40px 80px 40px; } .framer-fXfgK .framer-1ljaebb { flex: none; width: 100%; } .framer-fXfgK .framer-1koixv7 { align-content: center; align-items: center; } .framer-fXfgK .framer-1q15wep { flex-direction: column; gap: 0px; max-width: 1000px; } .framer-fXfgK .framer-23xacm { flex: none; grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 100%; } .framer-fXfgK .framer-o6dgbz { order: 11; padding: 80px 40px 80px 40px; } .framer-fXfgK .framer-19j62tj { justify-content: flex-start; max-width: 1000px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fXfgK .framer-1u76kmz, .framer-fXfgK .framer-1ycslwf, .framer-fXfgK .framer-11iok51, .framer-fXfgK .framer-v5uax4, .framer-fXfgK .framer-16id6eu, .framer-fXfgK .framer-tr8451, .framer-fXfgK .framer-11ucet0, .framer-fXfgK .framer-1mng6ye, .framer-fXfgK .framer-1s6yyb6, .framer-fXfgK .framer-eevdia, .framer-fXfgK .framer-1q15wep { gap: 0px; } .framer-fXfgK .framer-1u76kmz > *, .framer-fXfgK .framer-1mng6ye > *, .framer-fXfgK .framer-eevdia > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fXfgK .framer-1u76kmz > :first-child, .framer-fXfgK .framer-1ycslwf > :first-child, .framer-fXfgK .framer-v5uax4 > :first-child, .framer-fXfgK .framer-16id6eu > :first-child, .framer-fXfgK .framer-tr8451 > :first-child, .framer-fXfgK .framer-11ucet0 > :first-child, .framer-fXfgK .framer-1mng6ye > :first-child, .framer-fXfgK .framer-1s6yyb6 > :first-child, .framer-fXfgK .framer-eevdia > :first-child, .framer-fXfgK .framer-1q15wep > :first-child { margin-top: 0px; } .framer-fXfgK .framer-1u76kmz > :last-child, .framer-fXfgK .framer-1ycslwf > :last-child, .framer-fXfgK .framer-v5uax4 > :last-child, .framer-fXfgK .framer-16id6eu > :last-child, .framer-fXfgK .framer-tr8451 > :last-child, .framer-fXfgK .framer-11ucet0 > :last-child, .framer-fXfgK .framer-1mng6ye > :last-child, .framer-fXfgK .framer-1s6yyb6 > :last-child, .framer-fXfgK .framer-eevdia > :last-child, .framer-fXfgK .framer-1q15wep > :last-child { margin-bottom: 0px; } .framer-fXfgK .framer-1ycslwf > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fXfgK .framer-11iok51 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-fXfgK .framer-11iok51 > :first-child { margin-left: 0px; } .framer-fXfgK .framer-11iok51 > :last-child { margin-right: 0px; } .framer-fXfgK .framer-v5uax4 > *, .framer-fXfgK .framer-16id6eu > *, .framer-fXfgK .framer-tr8451 > *, .framer-fXfgK .framer-11ucet0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fXfgK .framer-1s6yyb6 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-fXfgK .framer-1q15wep > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-fXfgK { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)); } .framer-fXfgK.framer-hvzz3m { overflow: hidden; padding: 132px 0px 132px 0px; width: 390px; } .framer-fXfgK .framer-1ma85oo { height: 14120px; } .framer-fXfgK .framer-j1yqbq { gap: 0px; height: min-content; padding: 21px 0px 0px 0px; } .framer-fXfgK .framer-he8jli { height: 28%; } .framer-fXfgK .framer-j4z2v { gap: 37px; padding: 22px 20px 22px 20px; } .framer-fXfgK .framer-jbkn8z, .framer-fXfgK .framer-1nh8e5s, .framer-fXfgK .framer-1ty6ljs, .framer-fXfgK .framer-harf3f { max-width: 400px; } .framer-fXfgK .framer-r4ysuh { padding: 0px 2px 0px 2px; } .framer-fXfgK .framer-15cptce { height: 343px; } .framer-fXfgK .framer-3qalfx-container { bottom: unset; height: 259px; left: unset; top: 19px; width: 389px; } .framer-fXfgK .framer-skvjh4 { padding: 0px 12px 0px 12px; } .framer-fXfgK .framer-1u76kmz, .framer-fXfgK .framer-v5uax4, .framer-fXfgK .framer-16id6eu, .framer-fXfgK .framer-tr8451, .framer-fXfgK .framer-11ucet0, .framer-fXfgK .framer-1mng6ye, .framer-fXfgK .framer-19j62tj { gap: 40px; } .framer-fXfgK .framer-171tl, .framer-fXfgK .framer-1koixv7 { align-content: center; align-items: center; } .framer-fXfgK .framer-1xi7suj-container { max-width: unset; } .framer-fXfgK .framer-s3790c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-fXfgK .framer-w8x50v-container, .framer-fXfgK .framer-mrpq24-container, .framer-fXfgK .framer-lvlv5q-container, .framer-fXfgK .framer-p1yvjz-container { align-self: unset; } .framer-fXfgK .framer-rsx6ko-container { align-self: unset; width: auto; } .framer-fXfgK .framer-17who6o { flex-direction: column; gap: 0px; height: min-content; padding: 34px 0px 34px 0px; } .framer-fXfgK .framer-1y5r9c9 { order: 0; } .framer-fXfgK .framer-8hryf4-container { height: 417px; order: 1; width: 335px; } .framer-fXfgK .framer-1ncy7c0, .framer-fXfgK .framer-1dmi1l2, .framer-fXfgK .framer-17tncu9, .framer-fXfgK .framer-o6dgbz { padding: 50px 12px 50px 12px; } .framer-fXfgK .framer-12f4xyz-container { max-width: unset; width: 100%; } .framer-fXfgK .framer-11iok51 { flex-direction: column; } .framer-fXfgK .framer-2q54w6 { flex: none; width: 100%; } .framer-fXfgK .framer-1ce5gwv { flex: none; padding: 0px; width: 100%; } .framer-fXfgK .framer-ckuq6i { gap: 30px; padding: 0px 0px 50px 0px; } .framer-fXfgK .framer-1xrpcii, .framer-fXfgK .framer-1e8ossu { width: 100%; } .framer-fXfgK .framer-2xzbt9-container { flex: 1 0 0px; height: 877px; width: 1px; } .framer-fXfgK .framer-10as3a1 { top: -41px; } .framer-fXfgK .framer-1wd7iy1 { flex-direction: column; height: 879px; } .framer-fXfgK .framer-1s6yyb6 { flex: 1 0 0px; height: 1px; width: 100%; } .framer-fXfgK .framer-1rbiegj, .framer-fXfgK .framer-tgmao9, .framer-fXfgK .framer-1b8zfmf { height: 53px; } .framer-fXfgK .framer-3wze62, .framer-fXfgK .framer-n263oc { flex: none; gap: 40px; height: min-content; justify-content: center; width: 100%; } .framer-fXfgK .framer-te7zln { flex-direction: column; height: min-content; } .framer-fXfgK .framer-1smoyra { flex: none; height: min-content; width: 100%; } .framer-fXfgK .framer-1jmnool-container, .framer-fXfgK .framer-1r0o321-container, .framer-fXfgK .framer-trja7f-container, .framer-fXfgK .framer-mvrr88-container, .framer-fXfgK .framer-p5yo2r-container, .framer-fXfgK .framer-3063ph-container, .framer-fXfgK .framer-1rsmndz-container, .framer-fXfgK .framer-t2hhas-container, .framer-fXfgK .framer-1mb7acv-container, .framer-fXfgK .framer-1aorcb3-container, .framer-fXfgK .framer-6cy7es-container { cursor: unset; } .framer-fXfgK .framer-eevdia { flex-direction: column; gap: 40px; padding: 50px 12px 50px 12px; } .framer-fXfgK .framer-1ljaebb { flex: none; gap: 40px; width: 100%; } .framer-fXfgK .framer-1q15wep { flex-direction: column; gap: 0px; } .framer-fXfgK .framer-23xacm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; width: 100%; } .framer-fXfgK .framer-5ixk6u-container { align-self: unset; height: 353px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fXfgK .framer-j1yqbq, .framer-fXfgK .framer-j4z2v, .framer-fXfgK .framer-1u76kmz, .framer-fXfgK .framer-s3790c, .framer-fXfgK .framer-17who6o, .framer-fXfgK .framer-11iok51, .framer-fXfgK .framer-v5uax4, .framer-fXfgK .framer-16id6eu, .framer-fXfgK .framer-tr8451, .framer-fXfgK .framer-11ucet0, .framer-fXfgK .framer-ckuq6i, .framer-fXfgK .framer-1mng6ye, .framer-fXfgK .framer-1wd7iy1, .framer-fXfgK .framer-3wze62, .framer-fXfgK .framer-te7zln, .framer-fXfgK .framer-n263oc, .framer-fXfgK .framer-eevdia, .framer-fXfgK .framer-1ljaebb, .framer-fXfgK .framer-1q15wep, .framer-fXfgK .framer-23xacm, .framer-fXfgK .framer-19j62tj { gap: 0px; } .framer-fXfgK .framer-j1yqbq > *, .framer-fXfgK .framer-17who6o > *, .framer-fXfgK .framer-1q15wep > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fXfgK .framer-j1yqbq > :first-child, .framer-fXfgK .framer-j4z2v > :first-child, .framer-fXfgK .framer-1u76kmz > :first-child, .framer-fXfgK .framer-s3790c > :first-child, .framer-fXfgK .framer-17who6o > :first-child, .framer-fXfgK .framer-11iok51 > :first-child, .framer-fXfgK .framer-v5uax4 > :first-child, .framer-fXfgK .framer-16id6eu > :first-child, .framer-fXfgK .framer-tr8451 > :first-child, .framer-fXfgK .framer-11ucet0 > :first-child, .framer-fXfgK .framer-ckuq6i > :first-child, .framer-fXfgK .framer-1mng6ye > :first-child, .framer-fXfgK .framer-1wd7iy1 > :first-child, .framer-fXfgK .framer-3wze62 > :first-child, .framer-fXfgK .framer-te7zln > :first-child, .framer-fXfgK .framer-n263oc > :first-child, .framer-fXfgK .framer-eevdia > :first-child, .framer-fXfgK .framer-1ljaebb > :first-child, .framer-fXfgK .framer-1q15wep > :first-child, .framer-fXfgK .framer-23xacm > :first-child, .framer-fXfgK .framer-19j62tj > :first-child { margin-top: 0px; } .framer-fXfgK .framer-j1yqbq > :last-child, .framer-fXfgK .framer-j4z2v > :last-child, .framer-fXfgK .framer-1u76kmz > :last-child, .framer-fXfgK .framer-s3790c > :last-child, .framer-fXfgK .framer-17who6o > :last-child, .framer-fXfgK .framer-11iok51 > :last-child, .framer-fXfgK .framer-v5uax4 > :last-child, .framer-fXfgK .framer-16id6eu > :last-child, .framer-fXfgK .framer-tr8451 > :last-child, .framer-fXfgK .framer-11ucet0 > :last-child, .framer-fXfgK .framer-ckuq6i > :last-child, .framer-fXfgK .framer-1mng6ye > :last-child, .framer-fXfgK .framer-1wd7iy1 > :last-child, .framer-fXfgK .framer-3wze62 > :last-child, .framer-fXfgK .framer-te7zln > :last-child, .framer-fXfgK .framer-n263oc > :last-child, .framer-fXfgK .framer-eevdia > :last-child, .framer-fXfgK .framer-1ljaebb > :last-child, .framer-fXfgK .framer-1q15wep > :last-child, .framer-fXfgK .framer-23xacm > :last-child, .framer-fXfgK .framer-19j62tj > :last-child { margin-bottom: 0px; } .framer-fXfgK .framer-j4z2v > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-fXfgK .framer-1u76kmz > *, .framer-fXfgK .framer-v5uax4 > *, .framer-fXfgK .framer-16id6eu > *, .framer-fXfgK .framer-tr8451 > *, .framer-fXfgK .framer-11ucet0 > *, .framer-fXfgK .framer-1mng6ye > *, .framer-fXfgK .framer-3wze62 > *, .framer-fXfgK .framer-n263oc > *, .framer-fXfgK .framer-eevdia > *, .framer-fXfgK .framer-1ljaebb > *, .framer-fXfgK .framer-19j62tj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fXfgK .framer-s3790c > *, .framer-fXfgK .framer-1wd7iy1 > *, .framer-fXfgK .framer-te7zln > *, .framer-fXfgK .framer-23xacm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fXfgK .framer-11iok51 > *, .framer-fXfgK .framer-ckuq6i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-fXfgK[data-border=\"true\"]::after, .framer-fXfgK [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 12198\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WgNeKo_y1\":{\"layout\":[\"fixed\",\"auto\"]},\"P7j2A2OCI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Frameryd7nMFDHh=withCSS(Component,css,\"framer-fXfgK\");export default Frameryd7nMFDHh;Frameryd7nMFDHh.displayName=\"Home\";Frameryd7nMFDHh.defaultProps={height:12198,width:1200};addFonts(Frameryd7nMFDHh,[{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:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\",weight:\"400\"}]},...PatternFonts,...NavigationBarFonts,...TinyImagesFonts,...EmbedFonts,...HeadingFonts,...ButtonFonts,...ServiceFonts,...PricingFonts,...ProjectFonts,...ReviewFonts,...TickerFonts,...BulletFonts,...BlogSingleCardFonts,...FAQListCommonFonts,...FooterFonts,...SmoothScrollFonts,...CursorViewFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameryd7nMFDHh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WgNeKo_y1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P7j2A2OCI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12198\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "image2", "image3", "image4", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TgtW39mBf", "CLOjz4zPb", "QMjgKwCOD", "luqg6K1cu", "qrNp9b6h8", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "u", "Image2", "css", "FramerEAuWzJnuW", "withCSS", "EAuWzJnuW_default", "addPropertyControls", "ControlType", "addFonts", "PatternFonts", "getFonts", "Pattern", "NavigationBarFonts", "Kg3jp8xZU_default", "TinyImagesFonts", "EAuWzJnuW_default", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "HeadingFonts", "QJ12gIOBS_default", "ButtonFonts", "cBQAwTefC_default", "ServiceFonts", "F2RdVp1gj_default", "ContainerWithFX", "Container", "MotionSectionWithFX", "PricingFonts", "Tbsg_9IZf_default", "ProjectFonts", "B4CrjLIFA_default", "ReviewFonts", "ZpizmnjAI_default", "TickerFonts", "Ticker", "BulletFonts", "f_SxhhPsu_default", "BlogSingleCardFonts", "fNLtYBHNV_default", "FAQListCommonFonts", "iV8GXG0Ck_default", "FooterFonts", "oGO_MGaZp_default", "SmoothScrollFonts", "SmoothScroll", "CursorViewFonts", "sJnORkkMm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "animation6", "transition4", "animation7", "inertia", "preventDefault", "e", "animation8", "animation9", "transition5", "animation10", "animation11", "transition6", "animation12", "transition7", "animation13", "animation14", "animation15", "animation16", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "animation27", "transition8", "animation28", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "kBAWMceDjLHf_21Li6", "YSKHrdVc1LHf_21Li6", "r9QMyoDHsLHf_21Li6", "jYgOCvKuFLHf_21Li6", "DjzsZgoLULHf_21Li6", "luaJ1PV3vLHf_21Li6", "FRxJrVbabLHf_21Li6", "Tu_Pd0zTZLHf_21Li6", "idLHf_21Li6", "kBAWMceDjg7gardzzi", "YSKHrdVc1g7gardzzi", "r9QMyoDHsg7gardzzi", "jYgOCvKuFg7gardzzi", "DjzsZgoLUg7gardzzi", "luaJ1PV3vg7gardzzi", "FRxJrVbabg7gardzzi", "Tu_Pd0zTZg7gardzzi", "idg7gardzzi", "kBAWMceDjSoPwllC3F", "YSKHrdVc1SoPwllC3F", "r9QMyoDHsSoPwllC3F", "jYgOCvKuFSoPwllC3F", "DjzsZgoLUSoPwllC3F", "luaJ1PV3vSoPwllC3F", "FRxJrVbabSoPwllC3F", "Tu_Pd0zTZSoPwllC3F", "idSoPwllC3F", "kBAWMceDjYAMo7907Z", "YSKHrdVc1YAMo7907Z", "r9QMyoDHsYAMo7907Z", "jYgOCvKuFYAMo7907Z", "DjzsZgoLUYAMo7907Z", "luaJ1PV3vYAMo7907Z", "FRxJrVbabYAMo7907Z", "Tu_Pd0zTZYAMo7907Z", "idYAMo7907Z", "EZue1CzWPuop5p902E", "TA3EDeQ5wuop5p902E", "kBAWMceDjuop5p902E", "YSKHrdVc1uop5p902E", "Tu_Pd0zTZuop5p902E", "iduop5p902E", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "router", "useRouter", "isDisplayed1", "elementId4", "ref6", "elementId5", "ref7", "activeLocaleCode", "useLocaleCode", "elementId6", "ref8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "RichText2", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "ChildrenCanSuspend", "nWZy3UnCE_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks6", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks7", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks8", "collection3", "paginationInfo3", "loadMore3", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "getLoadingLazyAtYPosition", "resolvedLinks12", "collection4", "paginationInfo4", "loadMore4", "resolvedLinks13", "_enumToDisplayNameFunctions_TA3EDeQ5w", "enumToDisplayNameFunctions", "css", "Frameryd7nMFDHh", "withCSS", "yd7nMFDHh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
