{"version":3,"file":"jPa4g6quLj-z4haztVgh3SeWlRwK1AL-awrM12IjkQI.B4js2GNJ.mjs","names":["Footer3","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js","https:/framerusercontent.com/modules/l39keTa2XrBlDZ4UVdUb/DU6RQGTZgLJ5GwLDMIM9/r_pdAGybm.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’t 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’t 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’t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading…\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map","// Generated by Framer (eca4804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Footer3 from\"#framer/local/canvasComponent/SYhBEqt6m/SYhBEqt6m.js\";import*as sharedStyle from\"#framer/local/css/PXtFXgkp9/PXtFXgkp9.js\";import metadataProvider from\"#framer/local/webPageMetadata/r_pdAGybm/r_pdAGybm.js\";const EmbedFonts=getFonts(Embed);const Footer3Fonts=getFonts(Footer3);const breakpoints={HCubvFqyg:\"(max-width: 809px)\",kNm2iQh3x:\"(min-width: 810px) and (max-width: 1199px)\",lbXGLcmJR:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GO4UE\";const variantClassNames={HCubvFqyg:\"framer-v-zobrb9\",kNm2iQh3x:\"framer-v-4idzas\",lbXGLcmJR:\"framer-v-it65ta\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"lbXGLcmJR\",Phone:\"HCubvFqyg\",Tablet:\"kNm2iQh3x\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lbXGLcmJR\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Pj5Q12lV6\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kNm2iQh3x\")return true;return false;};const elementId1=useRouteElementId(\"ZXrcDqP4x\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"lbXGLcmJR\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e9dc2654-f2e0-4be6-8bef-a93e9281c8cd, rgb(238, 238, 238)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-it65ta\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"nav\",{className:\"framer-1w0fdfm\",\"data-border\":true,\"data-framer-name\":\"Nav bar\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwpbse\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpaixe\",\"data-framer-name\":\"Name\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-haxt3n\",\"data-framer-name\":\"Icon and Logo\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NFyKq4jGo\"},motionChild:true,nodeId:\"KdJdKaALq\",openInNewTab:false,scopeId:\"r_pdAGybm\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13m4jzf framer-124xwap\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19jv4gy\",\"data-framer-name\":\"Blueprint-symbol\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 13.2 13.945 C 13.2 13.533 13.533 13.2 13.945 13.2 L 18.6 13.2 C 21.582 13.2 24 15.618 24 18.6 C 24 21.582 21.582 24 18.6 24 L 13.945 24 C 13.533 24 13.2 23.667 13.2 23.255 Z M 0 0.8 C 0 0.358 0.358 0 0.8 0 L 10 0 C 10.442 0 10.8 0.358 10.8 0.8 L 10.8 23.2 C 10.8 23.642 10.442 24 10 24 L 0.8 24 C 0.358 24 0 23.642 0 23.2 Z M 13.2 0.745 C 13.2 0.333 13.533 0 13.945 0 L 18.6 0 C 21.582 0 24 2.418 24 5.4 C 24 8.382 21.582 10.8 18.6 10.8 L 13.945 10.8 C 13.533 10.8 13.2 10.467 13.2 10.055 Z\" fill=\"var(--token-3d4418b3-85d3-4d82-bbf1-71769a189b52, rgb(51, 51, 51))\"></path></svg>',svgContentId:11649920314,withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hrv58i\",\"data-framer-name\":\"Avatar Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-3d4418b3-85d3-4d82-bbf1-71769a189b52, rgb(51, 51, 51))\"},children:\"Blueprint for Notion\"})}),className:\"framer-1qjph61\",\"data-framer-name\":\"The Numbers\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q6wxvx\",\"data-framer-name\":\"Links\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e5oqm0\",\"data-framer-name\":\"Buttons\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ik8axb\",\"data-framer-name\":\"Hero section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3cgw9y\",\"data-framer-name\":\"Hero content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cgij0y\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-72e8df52-57a2-46b1-82a3-f1511a4cdd86, rgb(16, 16, 16))\"},children:\"Make the Blueprint even better for all of us\"})}),className:\"framer-2bquqn\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yop0tr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5j7ne-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qtSdPhaCP\",scopeId:\"r_pdAGybm\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe data-tally-src=\"https://tally.so/embed/mYdKYW?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1\" loading=\"lazy\" width=\"100%\" height=\"671\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" title=\"help with your feedback\"></iframe><script>var d=document,w=\"https://tally.so/widgets/embed.js\",v=function(){\"undefined\"!=typeof Tally?Tally.loadEmbeds():d.querySelectorAll(\"iframe[data-tally-src]:not([src])\").forEach((function(e){e.src=e.dataset.tallySrc}))};if(\"undefined\"!=typeof Tally)v();else if(d.querySelector(\\'script[src=\"\\'+w+\\'\"]\\')==null){var s=d.createElement(\"script\");s.src=w,s.onload=v,s.onerror=v,d.body.appendChild(s);}</script>',id:\"qtSdPhaCP\",layoutId:\"qtSdPhaCP\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k1qwu7\"})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCubvFqyg:{y:(componentViewport?.y||0)+0+697.6},kNm2iQh3x:{y:(componentViewport?.y||0)+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+721.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17q5oy2-container\",\"data-framer-name\":\"Footer Main\",name:\"Footer Main\",nodeId:\"zJz90FaLY\",scopeId:\"r_pdAGybm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HCubvFqyg:{variant:\"JTx2DqYzZ\"},kNm2iQh3x:{variant:\"MKESxeUXy\"}},children:/*#__PURE__*/_jsx(Footer3,{height:\"100%\",id:\"zJz90FaLY\",layoutId:\"zJz90FaLY\",name:\"Footer Main\",style:{width:\"100%\"},variant:\"v_J3Zx3p9\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-136okou hidden-it65ta hidden-zobrb9\",\"data-framer-name\":\"form\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-47qx9d\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d6150n\",\"data-framer-name\":\"Content Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p8t8cj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cDRu2fiW9\",scopeId:\"r_pdAGybm\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe data-tally-src=\"https://tally.so/embed/mYdKYW?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1\" loading=\"lazy\" width=\"100%\" height=\"671\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" title=\"help with your feedback\"></iframe><script>var d=document,w=\"https://tally.so/widgets/embed.js\",v=function(){\"undefined\"!=typeof Tally?Tally.loadEmbeds():d.querySelectorAll(\"iframe[data-tally-src]:not([src])\").forEach((function(e){e.src=e.dataset.tallySrc}))};if(\"undefined\"!=typeof Tally)v();else if(d.querySelector(\\'script[src=\"\\'+w+\\'\"]\\')==null){var s=d.createElement(\"script\");s.src=w,s.onload=v,s.onerror=v,d.body.appendChild(s);}</script>',id:\"cDRu2fiW9\",layoutId:\"cDRu2fiW9\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zj36f1\",\"data-framer-name\":\"credits\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-deuqdm\",\"data-styles-preset\":\"PXtFXgkp9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-26498c8b-c4fb-4730-97f9-954f47be2e0e, rgb(0, 0, 0))\"},children:\"\\xa9 Blueprint for Notion — build any Notion system in seconds\"})}),className:\"framer-1bt0iz\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GO4UE.framer-124xwap, .framer-GO4UE .framer-124xwap { display: block; }\",\".framer-GO4UE.framer-it65ta { align-content: center; align-items: center; background-color: var(--token-e9dc2654-f2e0-4be6-8bef-a93e9281c8cd, #eeeeee); 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-GO4UE .framer-1w0fdfm { --border-bottom-width: 1px; --border-color: var(--token-7c5d26df-1c9a-4058-8ed5-af468ac8da93, #bbbbbb); --border-left-width: 0px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 0px; align-content: center; align-items: center; background-color: #eeeeee; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: center; overflow: visible; padding: 20px 30px 20px 30px; position: sticky; width: 100%; z-index: 10; }\",\".framer-GO4UE .framer-xwpbse { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GO4UE .framer-cpaixe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GO4UE .framer-haxt3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GO4UE .framer-13m4jzf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-GO4UE .framer-19jv4gy { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-GO4UE .framer-1hrv58i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GO4UE .framer-1qjph61, .framer-GO4UE .framer-1bt0iz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GO4UE .framer-q6wxvx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GO4UE .framer-e5oqm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; min-height: 44px; min-width: 175px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GO4UE .framer-ik8axb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-GO4UE .framer-3cgw9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-GO4UE .framer-1cgij0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 640px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GO4UE .framer-2bquqn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GO4UE .framer-1yop0tr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GO4UE .framer-1y5j7ne-container { flex: none; height: auto; position: relative; width: 600px; }\",\".framer-GO4UE .framer-k1qwu7 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; min-height: 25px; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-GO4UE .framer-17q5oy2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GO4UE .framer-136okou { align-content: center; align-items: center; background-color: var(--token-21189984-019c-489a-a408-3346a0078305, #f4f4f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: hidden; padding: 64px 80px 20px 80px; position: relative; width: 100%; }\",\".framer-GO4UE .framer-47qx9d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GO4UE .framer-1d6150n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 832px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GO4UE .framer-1p8t8cj-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-GO4UE .framer-zj36f1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GO4UE.framer-it65ta, .framer-GO4UE .framer-1w0fdfm, .framer-GO4UE .framer-xwpbse, .framer-GO4UE .framer-cpaixe, .framer-GO4UE .framer-haxt3n, .framer-GO4UE .framer-13m4jzf, .framer-GO4UE .framer-1hrv58i, .framer-GO4UE .framer-q6wxvx, .framer-GO4UE .framer-e5oqm0, .framer-GO4UE .framer-ik8axb, .framer-GO4UE .framer-3cgw9y, .framer-GO4UE .framer-1cgij0y, .framer-GO4UE .framer-1yop0tr, .framer-GO4UE .framer-k1qwu7, .framer-GO4UE .framer-136okou, .framer-GO4UE .framer-47qx9d, .framer-GO4UE .framer-1d6150n, .framer-GO4UE .framer-zj36f1 { gap: 0px; } .framer-GO4UE.framer-it65ta > *, .framer-GO4UE .framer-1hrv58i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GO4UE.framer-it65ta > :first-child, .framer-GO4UE .framer-1hrv58i > :first-child, .framer-GO4UE .framer-ik8axb > :first-child, .framer-GO4UE .framer-3cgw9y > :first-child, .framer-GO4UE .framer-1cgij0y > :first-child, .framer-GO4UE .framer-1yop0tr > :first-child, .framer-GO4UE .framer-k1qwu7 > :first-child, .framer-GO4UE .framer-136okou > :first-child, .framer-GO4UE .framer-47qx9d > :first-child, .framer-GO4UE .framer-1d6150n > :first-child { margin-top: 0px; } .framer-GO4UE.framer-it65ta > :last-child, .framer-GO4UE .framer-1hrv58i > :last-child, .framer-GO4UE .framer-ik8axb > :last-child, .framer-GO4UE .framer-3cgw9y > :last-child, .framer-GO4UE .framer-1cgij0y > :last-child, .framer-GO4UE .framer-1yop0tr > :last-child, .framer-GO4UE .framer-k1qwu7 > :last-child, .framer-GO4UE .framer-136okou > :last-child, .framer-GO4UE .framer-47qx9d > :last-child, .framer-GO4UE .framer-1d6150n > :last-child { margin-bottom: 0px; } .framer-GO4UE .framer-1w0fdfm > *, .framer-GO4UE .framer-cpaixe > *, .framer-GO4UE .framer-haxt3n > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-GO4UE .framer-1w0fdfm > :first-child, .framer-GO4UE .framer-xwpbse > :first-child, .framer-GO4UE .framer-cpaixe > :first-child, .framer-GO4UE .framer-haxt3n > :first-child, .framer-GO4UE .framer-13m4jzf > :first-child, .framer-GO4UE .framer-q6wxvx > :first-child, .framer-GO4UE .framer-e5oqm0 > :first-child, .framer-GO4UE .framer-zj36f1 > :first-child { margin-left: 0px; } .framer-GO4UE .framer-1w0fdfm > :last-child, .framer-GO4UE .framer-xwpbse > :last-child, .framer-GO4UE .framer-cpaixe > :last-child, .framer-GO4UE .framer-haxt3n > :last-child, .framer-GO4UE .framer-13m4jzf > :last-child, .framer-GO4UE .framer-q6wxvx > :last-child, .framer-GO4UE .framer-e5oqm0 > :last-child, .framer-GO4UE .framer-zj36f1 > :last-child { margin-right: 0px; } .framer-GO4UE .framer-xwpbse > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GO4UE .framer-13m4jzf > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-GO4UE .framer-q6wxvx > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-GO4UE .framer-e5oqm0 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-GO4UE .framer-ik8axb > *, .framer-GO4UE .framer-3cgw9y > *, .framer-GO4UE .framer-1d6150n > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-GO4UE .framer-1cgij0y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GO4UE .framer-1yop0tr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-GO4UE .framer-k1qwu7 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-GO4UE .framer-136okou > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GO4UE .framer-47qx9d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GO4UE .framer-zj36f1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,'.framer-GO4UE[data-border=\"true\"]::after, .framer-GO4UE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }','.framer-GO4UE[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-GO4UE [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-GO4UE[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-GO4UE [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-GO4UE[data-hide-scrollbars=\"true\"], .framer-GO4UE [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-GO4UE.framer-it65ta { width: 810px; } .framer-GO4UE .framer-1w0fdfm { order: 0; } .framer-GO4UE .framer-ik8axb { order: 8; padding: 120px 32px 80px 32px; } .framer-GO4UE .framer-1yop0tr { justify-content: center; width: 100%; } .framer-GO4UE .framer-k1qwu7 { align-self: unset; width: 100%; } .framer-GO4UE .framer-17q5oy2-container { order: 3; } .framer-GO4UE .framer-136okou { order: 4; }}\",\"@media (max-width: 809px) { .framer-GO4UE.framer-it65ta { width: 390px; } .framer-GO4UE .framer-1w0fdfm { flex-direction: column; gap: 0px; justify-content: flex-start; overflow: hidden; padding: 0px; } .framer-GO4UE .framer-xwpbse { flex: none; flex-direction: column; width: 100%; } .framer-GO4UE .framer-cpaixe { gap: unset; height: 64px; justify-content: space-between; padding: 0px 0px 0px 20px; width: 100%; z-index: 2; } .framer-GO4UE .framer-haxt3n { order: 0; } .framer-GO4UE .framer-q6wxvx { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; justify-content: flex-start; opacity: 0; padding: 20px 20px 0px 20px; width: 100%; z-index: 2; } .framer-GO4UE .framer-e5oqm0 { flex-direction: column; min-width: unset; order: 0; width: 100%; } .framer-GO4UE .framer-ik8axb { padding: 80px 20px 60px 20px; } .framer-GO4UE .framer-3cgw9y { max-width: 500px; } .framer-GO4UE .framer-1yop0tr { gap: 4px; width: 100%; } .framer-GO4UE .framer-1y5j7ne-container { width: 100%; } .framer-GO4UE .framer-k1qwu7 { align-self: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GO4UE .framer-1w0fdfm, .framer-GO4UE .framer-xwpbse, .framer-GO4UE .framer-cpaixe, .framer-GO4UE .framer-q6wxvx, .framer-GO4UE .framer-e5oqm0, .framer-GO4UE .framer-1yop0tr { gap: 0px; } .framer-GO4UE .framer-1w0fdfm > *, .framer-GO4UE .framer-xwpbse > *, .framer-GO4UE .framer-q6wxvx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GO4UE .framer-1w0fdfm > :first-child, .framer-GO4UE .framer-xwpbse > :first-child, .framer-GO4UE .framer-q6wxvx > :first-child, .framer-GO4UE .framer-e5oqm0 > :first-child, .framer-GO4UE .framer-1yop0tr > :first-child { margin-top: 0px; } .framer-GO4UE .framer-1w0fdfm > :last-child, .framer-GO4UE .framer-xwpbse > :last-child, .framer-GO4UE .framer-q6wxvx > :last-child, .framer-GO4UE .framer-e5oqm0 > :last-child, .framer-GO4UE .framer-1yop0tr > :last-child { margin-bottom: 0px; } .framer-GO4UE .framer-cpaixe > *, .framer-GO4UE .framer-cpaixe > :first-child, .framer-GO4UE .framer-cpaixe > :last-child { margin: 0px; } .framer-GO4UE .framer-e5oqm0 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-GO4UE .framer-1yop0tr > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1584\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kNm2iQh3x\":{\"layout\":[\"fixed\",\"auto\"]},\"HCubvFqyg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Pj5Q12lV6\":{\"pattern\":\":Pj5Q12lV6\",\"name\":\"hero\"},\"ZXrcDqP4x\":{\"pattern\":\":ZXrcDqP4x\",\"name\":\"problems\"}}\n * @framerResponsiveScreen\n */const Framerr_pdAGybm=withCSS(Component,css,\"framer-GO4UE\");export default Framerr_pdAGybm;Framerr_pdAGybm.displayName=\"Thanks\";Framerr_pdAGybm.defaultProps={height:1584,width:1200};addFonts(Framerr_pdAGybm,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...EmbedFonts,...Footer3Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr_pdAGybm\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"Pj5Q12lV6\\\":{\\\"pattern\\\":\\\":Pj5Q12lV6\\\",\\\"name\\\":\\\"hero\\\"},\\\"ZXrcDqP4x\\\":{\\\"pattern\\\":\\\":ZXrcDqP4x\\\",\\\"name\\\":\\\"problems\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"1584\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kNm2iQh3x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HCubvFqyg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}