{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/aiomyBmONo3bniTQbOE8/ta1ecCz7mHB4t5RVkQRU/pVNrDnWvJ.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,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,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\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});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,zoom,radius,border,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,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=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?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </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>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// 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\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import CaseStudyCard from\"#framer/local/canvasComponent/adWDDg015/adWDDg015.js\";import Testimonials_ticker from\"#framer/local/canvasComponent/jI8OvpZlN/jI8OvpZlN.js\";import NavHeader from\"#framer/local/canvasComponent/r47STEVhh/r47STEVhh.js\";import FOOTER_new from\"#framer/local/canvasComponent/XWX3fIWwn/XWX3fIWwn.js\";import Statistic from\"#framer/local/canvasComponent/Zupi79Mvk/Zupi79Mvk.js\";import*as sharedStyle1 from\"#framer/local/css/HvrLRu5vL/HvrLRu5vL.js\";import*as sharedStyle4 from\"#framer/local/css/L2HIr_lg1/L2HIr_lg1.js\";import*as sharedStyle from\"#framer/local/css/NiUdsKBrv/NiUdsKBrv.js\";import*as sharedStyle3 from\"#framer/local/css/piAEFBgNq/piAEFBgNq.js\";import*as sharedStyle2 from\"#framer/local/css/tjd7WKpaj/tjd7WKpaj.js\";import metadataProvider from\"#framer/local/webPageMetadata/pVNrDnWvJ/pVNrDnWvJ.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavHeaderFonts=getFonts(NavHeader);const EmbedFonts=getFonts(Embed);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const StatisticFonts=getFonts(Statistic);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const RichTextWithFX=withFX(RichText);const CaseStudyCardFonts=getFonts(CaseStudyCard);const Testimonials_tickerFonts=getFonts(Testimonials_ticker);const FOOTER_newFonts=getFonts(FOOTER_new);const breakpoints={bN6MWojNx:\"(min-width: 1440px)\",ISY4J4arN:\"(min-width: 810px) and (max-width: 1439px)\",UvgoOmlIL:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-CDVZv\";const variantClassNames={bN6MWojNx:\"framer-v-1kmx9tz\",ISY4J4arN:\"framer-v-pxmd34\",UvgoOmlIL:\"framer-v-rjc58a\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const animation5={opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:144};const transition4={delay:0,duration:1,ease:[0,.88,.23,1.01],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:144};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"bN6MWojNx\",Phone:\"UvgoOmlIL\",Tablet:\"ISY4J4arN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bN6MWojNx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"UvgoOmlIL\")return false;return true;};const elementId=useRouteElementId(\"bzTXWt2Uk\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"IoC4zWlMZ\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"a6lrCCsRq\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"SW2EJl4ld\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"qUUbHKFYK\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"D3q0tKvYw\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"bN6MWojNx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(246, 245, 247); } @media (max-width: 809px) { html body { background: rgb(247, 245, 250); } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1kmx9tz\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-foun8u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IvmHhEgzx\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IvmHhEgzx\",intensity:10,layoutId:\"IvmHhEgzx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UvgoOmlIL:{height:88,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15sto50-container\",layoutScroll:true,nodeId:\"ieT4s0kO1\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{K17NCLXtL:\"0px 0px 16px 16px\",variant:\"nU40cYMJp\",xO4SDZKAe:\"var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, rgb(255, 255, 255))\"},UvgoOmlIL:{K17NCLXtL:\"0px 0px 16px 16px\",OcbV3IgWa:12,style:{width:\"100%\"},variant:\"KeKNW1nbn\"}},children:/*#__PURE__*/_jsx(NavHeader,{height:\"100%\",id:\"ieT4s0kO1\",K17NCLXtL:\"0px 0px 24px 24px\",layoutId:\"ieT4s0kO1\",OcbV3IgWa:0,style:{height:\"100%\",width:\"100%\"},variant:\"Q8HHDpOFs\",width:\"100%\",xO4SDZKAe:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eihdzp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197izbp\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",backgroundSize:.98,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+94+-20),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"}},UvgoOmlIL:{background:{alt:\"\",backgroundSize:.98,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+-20),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.98,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+94+-20),pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-eotuz\",\"data-framer-name\":\"noise\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qp78zp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lam3vw\",\"data-framer-name\":\"header content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-6p1ou\",\"data-styles-preset\":\"NiUdsKBrv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"API Testing & Security, Reimagined with AI\"})})}),className:\"framer-1chbhg9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],id:\"1chbhg9\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x1sgn9\",\"data-styles-preset\":\"HvrLRu5vL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, rgb(255, 255, 255))\"},children:\"Auto-discover your APIs, generate tests through chat, and run them anywhere\"})}),className:\"framer-fzntg6\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1qvcxxh-container\",\"data-framer-appear-id\":\"1qvcxxh\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j3WUMasZX\",optimized:true,rendersWithMotion:true,scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'\\n  <head>\\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\\n  </head>\\n  <style>\\n    * {\\n      margin: 0;\\n      padding: 0;\\n      box-sizing: border-box;\\n      font-family: sans-serif;\\n    }\\n    body {\\n      color: #fff;\\n      height: 100vh;\\n      padding: 20px;\\n      display: flex;\\n      flex-direction: column;\\n      align-items: center;\\n      gap: 2rem;\\n      background: transparent;\\n    }\\n    .container {\\n      max-width: 850px;\\n      width: 100%;\\n      display: flex;\\n      flex-direction: column;\\n      gap: 2rem;\\n    }\\n    .input-wrap {\\n      background: rgba(39, 39, 37, 0.9);\\n      border-radius: 16px;\\n      padding: 12px;\\n      position: relative;\\n      min-height: 120px;\\n      height: 200px;\\n    }\\n    textarea {\\n      width: 100%;\\n      height: 100%;\\n      padding: 1rem;\\n      background: transparent;\\n      border: none;\\n      border-radius: 8px;\\n      color: white;\\n      font-size: 1rem;\\n      resize: none;\\n      outline: none;\\n      min-height: 80px;\\n    }\\n    textarea::placeholder {\\n      color: rgba(255, 255, 255, 0.7);\\n    }\\n    .button-row {\\n      display: flex;\\n      flex-wrap: wrap;\\n      gap: 0.5rem;\\n      position: absolute;\\n      bottom: 12px;\\n      left: 12px;\\n      right: 12px;\\n      align-items: center;\\n    }\\n    .btn {\\n      padding: 0.6rem 1.2rem;\\n      border: none;\\n      border-radius: 24px;\\n      background: #272725;\\n      color: white;\\n      font-size: 0.9rem;\\n      cursor: pointer;\\n      transition: background 0.2s ease;\\n      display: flex;\\n      align-items: center;\\n      justify-content: center;\\n      gap: 6px;\\n    }\\n    .btn:disabled {\\n      background: #1a1a18;\\n      color: rgba(255, 255, 255, 0.5);\\n      cursor: not-allowed;\\n    }\\n  \\n    .btn:hover {\\n      background: #6341d4;\\n    }\\n  \\n    .btn-upload {\\n      padding:5px;\\n      border: none;\\n      border-radius: 50%;\\n      font-size: 0.9rem;\\n      cursor: pointer;\\n      width: 36px;\\n      height: 36px;\\n      background: #6341d4;\\n      color: white;\\n      transition: background 0.2s ease;\\n      display: flex;\\n      align-items: center;\\n      justify-content: center;\\n      gap: 1px;\\n    }\\n  \\n    .btn-upload:disabled {\\n      color: rgba(255, 255, 255, 0.45);\\n      cursor: not-allowed;\\n    }\\n  \\n    .btn-group {\\n      display: flex;\\n      gap: 0.5rem;\\n      flex: 1;\\n    }\\n    .btn-group:first-child {\\n      justify-content: flex-start;\\n    }\\n    .btn-group:last-child {\\n      justify-content: flex-end;\\n    }\\n    .suggestions {\\n      display: flex;\\n      flex-wrap: wrap;\\n      gap: 0.75rem;\\n      justify-content: center;\\n    }\\n    .suggestion {\\n      display: flex;\\n      align-items: center;\\n      gap: 0.25rem;\\n      background: #272725;\\n      border: 1px solid transparent;\\n      border-radius: 24px;\\n      padding: 0.6rem 1.2rem;\\n      font-size: 0.9rem;\\n      color: white;\\n      cursor: pointer;\\n      transition: all 0.2s ease;\\n    }\\n    .suggestion:hover {\\n      background: #000;\\n    }\\n    .suggestion.active {\\n      background-color: #6341d4;\\n    }\\n    .custom-btn {\\n      background: #6341d4 !important;\\n    }\\n  \\n    .btn-upload svg {\\n      width: 20px;\\n      height: 20px;\\n    }\\n  \\n    @media (max-width: 480px) {\\n      .btn {\\n        padding: 3px 9px;\\n        border-radius: 4px;\\n      }\\n      .btn-upload svg {\\n        width: 20px;\\n        height: 20px;\\n      }\\n    }\\n  </style>\\n  <body>\\n    <div class=\"container\">\\n      <div class=\"input-wrap\">\\n        <textarea\\n          placeholder=\"Ask Qodex to build a file uploader for your team\u0101\u20AC\\xa6\"\\n        ></textarea>\\n        <div class=\"button-row\">\\n          <div class=\"btn-group\">\\n              <button class=\"btn open-signup\">\\n                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"15\" height=\"15\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-paperclip-icon lucide-paperclip\"><path d=\"M13.234 20.252 21 12.3\"/><path d=\"m16 6-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486\"/></svg>\\n                Attach\\n              </button>\\n              <button class=\"btn open-signup\">\\n                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-import-icon lucide-import\"><path d=\"M12 3v12\"/><path d=\"m8 11 4 4 4-4\"/><path d=\"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4\"/></svg>Import\\n              </button>\\n          </div>\\n          <div class=\"btn-group\">\\n            <button class=\"btn-upload\">\\n              <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-send-horizontal-icon lucide-send-horizontal\"><path d=\"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z\"/><path d=\"M6 12h16\"/></svg>\\n            </button>\\n          </div>\\n        </div>\\n      </div>\\n      <div class=\"suggestions\">\\n        <button class=\"suggestion\" data-suggestion=\"Help me write functional tests for all payment-related endpoints in my project.\">\\n          <svg\\n            xmlns=\"http://www.w3.org/2000/svg\"\\n            width=\"14\"\\n            height=\"14\"\\n            viewBox=\"0 0 24 24\"\\n            fill=\"none\"\\n            stroke=\"currentColor\"\\n            stroke-width=\"2\"\\n            stroke-linecap=\"round\"\\n            stroke-linejoin=\"round\"\\n            class=\"lucide lucide-test-tube-diagonal-icon lucide-test-tube-diagonal\"\\n          >\\n            <path\\n              d=\"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3\"\\n            />\\n            <path d=\"m16 2 6 6\" />\\n            <path d=\"M12 16H4\" />\\n          </svg>\\n          Functional Tests\\n        <button class=\"suggestion\" data-suggestion=\"Help me write OWASP Top 10 vulnerability tests for my APIs.\">\\n          <svg\\n            xmlns=\"http://www.w3.org/2000/svg\"\\n            width=\"14\"\\n            height=\"14\"\\n            viewBox=\"0 0 24 24\"\\n            fill=\"none\"\\n            stroke=\"currentColor\"\\n            stroke-width=\"2\"\\n            stroke-linecap=\"round\"\\n            stroke-linejoin=\"round\"\\n            class=\"lucide lucide-flask-conical-icon lucide-flask-conical\"\\n          >\\n            <path\\n              d=\"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2\"\\n            />\\n            <path d=\"M6.453 15h11.094\" />\\n            <path d=\"M8.5 2h7\" />\\n          </svg>\\n          Vulnerability Tests\\n        </button>\\n        <button class=\"suggestion\" data-suggestion=\"Help me generate SQL injection and other critical security tests for my APIs.\">\\n          <svg\\n            xmlns=\"http://www.w3.org/2000/svg\"\\n            width=\"14\"\\n            height=\"14\"\\n            viewBox=\"0 0 24 24\"\\n            fill=\"none\"\\n            stroke=\"currentColor\"\\n            stroke-width=\"2\"\\n            stroke-linecap=\"round\"\\n            stroke-linejoin=\"round\"\\n            class=\"lucide lucide-shield-check-icon lucide-shield-check\"\\n          >\\n            <path\\n              d=\"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z\"\\n            />\\n            <path d=\"m9 12 2 2 4-4\" />\\n          </svg>\\n          Security Tests\\n        </button>\\n        <button class=\"suggestion\" data-suggestion=\"Help me create penetration tests to simulate real-world attacks on my APIs.\">\\n          <svg\\n            xmlns=\"http://www.w3.org/2000/svg\"\\n            width=\"14\"\\n            height=\"14\"\\n            viewBox=\"0 0 24 24\"\\n            fill=\"none\"\\n            stroke=\"currentColor\"\\n            stroke-width=\"2\"\\n            stroke-linecap=\"round\"\\n            stroke-linejoin=\"round\"\\n            class=\"lucide lucide-book-check-icon lucide-book-check\"\\n          >\\n            <path\\n              d=\"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20\"\\n            />\\n            <path d=\"m9 9.5 2 2 4-4\" />\\n          </svg>\\n          Penetration Tests\\n        </button>\\n      </div>\\n    </div>\\n    <script>\\n      const prefix = \"Help me write \";\\n      const examples = [\\n        \"functional tests covering all possible user flows for my APIs\",\\n        \"OWASP Top 10 vulnerability tests for my APIs\",\\n        \"sql injection tests for my APIs\",\\n      ];\\n  \\n      const input = document.querySelector(\"textarea\");\\n      const uploadBtn = document.querySelector(\".btn-upload\");\\n      const suggestions = document.querySelectorAll(\".suggestion\");\\n      const attachBtn = document.querySelector(\".btn.open-signup:first-child\");\\n      const importBtn = document.querySelector(\".btn.open-signup:last-child\");\\n  \\n      // Initial state\\n      uploadBtn.disabled = !input.value.trim();\\n  \\n      // Handle button clicks\\n      attachBtn.addEventListener(\"click\", function() {\\n        const query = encodeURIComponent(input.value);\\n        window.open(`https://www.app.qodex.ai/`, \\'_blank\\');\\n      });\\n  \\n      importBtn.addEventListener(\"click\", function() {\\n        const query = encodeURIComponent(input.value);\\n        window.open(`https://www.app.qodex.ai/`, \\'_blank\\');\\n      });\\n  \\n      // Handle Enter key press\\n      input.addEventListener(\"keydown\", function(e) {\\n        if (e.key === \"Enter\" && !e.shiftKey) {\\n          e.preventDefault();\\n          if (!uploadBtn.disabled) {\\n            const query = encodeURIComponent(input.value);\\n            window.open(`https://www.app.qodex.ai/?startAIQuery=${query}`, \\'_blank\\');\\n          }\\n        }\\n      });\\n  \\n      // Handle upload button click\\n      uploadBtn.addEventListener(\"click\", function () {\\n        if (!this.disabled) {\\n          const query = encodeURIComponent(input.value);\\n          window.open(`https://www.app.qodex.ai/?startAIQuery=${query}`, \\'_blank\\');\\n        }\\n      });\\n  \\n      // Update button state on input change\\n      input.addEventListener(\"input\", function () {\\n        uploadBtn.disabled = !this.value.trim();\\n        \\n        // Check if input value matches any suggestion\\'s data-suggestion\\n        const inputValue = this.value.trim();\\n        const hasMatchingSuggestion = Array.from(suggestions).some(\\n          (suggestion) => suggestion.getAttribute(\"data-suggestion\") === inputValue\\n        );\\n        \\n        // Remove active class if no match\\n        if (!hasMatchingSuggestion) {\\n          suggestions.forEach((s) => s.classList.remove(\"active\"));\\n        }\\n      });\\n  \\n      // Handle suggestion clicks\\n      suggestions.forEach((btn) => {\\n        btn.addEventListener(\"click\", function () {\\n          // Remove active class from all suggestions\\n          suggestions.forEach((s) => s.classList.remove(\"active\"));\\n          // Add active class to clicked suggestion\\n          this.classList.add(\"active\");\\n          // Use data-suggestion attribute value\\n          input.value = this.getAttribute(\"data-suggestion\");\\n          // Trigger input event to enable upload button\\n          input.dispatchEvent(new Event(\"input\"));\\n        });\\n      });\\n  \\n      let exampleIndex = 0;\\n      let charIndex = 0;\\n      let isDeleting = false;\\n  \\n      function typeEffect() {\\n        const currentText = examples[exampleIndex];\\n        if (!isDeleting) {\\n          // Typing\\n          input.placeholder = prefix + currentText.slice(0, charIndex);\\n          if (charIndex < currentText.length) {\\n            charIndex++;\\n            setTimeout(typeEffect, 40); // Typing speed\\n          } else {\\n            setTimeout(() => {\\n              isDeleting = true;\\n              typeEffect();\\n            }, 1200); // Pause before deleting\\n          }\\n        } else {\\n          // Deleting\\n          input.placeholder = prefix + currentText.slice(0, charIndex);\\n          if (charIndex > 0) {\\n            charIndex--;\\n            setTimeout(typeEffect, 25); // Deleting speed\\n          } else {\\n            isDeleting = false;\\n            exampleIndex = (exampleIndex + 1) % examples.length;\\n            setTimeout(typeEffect, 200); // Short pause before typing next\\n          }\\n        }\\n      }\\n  \\n      typeEffect();\\n    </script>\\n  </body>',id:\"j3WUMasZX\",layoutId:\"j3WUMasZX\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sfg7za\",\"data-framer-name\":\"Absolute stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bo4vrz\",\"data-framer-name\":\"Oval Outline\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ax6d5t\",\"data-framer-name\":\"Oval\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o012mu\",\"data-framer-name\":\"stats_contioner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4rg0h\",\"data-framer-name\":\"Stats grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1000px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+94+100+738.6+0+0+0},UvgoOmlIL:{width:`min(min(${componentViewport?.width||\"100vw\"} - 20px, 1000px) - 20px, 200px)`,y:(componentViewport?.y||0)+0+0+80+60+760.6+0+0+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max((min(${componentViewport?.width||\"100vw\"} - 420px, 1000px) - 240px) / 3, 1px)`,y:(componentViewport?.y||0)+0+200+94+150+619.6+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-11bb93l-container\",\"data-framer-appear-id\":\"11bb93l\",initial:animation1,nodeId:\"E6iz8ZWoX\",optimized:true,rendersWithMotion:true,scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UvgoOmlIL:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"slRNLUT9I\"}},children:/*#__PURE__*/_jsx(Statistic,{a45OqAkJ4:\"Faster\",height:\"100%\",id:\"E6iz8ZWoX\",layoutId:\"E6iz8ZWoX\",Lc6Dz0rIA:\"Reduction in test creation and maintenance time\",OZnyrgiSF:\"%\",style:{width:\"100%\"},variant:\"eghfECGjr\",vY9gre6jB:\"80\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1000px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+94+100+738.6+0+0+0},UvgoOmlIL:{width:`min(min(${componentViewport?.width||\"100vw\"} - 20px, 1000px) - 20px, 200px)`,y:(componentViewport?.y||0)+0+0+80+60+760.6+0+0+10+128}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max((min(${componentViewport?.width||\"100vw\"} - 420px, 1000px) - 240px) / 3, 1px)`,y:(componentViewport?.y||0)+0+200+94+150+619.6+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1uz0np5-container\",\"data-framer-appear-id\":\"1uz0np5\",initial:animation1,nodeId:\"vgZ7UGZLx\",optimized:true,rendersWithMotion:true,scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UvgoOmlIL:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"slRNLUT9I\"}},children:/*#__PURE__*/_jsx(Statistic,{a45OqAkJ4:\"APIs Secured\",height:\"100%\",id:\"vgZ7UGZLx\",layoutId:\"vgZ7UGZLx\",Lc6Dz0rIA:\"Protected proactively against securities & vulnerabilities\",OZnyrgiSF:\"k\",style:{width:\"100%\"},variant:\"eghfECGjr\",vY9gre6jB:\"78\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1000px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+94+100+738.6+0+0+0},UvgoOmlIL:{width:`min(min(${componentViewport?.width||\"100vw\"} - 20px, 1000px) - 20px, 200px)`,y:(componentViewport?.y||0)+0+0+80+60+760.6+0+0+10+256}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:`max((min(${componentViewport?.width||\"100vw\"} - 420px, 1000px) - 240px) / 3, 1px)`,y:(componentViewport?.y||0)+0+200+94+150+619.6+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1csmwrd-container\",\"data-framer-appear-id\":\"1csmwrd\",initial:animation1,nodeId:\"zpcZTPaut\",optimized:true,rendersWithMotion:true,scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UvgoOmlIL:{Lc6Dz0rIA:\"Immediate reduction in security threats\\xa0and\\xa0breachs\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"slRNLUT9I\"}},children:/*#__PURE__*/_jsx(Statistic,{a45OqAkJ4:\"Fewer API Threats\",height:\"100%\",id:\"zpcZTPaut\",layoutId:\"zpcZTPaut\",Lc6Dz0rIA:\"Immediate reduction in security threats\\xa0and\\xa0breaches\",OZnyrgiSF:\"%\",style:{width:\"100%\"},variant:\"eghfECGjr\",vY9gre6jB:\"60\",width:\"100%\"})})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vqruzw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qv26t8\",\"data-framer-name\":\"Logo Strip V2\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d1exba\",\"data-framer-name\":\"Frame 1171275153\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-i0ee2h\",\"data-framer-appear-id\":\"i0ee2h\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+0),pixelHeight:650,pixelWidth:1801,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 120px) / 5, 50px)`,src:\"https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png\",srcSet:\"https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png 1801w\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+0),pixelHeight:650,pixelWidth:1801,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png\",srcSet:\"https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png 1801w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+0),pixelHeight:650,pixelWidth:1801,sizes:\"216px\",src:\"https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png\",srcSet:\"https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/guop2Oy4xHjwiT1b3I8eJ0LRCvw.png 1801w\"},className:\"framer-4goj9a\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+0),pixelHeight:121,pixelWidth:350,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8aELSkGyMcJrD29hIQduFW3Hk2Q.png\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+0),pixelHeight:121,pixelWidth:350,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8aELSkGyMcJrD29hIQduFW3Hk2Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+0),pixelHeight:121,pixelWidth:350,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8aELSkGyMcJrD29hIQduFW3Hk2Q.png\"},className:\"framer-8gkvex\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+0),pixelHeight:267,pixelWidth:933,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 120px) / 5, 50px)`,src:\"https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png\",srcSet:\"https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png 933w\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+0),pixelHeight:267,pixelWidth:933,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png\",srcSet:\"https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png 933w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+0),pixelHeight:267,pixelWidth:933,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png\",srcSet:\"https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/NZ6M5eX7xmjAShU1kWHw7pmQ4I.png 933w\"},className:\"framer-536lmq\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+0),pixelHeight:238,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 120px) / 5, 50px)`,src:\"https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png\",srcSet:\"https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png 820w\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+82),pixelHeight:238,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png\",srcSet:\"https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png 820w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+0),pixelHeight:238,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png\",srcSet:\"https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tOZqKKtpLeIMjFvtUIsX1UIntE.png 820w\"},className:\"framer-2dgx27\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+0),pixelHeight:28,pixelWidth:95,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ekw9pseGayaxHONYyJZ7xZ02UxI.svg\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+82),pixelHeight:28,pixelWidth:95,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ekw9pseGayaxHONYyJZ7xZ02UxI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+0),pixelHeight:28,pixelWidth:95,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ekw9pseGayaxHONYyJZ7xZ02UxI.svg\"},className:\"framer-rpi5hn\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+82),pixelHeight:984,pixelWidth:3279,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 120px) / 5, 50px)`,src:\"https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png\",srcSet:\"https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png 3279w\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+82),pixelHeight:984,pixelWidth:3279,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png\",srcSet:\"https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png 3279w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+82),pixelHeight:984,pixelWidth:3279,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png\",srcSet:\"https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZViwlHPTkrnrGbQptSEyIOeHL8Y.png 3279w\"},className:\"framer-5yscss\",whileHover:animation4})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+82),pixelHeight:992,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 120px) / 5, 50px)`,src:\"https://framerusercontent.com/images/pboGTMG0qwWceH2HjwuLHTWtwcs.png\",srcSet:\"https://framerusercontent.com/images/pboGTMG0qwWceH2HjwuLHTWtwcs.png 820w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+82),pixelHeight:992,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/pboGTMG0qwWceH2HjwuLHTWtwcs.png\",srcSet:\"https://framerusercontent.com/images/pboGTMG0qwWceH2HjwuLHTWtwcs.png 820w\"},className:\"framer-1niwz52 hidden-rjc58a\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+82),pixelHeight:937,pixelWidth:3077,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 120px) / 5, 50px)`,src:\"https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png\",srcSet:\"https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=512 512w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png 3077w\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+164),pixelHeight:937,pixelWidth:3077,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png\",srcSet:\"https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=512 512w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png 3077w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+82),pixelHeight:937,pixelWidth:3077,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png\",srcSet:\"https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=512 512w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Je2Zql2Mq9yoXUpfJqCd0iB317I.png 3077w\"},className:\"framer-j3qjvu\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+82),pixelHeight:187,pixelWidth:382,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EZsE2Tz9mwJBZFcEVWdM1fb4.png\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+164),pixelHeight:187,pixelWidth:382,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EZsE2Tz9mwJBZFcEVWdM1fb4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+82),pixelHeight:187,pixelWidth:382,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EZsE2Tz9mwJBZFcEVWdM1fb4.png\"},className:\"framer-k7sdv5\",whileHover:animation4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1149.6+50+40+0+0+0+0+82),pixelHeight:39,pixelWidth:259,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NZzX5HTSWr3mjnC8BviVaSn08.png\"}},UvgoOmlIL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1333.6+20+40+0+0+0+0+164),pixelHeight:39,pixelWidth:259,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NZzX5HTSWr3mjnC8BviVaSn08.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1280.6+50+40+0+0+0+0+82),pixelHeight:39,pixelWidth:259,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NZzX5HTSWr3mjnC8BviVaSn08.png\"},className:\"framer-yqr9i1\",whileHover:animation4})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rhxvk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e00705\",\"data-framer-name\":\"image/GIF\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3duh2z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-94t16p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wiXIT8lps\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,height:\"100%\",id:\"wiXIT8lps\",isMixedBorderRadius:false,isRed:true,layoutId:\"wiXIT8lps\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:32,topRightRadius:32,url:\"https://youtu.be/XdoDzsa8fAo?feature=shared\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kvhvha\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3zvzf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-122xbfo\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1boymqs\",\"data-styles-preset\":\"tjd7WKpaj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, rgb(255, 255, 255))\"},children:\"Everything You Need to Test and Secure Your APIs\\xa0\u2014\\xa0Instantly\"})}),className:\"framer-1t8z9bm\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wl4cqr\",\"data-border\":true,\"data-framer-name\":\"Features_stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqla3z\",\"data-framer-name\":\"Sticky Container 1\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bKqSv_DNZ:\"seamless-github-integration\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"wLqVQxghu\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"auto-discover-apis\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"KzcEhA4G9\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"seamless-github-integration\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"wLqVQxghu\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2449.6+0+100+141.6+0+0+0},UvgoOmlIL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2519.6+0+40+81.6+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max(min(${componentViewport?.width||\"100vw\"} - 260px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2600.6+0+100+141.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pjovfv-container\",nodeId:\"dQgQS91qa\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{msvzzLJD1:resolvedLinks[1],variant:\"dDhGnCqfw\"},UvgoOmlIL:{msvzzLJD1:resolvedLinks[2],variant:\"JRYaiod9K\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{a9oLMlhXr:\"Run our lightweight SDK/script on your repo. Instantly get a full map of your APIs \u2014 parameters, methods, and descriptions.\\n\\n\",GrN3y4cXI:addImageAlt({pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png\",srcSet:\"https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png 1200w\"},\"\"),height:\"100%\",I3cFroa3X:addImageAlt({pixelHeight:1078,pixelWidth:1658,src:\"https://framerusercontent.com/images/2MG8eM4vijg2vTDWJiLUJp29PNM.gif\",srcSet:\"https://framerusercontent.com/images/2MG8eM4vijg2vTDWJiLUJp29PNM.gif?scale-down-to=512 512w,https://framerusercontent.com/images/2MG8eM4vijg2vTDWJiLUJp29PNM.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/2MG8eM4vijg2vTDWJiLUJp29PNM.gif 1658w\"},\"\"),id:\"dQgQS91qa\",layoutId:\"dQgQS91qa\",msvzzLJD1:resolvedLinks[0],style:{width:\"100%\"},TrRAvJJ6K:\"01 Auto-Discover APIs\",variant:\"JLk8iEVuP\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-52luyq\",\"data-framer-name\":\"Sticky Container 3\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bKqSv_DNZ:\"chat-based-test-generation\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"PVEshfC53\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"chat-based-test-generation\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"PVEshfC53\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"chat-based-test-generation\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"PVEshfC53\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2449.6+0+100+141.6+0+427+0},UvgoOmlIL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2519.6+0+40+81.6+0+423+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max(min(${componentViewport?.width||\"100vw\"} - 260px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2600.6+0+100+141.6+0+427+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o5s16m-container\",nodeId:\"huMtjyjtP\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{msvzzLJD1:resolvedLinks1[1],variant:\"dDhGnCqfw\"},UvgoOmlIL:{msvzzLJD1:resolvedLinks1[2],variant:\"JRYaiod9K\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{a9oLMlhXr:\"Write unit tests, functional tests, OWASP Top 10 security tests, regression suites, and more \",GrN3y4cXI:addImageAlt({pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/QE4tyftC48El5rEQL1w4P5Hhx4.png\",srcSet:\"https://framerusercontent.com/images/QE4tyftC48El5rEQL1w4P5Hhx4.png?scale-down-to=512 512w,https://framerusercontent.com/images/QE4tyftC48El5rEQL1w4P5Hhx4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QE4tyftC48El5rEQL1w4P5Hhx4.png 2000w\"},\"\"),height:\"100%\",I3cFroa3X:addImageAlt({pixelHeight:328,pixelWidth:526,src:\"https://framerusercontent.com/images/W6g5Vsznq7rPI6fRtmQYX8msA.gif\",srcSet:\"https://framerusercontent.com/images/W6g5Vsznq7rPI6fRtmQYX8msA.gif?scale-down-to=512 512w,https://framerusercontent.com/images/W6g5Vsznq7rPI6fRtmQYX8msA.gif 526w\"},\"\"),id:\"huMtjyjtP\",layoutId:\"huMtjyjtP\",msvzzLJD1:resolvedLinks1[0],style:{width:\"100%\"},TrRAvJJ6K:\"02 Chat-Based Test Generation\",variant:\"JLk8iEVuP\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14jq1f4\",\"data-framer-name\":\"Sticky Container 3\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bKqSv_DNZ:\"see-and-edit-the-code\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"WfaaKVZ0q\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"see-and-edit-the-code\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"WfaaKVZ0q\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"see-and-edit-the-code\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"WfaaKVZ0q\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2449.6+0+100+141.6+0+854+0},UvgoOmlIL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2519.6+0+40+81.6+0+846+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max(min(${componentViewport?.width||\"100vw\"} - 260px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2600.6+0+100+141.6+0+854+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c3wbx9-container\",nodeId:\"Jt5mjFRzV\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{msvzzLJD1:resolvedLinks2[1],variant:\"dDhGnCqfw\"},UvgoOmlIL:{msvzzLJD1:resolvedLinks2[2],variant:\"JRYaiod9K\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{a9oLMlhXr:\"Every test is fully transparent. View, edit, or customize the generated code anytime.\\n\",GrN3y4cXI:addImageAlt({pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/qozZillzQRtO48nS2wQTn2QJJo.png\",srcSet:\"https://framerusercontent.com/images/qozZillzQRtO48nS2wQTn2QJJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qozZillzQRtO48nS2wQTn2QJJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qozZillzQRtO48nS2wQTn2QJJo.png 2000w\"},\"\"),height:\"100%\",I3cFroa3X:addImageAlt({pixelHeight:972,pixelWidth:1920,src:\"https://framerusercontent.com/images/SMJJhVs01Pt4vvRG4Nf3vuUodc.gif\",srcSet:\"https://framerusercontent.com/images/SMJJhVs01Pt4vvRG4Nf3vuUodc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/SMJJhVs01Pt4vvRG4Nf3vuUodc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/SMJJhVs01Pt4vvRG4Nf3vuUodc.gif 1920w\"},\"\"),id:\"Jt5mjFRzV\",layoutId:\"Jt5mjFRzV\",msvzzLJD1:resolvedLinks2[0],style:{width:\"100%\"},TrRAvJJ6K:\"03 See and Edit the Code\",variant:\"JLk8iEVuP\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g0bg6h\",\"data-framer-name\":\"Sticky Container 2\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bKqSv_DNZ:\"explore-and-test-apis-manually\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"tVPtiOtvA\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"explore-and-test-apis-manually\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"tVPtiOtvA\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"explore-and-test-apis-manually\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"tVPtiOtvA\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2449.6+0+100+141.6+0+1281+0},UvgoOmlIL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2519.6+0+40+81.6+0+1269+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max(min(${componentViewport?.width||\"100vw\"} - 260px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2600.6+0+100+141.6+0+1281+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ihlefw-container\",nodeId:\"rAKnWNby5\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{msvzzLJD1:resolvedLinks3[1],variant:\"dDhGnCqfw\"},UvgoOmlIL:{msvzzLJD1:resolvedLinks3[2],variant:\"JRYaiod9K\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{a9oLMlhXr:\"Interact with your APIs like Postman \u2014 but built natively into your development flow.\\n\\n\",GrN3y4cXI:addImageAlt({pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/hgKoiLAvgx4PMHpwTy39OdmM.png\",srcSet:\"https://framerusercontent.com/images/hgKoiLAvgx4PMHpwTy39OdmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hgKoiLAvgx4PMHpwTy39OdmM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hgKoiLAvgx4PMHpwTy39OdmM.png 1200w\"},\"\"),height:\"100%\",I3cFroa3X:addImageAlt({pixelHeight:718,pixelWidth:1106,src:\"https://framerusercontent.com/images/4GEMXtetFosrjy943hmWF3lUcLU.gif\",srcSet:\"https://framerusercontent.com/images/4GEMXtetFosrjy943hmWF3lUcLU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/4GEMXtetFosrjy943hmWF3lUcLU.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/4GEMXtetFosrjy943hmWF3lUcLU.gif 1106w\"},\"\"),id:\"rAKnWNby5\",layoutId:\"rAKnWNby5\",msvzzLJD1:resolvedLinks3[0],style:{width:\"100%\"},TrRAvJJ6K:\"04 Explore and Test Manually\",variant:\"JLk8iEVuP\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iq37zs\",\"data-framer-name\":\"Sticky Container 3\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bKqSv_DNZ:\"seamless-github-integration\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"wLqVQxghu\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"seamless-github-integration\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"wLqVQxghu\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"seamless-github-integration\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"wLqVQxghu\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2449.6+0+100+141.6+0+1708+0},UvgoOmlIL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2519.6+0+40+81.6+0+1692+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max(min(${componentViewport?.width||\"100vw\"} - 260px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2600.6+0+100+141.6+0+1708+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19zdpv6-container\",nodeId:\"UMobXd0An\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{msvzzLJD1:resolvedLinks4[1],variant:\"dDhGnCqfw\"},UvgoOmlIL:{msvzzLJD1:resolvedLinks4[2],variant:\"JRYaiod9K\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{a9oLMlhXr:\"Export all your generated tests straight into your GitHub repo with a click.\",GrN3y4cXI:addImageAlt({pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/YcK8rJctyyUZfM6GasMlLclhL9g.png\",srcSet:\"https://framerusercontent.com/images/YcK8rJctyyUZfM6GasMlLclhL9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/YcK8rJctyyUZfM6GasMlLclhL9g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YcK8rJctyyUZfM6GasMlLclhL9g.png 2000w\"},\"\"),height:\"100%\",I3cFroa3X:addImageAlt({pixelHeight:1078,pixelWidth:1658,src:\"https://framerusercontent.com/images/UNlVqxsvwx5IJT3hbaB3NtTlj8.gif\",srcSet:\"https://framerusercontent.com/images/UNlVqxsvwx5IJT3hbaB3NtTlj8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/UNlVqxsvwx5IJT3hbaB3NtTlj8.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/UNlVqxsvwx5IJT3hbaB3NtTlj8.gif 1658w\"},\"\"),id:\"UMobXd0An\",layoutId:\"UMobXd0An\",msvzzLJD1:resolvedLinks4[0],style:{width:\"100%\"},TrRAvJJ6K:\"05  Seamless GitHub Integration\",variant:\"JLk8iEVuP\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rwc6o5\",\"data-framer-name\":\"Sticky Container 3\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bKqSv_DNZ:\"run-tests-your-way\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"lhvNT6dwO\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"run-tests-your-way\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"lhvNT6dwO\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined},{href:{pathVariables:{bKqSv_DNZ:\"run-tests-your-way\"},unresolvedPathSlugs:{bKqSv_DNZ:{collectionId:\"xUFEuGbVZ\",collectionItemId:\"lhvNT6dwO\"}},webPageId:\"XGK1sx7wE\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2449.6+0+100+141.6+0+2135+0},UvgoOmlIL:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2519.6+0+40+81.6+0+2115+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max(min(${componentViewport?.width||\"100vw\"} - 260px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+2600.6+0+100+141.6+0+2135+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d7i4a3-container\",nodeId:\"cF94UGBLZ\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{msvzzLJD1:resolvedLinks5[1],variant:\"dDhGnCqfw\"},UvgoOmlIL:{msvzzLJD1:resolvedLinks5[2],variant:\"JRYaiod9K\"}},children:/*#__PURE__*/_jsx(CaseStudyCard,{a9oLMlhXr:\"Run all tests in the cloud on Qodex.ai, or locally through your GitHub clone \u2014 full flexibility,\\xa0zero\\xa0lock-in.\",GrN3y4cXI:addImageAlt({pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png\",srcSet:\"https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hew2wXQW6WRZFgBdADUC5lcNXc.png 1200w\"},\"\"),height:\"100%\",I3cFroa3X:addImageAlt({pixelHeight:972,pixelWidth:1920,src:\"https://framerusercontent.com/images/vOqhsAla8D0eZcm0BxrcK2nDTqc.gif\",srcSet:\"https://framerusercontent.com/images/vOqhsAla8D0eZcm0BxrcK2nDTqc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vOqhsAla8D0eZcm0BxrcK2nDTqc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/vOqhsAla8D0eZcm0BxrcK2nDTqc.gif 1920w\"},\"\"),id:\"cF94UGBLZ\",layoutId:\"cF94UGBLZ\",msvzzLJD1:resolvedLinks5[0],style:{width:\"100%\"},TrRAvJJ6K:\"06 Run Tests Your Way\",variant:\"JLk8iEVuP\",width:\"100%\"})})})})})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-11qbaxo\",\"data-framer-appear-id\":\"11qbaxo\",\"data-framer-name\":\"Testimonial\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hor0zn\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iz0b72\",\"data-framer-name\":\"Header Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1boymqs\",\"data-styles-preset\":\"tjd7WKpaj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bc64c3db-a212-478b-b5d9-d59d43367df0, rgb(24, 24, 24))\"},children:\"You\u2019ll love the experience. Like everyone does.\"})})},UvgoOmlIL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1q1jluh\",\"data-styles-preset\":\"piAEFBgNq\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bc64c3db-a212-478b-b5d9-d59d43367df0, rgb(24, 24, 24))\"},children:\"You\u2019ll love the experience. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bc64c3db-a212-478b-b5d9-d59d43367df0, rgb(24, 24, 24))\"},children:\"Like everyone does.\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1boymqs\",\"data-styles-preset\":\"tjd7WKpaj\",style:{\"--framer-text-color\":\"var(--token-bc64c3db-a212-478b-b5d9-d59d43367df0, rgb(24, 24, 24))\"},children:\"You\u2019ll love the experience. Like everyone does.\"})}),className:\"framer-1budhpu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-onozeg\",\"data-styles-preset\":\"L2HIr_lg1\",style:{\"--framer-text-color\":\"var(--token-7cd8ac51-1515-4abe-a050-9f9e9207b5e3, rgb(70, 69, 71))\"},children:\"Hear what our customers say about us.\"})}),className:\"framer-mkcsdn\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{height:400,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+5331.2+80+245.1},UvgoOmlIL:{height:413,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,y:(componentViewport?.y||0)+0+5221.2+40+269.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1200,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`,y:(componentViewport?.y||0)+0+5482.2+128+143.1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mn2vz1-container\",nodeId:\"xxWOibMs7\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"OpeLw398k\"},UvgoOmlIL:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"OpeLw398k\"}},children:/*#__PURE__*/_jsx(Testimonials_ticker,{height:\"100%\",id:\"xxWOibMs7\",layoutId:\"xxWOibMs7\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"t3fspWWsi\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{y:(componentViewport?.y||0)+0+6096.3},UvgoOmlIL:{y:(componentViewport?.y||0)+0+5983.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1090,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6993.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zswkkl-container\",nodeId:\"HWX5AN6Dk\",scopeId:\"pVNrDnWvJ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISY4J4arN:{variant:\"pgnQil_dP\"},UvgoOmlIL:{variant:\"E9Dw3WpPP\"}},children:/*#__PURE__*/_jsx(FOOTER_new,{height:\"100%\",id:\"HWX5AN6Dk\",layoutId:\"HWX5AN6Dk\",style:{width:\"100%\"},variant:\"E0lwSg2wU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CDVZv.framer-1da37yz, .framer-CDVZv .framer-1da37yz { display: block; }\",\".framer-CDVZv.framer-1kmx9tz { align-content: center; align-items: center; background-color: #f6f5f7; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-CDVZv .framer-foun8u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-CDVZv .framer-15sto50-container { flex: none; height: 86px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-CDVZv .framer-1eihdzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; overflow: hidden; padding: 94px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-197izbp { align-content: center; align-items: center; background: linear-gradient(306deg, var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, #ffffff) -3%, rgb(89, 38, 182) 28.000000000000004%, rgb(0, 0, 0) 79%); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 100px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CDVZv .framer-eotuz { bottom: -20px; flex: none; left: -20px; opacity: 0.1; position: absolute; right: -20px; top: -20px; z-index: 1; }\",\".framer-CDVZv .framer-1qp78zp { 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%; z-index: 2; }\",\".framer-CDVZv .framer-1lam3vw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-1chbhg9, .framer-CDVZv .framer-1t8z9bm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CDVZv .framer-fzntg6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.62; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CDVZv .framer-1qvcxxh-container { flex: none; height: 333px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-1sfg7za { align-content: center; align-items: center; bottom: -133px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 907px; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-1bo4vrz { background: radial-gradient(33.7% 50% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0) 68.44911317567568%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -320px; flex: none; left: -97px; opacity: 0.38; overflow: hidden; position: absolute; right: -98px; top: 335px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-CDVZv .framer-1ax6d5t { background: radial-gradient(64.4% 50% at 50% 50%, #000000 77.98599380630633%, rgb(160, 104, 252) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -336px; box-shadow: 0px 0px 250px 0px rgba(230, 169, 251, 0.6); flex: none; left: -97px; opacity: 0.74; overflow: hidden; position: absolute; right: -98px; top: 335px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-CDVZv .framer-o012mu { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 200px 0px 200px; position: relative; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-g4rg0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-11bb93l-container, .framer-CDVZv .framer-1uz0np5-container, .framer-CDVZv .framer-1csmwrd-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-vqruzw { 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: 50px 120px 50px 120px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-1qv26t8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-CDVZv .framer-d1exba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-i0ee2h { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-4goj9a, .framer-CDVZv .framer-5yscss { -webkit-filter: grayscale(1); align-self: center; filter: grayscale(1); flex: none; height: 52px; justify-self: center; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-8gkvex { -webkit-filter: grayscale(1); align-self: center; filter: grayscale(1); flex: none; height: 32px; justify-self: center; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-536lmq { -webkit-filter: grayscale(1); align-self: start; filter: grayscale(1); flex: none; height: 33px; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-2dgx27 { -webkit-filter: grayscale(1); align-self: start; filter: grayscale(1); flex: none; height: 42px; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-rpi5hn { -webkit-filter: grayscale(1); align-self: center; filter: grayscale(1); flex: none; height: 39px; justify-self: center; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-1niwz52, .framer-CDVZv .framer-yqr9i1 { -webkit-filter: grayscale(1); align-self: start; filter: grayscale(1); flex: none; height: 64px; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-j3qjvu { -webkit-filter: grayscale(1); align-self: start; filter: grayscale(1); flex: none; height: 54px; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-k7sdv5 { -webkit-filter: grayscale(1); align-self: center; filter: grayscale(1); flex: none; height: 51px; justify-self: center; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-1rhxvk { 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: 10px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-1e00705 { align-content: center; align-items: center; background: linear-gradient(198deg, var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, #ffffff) 2%, rgb(89, 38, 182) 25.82589914132883%, rgb(0, 0, 0) 64.66216216216216%); border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 120px 100px 120px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CDVZv .framer-3duh2z { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(184, 145, 255, 0.2) 0%, rgba(0, 255, 179, 0.05) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-CDVZv .framer-94t16p-container { aspect-ratio: 1.5380434782608696 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 736px); position: relative; width: 100%; }\",\".framer-CDVZv .framer-kvhvha { align-content: center; align-items: center; background-color: var(--token-81610b02-b2b5-4cfb-8129-500365f9d43b, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 10px 10px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-1d3zvzf { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 100px 120px 100px 120px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-122xbfo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: visible; padding: 0px; position: sticky; top: 100px; width: 76%; z-index: 1; }\",\".framer-CDVZv .framer-1wl4cqr { --border-bottom-width: 1px; --border-color: rgba(95, 95, 113, 0.22); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-1tqla3z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; scroll-margin-top: 200px; top: 290px; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-pjovfv-container, .framer-CDVZv .framer-o5s16m-container, .framer-CDVZv .framer-c3wbx9-container, .framer-CDVZv .framer-ihlefw-container, .framer-CDVZv .framer-19zdpv6-container, .framer-CDVZv .framer-1d7i4a3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-CDVZv .framer-52luyq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; scroll-margin-top: 20px; top: 310px; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-14jq1f4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; scroll-margin-top: 30px; top: 320px; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-1g0bg6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; scroll-margin-top: 10px; top: 330px; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-1iq37zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; scroll-margin-top: 40px; top: 340px; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-rwc6o5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; scroll-margin-top: 50px; top: 350px; width: 100%; z-index: 1; }\",\".framer-CDVZv .framer-11qbaxo { 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: 128px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDVZv .framer-hor0zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-iz0b72 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-1budhpu, .framer-CDVZv .framer-mkcsdn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CDVZv .framer-mn2vz1-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-CDVZv .framer-zswkkl-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-CDVZv[data-border=\"true\"]::after, .framer-CDVZv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-CDVZv.framer-1kmx9tz { width: 810px; } .framer-CDVZv .framer-foun8u-container { order: 8; } .framer-CDVZv .framer-15sto50-container { order: 0; } .framer-CDVZv .framer-1eihdzp { order: 2; } .framer-CDVZv .framer-197izbp { gap: 100px; padding: 100px 40px 100px 40px; } .framer-CDVZv .framer-1qvcxxh-container { height: 402px; } .framer-CDVZv .framer-1sfg7za { bottom: -150px; } .framer-CDVZv .framer-1bo4vrz { bottom: -125px; top: 399px; } .framer-CDVZv .framer-1ax6d5t { bottom: -25px; top: 399px; } .framer-CDVZv .framer-o012mu { padding: 0px 40px 0px 40px; } .framer-CDVZv .framer-g4rg0h { gap: 40px; justify-content: center; } .framer-CDVZv .framer-vqruzw { order: 3; padding: 50px 40px 50px 40px; } .framer-CDVZv .framer-i0ee2h { width: 100%; } .framer-CDVZv .framer-1rhxvk { order: 4; } .framer-CDVZv .framer-1e00705 { gap: 40px; padding: 80px 50px 100px 50px; } .framer-CDVZv .framer-94t16p-container { height: var(--framer-aspect-ratio-supported, 418px); } .framer-CDVZv .framer-kvhvha { order: 5; } .framer-CDVZv .framer-1d3zvzf { padding: 100px 40px 100px 40px; } .framer-CDVZv .framer-52luyq { top: 300px; } .framer-CDVZv .framer-14jq1f4 { top: 310px; } .framer-CDVZv .framer-1g0bg6h { top: 320px; } .framer-CDVZv .framer-1iq37zs { top: 330px; } .framer-CDVZv .framer-rwc6o5 { top: 340px; } .framer-CDVZv .framer-11qbaxo { order: 6; padding: 80px 0px 40px 0px; } .framer-CDVZv .framer-hor0zn { padding: 0px 40px 0px 40px; width: 800px; } .framer-CDVZv .framer-1budhpu, .framer-CDVZv .framer-mkcsdn { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-CDVZv .framer-mn2vz1-container { height: 400px; } .framer-CDVZv .framer-zswkkl-container { order: 7; }}\",\"@media (max-width: 809px) { .framer-CDVZv.framer-1kmx9tz { background-color: #f7f5fa; flex-wrap: wrap; width: 412px; } .framer-CDVZv .framer-foun8u-container { order: 8; } .framer-CDVZv .framer-15sto50-container { height: auto; left: 0px; order: 0; right: 0px; width: unset; } .framer-CDVZv .framer-1eihdzp { order: 1; padding: 80px 10px 0px 10px; } .framer-CDVZv .framer-197izbp { padding: 60px 0px 40px 0px; } .framer-CDVZv .framer-1qp78zp { width: 90%; } .framer-CDVZv .framer-1lam3vw, .framer-CDVZv .framer-pjovfv-container { order: 0; } .framer-CDVZv .framer-1qvcxxh-container { height: 474px; min-width: 200px; order: 2; } .framer-CDVZv .framer-1bo4vrz { bottom: 44px; top: 364px; } .framer-CDVZv .framer-1ax6d5t { bottom: 59px; top: 364px; } .framer-CDVZv .framer-o012mu { gap: 8px; padding: 0px; } .framer-CDVZv .framer-g4rg0h { flex-direction: column; gap: 11px; justify-content: flex-start; padding: 10px; } .framer-CDVZv .framer-11bb93l-container, .framer-CDVZv .framer-1uz0np5-container, .framer-CDVZv .framer-1csmwrd-container { flex: none; max-width: 200px; width: 100%; } .framer-CDVZv .framer-vqruzw { order: 3; padding: 20px 40px 20px 40px; } .framer-CDVZv .framer-i0ee2h { grid-template-columns: repeat(3, minmax(50px, 1fr)); width: 100%; } .framer-CDVZv .framer-1rhxvk { order: 4; } .framer-CDVZv .framer-1e00705 { gap: 20px; padding: 40px 20px 40px 20px; } .framer-CDVZv .framer-3duh2z { border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; padding: 6px; } .framer-CDVZv .framer-94t16p-container { height: var(--framer-aspect-ratio-supported, 221px); } .framer-CDVZv .framer-kvhvha { order: 5; } .framer-CDVZv .framer-1d3zvzf { gap: 40px; justify-content: flex-start; padding: 40px 20px 60px 20px; } .framer-CDVZv .framer-122xbfo { max-width: 400px; order: 0; width: 100%; } .framer-CDVZv .framer-1wl4cqr { gap: 28px; order: 1; } .framer-CDVZv .framer-1tqla3z { top: 200px; } .framer-CDVZv .framer-52luyq { top: 210px; } .framer-CDVZv .framer-14jq1f4 { top: 220px; } .framer-CDVZv .framer-1g0bg6h { top: 230px; } .framer-CDVZv .framer-1iq37zs { top: 240px; } .framer-CDVZv .framer-rwc6o5 { top: 250px; } .framer-CDVZv .framer-11qbaxo { order: 6; padding: 40px 20px 40px 20px; } .framer-CDVZv .framer-hor0zn { gap: 30px; max-width: 460px; min-width: 280px; padding: 0px; width: 90%; } .framer-CDVZv .framer-iz0b72 { gap: 26px; } .framer-CDVZv .framer-1budhpu, .framer-CDVZv .framer-mkcsdn { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-CDVZv .framer-mn2vz1-container { height: 413px; } .framer-CDVZv .framer-zswkkl-container { order: 7; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7928.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ISY4J4arN\":{\"layout\":[\"fixed\",\"auto\"]},\"UvgoOmlIL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"bzTXWt2Uk\":{\"pattern\":\":bzTXWt2Uk\",\"name\":\"sticky-container-1\"},\"IoC4zWlMZ\":{\"pattern\":\":IoC4zWlMZ\",\"name\":\"sticky-container-3\"},\"a6lrCCsRq\":{\"pattern\":\":a6lrCCsRq\",\"name\":\"sticky-container-3\"},\"SW2EJl4ld\":{\"pattern\":\":SW2EJl4ld\",\"name\":\"sticky-container-2\"},\"qUUbHKFYK\":{\"pattern\":\":qUUbHKFYK\",\"name\":\"sticky-container-3\"},\"D3q0tKvYw\":{\"pattern\":\":D3q0tKvYw\",\"name\":\"sticky-container-3\"}}\n * @framerResponsiveScreen\n */const FramerpVNrDnWvJ=withCSS(Component,css,\"framer-CDVZv\");export default FramerpVNrDnWvJ;FramerpVNrDnWvJ.displayName=\"Home\";FramerpVNrDnWvJ.defaultProps={height:7928.5,width:1440};addFonts(FramerpVNrDnWvJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...SmoothScrollFonts,...NavHeaderFonts,...EmbedFonts,...StatisticFonts,...YouTubeFonts,...CaseStudyCardFonts,...Testimonials_tickerFonts,...FOOTER_newFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpVNrDnWvJ\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"bzTXWt2Uk\\\":{\\\"pattern\\\":\\\":bzTXWt2Uk\\\",\\\"name\\\":\\\"sticky-container-1\\\"},\\\"IoC4zWlMZ\\\":{\\\"pattern\\\":\\\":IoC4zWlMZ\\\",\\\"name\\\":\\\"sticky-container-3\\\"},\\\"a6lrCCsRq\\\":{\\\"pattern\\\":\\\":a6lrCCsRq\\\",\\\"name\\\":\\\"sticky-container-3\\\"},\\\"SW2EJl4ld\\\":{\\\"pattern\\\":\\\":SW2EJl4ld\\\",\\\"name\\\":\\\"sticky-container-2\\\"},\\\"qUUbHKFYK\\\":{\\\"pattern\\\":\\\":qUUbHKFYK\\\",\\\"name\\\":\\\"sticky-container-3\\\"},\\\"D3q0tKvYw\\\":{\\\"pattern\\\":\\\":D3q0tKvYw\\\",\\\"name\\\":\\\"sticky-container-3\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ISY4J4arN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UvgoOmlIL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"7928.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;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",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "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", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "NavHeaderFonts", "r47STEVhh_default", "EmbedFonts", "Embed", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "StatisticFonts", "Zupi79Mvk_default", "MotionDivWithOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "YouTubeFonts", "Youtube", "RichTextWithFX", "RichText2", "CaseStudyCardFonts", "adWDDg015_default", "Testimonials_tickerFonts", "jI8OvpZlN_default", "FOOTER_newFonts", "XWX3fIWwn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "animation8", "addImageAlt", "image", "alt", "animation9", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerpVNrDnWvJ", "withCSS", "pVNrDnWvJ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
