{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/3vD5ApPtndrpJAf8G8ES/0q6syqS6H7IlBw31agL8/SatB2B_pH.js", "ssg:https://framerusercontent.com/modules/WIXrScXEs35NbmUH1suq/ycojQIQ99r1iXWiyy9Gu/ADNX38ReG.js", "ssg:https://framerusercontent.com/modules/nnN1cX26DFBiFayRcB2t/mRDtNEXNzL1Bqb8jk9pl/G1vVpTv74.js", "ssg:https://framerusercontent.com/modules/NwUFsvLZUj32akXcwaGG/vUinWGic7q8Xw6HqaWPV/HKDcCCho6.js", "ssg:https://framerusercontent.com/modules/MpBjgSW31yxcb4OpQ9My/LaimHqZThLG2J3uKIa3I/LfYbSifpF.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...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(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// 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                min-height: 100vh;\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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (139b156)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-UWpnv .framer-styles-preset-25csu8:not(.rich-text-wrapper), .framer-UWpnv .framer-styles-preset-25csu8.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, #fafafa) /* {\"name\":\"100\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }'];export const className=\"framer-UWpnv\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hVd1gT3QuNnUWpjyZGwW/9iXtKZ7G6e0MBaYF27a7/fLOlqafDa.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Y9kIzZ081G709axpPakK/JTD8hnvF76IyCYpbTCOK/xpSqZSMU3.js\";const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={EiMt454Yh:{hover:true,pressed:true}};const cycleOrder=[\"EiMt454Yh\",\"o9OwL9ioz\",\"Lpx4eM7J2\",\"t02Lg4iIv\",\"dc610YmBW\"];const serializationHash=\"framer-li9E2\";const variantClassNames={dc610YmBW:\"framer-v-15yqa76\",EiMt454Yh:\"framer-v-16d90ww\",Lpx4eM7J2:\"framer-v-1d2j1r8\",o9OwL9ioz:\"framer-v-1cmm8dm\",t02Lg4iIv:\"framer-v-exojbp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"EiMt454Yh\",Disabled:\"Lpx4eM7J2\",Error:\"dc610YmBW\",Loading:\"o9OwL9ioz\",Success:\"t02Lg4iIv\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"EiMt454Yh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EiMt454Yh\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1hm077k=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"t02Lg4iIv\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"o9OwL9ioz\",\"t02Lg4iIv\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"o9OwL9ioz\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"t02Lg4iIv\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16d90ww\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"EiMt454Yh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"none\",opacity:1,...style},variants:{\"EiMt454Yh-hover\":{backgroundColor:\"var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233))\"},\"EiMt454Yh-pressed\":{backgroundColor:\"var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233))\"},Lpx4eM7J2:{opacity:.5},t02Lg4iIv:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"4px 8px 10px 0px rgba(0,0,0,0.25)\"}},...addPropertyOverrides({\"EiMt454Yh-hover\":{\"data-framer-name\":undefined},\"EiMt454Yh-pressed\":{\"data-framer-name\":undefined},dc610YmBW:{\"data-framer-name\":\"Error\"},Lpx4eM7J2:{\"data-framer-name\":\"Disabled\"},o9OwL9ioz:{\"data-framer-name\":\"Loading\"},t02Lg4iIv:{\"data-framer-name\":\"Success\",\"data-highlight\":true,onTap:onTap1hm077k}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a62kwb\",\"data-styles-preset\":\"xpSqZSMU3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dde9c6a7-04a2-4dc7-b624-1604bf4e563c, rgb(11, 92, 135)))\"},children:\"Sign Up\"})}),className:\"framer-18ucaq6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nTL8QnKRY\",style:{\"--extracted-r6o4lv\":\"var(--token-dde9c6a7-04a2-4dc7-b624-1604bf4e563c, rgb(11, 92, 135))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{dc610YmBW:{\"--extracted-r6o4lv\":\"var(--token-f48f5626-a793-4e98-905c-39050cef5721, rgb(255, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dc610YmBW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a62kwb\",\"data-styles-preset\":\"xpSqZSMU3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f48f5626-a793-4e98-905c-39050cef5721, rgb(255, 0, 0)))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lqvklq\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"Eu68_OwIo\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qrk3p3\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"gHAqtcJQ4\",style:{background:'conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, var(--token-e8b439c2-0ce7-4c6c-bdb1-285e859949ae, rgb(33, 144, 204)) /* {\"name\":\"Accent: Default\"} */ 342deg)',mask:\"none\",WebkitMask:\"none\"},variants:{o9OwL9ioz:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bjzuu\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"iExe5NKCo\",style:{backgroundColor:\"var(--token-e8b439c2-0ce7-4c6c-bdb1-285e859949ae, rgb(33, 144, 204))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q4lw1k\",layoutDependency:layoutDependency,layoutId:\"YWN1VXAT4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j4t5rj\",layoutDependency:layoutDependency,layoutId:\"jHWRRQlR2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x029v0\",\"data-styles-preset\":\"fLOlqafDa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fee0132b-da74-4c22-b126-c82ea7417957, rgb(8, 28, 21)))\"},children:\"You\u2019ve successfully signed up to our waitlist. We\u2019ll notify you as soon as applications for our Venture Program reopen.\"})}),className:\"framer-167c0s9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HWiK6Bzka\",style:{\"--extracted-r6o4lv\":\"var(--token-fee0132b-da74-4c22-b126-c82ea7417957, rgb(8, 28, 21))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13u0tg4\",layoutDependency:layoutDependency,layoutId:\"y8Zp5Xz5a\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ts3swy\",layoutDependency:layoutDependency,layoutId:\"v7F4YQ9Pp\",style:{backgroundColor:\"var(--token-7407674a-e013-4ff3-bf36-2d0a1a55d197, rgb(45, 106, 79))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"4px 8px 10px 0px rgba(0,0,0,0.25)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ivopl-container\",layoutDependency:layoutDependency,layoutId:\"eXMUcjd2K-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"eXMUcjd2K\",layoutId:\"eXMUcjd2K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-li9E2.framer-ckov87, .framer-li9E2 .framer-ckov87 { display: block; }\",\".framer-li9E2.framer-16d90ww { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 240px; }\",\".framer-li9E2 .framer-18ucaq6 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-li9E2 .framer-1lqvklq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-li9E2 .framer-1qrk3p3 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-li9E2 .framer-1bjzuu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-li9E2 .framer-1q4lw1k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-li9E2 .framer-1j4t5rj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-li9E2 .framer-167c0s9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-li9E2 .framer-13u0tg4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-li9E2 .framer-1ts3swy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50px; z-index: 3; }\",\".framer-li9E2 .framer-9ivopl-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-li9E2.framer-16d90ww, .framer-li9E2 .framer-1q4lw1k, .framer-li9E2 .framer-1j4t5rj, .framer-li9E2 .framer-13u0tg4, .framer-li9E2 .framer-1ts3swy { gap: 0px; } .framer-li9E2.framer-16d90ww > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-li9E2.framer-16d90ww > :first-child, .framer-li9E2 .framer-1q4lw1k > :first-child, .framer-li9E2 .framer-13u0tg4 > :first-child, .framer-li9E2 .framer-1ts3swy > :first-child { margin-left: 0px; } .framer-li9E2.framer-16d90ww > :last-child, .framer-li9E2 .framer-1q4lw1k > :last-child, .framer-li9E2 .framer-13u0tg4 > :last-child, .framer-li9E2 .framer-1ts3swy > :last-child { margin-right: 0px; } .framer-li9E2 .framer-1q4lw1k > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-li9E2 .framer-1j4t5rj > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-li9E2 .framer-1j4t5rj > :first-child { margin-top: 0px; } .framer-li9E2 .framer-1j4t5rj > :last-child { margin-bottom: 0px; } .framer-li9E2 .framer-13u0tg4 > *, .framer-li9E2 .framer-1ts3swy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-li9E2.framer-v-1cmm8dm.framer-16d90ww, .framer-li9E2.framer-v-1d2j1r8.framer-16d90ww { cursor: unset; }\",\".framer-li9E2.framer-v-1cmm8dm .framer-1qrk3p3 { overflow: hidden; }\",\".framer-li9E2.framer-v-exojbp.framer-16d90ww { align-content: flex-end; align-items: flex-end; height: min-content; width: 334px; }\",\".framer-li9E2.framer-v-exojbp .framer-1j4t5rj { order: 1; }\",\".framer-li9E2.framer-v-exojbp .framer-13u0tg4 { order: 0; }\",\".framer-li9E2.framer-v-15yqa76.framer-16d90ww { cursor: unset; height: 60px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"o9OwL9ioz\":{\"layout\":[\"fixed\",\"fixed\"]},\"Lpx4eM7J2\":{\"layout\":[\"fixed\",\"fixed\"]},\"t02Lg4iIv\":{\"layout\":[\"fixed\",\"auto\"]},\"dc610YmBW\":{\"layout\":[\"fixed\",\"fixed\"]},\"cybbl5J4O\":{\"layout\":[\"fixed\",\"fixed\"]},\"dFBvsLlWy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerADNX38ReG=withCSS(Component,css,\"framer-li9E2\");export default FramerADNX38ReG;FramerADNX38ReG.displayName=\"Button\";FramerADNX38ReG.defaultProps={height:60,width:240};addPropertyControls(FramerADNX38ReG,{variant:{options:[\"EiMt454Yh\",\"o9OwL9ioz\",\"Lpx4eM7J2\",\"t02Lg4iIv\",\"dc610YmBW\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerADNX38ReG,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerADNX38ReG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o9OwL9ioz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Lpx4eM7J2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t02Lg4iIv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dc610YmBW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cybbl5J4O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dFBvsLlWy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"60\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ADNX38ReG.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hVd1gT3QuNnUWpjyZGwW/9iXtKZ7G6e0MBaYF27a7/fLOlqafDa.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Y9kIzZ081G709axpPakK/JTD8hnvF76IyCYpbTCOK/xpSqZSMU3.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const enabledGestures={XYnpQcdOl:{hover:true,pressed:true}};const cycleOrder=[\"XYnpQcdOl\",\"ZM5wpVKEL\",\"k9Eg9bsKB\",\"xwAjLvhpX\",\"EVdXw_6AP\"];const serializationHash=\"framer-w3UAB\";const variantClassNames={EVdXw_6AP:\"framer-v-6y3zc7\",k9Eg9bsKB:\"framer-v-1ekll3\",xwAjLvhpX:\"framer-v-oxysql\",XYnpQcdOl:\"framer-v-a7r85j\",ZM5wpVKEL:\"framer-v-1y2hs2s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"XYnpQcdOl\",Disabled:\"k9Eg9bsKB\",Error:\"EVdXw_6AP\",Loading:\"ZM5wpVKEL\",Success:\"xwAjLvhpX\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XYnpQcdOl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XYnpQcdOl\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ZM5wpVKEL\",\"xwAjLvhpX\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"xwAjLvhpX\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"ZM5wpVKEL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a7r85j\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"XYnpQcdOl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,opacity:1,...style},variants:{\"XYnpQcdOl-hover\":{backgroundColor:\"var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233))\"},k9Eg9bsKB:{opacity:.5}},...addPropertyOverrides({\"XYnpQcdOl-hover\":{\"data-framer-name\":undefined},\"XYnpQcdOl-pressed\":{\"data-framer-name\":undefined},EVdXw_6AP:{\"data-framer-name\":\"Error\"},k9Eg9bsKB:{\"data-framer-name\":\"Disabled\"},xwAjLvhpX:{\"data-framer-name\":\"Success\"},ZM5wpVKEL:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a62kwb\",\"data-styles-preset\":\"xpSqZSMU3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dde9c6a7-04a2-4dc7-b624-1604bf4e563c, rgb(11, 92, 135)))\"},children:\"Submit\"})}),className:\"framer-1upkiw4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"geW9Baz3p\",style:{\"--extracted-r6o4lv\":\"var(--token-dde9c6a7-04a2-4dc7-b624-1604bf4e563c, rgb(11, 92, 135))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{EVdXw_6AP:{\"--extracted-r6o4lv\":\"var(--token-f48f5626-a793-4e98-905c-39050cef5721, rgb(255, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EVdXw_6AP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a62kwb\",\"data-styles-preset\":\"xpSqZSMU3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f48f5626-a793-4e98-905c-39050cef5721, rgb(255, 0, 0)))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14qzcp8\",layoutDependency:layoutDependency,layoutId:\"cx2odL8hC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ybxb3\",layoutDependency:layoutDependency,layoutId:\"o0HJ9mQM0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x029v0\",\"data-styles-preset\":\"fLOlqafDa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fee0132b-da74-4c22-b126-c82ea7417957, rgb(8, 28, 21)))\"},children:\"Thank you for your message! We will get back to you shortly.\"})}),className:\"framer-5pxwdp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wl2ww0ssv\",style:{\"--extracted-r6o4lv\":\"var(--token-fee0132b-da74-4c22-b126-c82ea7417957, rgb(8, 28, 21))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzkub4\",layoutDependency:layoutDependency,layoutId:\"KuhUoo9UR\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wgliqj\",layoutDependency:layoutDependency,layoutId:\"AL0V1DUwT\",style:{backgroundColor:\"var(--token-7407674a-e013-4ff3-bf36-2d0a1a55d197, rgb(45, 106, 79))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"4px 8px 10px 0px rgba(0,0,0,0.25)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12pntue-container\",layoutDependency:layoutDependency,layoutId:\"Qpdg3stR5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"Qpdg3stR5\",layoutId:\"Qpdg3stR5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3j8nsd\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"qNIAdXw0n\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10x2qk6\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"VsO7gRcq0\",style:{background:'conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, var(--token-e8b439c2-0ce7-4c6c-bdb1-285e859949ae, rgb(33, 144, 204)) /* {\"name\":\"Accent: Default\"} */ 342deg)',mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13zgbt\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"OeE1t8K_Y\",style:{backgroundColor:\"var(--token-e8b439c2-0ce7-4c6c-bdb1-285e859949ae, rgb(33, 144, 204))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w3UAB.framer-ko5fy2, .framer-w3UAB .framer-ko5fy2 { display: block; }\",\".framer-w3UAB.framer-a7r85j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 240px; }\",\".framer-w3UAB .framer-1upkiw4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-w3UAB .framer-14qzcp8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-w3UAB .framer-16ybxb3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w3UAB .framer-5pxwdp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w3UAB .framer-1nzkub4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-w3UAB .framer-1wgliqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50px; z-index: 3; }\",\".framer-w3UAB .framer-12pntue-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-w3UAB .framer-3j8nsd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-w3UAB .framer-10x2qk6 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-w3UAB .framer-13zgbt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w3UAB.framer-a7r85j, .framer-w3UAB .framer-14qzcp8, .framer-w3UAB .framer-16ybxb3, .framer-w3UAB .framer-1nzkub4, .framer-w3UAB .framer-1wgliqj { gap: 0px; } .framer-w3UAB.framer-a7r85j > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-w3UAB.framer-a7r85j > :first-child, .framer-w3UAB .framer-14qzcp8 > :first-child, .framer-w3UAB .framer-1nzkub4 > :first-child, .framer-w3UAB .framer-1wgliqj > :first-child { margin-left: 0px; } .framer-w3UAB.framer-a7r85j > :last-child, .framer-w3UAB .framer-14qzcp8 > :last-child, .framer-w3UAB .framer-1nzkub4 > :last-child, .framer-w3UAB .framer-1wgliqj > :last-child { margin-right: 0px; } .framer-w3UAB .framer-14qzcp8 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-w3UAB .framer-16ybxb3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-w3UAB .framer-16ybxb3 > :first-child { margin-top: 0px; } .framer-w3UAB .framer-16ybxb3 > :last-child { margin-bottom: 0px; } .framer-w3UAB .framer-1nzkub4 > *, .framer-w3UAB .framer-1wgliqj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-w3UAB.framer-v-1y2hs2s.framer-a7r85j, .framer-w3UAB.framer-v-1ekll3.framer-a7r85j, .framer-w3UAB.framer-v-6y3zc7.framer-a7r85j { cursor: unset; }\",\".framer-w3UAB.framer-v-oxysql.framer-a7r85j { cursor: unset; height: min-content; width: 320px; }\",\".framer-w3UAB.framer-v-oxysql .framer-16ybxb3 { order: 1; }\",\".framer-w3UAB.framer-v-oxysql .framer-1nzkub4 { order: 0; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZM5wpVKEL\":{\"layout\":[\"fixed\",\"fixed\"]},\"k9Eg9bsKB\":{\"layout\":[\"fixed\",\"fixed\"]},\"xwAjLvhpX\":{\"layout\":[\"fixed\",\"auto\"]},\"EVdXw_6AP\":{\"layout\":[\"fixed\",\"fixed\"]},\"omInG3CGN\":{\"layout\":[\"fixed\",\"fixed\"]},\"WgUVAgrSu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG1vVpTv74=withCSS(Component,css,\"framer-w3UAB\");export default FramerG1vVpTv74;FramerG1vVpTv74.displayName=\"BTN: Contact Form\";FramerG1vVpTv74.defaultProps={height:60,width:240};addPropertyControls(FramerG1vVpTv74,{variant:{options:[\"XYnpQcdOl\",\"ZM5wpVKEL\",\"k9Eg9bsKB\",\"xwAjLvhpX\",\"EVdXw_6AP\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerG1vVpTv74,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG1vVpTv74\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZM5wpVKEL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k9Eg9bsKB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xwAjLvhpX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EVdXw_6AP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"omInG3CGN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WgUVAgrSu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"60\",\"framerIntrinsicWidth\":\"240\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G1vVpTv74.map", "// Generated by Framer (1b7c4bf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hVd1gT3QuNnUWpjyZGwW/9iXtKZ7G6e0MBaYF27a7/fLOlqafDa.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GfwB1b62RVh2Hd6RBj95/u16Z5KGxkJjqIsZZGxvP/QjNuHaOaF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3vD5ApPtndrpJAf8G8ES/0q6syqS6H7IlBw31agL8/SatB2B_pH.js\";import Button from\"https://framerusercontent.com/modules/WIXrScXEs35NbmUH1suq/ycojQIQ99r1iXWiyy9Gu/ADNX38ReG.js\";import BTNContactForm from\"https://framerusercontent.com/modules/nnN1cX26DFBiFayRcB2t/mRDtNEXNzL1Bqb8jk9pl/G1vVpTv74.js\";const EmbedFonts=getFonts(Embed);const BTNContactFormFonts=getFonts(BTNContactForm);const ButtonFonts=getFonts(Button);const cycleOrder=[\"Hs6jLE8y3\",\"F9RlZuEuu\",\"fDIjAnsbo\"];const serializationHash=\"framer-Ozt7J\";const variantClassNames={F9RlZuEuu:\"framer-v-1nrosun\",fDIjAnsbo:\"framer-v-11ktnyd\",Hs6jLE8y3:\"framer-v-vkhxqn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Contact Us\":\"F9RlZuEuu\",\"Variant 3\":\"fDIjAnsbo\",VP:\"Hs6jLE8y3\"};const getProps=({gapHorizontal,gapVertical,height,id,padding,width,...props})=>{return{...props,AzGyoJBlo:gapVertical??props.AzGyoJBlo??30,j5O8YBrRB:gapHorizontal??props.j5O8YBrRB??20,MB5MaWFcm:padding??props.MB5MaWFcm??\"30px 30px 30px 30px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Hs6jLE8y3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,MB5MaWFcm,j5O8YBrRB,AzGyoJBlo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Hs6jLE8y3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"fDIjAnsbo\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"F9RlZuEuu\")return true;return false;};const isDisplayed2=()=>{if([\"F9RlZuEuu\",\"fDIjAnsbo\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vkhxqn\",className,classNames),\"data-framer-name\":\"VP\",layoutDependency:layoutDependency,layoutId:\"Hs6jLE8y3\",ref:ref??ref1,style:{\"--xwfi6h\":numberToPixelString(MB5MaWFcm),background:'linear-gradient(24deg, var(--token-dde9c6a7-04a2-4dc7-b624-1604bf4e563c, rgb(11, 92, 135)) /* {\"name\":\"Dark Blue\"} */ 0%, var(--token-e8b439c2-0ce7-4c6c-bdb1-285e859949ae, rgb(33, 144, 204)) /* {\"name\":\"Accent: Default\"} */ 100%)',borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45,boxShadow:\"4px 8px 10px 0px rgba(0,0,0,0.25)\",...style},...addPropertyOverrides({F9RlZuEuu:{\"data-framer-name\":\"Contact Us\"},fDIjAnsbo:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9olto7\",layoutDependency:layoutDependency,layoutId:\"WSjCT2HkF\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hohsrh\",layoutDependency:layoutDependency,layoutId:\"uXNg6BxAv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-u8rgl9\",\"data-styles-preset\":\"QjNuHaOaF\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1qn201a, var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250)))\"},children:\"Join the waitlist for\"}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-g1tnir, var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250)))\"},children:\"our \"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"brnvaH1L1\"},nodeId:\"mbS1XNZiM\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-25csu8\",\"data-styles-preset\":\"SatB2B_pH\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-bcrg9p, var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250)))\"},children:\"Venture Program\"})})})]})}),className:\"framer-16mrozp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mbS1XNZiM\",style:{\"--extracted-1qn201a\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--extracted-bcrg9p\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--extracted-g1tnir\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\"},variants:{F9RlZuEuu:{\"--extracted-1of0zx5\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\"},fDIjAnsbo:{\"--extracted-1of0zx5\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F9RlZuEuu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-u8rgl9\",\"data-styles-preset\":\"QjNuHaOaF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250)))\"},children:\"Contact Us\"})})},fDIjAnsbo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-u8rgl9\",\"data-styles-preset\":\"QjNuHaOaF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250)))\"},children:\"Contact Us\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x029v0\",\"data-styles-preset\":\"fLOlqafDa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233)))\"},children:\"Sign up to be notified when applications for our Venture Program open.\"})}),className:\"framer-1surwd0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W8wP29Mi0\",style:{\"--extracted-r6o4lv\":\"var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F9RlZuEuu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x029v0\",\"data-styles-preset\":\"fLOlqafDa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233)))\"},children:\"Whether you have questions, want to collaborate, or are interested in supporting our mission, reach out to us.\"})})},fDIjAnsbo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x029v0\",\"data-styles-preset\":\"fLOlqafDa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1913f7cb-afb8-4b27-9a48-b91aa5a896a6, rgb(231, 234, 233)))\"},children:\"Whether you have questions, want to collaborate, or are interested in supporting our mission, reach out to us.\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11g28j6-container\",layoutDependency:layoutDependency,layoutId:\"ynbxHasCg-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"ynbxHasCg\",layoutId:\"ynbxHasCg\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://noteforms.com/forms/applications-2025-qyaqjl\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/45c23bea-4dc5-4f7d-81b5-79fcf191e427/submit\",className:\"framer-1btwmuc\",\"data-framer-name\":\"Contact Form\",layoutDependency:layoutDependency,layoutId:\"kvK58oNS2\",style:{\"--eyx7yn\":AzGyoJBlo},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uttr0d\",layoutDependency:layoutDependency,layoutId:\"I0_slYHBa\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({F9RlZuEuu:{width:`calc(${componentViewport?.width||\"100vw\"} - ${MB5MaWFcm*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e7vxr1-container\",layoutDependency:layoutDependency,layoutId:\"Gm3JQWKOl-container\",children:/*#__PURE__*/_jsx(BTNContactForm,{height:\"100%\",id:\"Gm3JQWKOl\",layoutId:\"Gm3JQWKOl\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"ZM5wpVKEL\",success:\"xwAjLvhpX\"},\"XYnpQcdOl\"),width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ba3ac9\",layoutDependency:layoutDependency,layoutId:\"HdiAkw6sm\",style:{\"--2widyg\":j5O8YBrRB},children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-hneyi4\",layoutDependency:layoutDependency,layoutId:\"etxVgpTmT\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tocsxa\",layoutDependency:layoutDependency,layoutId:\"hIwjVWI59\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1fci79y\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"vXTf6HtRt\",placeholder:\"Your Name\",required:true,style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"text\"})})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1drru6a\",layoutDependency:layoutDependency,layoutId:\"rPWIPdRgI\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kuggyt\",layoutDependency:layoutDependency,layoutId:\"Ld775aezI\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-6wth76\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"lecAle9bx\",placeholder:\"Your Email\",required:true,style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"email\"})})})]}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-pmavsp\",layoutDependency:layoutDependency,layoutId:\"gSvozfCZ7\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-10yzc40\",inputName:\"Message\",layoutDependency:layoutDependency,layoutId:\"ILcJswCP4\",placeholder:\"Your Message\",required:false,style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"30px\",\"--framer-input-border-radius-bottom-right\":\"30px\",\"--framer-input-border-radius-top-left\":\"30px\",\"--framer-input-border-radius-top-right\":\"30px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"textarea\"})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1v3u2mn\",layoutDependency:layoutDependency,layoutId:\"ET9pcWBEH\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1eupxc2\",inputName:\"Company\",layoutDependency:layoutDependency,layoutId:\"ZUPikMPKc\",placeholder:\"Your Company\",style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"text\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/e2db1001-88c4-43f1-b087-55d814d48a3c/submit\",className:\"framer-1r7t4vr\",\"data-framer-name\":\"VP Form\",layoutDependency:layoutDependency,layoutId:\"l4uKokw5o\",style:{\"--eyx7yn\":AzGyoJBlo},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17zlqnu\",layoutDependency:layoutDependency,layoutId:\"IvjPAIW15\",children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-1t6fyrh\",layoutDependency:layoutDependency,layoutId:\"q6bDo0b4H\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-189hq2d\",layoutDependency:layoutDependency,layoutId:\"do1f6F59O\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-mtpftz\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"sR8MI3_ON\",placeholder:\"Your Name\",required:true,style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"text\"})})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-13pt82g\",layoutDependency:layoutDependency,layoutId:\"qsPjRQvZd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zgnjen\",layoutDependency:layoutDependency,layoutId:\"ZseyCK2lA\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1m05n1q\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"jkQswo2kc\",placeholder:\"Your Email\",required:true,style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"email\"})})})]}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1m9wvsg\",layoutDependency:layoutDependency,layoutId:\"pNbz1T2fo\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1pr1hgt\",inputName:\"Company\",layoutDependency:layoutDependency,layoutId:\"icKhwEplm\",placeholder:\"Your Company\",style:{\"--framer-input-background\":\"rgb(11, 92, 135)\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-font-color\":\"var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-48c80f14-3339-482c-a2b9-6dcfca00cf0e, rgb(184, 199, 192))\"},type:\"text\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iwi78y\",layoutDependency:layoutDependency,layoutId:\"v4C4W6Ooc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(${componentViewport?.width||\"100vw\"} - ${MB5MaWFcm*2}px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lu6c7q-container\",layoutDependency:layoutDependency,layoutId:\"dJwQN_1KI-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"dJwQN_1KI\",layoutId:\"dJwQN_1KI\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"dc610YmBW\",pending:\"o9OwL9ioz\",success:\"t02Lg4iIv\"},\"EiMt454Yh\"),width:\"100%\"})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ozt7J.framer-1czkm0v, .framer-Ozt7J .framer-1czkm0v { display: block; }\",\".framer-Ozt7J.framer-vkhxqn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: var(--xwfi6h); position: relative; width: 600px; }\",\".framer-Ozt7J .framer-9olto7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-hohsrh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ozt7J .framer-16mrozp, .framer-Ozt7J .framer-1surwd0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ozt7J .framer-11g28j6-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-1btwmuc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--eyx7yn)) * 1px); height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-1uttr0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-1e7vxr1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Ozt7J .framer-1ba3ac9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: calc(max(0, var(--2widyg)) * 1px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-hneyi4, .framer-Ozt7J .framer-1drru6a, .framer-Ozt7J .framer-1t6fyrh, .framer-Ozt7J .framer-13pt82g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Ozt7J .framer-tocsxa, .framer-Ozt7J .framer-1kuggyt, .framer-Ozt7J .framer-189hq2d, .framer-Ozt7J .framer-zgnjen { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-Ozt7J .framer-1fci79y, .framer-Ozt7J .framer-6wth76, .framer-Ozt7J .framer-1eupxc2, .framer-Ozt7J .framer-mtpftz, .framer-Ozt7J .framer-1m05n1q, .framer-Ozt7J .framer-1pr1hgt { --framer-input-focused-border-color: var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, #fafafa); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 500; --framer-input-padding: 20px 24px 20px 24px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-Ozt7J .framer-pmavsp, .framer-Ozt7J .framer-1v3u2mn, .framer-Ozt7J .framer-1m9wvsg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-Ozt7J .framer-10yzc40 { --framer-input-focused-border-color: var(--token-e4c88851-a8f0-4837-9729-de78d518a6ae, #fafafa); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 500; --framer-input-padding: 20px 24px 20px 24px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-Ozt7J .framer-1r7t4vr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--eyx7yn)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-17zlqnu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-iwi78y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ozt7J .framer-lu6c7q-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ozt7J.framer-vkhxqn, .framer-Ozt7J .framer-9olto7, .framer-Ozt7J .framer-hohsrh, .framer-Ozt7J .framer-1btwmuc, .framer-Ozt7J .framer-1uttr0d, .framer-Ozt7J .framer-1ba3ac9, .framer-Ozt7J .framer-hneyi4, .framer-Ozt7J .framer-tocsxa, .framer-Ozt7J .framer-1drru6a, .framer-Ozt7J .framer-1kuggyt, .framer-Ozt7J .framer-pmavsp, .framer-Ozt7J .framer-1v3u2mn, .framer-Ozt7J .framer-1r7t4vr, .framer-Ozt7J .framer-17zlqnu, .framer-Ozt7J .framer-1t6fyrh, .framer-Ozt7J .framer-189hq2d, .framer-Ozt7J .framer-13pt82g, .framer-Ozt7J .framer-zgnjen, .framer-Ozt7J .framer-1m9wvsg, .framer-Ozt7J .framer-iwi78y { gap: 0px; } .framer-Ozt7J.framer-vkhxqn > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-Ozt7J.framer-vkhxqn > :first-child, .framer-Ozt7J .framer-hohsrh > :first-child, .framer-Ozt7J .framer-1btwmuc > :first-child, .framer-Ozt7J .framer-hneyi4 > :first-child, .framer-Ozt7J .framer-tocsxa > :first-child, .framer-Ozt7J .framer-1drru6a > :first-child, .framer-Ozt7J .framer-1kuggyt > :first-child, .framer-Ozt7J .framer-pmavsp > :first-child, .framer-Ozt7J .framer-1v3u2mn > :first-child, .framer-Ozt7J .framer-1r7t4vr > :first-child, .framer-Ozt7J .framer-1t6fyrh > :first-child, .framer-Ozt7J .framer-189hq2d > :first-child, .framer-Ozt7J .framer-13pt82g > :first-child, .framer-Ozt7J .framer-zgnjen > :first-child, .framer-Ozt7J .framer-1m9wvsg > :first-child, .framer-Ozt7J .framer-iwi78y > :first-child { margin-top: 0px; } .framer-Ozt7J.framer-vkhxqn > :last-child, .framer-Ozt7J .framer-hohsrh > :last-child, .framer-Ozt7J .framer-1btwmuc > :last-child, .framer-Ozt7J .framer-hneyi4 > :last-child, .framer-Ozt7J .framer-tocsxa > :last-child, .framer-Ozt7J .framer-1drru6a > :last-child, .framer-Ozt7J .framer-1kuggyt > :last-child, .framer-Ozt7J .framer-pmavsp > :last-child, .framer-Ozt7J .framer-1v3u2mn > :last-child, .framer-Ozt7J .framer-1r7t4vr > :last-child, .framer-Ozt7J .framer-1t6fyrh > :last-child, .framer-Ozt7J .framer-189hq2d > :last-child, .framer-Ozt7J .framer-13pt82g > :last-child, .framer-Ozt7J .framer-zgnjen > :last-child, .framer-Ozt7J .framer-1m9wvsg > :last-child, .framer-Ozt7J .framer-iwi78y > :last-child { margin-bottom: 0px; } .framer-Ozt7J .framer-9olto7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ozt7J .framer-9olto7 > :first-child, .framer-Ozt7J .framer-1uttr0d > :first-child, .framer-Ozt7J .framer-1ba3ac9 > :first-child, .framer-Ozt7J .framer-17zlqnu > :first-child { margin-left: 0px; } .framer-Ozt7J .framer-9olto7 > :last-child, .framer-Ozt7J .framer-1uttr0d > :last-child, .framer-Ozt7J .framer-1ba3ac9 > :last-child, .framer-Ozt7J .framer-17zlqnu > :last-child { margin-right: 0px; } .framer-Ozt7J .framer-hohsrh > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Ozt7J .framer-1btwmuc > *, .framer-Ozt7J .framer-1r7t4vr > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--eyx7yn)) * 1px) / 2); margin-top: calc(calc(max(0, var(--eyx7yn)) * 1px) / 2); } .framer-Ozt7J .framer-1uttr0d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Ozt7J .framer-1ba3ac9 > * { margin: 0px; margin-left: calc(calc(max(0, var(--2widyg)) * 1px) / 2); margin-right: calc(calc(max(0, var(--2widyg)) * 1px) / 2); } .framer-Ozt7J .framer-hneyi4 > *, .framer-Ozt7J .framer-tocsxa > *, .framer-Ozt7J .framer-1drru6a > *, .framer-Ozt7J .framer-1kuggyt > *, .framer-Ozt7J .framer-pmavsp > *, .framer-Ozt7J .framer-1v3u2mn > *, .framer-Ozt7J .framer-1t6fyrh > *, .framer-Ozt7J .framer-189hq2d > *, .framer-Ozt7J .framer-13pt82g > *, .framer-Ozt7J .framer-zgnjen > *, .framer-Ozt7J .framer-1m9wvsg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ozt7J .framer-17zlqnu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Ozt7J .framer-iwi78y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Ozt7J.framer-v-1nrosun .framer-1uttr0d { flex-direction: column; order: 3; }\",\".framer-Ozt7J.framer-v-1nrosun .framer-1e7vxr1-container { flex: none; width: 100%; }\",\".framer-Ozt7J.framer-v-1nrosun .framer-1ba3ac9 { order: 0; }\",\".framer-Ozt7J.framer-v-1nrosun .framer-pmavsp { order: 2; }\",\".framer-Ozt7J.framer-v-1nrosun .framer-1v3u2mn { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ozt7J.framer-v-1nrosun .framer-1uttr0d { gap: 0px; } .framer-Ozt7J.framer-v-1nrosun .framer-1uttr0d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ozt7J.framer-v-1nrosun .framer-1uttr0d > :first-child { margin-top: 0px; } .framer-Ozt7J.framer-v-1nrosun .framer-1uttr0d > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 505\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"F9RlZuEuu\":{\"layout\":[\"fixed\",\"auto\"]},\"fDIjAnsbo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MB5MaWFcm\":\"padding\",\"j5O8YBrRB\":\"gapHorizontal\",\"AzGyoJBlo\":\"gapVertical\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHKDcCCho6=withCSS(Component,css,\"framer-Ozt7J\");export default FramerHKDcCCho6;FramerHKDcCCho6.displayName=\"Forms\";FramerHKDcCCho6.defaultProps={height:505,width:600};addPropertyControls(FramerHKDcCCho6,{variant:{options:[\"Hs6jLE8y3\",\"F9RlZuEuu\",\"fDIjAnsbo\"],optionTitles:[\"VP\",\"Contact Us\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},MB5MaWFcm:{defaultValue:\"30px 30px 30px 30px\",title:\"Padding\",type:ControlType.Padding},j5O8YBrRB:{defaultValue:20,min:0,title:\"Gap: Horizontal\",type:ControlType.Number},AzGyoJBlo:{defaultValue:30,min:0,title:\"Gap: Vertical\",type:ControlType.Number}});addFonts(FramerHKDcCCho6,[{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:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...EmbedFonts,...BTNContactFormFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHKDcCCho6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerVariables\":\"{\\\"MB5MaWFcm\\\":\\\"padding\\\",\\\"j5O8YBrRB\\\":\\\"gapHorizontal\\\",\\\"AzGyoJBlo\\\":\\\"gapVertical\\\"}\",\"framerIntrinsicHeight\":\"505\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F9RlZuEuu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fDIjAnsbo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HKDcCCho6.map", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Forms from\"#framer/local/canvasComponent/HKDcCCho6/HKDcCCho6.js\";import FooterDark from\"#framer/local/canvasComponent/J_A8Hxz2S/J_A8Hxz2S.js\";import NAV from\"#framer/local/canvasComponent/Qrma4kTj5/Qrma4kTj5.js\";import metadataProvider from\"#framer/local/webPageMetadata/LfYbSifpF/LfYbSifpF.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const FormsFonts=getFonts(Forms);const NAVFonts=getFonts(NAV);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={atilgWQQQ:\"(min-width: 1200px)\",SDbIWFZp9:\"(min-width: 810px) and (max-width: 1199px)\",yJEd3Bkpr:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sKHFg\";const variantClassNames={atilgWQQQ:\"framer-v-1ck7omq\",SDbIWFZp9:\"framer-v-1qx9vg7\",yJEd3Bkpr:\"framer-v-1wqb0v9\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"atilgWQQQ\",Phone:\"yJEd3Bkpr\",Tablet:\"SDbIWFZp9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"atilgWQQQ\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"atilgWQQQ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ck7omq\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j8n4kj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UaJR0SlQZ\",scopeId:\"LfYbSifpF\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"UaJR0SlQZ\",intensity:6,layoutId:\"UaJR0SlQZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200),pixelHeight:2e3,pixelWidth:3e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qgkywwJmD3X1FhfshzIxBNys1Y.png\",srcSet:\"https://framerusercontent.com/images/qgkywwJmD3X1FhfshzIxBNys1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/qgkywwJmD3X1FhfshzIxBNys1Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qgkywwJmD3X1FhfshzIxBNys1Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qgkywwJmD3X1FhfshzIxBNys1Y.png 3000w\"},className:\"framer-195amt8\",\"data-framer-name\":\"contact\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9gx9ju\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yJEd3Bkpr:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+200+0+0+160+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:505,width:\"574px\",y:(componentViewport?.y||0)+0+200+0+0+160+137.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c6a7ag-container\",nodeId:\"T2knC9UyB\",scopeId:\"LfYbSifpF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yJEd3Bkpr:{AzGyoJBlo:20,MB5MaWFcm:\"20px\"}},children:/*#__PURE__*/_jsx(Forms,{AzGyoJBlo:30,height:\"100%\",id:\"T2knC9UyB\",j5O8YBrRB:20,layoutId:\"T2knC9UyB\",MB5MaWFcm:\"30px 30px 30px 30px\",style:{width:\"100%\"},variant:\"F9RlZuEuu\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l27k01-container\",\"data-framer-name\":\"Navigattion Desktop\",name:\"Navigattion Desktop\",nodeId:\"rdO_Ul6BR\",scopeId:\"LfYbSifpF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SDbIWFZp9:{variant:\"aer6NpPjm\"},yJEd3Bkpr:{variant:\"aer6NpPjm\"}},children:/*#__PURE__*/_jsx(NAV,{height:\"100%\",id:\"rdO_Ul6BR\",layoutId:\"rdO_Ul6BR\",name:\"Navigattion Desktop\",style:{width:\"100%\"},variant:\"ds7I13L6B\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yJEd3Bkpr:{y:(componentViewport?.y||0)+0+925}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:860,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3aitzk-container\",nodeId:\"bjEfUdMDX\",scopeId:\"LfYbSifpF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yJEd3Bkpr:{variant:\"NHw23S2ot\"}},children:/*#__PURE__*/_jsx(FooterDark,{flbtAu6eI:true,height:\"100%\",id:\"bjEfUdMDX\",layoutId:\"bjEfUdMDX\",style:{width:\"100%\"},variant:\"tr41zC0ic\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sKHFg.framer-19apnxg, .framer-sKHFg .framer-19apnxg { display: block; }\",\".framer-sKHFg.framer-1ck7omq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sKHFg .framer-j8n4kj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sKHFg .framer-195amt8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sKHFg .framer-9gx9ju { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: rgba(0, 0, 0, 0.5); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: center; overflow: hidden; padding: 160px 0px 60px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-sKHFg .framer-c6a7ag-container { flex: none; height: auto; position: relative; width: 574px; z-index: 10; }\",\".framer-sKHFg .framer-1l27k01-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-sKHFg .framer-3aitzk-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sKHFg.framer-1ck7omq, .framer-sKHFg .framer-195amt8, .framer-sKHFg .framer-9gx9ju { gap: 0px; } .framer-sKHFg.framer-1ck7omq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sKHFg.framer-1ck7omq > :first-child, .framer-sKHFg .framer-195amt8 > :first-child, .framer-sKHFg .framer-9gx9ju > :first-child { margin-top: 0px; } .framer-sKHFg.framer-1ck7omq > :last-child, .framer-sKHFg .framer-195amt8 > :last-child, .framer-sKHFg .framer-9gx9ju > :last-child { margin-bottom: 0px; } .framer-sKHFg .framer-195amt8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sKHFg .framer-9gx9ju > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sKHFg.framer-1ck7omq { width: 810px; }}\",\"@media (max-width: 809px) { .framer-sKHFg.framer-1ck7omq { justify-content: center; width: 390px; } .framer-sKHFg .framer-195amt8 { gap: 60px; height: min-content; } .framer-sKHFg .framer-9gx9ju { flex: none; height: min-content; order: 0; } .framer-sKHFg .framer-c6a7ag-container { width: 90%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sKHFg .framer-195amt8 { gap: 0px; } .framer-sKHFg .framer-195amt8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sKHFg .framer-195amt8 > :first-child { margin-top: 0px; } .framer-sKHFg .framer-195amt8 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1661\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SDbIWFZp9\":{\"layout\":[\"fixed\",\"auto\"]},\"yJEd3Bkpr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerLfYbSifpF=withCSS(Component,css,\"framer-sKHFg\");export default FramerLfYbSifpF;FramerLfYbSifpF.displayName=\"Contact\";FramerLfYbSifpF.defaultProps={height:1661,width:1200};addFonts(FramerLfYbSifpF,[{explicitInter:true,fonts:[]},...SmoothScrollFonts,...FormsFonts,...NAVFonts,...FooterDarkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLfYbSifpF\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1661\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SDbIWFZp9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yJEd3Bkpr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1hm077k", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerADNX38ReG", "withCSS", "ADNX38ReG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerG1vVpTv74", "withCSS", "G1vVpTv74_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "EmbedFonts", "getFonts", "Embed", "BTNContactFormFonts", "G1vVpTv74_default", "ButtonFonts", "ADNX38ReG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "formVariants", "form", "currentVariant", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gapHorizontal", "gapVertical", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MB5MaWFcm", "j5O8YBrRB", "AzGyoJBlo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Link", "ComponentViewportProvider", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FramerHKDcCCho6", "withCSS", "HKDcCCho6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "FormsFonts", "HKDcCCho6_default", "NAVFonts", "Qrma4kTj5_default", "FooterDarkFonts", "J_A8Hxz2S_default", "breakpoints", "serializationHash", "variantClassNames", "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", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "HKDcCCho6_default", "Qrma4kTj5_default", "J_A8Hxz2S_default", "css", "FramerLfYbSifpF", "withCSS", "LfYbSifpF_default", "addFonts", "SmoothScrollFonts", "FormsFonts", "NAVFonts", "FooterDarkFonts", "__FramerMetadata__"]
}
