{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/dPuL10BNsI4zMme6I2nv/4OwDYOK2amtC7IMqBoMt/hZx1WYFb3.js", "ssg:https://framerusercontent.com/modules/kQQ9blrAumeGxouySwvr/40iWgXvN7YgYH6G1HXSP/XX78cUPnx.js", "ssg:https://framerusercontent.com/modules/VU2rG0ozBtUGZEOlBrdV/bzv82KGvvebwc2YBaAnw/g9Z1wLT3X.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 (56d1180)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/A3SZ74M9NRpv59pk00t1/QBdzmZwjhjWs4OAKK9lE/componentPresets.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/c7rgKZ9SrZFeQIGPLPC4/aGjmCN0tTOsOzi4LOlzN/CAkXpQ9fB.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/WASWEaHBeoSY30ZQaiB1/PSO8fYvLPEoxIuuwmoUT/jaXCGvvmd.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/onYemBhgE2rQ1a2Vo8IH/T5pjXMAlhrfRkzDRGkDQ/plUza1m_C.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/pRPMmt9fwyArS9VQp16j/dFanbmbX7VpS2EY5a5g1/ro7OPezbn.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qB3S1TliIzdKrD3PG2Ro/wmr5Cvt1iwDWcYonxzTU/SdKULmdfz.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/sgRRSmasPXLIcRZmxgl7/qcntkboYAh09UkvCStUa/vWETphsMG.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/2zG42rhhGnGF8zsCovlU/ZWYlfjAwndJx5sufFKpj/X993WHhmk.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BjzM9aBwzZlhbyShXtyx/tGShSCzZKShHXDZDYjhT/Y8y_VS9es.js\";const enabledGestures={jNjPFdvT8:{hover:true},pK5LKRXGY:{hover:true}};const cycleOrder=[\"pK5LKRXGY\",\"NcPLfNIpf\",\"jNjPFdvT8\",\"uC75c7TsH\"];const serializationHash=\"framer-cHKG8\";const variantClassNames={jNjPFdvT8:\"framer-v-rscvou\",NcPLfNIpf:\"framer-v-632u6v\",pK5LKRXGY:\"framer-v-aajec6\",uC75c7TsH:\"framer-v-1ndrg5e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"FAQ - Primary Active\":\"NcPLfNIpf\",\"FAQ Primary - Mobile Active\":\"uC75c7TsH\",\"FAQ Primary - Mobile\":\"jNjPFdvT8\",FAQ:\"pK5LKRXGY\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,m8tIEvSe2:(_ref=question!==null&&question!==void 0?question:props.m8tIEvSe2)!==null&&_ref!==void 0?_ref:\"How do I clean and maintain my countertops?\",tLsdLbzKf:(_ref1=answer!==null&&answer!==void 0?answer:props.tLsdLbzKf)!==null&&_ref1!==void 0?_ref1:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. \"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"For more detailed information on caring for granite and quartz countertops, check out this helpful article:\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NO45XEe3l:\"sustainable-architecture-the-future-of-green-building\"},unresolvedPathSlugs:{NO45XEe3l:{collectionId:\"lYk8P4uQM\",collectionItemId:\"RHqkNEdb_\"}},webPageId:\"ZIlSv4K8I\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"How to Clean and Protect your stone countertop\"})})})]}),variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"pK5LKRXGY\"};};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,m8tIEvSe2,tLsdLbzKf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pK5LKRXGY\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapawpp59=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"pK5LKRXGY\");});const onTapoz1x7q=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"uC75c7TsH\");});const onTap14w6zqa=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"jNjPFdvT8\");});const onTap17moa6c=activeVariantCallback(async(...args)=>{setVariant(\"NcPLfNIpf\");});const onTap113shyk=activeVariantCallback(async(...args)=>{setVariant(\"jNjPFdvT8\");});const onTapi2ay9a=activeVariantCallback(async(...args)=>{setVariant(\"uC75c7TsH\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"pK5LKRXGY-hover\",\"jNjPFdvT8-hover\"].includes(gestureVariant))return true;if([\"NcPLfNIpf\",\"uC75c7TsH\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"NcPLfNIpf\",\"uC75c7TsH\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-aajec6\",className,classNames),\"data-framer-name\":\"FAQ\",layoutDependency:layoutDependency,layoutId:\"pK5LKRXGY\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"jNjPFdvT8-hover\":{\"data-framer-name\":undefined},\"pK5LKRXGY-hover\":{\"data-framer-name\":undefined},jNjPFdvT8:{\"data-framer-name\":\"FAQ Primary - Mobile\",\"data-highlight\":true,onTap:onTapoz1x7q},NcPLfNIpf:{\"data-framer-name\":\"FAQ - Primary Active\",\"data-highlight\":true,onTap:onTapawpp59},uC75c7TsH:{\"data-framer-name\":\"FAQ Primary - Mobile Active\",\"data-highlight\":true,onTap:onTap14w6zqa}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ch2j33\",\"data-framer-name\":\"Question Wrapper\",layoutDependency:layoutDependency,layoutId:\"uzz38GMuj\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{NcPLfNIpf:{backgroundColor:\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\"},uC75c7TsH:{backgroundColor:\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18xttq5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"A7XqCRIqT\",onTap:onTap17moa6c,style:{opacity:0,rotate:0},variants:{\"jNjPFdvT8-hover\":{opacity:1},\"pK5LKRXGY-hover\":{opacity:1},NcPLfNIpf:{opacity:1,rotate:90},uC75c7TsH:{opacity:1,rotate:90}},...addPropertyOverrides({uC75c7TsH:{onTap:onTap113shyk}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6r0ht1\",\"data-framer-name\":\"Arrow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IbxnNv37K\",opacity:0,style:{opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 48\"><path d=\"M 39.552 23.11 L 35.166 26.129 L 34.731 26.428 C 28.756 30.523 22.779 34.616 16.8 38.706 C 12.655 41.537 8.51 44.376 4.372 47.207 C 4.303 47.256 4.234 47.297 4.131 47.367 C 3.09 45.551 2.055 43.743 0.993 41.906 C 12.566 35.673 24.124 29.447 35.745 23.193 C 23.869 17.391 12.055 11.617 0.207 5.83 C 1.255 3.986 2.29 2.184 3.331 0.355 C 4.241 0.925 5.138 1.482 6.028 2.045 C 15.372 7.91 24.717 13.781 34.062 19.652 C 34.179 19.729 34.303 19.798 34.421 19.875 L 34.628 20.007 L 37.545 21.843 Z\" fill=\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\"></path></svg>',svgContentId:10414539057,variants:{\"jNjPFdvT8-hover\":{opacity:1},\"pK5LKRXGY-hover\":{opacity:1},NcPLfNIpf:{opacity:1},uC75c7TsH:{opacity:1}},withExternalLayout:true,...addPropertyOverrides({\"jNjPFdvT8-hover\":{opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 31\"><path d=\"M 25.709 14.925 L 22.858 16.875 L 22.575 17.068 C 18.691 19.713 14.806 22.356 10.92 24.998 C 8.226 26.826 5.532 28.659 2.842 30.488 C 2.797 30.519 2.752 30.546 2.685 30.591 C 2.008 29.419 1.336 28.25 0.646 27.064 C 8.168 23.039 15.681 19.018 23.234 14.979 C 15.515 11.232 7.836 7.503 0.134 3.765 C 0.816 2.574 1.488 1.411 2.165 0.229 C 2.757 0.598 3.34 0.957 3.918 1.321 C 9.992 5.108 16.066 8.9 22.14 12.692 C 22.217 12.741 22.297 12.786 22.373 12.836 L 22.508 12.921 L 24.404 14.107 Z\" fill=\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\"></path></svg>',svgContentId:11499910226},\"pK5LKRXGY-hover\":{opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 36\"><path d=\"M 29.664 17.332 L 26.374 19.597 L 26.048 19.821 C 21.567 22.892 17.084 25.962 12.6 29.03 C 9.491 31.153 6.383 33.282 3.279 35.405 C 3.228 35.442 3.176 35.473 3.098 35.525 C 2.317 34.163 1.541 32.807 0.745 31.43 C 9.424 26.755 18.093 22.085 26.809 17.395 C 17.902 13.043 9.041 8.713 0.155 4.372 C 0.941 2.99 1.717 1.638 2.498 0.266 C 3.181 0.694 3.853 1.111 4.521 1.534 C 11.529 5.932 18.538 10.336 25.547 14.739 C 25.634 14.797 25.728 14.849 25.816 14.906 L 25.971 15.005 L 28.159 16.383 Z\" fill=\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\"></path></svg>',svgContentId:11323355562},NcPLfNIpf:{opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 24\"><path d=\"M 19.776 11.555 L 17.583 13.064 L 17.366 13.214 C 14.378 15.261 11.389 17.308 8.4 19.353 C 6.328 20.769 4.255 22.188 2.186 23.603 C 2.152 23.628 2.117 23.649 2.066 23.683 C 1.545 22.776 1.028 21.871 0.497 20.953 C 6.283 17.837 12.062 14.723 17.872 11.597 C 11.934 8.696 6.028 5.809 0.103 2.915 C 0.628 1.993 1.145 1.092 1.666 0.177 C 2.121 0.463 2.569 0.741 3.014 1.023 C 7.686 3.955 12.359 6.89 17.031 9.826 C 17.09 9.864 17.152 9.899 17.21 9.937 L 17.314 10.003 L 18.772 10.922 Z\" fill=\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\"></path></svg>',svgContentId:9904087696},uC75c7TsH:{opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 24\"><path d=\"M 19.776 11.555 L 17.583 13.064 L 17.366 13.214 C 14.378 15.261 11.389 17.308 8.4 19.353 C 6.328 20.769 4.255 22.188 2.186 23.603 C 2.152 23.628 2.117 23.649 2.066 23.683 C 1.545 22.776 1.028 21.871 0.497 20.953 C 6.283 17.837 12.062 14.723 17.872 11.597 C 11.934 8.696 6.028 5.809 0.103 2.915 C 0.628 1.993 1.145 1.092 1.666 0.177 C 2.121 0.463 2.569 0.741 3.014 1.023 C 7.686 3.955 12.359 6.89 17.031 9.826 C 17.09 9.864 17.152 9.899 17.21 9.937 L 17.314 10.003 L 18.772 10.922 Z\" fill=\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\"></path></svg>',svgContentId:9904087696}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1vjfety\",\"data-styles-preset\":\"Y8y_VS9es\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85)))\"},children:\"How do I clean and maintain my countertops?\"})}),className:\"framer-lu8ibj\",\"data-framer-name\":\"Question\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vsPspniPR\",onTap:onTap17moa6c,style:{\"--extracted-a0htzi\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:m8tIEvSe2,variants:{\"jNjPFdvT8-hover\":{\"--extracted-a0htzi\":\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\"},\"pK5LKRXGY-hover\":{\"--extracted-a0htzi\":\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\"},NcPLfNIpf:{\"--extracted-a0htzi\":\"var(--token-65301db5-9b27-4f89-81a3-891249fc7112, rgb(242, 240, 239))\"},uC75c7TsH:{\"--extracted-a0htzi\":\"var(--token-65301db5-9b27-4f89-81a3-891249fc7112, rgb(242, 240, 239))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"jNjPFdvT8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1vjfety\",\"data-styles-preset\":\"Y8y_VS9es\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167)))\"},children:\"How do I clean and maintain my countertops?\"})})},\"pK5LKRXGY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1vjfety\",\"data-styles-preset\":\"Y8y_VS9es\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167)))\"},children:\"How do I clean and maintain my countertops?\"})})},jNjPFdvT8:{onTap:onTapi2ay9a},NcPLfNIpf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1vjfety\",\"data-styles-preset\":\"Y8y_VS9es\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-65301db5-9b27-4f89-81a3-891249fc7112, rgb(242, 240, 239)))\"},children:\"How do I clean and maintain my countertops?\"})})},uC75c7TsH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1vjfety\",\"data-styles-preset\":\"Y8y_VS9es\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-65301db5-9b27-4f89-81a3-891249fc7112, rgb(242, 240, 239)))\"},children:\"How do I clean and maintain my countertops?\"})}),onTap:onTap113shyk}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bgkyzn\",\"data-border\":true,\"data-framer-name\":\"Answer Wrapper\",layoutDependency:layoutDependency,layoutId:\"aHIrPNgTd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"t6LWHtPy0\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:tLsdLbzKf,className:\"framer-10xvtt0\",\"data-framer-name\":\"Answer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H6gMIM3KA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",code:\"framer-styles-preset-4liunp\",h1:\"framer-styles-preset-11076b6\",h2:\"framer-styles-preset-1vjfety\",h3:\"framer-styles-preset-xn0o0g\",h4:\"framer-styles-preset-rh32n1\",h6:\"framer-styles-preset-1xhr2op\",p:\"framer-styles-preset-qhs8bw\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cHKG8.framer-11bfs5d, .framer-cHKG8 .framer-11bfs5d { display: block; }\",\".framer-cHKG8.framer-aajec6 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; min-width: 600px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cHKG8 .framer-ch2j33 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-cHKG8 .framer-18xttq5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cHKG8 .framer-6r0ht1 { flex: none; height: 48px; position: relative; width: 40px; }\",\".framer-cHKG8 .framer-lu8ibj { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cHKG8 .framer-bgkyzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: min-content; }\",\".framer-cHKG8 .framer-10xvtt0 { flex: none; height: auto; position: relative; width: 849px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cHKG8.framer-aajec6, .framer-cHKG8 .framer-ch2j33, .framer-cHKG8 .framer-18xttq5, .framer-cHKG8 .framer-bgkyzn { gap: 0px; } .framer-cHKG8.framer-aajec6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cHKG8.framer-aajec6 > :first-child { margin-top: 0px; } .framer-cHKG8.framer-aajec6 > :last-child { margin-bottom: 0px; } .framer-cHKG8 .framer-ch2j33 > *, .framer-cHKG8 .framer-18xttq5 > *, .framer-cHKG8 .framer-bgkyzn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cHKG8 .framer-ch2j33 > :first-child, .framer-cHKG8 .framer-18xttq5 > :first-child, .framer-cHKG8 .framer-bgkyzn > :first-child { margin-left: 0px; } .framer-cHKG8 .framer-ch2j33 > :last-child, .framer-cHKG8 .framer-18xttq5 > :last-child, .framer-cHKG8 .framer-bgkyzn > :last-child { margin-right: 0px; } }\",\".framer-cHKG8.framer-v-632u6v.framer-aajec6 { width: 700px; }\",\".framer-cHKG8.framer-v-632u6v .framer-ch2j33 { align-self: unset; gap: 24px; padding: 0px 20px 0px 20px; width: 100%; }\",\".framer-cHKG8.framer-v-632u6v .framer-6r0ht1 { height: 24px; width: 20px; }\",\".framer-cHKG8.framer-v-632u6v .framer-bgkyzn { width: 100%; }\",\".framer-cHKG8.framer-v-632u6v .framer-10xvtt0, .framer-cHKG8.framer-v-1ndrg5e .framer-10xvtt0 { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cHKG8.framer-v-632u6v .framer-ch2j33 { gap: 0px; } .framer-cHKG8.framer-v-632u6v .framer-ch2j33 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cHKG8.framer-v-632u6v .framer-ch2j33 > :first-child { margin-left: 0px; } .framer-cHKG8.framer-v-632u6v .framer-ch2j33 > :last-child { margin-right: 0px; } }\",\".framer-cHKG8.framer-v-rscvou.framer-aajec6 { min-width: 300px; }\",\".framer-cHKG8.framer-v-rscvou .framer-lu8ibj, .framer-cHKG8.framer-v-rscvou.hover .framer-18xttq5 { order: 0; }\",\".framer-cHKG8.framer-v-1ndrg5e.framer-aajec6 { min-width: 300px; width: 300px; }\",\".framer-cHKG8.framer-v-1ndrg5e .framer-ch2j33 { align-content: flex-start; align-items: flex-start; align-self: unset; gap: 24px; padding: 0px 20px 0px 20px; width: 300px; }\",\".framer-cHKG8.framer-v-1ndrg5e .framer-18xttq5 { align-content: flex-start; align-items: flex-start; gap: 0px; justify-content: center; padding: 10px 0px 0px 0px; }\",\".framer-cHKG8.framer-v-1ndrg5e .framer-6r0ht1 { height: 24px; order: 0; width: 20px; }\",\".framer-cHKG8.framer-v-1ndrg5e .framer-bgkyzn { width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cHKG8.framer-v-1ndrg5e .framer-ch2j33, .framer-cHKG8.framer-v-1ndrg5e .framer-18xttq5 { gap: 0px; } .framer-cHKG8.framer-v-1ndrg5e .framer-ch2j33 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cHKG8.framer-v-1ndrg5e .framer-ch2j33 > :first-child, .framer-cHKG8.framer-v-1ndrg5e .framer-18xttq5 > :first-child { margin-left: 0px; } .framer-cHKG8.framer-v-1ndrg5e .framer-ch2j33 > :last-child, .framer-cHKG8.framer-v-1ndrg5e .framer-18xttq5 > :last-child { margin-right: 0px; } .framer-cHKG8.framer-v-1ndrg5e .framer-18xttq5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-cHKG8.framer-v-aajec6.hover .framer-6r0ht1 { height: 36px; width: 30px; }\",\".framer-cHKG8.framer-v-rscvou.hover .framer-ch2j33 { align-content: flex-start; align-items: flex-start; }\",\".framer-cHKG8.framer-v-rscvou.hover .framer-6r0ht1 { height: 31px; width: 26px; }\",\".framer-cHKG8.framer-v-rscvou.hover .framer-lu8ibj { order: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-cHKG8[data-border=\"true\"]::after, .framer-cHKG8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 118\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"600px\",\"1440px\",null,null]},\"NcPLfNIpf\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"600px\",\"1440px\",null,null]},\"jNjPFdvT8\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"1440px\",null,null]},\"uC75c7TsH\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"300px\",\"1440px\",null,null]},\"kDiXd6pc9\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"600px\",\"1440px\",null,null]},\"X4W87WA_g\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"1440px\",null,null]}}}\n * @framerVariables {\"m8tIEvSe2\":\"question\",\"tLsdLbzKf\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhZx1WYFb3=withCSS(Component,css,\"framer-cHKG8\");export default FramerhZx1WYFb3;FramerhZx1WYFb3.displayName=\"FAQ\";FramerhZx1WYFb3.defaultProps={height:118,width:600};addPropertyControls(FramerhZx1WYFb3,{variant:{options:[\"pK5LKRXGY\",\"NcPLfNIpf\",\"jNjPFdvT8\",\"uC75c7TsH\"],optionTitles:[\"FAQ\",\"FAQ - Primary Active\",\"FAQ Primary - Mobile\",\"FAQ Primary - Mobile Active\"],title:\"Variant\",type:ControlType.Enum},m8tIEvSe2:{defaultValue:\"How do I clean and maintain my countertops?\",description:\"Write a Frequently Asked Question\",displayTextArea:false,placeholder:\"\",title:\"Question\",type:ControlType.String},tLsdLbzKf:{defaultValue:'<p>For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. </p><p><strong>For more detailed information on caring for granite and quartz countertops, check out this helpful article:</strong></p><p><a data-framer-link=\"Link:{&quot;webPageId&quot;:&quot;ZIlSv4K8I&quot;,&quot;pathVariables&quot;:{&quot;NO45XEe3l&quot;:{&quot;identifier&quot;:&quot;local-module:collection/lYk8P4uQM:default&quot;,&quot;collectionItemId&quot;:&quot;RHqkNEdb_&quot;,&quot;key&quot;:&quot;NO45XEe3l&quot;,&quot;value&quot;:&quot;sustainable-architecture-the-future-of-green-building&quot;}},&quot;type&quot;:&quot;webPage&quot;}\">How to Clean and Protect your stone countertop</a></p>',description:\"Write an answer for a Frequently Asked Question\",title:\"Answer\",type:ControlType.RichText}});addFonts(FramerhZx1WYFb3,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"t6LWHtPy0\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"t6LWHtPy0\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhZx1WYFb3\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"118\",\"framerVariables\":\"{\\\"m8tIEvSe2\\\":\\\"question\\\",\\\"tLsdLbzKf\\\":\\\"answer\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"600px\\\",\\\"1440px\\\",null,null]},\\\"NcPLfNIpf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"600px\\\",\\\"1440px\\\",null,null]},\\\"jNjPFdvT8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"1440px\\\",null,null]},\\\"uC75c7TsH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"1440px\\\",null,null]},\\\"kDiXd6pc9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"600px\\\",\\\"1440px\\\",null,null]},\\\"X4W87WA_g\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"1440px\\\",null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hZx1WYFb3.map", "// Generated by Framer (aba0f78)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={DJVIlNzLx:{hover:true,pressed:true}};const cycleOrder=[\"DJVIlNzLx\",\"c294EopcZ\",\"prXtHGJMC\",\"vkgd2ybXJ\",\"TaRoMY9V5\"];const serializationHash=\"framer-qU3a3\";const variantClassNames={c294EopcZ:\"framer-v-1rfyvwd\",DJVIlNzLx:\"framer-v-1gikdof\",prXtHGJMC:\"framer-v-1pn4gxy\",TaRoMY9V5:\"framer-v-jjt1jw\",vkgd2ybXJ:\"framer-v-9wv7a3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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:\"DJVIlNzLx\",Disabled:\"prXtHGJMC\",Error:\"TaRoMY9V5\",Loading:\"c294EopcZ\",Success:\"vkgd2ybXJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"DJVIlNzLx\"};};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:\"DJVIlNzLx\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"c294EopcZ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"c294EopcZ\")return true;return false;};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.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gikdof\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"DJVIlNzLx\",ref:ref??ref1,style:{backgroundColor:\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"DJVIlNzLx-hover\":{backgroundColor:\"var(--token-9373627a-1d17-498a-86bf-feaf713bab7d, rgb(89, 142, 167))\",opacity:1},\"DJVIlNzLx-pressed\":{opacity:1},prXtHGJMC:{opacity:.5},TaRoMY9V5:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},vkgd2ybXJ:{opacity:1}},...addPropertyOverrides({\"DJVIlNzLx-hover\":{\"data-framer-name\":undefined},\"DJVIlNzLx-pressed\":{\"data-framer-name\":undefined},c294EopcZ:{\"data-framer-name\":\"Loading\"},prXtHGJMC:{\"data-framer-name\":\"Disabled\"},TaRoMY9V5:{\"data-framer-name\":\"Error\"},vkgd2ybXJ:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-11pz09l\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Zu8BoCDgJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{TaRoMY9V5:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TaRoMY9V5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})},vkgd2ybXJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1txpp5n\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"veVTLGJSu\",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-uelugd\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"zFg56fJfF\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{c294EopcZ:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",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-2dmrgy\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"yhXBEK1QA\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qU3a3.framer-zq7qk4, .framer-qU3a3 .framer-zq7qk4 { display: block; }\",\".framer-qU3a3.framer-1gikdof { 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: 0px; position: relative; width: 240px; }\",\".framer-qU3a3 .framer-11pz09l { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-qU3a3 .framer-1txpp5n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-qU3a3 .framer-uelugd { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-qU3a3 .framer-2dmrgy { 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-qU3a3.framer-1gikdof { gap: 0px; } .framer-qU3a3.framer-1gikdof > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-qU3a3.framer-1gikdof > :first-child { margin-left: 0px; } .framer-qU3a3.framer-1gikdof > :last-child { margin-right: 0px; } }\",\".framer-qU3a3.framer-v-1rfyvwd.framer-1gikdof, .framer-qU3a3.framer-v-1pn4gxy.framer-1gikdof, .framer-qU3a3.framer-v-9wv7a3.framer-1gikdof, .framer-qU3a3.framer-v-jjt1jw.framer-1gikdof { cursor: unset; }\",\".framer-qU3a3.framer-v-1rfyvwd .framer-uelugd { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"c294EopcZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"prXtHGJMC\":{\"layout\":[\"fixed\",\"fixed\"]},\"vkgd2ybXJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"TaRoMY9V5\":{\"layout\":[\"fixed\",\"fixed\"]},\"mt8GkeAOH\":{\"layout\":[\"fixed\",\"fixed\"]},\"M8i2S8OZC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXX78cUPnx=withCSS(Component,css,\"framer-qU3a3\");export default FramerXX78cUPnx;FramerXX78cUPnx.displayName=\"Button 2\";FramerXX78cUPnx.defaultProps={height:40,width:240};addPropertyControls(FramerXX78cUPnx,{variant:{options:[\"DJVIlNzLx\",\"c294EopcZ\",\"prXtHGJMC\",\"vkgd2ybXJ\",\"TaRoMY9V5\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXX78cUPnx,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXX78cUPnx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c294EopcZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"prXtHGJMC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vkgd2ybXJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TaRoMY9V5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mt8GkeAOH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M8i2S8OZC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XX78cUPnx.map", "// Generated by Framer (ce2b6fe)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/G8FZBIufdcxDme09PKPy/SmoothScroll_Prod.js\";import SocialMediaLinkLinkedin from\"#framer/local/canvasComponent/aq5Bk_8he/aq5Bk_8he.js\";import LoadingAnimations from\"#framer/local/canvasComponent/BYJUhJKQW/BYJUhJKQW.js\";import Cursor from\"#framer/local/canvasComponent/DLzb02IAq/DLzb02IAq.js\";import NavbarMenuMobile from\"#framer/local/canvasComponent/e3YCpmeOF/e3YCpmeOF.js\";import ButtonButton from\"#framer/local/canvasComponent/H33V13AOG/H33V13AOG.js\";import FAQ from\"#framer/local/canvasComponent/hZx1WYFb3/hZx1WYFb3.js\";import SocialMediaLinkFacebook from\"#framer/local/canvasComponent/iLKcxMXCN/iLKcxMXCN.js\";import Navbar from\"#framer/local/canvasComponent/jYAXLFRaw/jYAXLFRaw.js\";import Footer from\"#framer/local/canvasComponent/KnZA0__XI/KnZA0__XI.js\";import SocialMediaLinkInstagram from\"#framer/local/canvasComponent/lPPlD48j9/lPPlD48j9.js\";import SocialMediaLinkTwitter from\"#framer/local/canvasComponent/mJxVxGhbl/mJxVxGhbl.js\";import CardStatisticsCard from\"#framer/local/canvasComponent/ohtteefEL/ohtteefEL.js\";import NavbarMenu from\"#framer/local/canvasComponent/QJ8FW7rd_/QJ8FW7rd_.js\";import TabBar from\"#framer/local/canvasComponent/qUh2EYS63/qUh2EYS63.js\";import Button2 from\"#framer/local/canvasComponent/XX78cUPnx/XX78cUPnx.js\";import SocialMediaLinkThreads from\"#framer/local/canvasComponent/z91qwqBjz/z91qwqBjz.js\";import SectionHeading from\"#framer/local/canvasComponent/zzidT1Y9s/zzidT1Y9s.js\";import*as sharedStyle1 from\"#framer/local/css/CAkXpQ9fB/CAkXpQ9fB.js\";import*as sharedStyle from\"#framer/local/css/SdKULmdfz/SdKULmdfz.js\";import metadataProvider from\"#framer/local/webPageMetadata/g9Z1wLT3X/g9Z1wLT3X.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const VideoFonts=getFonts(Video);const Button2Fonts=getFonts(Button2);const EmbedFonts=getFonts(Embed);const SectionHeadingFonts=getFonts(SectionHeading);const CardStatisticsCardFonts=getFonts(CardStatisticsCard);const MotionDivWithFX=withFX(motion.div);const FAQFonts=getFonts(FAQ);const LoadingAnimationsFonts=getFonts(LoadingAnimations);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const NavbarFonts=getFonts(Navbar);const ButtonButtonFonts=getFonts(ButtonButton);const TabBarFonts=getFonts(TabBar);const SocialMediaLinkThreadsFonts=getFonts(SocialMediaLinkThreads);const SocialMediaLinkFacebookFonts=getFonts(SocialMediaLinkFacebook);const SocialMediaLinkLinkedinFonts=getFonts(SocialMediaLinkLinkedin);const SocialMediaLinkTwitterFonts=getFonts(SocialMediaLinkTwitter);const SocialMediaLinkInstagramFonts=getFonts(SocialMediaLinkInstagram);const NavbarMenuMobileFonts=getFonts(NavbarMenuMobile);const NavbarMenuFonts=getFonts(NavbarMenu);const CursorFonts=getFonts(Cursor);const breakpoints={MSszAD9cG:\"(min-width: 810px) and (max-width: 1439px)\",p2JJpjNSR:\"(max-width: 809px)\",zgWn5i8kq:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SSRqR\";const variantClassNames={MSszAD9cG:\"framer-v-2c0cre\",p2JJpjNSR:\"framer-v-1trmoim\",zgWn5i8kq:\"framer-v-1co06u3\"};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 transition1={damping:30,delay:0,mass:.1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-150};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"zgWn5i8kq\",Phone:\"p2JJpjNSR\",Tablet:\"MSszAD9cG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zgWn5i8kq\"};};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:Cursor,offset:{x:20,y:20},placement:\"right\",transition:transition4,variant:\"EDcMcevYU\"};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const WMRuJsfOh3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const T4hjfp0491wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const Yzc_NpQAm1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const TTk_7m0j01wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"ddvimfIju\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Gm2g0ceRU\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"GIxFwTQNS\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"p2JJpjNSR\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"p2JJpjNSR\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"MSszAD9cG\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"MSszAD9cG\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"MSszAD9cG\",\"p2JJpjNSR\"].includes(baseVariant))return false;return true;};useCustomCursors({vmxys4:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zgWn5i8kq\",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-1co06u3\",className),\"data-framer-cursor\":\"vmxys4\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w5cl9k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AKnJmFHVl\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"AKnJmFHVl\",intensity:10,layoutId:\"AKnJmFHVl\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-9azae2\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2230e\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x58n5z-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e3517KI43\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"e3517KI43\",isMixedBorderRadius:false,layoutId:\"e3517KI43\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/7oGTeJdlsfZ1arajgrsDiDIJ24.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m40yfp\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qj4eh3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bymvq3\",\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yfnxry\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/357a0bce-8e02-431a-b89e-fc106ba3b823/submit\",className:\"framer-1eobu6b\",redirectUrl:{webPageId:\"iTVjmIz63\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11076b6\",\"data-styles-preset\":\"SdKULmdfz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\"},children:\"Get In Touch\"})}),className:\"framer-1wnegix\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n7glyo\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1oh9c3k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Name\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Name\"})}),className:\"framer-1ppm50\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-c4v8qw\",inputName:\"Name\",placeholder:\"Full Name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1p24myy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Email\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Email\"})}),className:\"framer-w0v0sh\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1snx9yn\",inputName:\"Email\",placeholder:\"Enter Email\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-r86ira\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Phone Number\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Phone Number\"})}),className:\"framer-4grl1i\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-7lfj7s\",inputName:\"Phone\",placeholder:\"Enter Phone Number\",required:false,type:\"tel\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-s3689z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Message\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Message\"})}),className:\"framer-u1n5ea\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1lo1v0\",inputName:\"Message\",placeholder:\"Message\",required:true,type:\"textarea\"})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+200+0+0+0+76+0+0+99+0+0+20+570},p2JJpjNSR:{height:30,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 100px)`,y:(componentViewport?.y||0)+0+200+150+0+0+0+0+0+0+0+20+58.599999999999994+10+302.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1140px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+200+0+0+200+0+0+0+0+0+20+520,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jwvgfy-container\",nodeId:\"cTsUvx9RO\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"cTsUvx9RO\",layoutId:\"cTsUvx9RO\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{incomplete:\"prXtHGJMC\",pending:\"c294EopcZ\",success:\"vkgd2ybXJ\"},\"DJVIlNzLx\"),width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pshhos\",\"data-framer-name\":\"mAP\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1smuxwg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vw26st-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"m6Hr4DPgp\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5948.1181367379195!2d-80.09773199040326!3d26.467531359554066!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88d8dff6b60d61fb%3A0x1dbee5983bbea9de!2sG%26M%20Design!5e0!3m2!1sen!2sus!4v1726701797786!5m2!1sen!2sus\" style=\"border:0; height: 100%; width: 100%\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>',id:\"m6Hr4DPgp\",layoutId:\"m6Hr4DPgp\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ys0c6i\",\"data-framer-name\":\"Our Approach Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qesnky\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1200+75+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"1320px\",y:(componentViewport?.y||0)+0+1200+150+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11f0qvw-container\",nodeId:\"XzmtsPa6K\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(SectionHeading,{ayt2HkZRx:\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\",height:\"100%\",hgAm_6ifA:ref1,id:\"XzmtsPa6K\",kv7wzrZRd:\"Our Approach\",layoutId:\"XzmtsPa6K\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qhs8bw\",\"data-styles-preset\":\"CAkXpQ9fB\",style:{\"--framer-text-alignment\":\"center\"},children:\"At G&M Design, we focus on delivering beautiful, custom designs that elevate your home and last for years to come.\"})}),className:\"framer-pcooqa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1osnccn\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`max((${componentViewport?.width||\"100vw\"} - 144px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1200+150+330+44+0},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1200+75+330+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:\"344px\",y:(componentViewport?.y||0)+0+1200+150+330+44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tidiju-container\",\"data-framer-name\":\"1\",name:\"1\",nodeId:\"zHxyyoWVA\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(CardStatisticsCard,{AC0Hrcc5I:\"Design & Estimate\",height:\"100%\",id:\"zHxyyoWVA\",layoutId:\"zHxyyoWVA\",lFkv6jp3A:\"Our designer works with you to create a custom design and provide a clear project estimate, ensuring all details are covered upfront.\",name:\"1\",style:{width:\"100%\"},w0AXWsXOg:\"1\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`max((${componentViewport?.width||\"100vw\"} - 144px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1200+150+330+44+0},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1200+75+330+0+447}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:\"344px\",y:(componentViewport?.y||0)+0+1200+150+330+44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ft1r7-container\",\"data-framer-name\":\"2\",name:\"2\",nodeId:\"vL2HfbV3E\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardStatisticsCard,{AC0Hrcc5I:\"Planning\",height:\"100%\",id:\"vL2HfbV3E\",layoutId:\"vL2HfbV3E\",lFkv6jp3A:\"We finalize materials, set timelines, and plan every detail, ensuring smooth and efficient execution.\",name:\"2\",style:{height:\"100%\",width:\"100%\"},w0AXWsXOg:\"2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`max((${componentViewport?.width||\"100vw\"} - 144px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1200+150+330+44+447},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1200+75+330+0+894}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:423,width:\"344px\",y:(componentViewport?.y||0)+0+1200+150+330+44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1az1b0f-container\",\"data-framer-name\":\"3\",name:\"3\",nodeId:\"yl7WPhmzF\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardStatisticsCard,{AC0Hrcc5I:\"Execution\",height:\"100%\",id:\"yl7WPhmzF\",layoutId:\"yl7WPhmzF\",lFkv6jp3A:\"Our expert craftsmen bring the design to life with precision, handling installation to deliver a flawless finished project.\",name:\"3\",style:{height:\"100%\",width:\"100%\"},w0AXWsXOg:\"3\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-oeripq\",\"data-framer-name\":\"FAQ Seciom\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-3akjn1\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+2788+150+0+0+0},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2997+75+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"1320px\",y:(componentViewport?.y||0)+0+2341+150+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dloffx-container\",nodeId:\"M07HFWGBr\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(SectionHeading,{ayt2HkZRx:\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\",height:\"100%\",hgAm_6ifA:ref2,id:\"M07HFWGBr\",kv7wzrZRd:\"Frequently Asked Questions\",layoutId:\"M07HFWGBr\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-1991q33\",\"data-framer-name\":\"FAQ List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:undefined,y:(componentViewport?.y||0)+0+2788+150+162+0+0},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2997+75+162+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"949px\",y:(componentViewport?.y||0)+0+2341+150+162+0+0,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-1iceulh-container\",nodeId:\"lH66tM89U\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{variant:\"jNjPFdvT8\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"lH66tM89U\",layoutId:\"lH66tM89U\",m8tIEvSe2:\"How do I clean and maintain my countertops?\",style:{width:\"100%\"},tLsdLbzKf:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. \",/*#__PURE__*/_jsx(\"strong\",{children:\"For more detailed information on caring for granite and quartz countertops, check out this helpful article: \"}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NO45XEe3l:\"sustainable-architecture-the-future-of-green-building\"},unresolvedPathSlugs:{NO45XEe3l:{collectionId:\"lYk8P4uQM\",collectionItemId:\"RHqkNEdb_\"}},webPageId:\"ZIlSv4K8I\"},motionChild:true,nodeId:\"lH66tM89U\",openInNewTab:false,scopeId:\"g9Z1wLT3X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"How to Clean and Protect your stone countertop\"})})]})}),variant:\"pK5LKRXGY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:undefined,y:(componentViewport?.y||0)+0+2788+150+162+0+158},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2997+75+162+0+158}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"949px\",y:(componentViewport?.y||0)+0+2341+150+162+0+158,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-5ca8wh-container\",nodeId:\"mRo5Y1n68\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{variant:\"jNjPFdvT8\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"mRo5Y1n68\",layoutId:\"mRo5Y1n68\",m8tIEvSe2:\"Do countertops need to be sealed?\",style:{width:\"100%\"},tLsdLbzKf:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. \"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"For more detailed information on caring for granite and quartz countertops, check out this helpful article:\"})}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NO45XEe3l:\"sustainable-architecture-the-future-of-green-building\"},unresolvedPathSlugs:{NO45XEe3l:{collectionId:\"lYk8P4uQM\",collectionItemId:\"RHqkNEdb_\"}},webPageId:\"ZIlSv4K8I\"},motionChild:true,nodeId:\"mRo5Y1n68\",openInNewTab:false,scopeId:\"g9Z1wLT3X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"How to Clean and Protect your stone countertop\"})})})]}),variant:\"pK5LKRXGY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:undefined,y:(componentViewport?.y||0)+0+2788+150+162+0+316},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2997+75+162+0+316}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"949px\",y:(componentViewport?.y||0)+0+2341+150+162+0+316,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-1uwtwv4-container\",nodeId:\"rYDKI_ZsM\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{variant:\"jNjPFdvT8\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"rYDKI_ZsM\",layoutId:\"rYDKI_ZsM\",m8tIEvSe2:\"How long does it take to install custom cabinets and countertops?\",style:{width:\"100%\"},tLsdLbzKf:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. \"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"For more detailed information on caring for granite and quartz countertops, check out this helpful article:\"})}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NO45XEe3l:\"sustainable-architecture-the-future-of-green-building\"},unresolvedPathSlugs:{NO45XEe3l:{collectionId:\"lYk8P4uQM\",collectionItemId:\"RHqkNEdb_\"}},webPageId:\"ZIlSv4K8I\"},motionChild:true,nodeId:\"rYDKI_ZsM\",openInNewTab:false,scopeId:\"g9Z1wLT3X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"How to Clean and Protect your stone countertop\"})})})]}),variant:\"pK5LKRXGY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:undefined,y:(componentViewport?.y||0)+0+2788+150+162+0+474},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2997+75+162+0+474}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"949px\",y:(componentViewport?.y||0)+0+2341+150+162+0+474,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-r5xtm-container\",nodeId:\"fM5MfWRgU\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{variant:\"jNjPFdvT8\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"fM5MfWRgU\",layoutId:\"fM5MfWRgU\",m8tIEvSe2:\"Which countertop material is most heat resistant?\",style:{width:\"100%\"},tLsdLbzKf:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. \"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"For more detailed information on caring for granite and quartz countertops, check out this helpful article:\"})}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NO45XEe3l:\"sustainable-architecture-the-future-of-green-building\"},unresolvedPathSlugs:{NO45XEe3l:{collectionId:\"lYk8P4uQM\",collectionItemId:\"RHqkNEdb_\"}},webPageId:\"ZIlSv4K8I\"},motionChild:true,nodeId:\"fM5MfWRgU\",openInNewTab:false,scopeId:\"g9Z1wLT3X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"How to Clean and Protect your stone countertop\"})})})]}),variant:\"pK5LKRXGY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:undefined,y:(componentViewport?.y||0)+0+2788+150+162+0+632},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2997+75+162+0+632}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"949px\",y:(componentViewport?.y||0)+0+2341+150+162+0+632,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-oqlb2v-container\",nodeId:\"OWLeWyVJU\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{variant:\"jNjPFdvT8\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"OWLeWyVJU\",layoutId:\"OWLeWyVJU\",m8tIEvSe2:\"How do I choose the right cabinet style for my home?\",style:{width:\"100%\"},tLsdLbzKf:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"For granite and quartz, clean with a mild soap and water solution. Avoid acidic cleaners or harsh chemicals, as they can damage the surface. Use coasters and trivets to protect the surface from heat and scratches. \"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"For more detailed information on caring for granite and quartz countertops, check out this helpful article:\"})}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NO45XEe3l:\"sustainable-architecture-the-future-of-green-building\"},unresolvedPathSlugs:{NO45XEe3l:{collectionId:\"lYk8P4uQM\",collectionItemId:\"RHqkNEdb_\"}},webPageId:\"ZIlSv4K8I\"},motionChild:true,nodeId:\"OWLeWyVJU\",openInNewTab:false,scopeId:\"g9Z1wLT3X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"How to Clean and Protect your stone countertop\"})})})]}),variant:\"pK5LKRXGY\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-3lnjo6\",\"data-framer-name\":\"Spaces Spaces\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nqcmxo\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awo6n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+4e3+156+0+0+0+0+0},p2JJpjNSR:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+4059+156+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"1320px\",y:(componentViewport?.y||0)+0+3553+156+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ooy6ze-container\",nodeId:\"gr36E3Pp2\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(SectionHeading,{ayt2HkZRx:\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(46, 72, 85))\",height:\"100%\",hgAm_6ifA:ref3,id:\"gr36E3Pp2\",kv7wzrZRd:\"Crafting Spaces for\",layoutId:\"gr36E3Pp2\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mw35my\",\"data-framer-name\":\"Text Animation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{y:(componentViewport?.y||0)+0+4e3+156+0+0+0+0+112+0+-1},p2JJpjNSR:{y:(componentViewport?.y||0)+0+4059+156+0+0+0+0+112+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+3553+156+0+0+0+0+112+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzy827-container\",\"data-framer-name\":\"Text Loop\",name:\"Text Loop\",nodeId:\"l9OHAku4i\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(LoadingAnimations,{height:\"100%\",id:\"l9OHAku4i\",layoutId:\"l9OHAku4i\",name:\"Text Loop\",oDKY4QagE:\"Restaurant\",sElcOTWDU:\"Offices\",tkf1k_oTP:\"Residential\",variant:\"Yc_unpt4n\",VAzBNaRzQ:\"Showroom\",width:\"100%\",Xn0odSU6q:\"Commercial\"})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7y8aix-container\",\"data-framer-name\":\"Projects\",isAuthoredByUser:true,isModuleExternal:true,name:\"Projects\",nodeId:\"IjcN2i4Xc\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"IjcN2i4Xc\",layoutId:\"IjcN2i4Xc\",name:\"Projects\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"One Great Jones Alley\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,sizes:\"443px\",src:\"https://framerusercontent.com/images/ButBlgdUDF58aqZxIcLi8rvDc4I.jpg\",srcSet:\"https://framerusercontent.com/images/ButBlgdUDF58aqZxIcLi8rvDc4I.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ButBlgdUDF58aqZxIcLi8rvDc4I.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/ButBlgdUDF58aqZxIcLi8rvDc4I.jpg 1920w\"},className:\"framer-1rvkpin\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Scorpia\",fit:\"fill\",pixelHeight:1280,pixelWidth:1920,sizes:\"443px\",src:\"https://framerusercontent.com/images/fwJ6vs4G0ImfROOgYZf35NaCLkA.jpg\",srcSet:\"https://framerusercontent.com/images/fwJ6vs4G0ImfROOgYZf35NaCLkA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fwJ6vs4G0ImfROOgYZf35NaCLkA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fwJ6vs4G0ImfROOgYZf35NaCLkA.jpg 1920w\"},className:\"framer-129sm3b\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"The Meadow House\",fit:\"fill\",pixelHeight:2880,pixelWidth:1920,sizes:\"443px\",src:\"https://framerusercontent.com/images/3B76ulgZ4QMm5kvqFJF2P1pWd6w.jpg\",srcSet:\"https://framerusercontent.com/images/3B76ulgZ4QMm5kvqFJF2P1pWd6w.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/3B76ulgZ4QMm5kvqFJF2P1pWd6w.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/3B76ulgZ4QMm5kvqFJF2P1pWd6w.jpg 1920w\"},className:\"framer-arst8f\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Dovecote\",fit:\"fill\",pixelHeight:2880,pixelWidth:1920,sizes:\"443px\",src:\"https://framerusercontent.com/images/LmFa7gcSxVL0TEiIRdzcOfP1qs.jpg\",srcSet:\"https://framerusercontent.com/images/LmFa7gcSxVL0TEiIRdzcOfP1qs.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/LmFa7gcSxVL0TEiIRdzcOfP1qs.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/LmFa7gcSxVL0TEiIRdzcOfP1qs.jpg 1920w\"},className:\"framer-1acdh9l\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{y:(componentViewport?.y||0)+0+4945},p2JJpjNSR:{y:(componentViewport?.y||0)+0+5004}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:589,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4498,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mq8ebu-container\",nodeId:\"WpZjTZDr3\",scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{variant:\"REHyd30mZ\"},p2JJpjNSR:{variant:\"ymnS4Fh0H\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"WpZjTZDr3\",layoutId:\"WpZjTZDr3\",style:{width:\"100%\"},variant:\"irGr7f32n\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-3an836-container hidden-1co06u3 hidden-2c0cre\",id:\"3an836\",layoutScroll:true,nodeId:\"hJ0Cps3qz\",scopeId:\"g9Z1wLT3X\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{k98s9Mg5i:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"hJ0Cps3qz\",k98s9Mg5i:resolvedLinks[0],layoutId:\"hJ0Cps3qz\",style:{width:\"100%\"},variant:overlay.visible?\"CANJvbszS\":undefined,width:\"100%\",WMRuJsfOh:WMRuJsfOh3bnx0g({overlay})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},className:cx(scopingClassNames,\"framer-ok4j82\"),\"data-framer-portal-id\":\"3an836\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"bLo1GNDtY\"),isDisplayed1()&&/*#__PURE__*/_jsx(motion.header,{animate:animation1,className:`${cx(scopingClassNames,\"framer-1e2htry\")} hidden-1trmoim`,\"data-framer-name\":\"Header\",\"data-framer-portal-id\":\"3an836\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3w41rr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ahxsly\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qo32mf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eyuubn\",\"data-framer-name\":\"$2134\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 45.059 12.409 C 45.513 13.388 45.952 14.332 46.406 15.309 C 46.205 15.4 46.046 15.48 45.881 15.545 C 41.115 17.391 36.348 19.234 31.585 21.087 C 31.358 21.175 31.26 21.13 31.177 20.916 C 31.085 20.685 30.964 20.466 30.833 20.194 C 35.566 17.604 40.285 15.022 45.06 12.408 Z M 47.594 19.519 C 47.723 20.578 47.849 21.592 47.978 22.649 C 47.674 22.678 47.419 22.71 47.161 22.725 C 43.747 22.913 40.332 23.096 36.919 23.283 C 35.592 23.356 34.264 23.423 32.939 23.51 C 32.423 23.545 32.089 23.227 31.756 22.932 C 31.552 22.75 31.664 22.516 31.964 22.459 C 32.935 22.271 33.907 22.098 34.878 21.915 C 38.996 21.135 43.113 20.353 47.231 19.573 C 47.329 19.554 47.429 19.545 47.594 19.523 Z M 47.81 27.056 C 47.624 28.011 47.446 28.924 47.266 29.838 C 47.249 29.924 47.21 30.008 47.172 30.12 C 46.481 29.932 45.806 29.745 45.13 29.567 C 41.243 28.542 37.355 27.523 33.473 26.485 C 33.241 26.423 33.02 26.251 32.842 26.08 C 32.58 25.83 32.377 25.525 31.95 25.538 C 31.709 25.545 31.661 25.355 31.687 25.151 C 31.718 24.912 31.897 24.994 32.03 25.011 C 35.374 25.443 38.718 25.879 42.063 26.311 C 43.763 26.531 45.464 26.743 47.165 26.959 C 47.356 26.984 47.545 27.017 47.81 27.058 Z M 45.712 34.255 C 45.211 35.164 44.727 36.046 44.23 36.952 C 44.115 36.896 44.035 36.866 43.962 36.819 C 40.38 34.527 36.802 32.231 33.217 29.945 C 32.832 29.7 32.5 29.439 32.38 28.968 C 32.299 28.654 32.08 28.447 31.788 28.304 C 31.454 28.139 31.13 27.952 30.779 27.762 L 31.081 27.337 C 35.956 29.642 40.801 31.933 45.712 34.255 Z M 29.697 29.354 C 33.618 33.063 37.523 36.758 41.474 40.494 C 40.732 41.192 40.009 41.876 39.254 42.589 C 38.883 42.143 38.542 41.735 38.204 41.325 C 35.956 38.593 33.715 35.855 31.458 33.131 C 31.151 32.76 30.953 32.382 30.99 31.897 C 31.016 31.565 30.875 31.32 30.637 31.095 C 30.274 30.751 29.936 30.379 29.592 30.016 C 29.28 29.686 29.284 29.667 29.697 29.352 Z M 27.267 31.069 C 27.435 30.995 27.577 30.932 27.75 30.855 C 27.886 31.106 28.015 31.342 28.143 31.579 C 30.537 35.964 32.93 40.35 35.332 44.732 C 35.474 44.99 35.464 45.12 35.18 45.249 C 34.406 45.599 33.644 45.976 32.843 46.358 C 32.749 46.155 32.666 45.997 32.6 45.831 C 31.276 42.5 29.965 39.162 28.617 35.839 C 28.402 35.308 28.321 34.829 28.57 34.317 C 28.677 34.095 28.62 33.912 28.52 33.707 C 28.103 32.846 27.7 31.981 27.266 31.066 Z M 28.435 47.647 C 27.451 47.762 26.508 47.873 25.529 47.988 C 25.504 47.828 25.477 47.709 25.469 47.59 C 25.25 44.077 25.038 40.563 24.814 37.05 C 24.798 36.782 24.83 36.557 25.035 36.372 C 25.399 36.044 25.462 35.653 25.384 35.171 C 25.22 34.172 25.111 33.162 24.993 32.156 C 24.974 31.996 24.829 31.758 25.162 31.703 C 25.473 31.653 25.481 31.873 25.519 32.074 C 26.065 34.995 26.606 37.919 27.155 40.838 C 27.566 43.021 27.987 45.201 28.403 47.382 C 28.415 47.448 28.42 47.513 28.435 47.647 Z M 20.91 47.871 C 19.928 47.677 19.019 47.498 18.1 47.316 C 18.1 47.236 18.09 47.189 18.1 47.149 C 18.904 43.97 19.714 40.793 20.509 37.611 C 20.595 37.265 20.729 36.997 21.068 36.859 C 21.451 36.703 21.61 36.418 21.679 36.005 C 21.9 34.691 22.166 33.385 22.415 32.077 C 22.439 31.956 22.469 31.836 22.501 31.69 C 22.669 31.711 22.811 31.732 22.995 31.757 C 22.301 37.12 21.608 42.467 20.909 47.871 Z M 20.19 30.851 C 20.341 30.924 20.472 30.985 20.643 31.067 C 18.337 35.955 16.038 40.826 13.709 45.761 C 12.865 45.296 12.059 44.851 11.224 44.391 C 11.309 44.231 11.358 44.119 11.423 44.015 C 12.948 41.574 14.48 39.14 15.99 36.689 C 16.237 36.287 16.515 36.022 16.994 36.014 C 17.291 36.01 17.455 35.85 17.591 35.595 C 18.357 34.173 19.137 32.759 19.913 31.342 C 19.999 31.185 20.09 31.03 20.193 30.851 Z M 7.527 41.571 C 6.83 40.825 6.205 40.156 5.491 39.393 C 5.62 39.323 5.72 39.288 5.798 39.223 C 7.812 37.538 9.833 35.862 11.83 34.157 C 12.203 33.837 12.567 33.692 13.028 33.835 C 13.305 33.921 13.485 33.82 13.685 33.63 C 15.095 32.291 16.518 30.966 17.936 29.636 C 18.034 29.544 18.135 29.454 18.229 29.368 C 18.657 29.626 18.665 29.649 18.345 29.99 C 15.952 32.532 13.556 35.07 11.163 37.612 C 10.072 38.772 8.984 39.933 7.898 41.098 C 7.775 41.229 7.675 41.383 7.529 41.571 Z M 16.901 27.294 C 16.996 27.55 17.201 27.739 16.833 27.938 C 13.279 29.868 9.734 31.811 6.185 33.75 C 5.239 34.267 4.293 34.786 3.344 35.301 C 3.207 35.375 3.063 35.435 2.868 35.528 C 2.508 34.735 2.156 33.973 1.826 33.203 C 1.803 33.149 1.927 32.972 2.017 32.934 C 2.925 32.546 3.84 32.174 4.754 31.799 C 6.067 31.262 7.385 30.736 8.692 30.181 C 9.015 30.043 9.3 30.009 9.581 30.221 C 9.948 30.498 10.282 30.427 10.675 30.236 C 12.637 29.285 14.613 28.364 16.583 27.432 C 16.675 27.39 16.767 27.352 16.9 27.294 Z M 0.374 28.464 C 0.248 27.56 0.128 26.686 0 25.759 C 0.359 25.729 0.682 25.697 1.005 25.672 C 2.975 25.521 4.946 25.366 6.918 25.231 C 7.069 25.22 7.286 25.307 7.376 25.424 C 7.728 25.879 8.137 25.986 8.708 25.905 C 11.025 25.582 13.35 25.31 15.672 25.022 C 15.839 25.001 16.008 24.99 16.166 24.975 C 16.34 25.433 16.336 25.445 15.895 25.528 C 11.228 26.403 6.56 27.277 1.894 28.153 C 1.406 28.245 0.919 28.351 0.374 28.462 Z M 0.139 20.901 C 0.308 20.016 0.466 19.184 0.633 18.312 C 1.17 18.433 1.657 18.533 2.138 18.65 C 3.584 19.002 5.026 19.368 6.473 19.711 C 6.78 19.784 6.99 19.906 7.047 20.238 C 7.115 20.625 7.334 20.79 7.747 20.866 C 10.451 21.355 13.15 21.884 15.848 22.403 C 15.978 22.427 16.14 22.453 16.215 22.539 C 16.276 22.612 16.265 22.791 16.22 22.892 C 16.196 22.947 16.027 22.966 15.93 22.954 C 13.901 22.698 11.873 22.436 9.845 22.173 C 6.747 21.772 3.649 21.37 0.551 20.968 C 0.428 20.952 0.307 20.929 0.136 20.9 Z M 17.13 20.174 C 17.05 20.341 16.983 20.481 16.902 20.65 C 12.004 18.33 7.133 16.023 2.236 13.704 C 2.669 12.914 3.075 12.17 3.498 11.396 C 4.008 11.705 4.482 11.989 4.954 12.279 C 5.952 12.89 6.945 13.511 7.95 14.113 C 8.178 14.25 8.318 14.399 8.287 14.675 C 8.23 15.169 8.463 15.442 8.898 15.676 C 11.57 17.113 14.225 18.581 16.887 20.038 C 16.957 20.077 17.025 20.115 17.129 20.174 Z M 6.48 7.483 C 6.836 7.13 7.152 6.806 7.481 6.494 C 7.76 6.229 8.052 5.979 8.362 5.701 C 8.84 6.255 9.3 6.784 9.757 7.318 C 10.238 7.878 10.706 8.451 11.198 9.002 C 11.396 9.223 11.471 9.441 11.356 9.711 C 11.165 10.163 11.329 10.482 11.654 10.824 C 13.908 13.199 16.137 15.598 18.386 17.979 C 18.648 18.255 18.515 18.401 18.251 18.619 C 14.341 14.921 10.432 11.222 6.48 7.484 Z M 12.419 2.864 C 13.144 2.523 13.827 2.194 14.52 1.887 C 14.584 1.858 14.763 1.943 14.794 2.016 C 15.259 3.092 15.719 4.17 16.147 5.261 C 16.201 5.399 16.113 5.655 16.005 5.782 C 15.676 6.169 15.768 6.507 15.967 6.924 C 17.486 10.107 18.982 13.303 20.485 16.495 C 20.678 16.905 20.674 16.907 20.193 17.102 C 17.611 12.373 15.026 7.636 12.42 2.864 Z M 21.979 0 C 22.061 1.052 22.145 2.027 22.203 3.002 C 22.21 3.111 22.081 3.281 21.972 3.335 C 21.492 3.58 21.451 3.956 21.517 4.44 C 21.814 6.641 22.083 8.845 22.362 11.048 C 22.57 12.676 22.778 14.302 22.984 15.929 C 22.995 16.016 22.985 16.105 22.985 16.189 C 22.549 16.305 22.516 16.293 22.441 15.896 C 21.675 11.835 20.913 7.772 20.148 3.71 C 19.957 2.691 19.773 1.672 19.568 0.656 C 19.516 0.398 19.589 0.313 19.84 0.283 C 20.536 0.201 21.229 0.1 21.979 -0.003 Z M 24.948 16.191 C 25.642 10.835 26.333 5.497 27.03 0.112 C 27.837 0.257 28.61 0.397 29.407 0.54 C 29.253 1.265 29.12 1.945 28.951 2.615 C 28.921 2.734 28.751 2.876 28.624 2.899 C 28.07 3.002 27.9 3.323 27.8 3.87 C 27.145 7.478 26.44 11.076 25.751 14.676 C 25.675 15.078 25.601 15.482 25.526 15.885 C 25.445 16.316 25.432 16.324 24.946 16.19 Z M 27.772 17.113 C 27.299 16.919 27.293 16.916 27.468 16.546 C 29.695 11.824 31.924 7.102 34.152 2.381 C 34.166 2.351 34.188 2.325 34.249 2.23 C 34.949 2.604 35.65 2.977 36.359 3.356 C 36.119 3.757 35.921 4.127 35.681 4.469 C 35.609 4.572 35.414 4.659 35.292 4.64 C 34.747 4.554 34.492 4.8 34.237 5.276 C 32.506 8.503 30.736 11.71 28.979 14.924 C 28.582 15.65 28.18 16.375 27.773 17.115 Z M 42.057 8.156 C 41.615 8.671 41.591 8.703 41.096 8.45 C 40.755 8.276 40.564 8.406 40.332 8.625 C 37.702 11.106 35.065 13.581 32.43 16.057 C 31.643 16.797 30.856 17.538 30.068 18.277 C 29.945 18.392 29.813 18.497 29.692 18.602 C 29.299 18.318 29.294 18.292 29.592 17.975 C 33.117 14.232 36.644 10.492 40.162 6.743 C 40.392 6.498 40.535 6.497 40.751 6.743 C 41.176 7.226 41.625 7.691 42.057 8.156 Z\" fill=\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"></path></svg>',svgContentId:11595145190,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIExpZ2h0\",\"--framer-font-family\":'\"Uxum Grotesque Light\", \"Uxum Grotesque Light Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif'},children:\"OAKWOOD\"}),/*#__PURE__*/_jsx(\"br\",{}),\"ARCHITECTS\"]})}),className:\"framer-tote3s\",fonts:[\"CUSTOM;Uxum Grotesque Light\",\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hqxjeg-container\",inComponentSlot:true,nodeId:\"khe0janU1\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"khe0janU1\",layoutId:\"khe0janU1\",style:{height:\"100%\"},T4hjfp049:T4hjfp0491wnntms({overlay}),T6pkQAf15:\"Get Started\",variant:\"COAGoKyJf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xrbroz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1irbneu\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h4qyua-container\",inComponentSlot:true,nodeId:\"Uu47rYZxp\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks1[0],height:\"100%\",id:\"Uu47rYZxp\",layoutId:\"Uu47rYZxp\",variant:\"Z70gjI8XV\",VrDPKNiPK:\"Home\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iI0Y4f2kb\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d79y7r-container\",inComponentSlot:true,nodeId:\"KgtSiV4mL\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks2[0],height:\"100%\",id:\"KgtSiV4mL\",layoutId:\"KgtSiV4mL\",variant:\"Z70gjI8XV\",VrDPKNiPK:\"Projects\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RBNM_NPDw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8nrng6-container\",inComponentSlot:true,nodeId:\"zZrYaWbAj\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks3[0],height:\"100%\",id:\"zZrYaWbAj\",layoutId:\"zZrYaWbAj\",variant:\"Z70gjI8XV\",VrDPKNiPK:\"About\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wpZI9oyvU\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10e26k7-container\",inComponentSlot:true,nodeId:\"ZxGqSJylc\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks4[0],height:\"100%\",id:\"ZxGqSJylc\",layoutId:\"ZxGqSJylc\",variant:\"Z70gjI8XV\",VrDPKNiPK:\"Journal\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"q9PhJJJxc\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rb1qi9-container\",inComponentSlot:true,nodeId:\"IhfJeUHvm\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks5[0],height:\"100%\",id:\"IhfJeUHvm\",layoutId:\"IhfJeUHvm\",variant:\"Z70gjI8XV\",VrDPKNiPK:\"Sustainability\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8shqi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a2pluq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9sz5u6\",\"data-border\":true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v05o83\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"SOCIAL\"})}),className:\"framer-isx3vk\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wqsr4f\",\"data-framer-name\":\"SM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1anetp3-container\",inComponentSlot:true,nodeId:\"Pwo8Lnqjj\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkThreads,{height:\"100%\",id:\"Pwo8Lnqjj\",layoutId:\"Pwo8Lnqjj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9lz7iz-container\",inComponentSlot:true,nodeId:\"GFS8Nvqvq\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkFacebook,{height:\"100%\",id:\"GFS8Nvqvq\",layoutId:\"GFS8Nvqvq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wew9hb-container\",inComponentSlot:true,nodeId:\"A5uaWtFy4\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkLinkedin,{height:\"100%\",id:\"A5uaWtFy4\",layoutId:\"A5uaWtFy4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gvfgyl-container\",inComponentSlot:true,nodeId:\"BBqgzg2Pc\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkTwitter,{height:\"100%\",id:\"BBqgzg2Pc\",layoutId:\"BBqgzg2Pc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1auoy12-container\",inComponentSlot:true,nodeId:\"OyeGO9lSm\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkInstagram,{height:\"100%\",id:\"OyeGO9lSm\",layoutId:\"OyeGO9lSm\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y4yhwj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ulmsg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"CONTACT US\"})}),className:\"framer-1jcdig3\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hodvxb\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"76-86 Manners Street\"})}),className:\"framer-uoiavq\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8f58vy\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"Wellington 6140, New Zealand\"})}),className:\"framer-1r8i4w0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{animate:animation5,exit:animation4,initial:animation6}},children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-1j8awml-container\")} hidden-1co06u3`,\"data-framer-portal-id\":\"3an836\",inComponentSlot:true,nodeId:\"D2nTlNH40\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p2JJpjNSR:{variant:\"bipAwjfnC\"}},children:/*#__PURE__*/_jsx(NavbarMenuMobile,{height:\"100%\",id:\"D2nTlNH40\",layoutId:\"D2nTlNH40\",style:{height:\"100%\",width:\"100%\"},variant:\"hBrZrwITu\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1hmakm9-container hidden-1co06u3 hidden-1trmoim\",id:\"1hmakm9\",layoutScroll:true,nodeId:\"CF6DoBd3N\",scopeId:\"g9Z1wLT3X\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{k98s9Mg5i:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"CF6DoBd3N\",k98s9Mg5i:resolvedLinks6[0],layoutId:\"CF6DoBd3N\",style:{width:\"100%\"},variant:overlay1.visible?\"CANJvbszS\":undefined,width:\"100%\",WMRuJsfOh:WMRuJsfOh3bnx0g({overlay:overlay1})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},className:cx(scopingClassNames,\"framer-k14gtq\"),\"data-framer-portal-id\":\"1hmakm9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"GZi0yv160\"),isDisplayed3()&&/*#__PURE__*/_jsx(motion.header,{animate:animation1,className:`${cx(scopingClassNames,\"framer-74uo98\")} hidden-2c0cre`,\"data-framer-name\":\"Header\",\"data-framer-portal-id\":\"1hmakm9\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w90cu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tpn6ca\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v4h7fr\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rvv9q0\",\"data-framer-name\":\"$2134\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 45.059 12.409 C 45.513 13.388 45.952 14.332 46.406 15.309 C 46.205 15.4 46.046 15.48 45.881 15.545 C 41.115 17.391 36.348 19.234 31.585 21.087 C 31.358 21.175 31.26 21.13 31.177 20.916 C 31.085 20.685 30.964 20.466 30.833 20.194 C 35.566 17.604 40.285 15.022 45.06 12.408 Z M 47.594 19.519 C 47.723 20.578 47.849 21.592 47.978 22.649 C 47.674 22.678 47.419 22.71 47.161 22.725 C 43.747 22.913 40.332 23.096 36.919 23.283 C 35.592 23.356 34.264 23.423 32.939 23.51 C 32.423 23.545 32.089 23.227 31.756 22.932 C 31.552 22.75 31.664 22.516 31.964 22.459 C 32.935 22.271 33.907 22.098 34.878 21.915 C 38.996 21.135 43.113 20.353 47.231 19.573 C 47.329 19.554 47.429 19.545 47.594 19.523 Z M 47.81 27.056 C 47.624 28.011 47.446 28.924 47.266 29.838 C 47.249 29.924 47.21 30.008 47.172 30.12 C 46.481 29.932 45.806 29.745 45.13 29.567 C 41.243 28.542 37.355 27.523 33.473 26.485 C 33.241 26.423 33.02 26.251 32.842 26.08 C 32.58 25.83 32.377 25.525 31.95 25.538 C 31.709 25.545 31.661 25.355 31.687 25.151 C 31.718 24.912 31.897 24.994 32.03 25.011 C 35.374 25.443 38.718 25.879 42.063 26.311 C 43.763 26.531 45.464 26.743 47.165 26.959 C 47.356 26.984 47.545 27.017 47.81 27.058 Z M 45.712 34.255 C 45.211 35.164 44.727 36.046 44.23 36.952 C 44.115 36.896 44.035 36.866 43.962 36.819 C 40.38 34.527 36.802 32.231 33.217 29.945 C 32.832 29.7 32.5 29.439 32.38 28.968 C 32.299 28.654 32.08 28.447 31.788 28.304 C 31.454 28.139 31.13 27.952 30.779 27.762 L 31.081 27.337 C 35.956 29.642 40.801 31.933 45.712 34.255 Z M 29.697 29.354 C 33.618 33.063 37.523 36.758 41.474 40.494 C 40.732 41.192 40.009 41.876 39.254 42.589 C 38.883 42.143 38.542 41.735 38.204 41.325 C 35.956 38.593 33.715 35.855 31.458 33.131 C 31.151 32.76 30.953 32.382 30.99 31.897 C 31.016 31.565 30.875 31.32 30.637 31.095 C 30.274 30.751 29.936 30.379 29.592 30.016 C 29.28 29.686 29.284 29.667 29.697 29.352 Z M 27.267 31.069 C 27.435 30.995 27.577 30.932 27.75 30.855 C 27.886 31.106 28.015 31.342 28.143 31.579 C 30.537 35.964 32.93 40.35 35.332 44.732 C 35.474 44.99 35.464 45.12 35.18 45.249 C 34.406 45.599 33.644 45.976 32.843 46.358 C 32.749 46.155 32.666 45.997 32.6 45.831 C 31.276 42.5 29.965 39.162 28.617 35.839 C 28.402 35.308 28.321 34.829 28.57 34.317 C 28.677 34.095 28.62 33.912 28.52 33.707 C 28.103 32.846 27.7 31.981 27.266 31.066 Z M 28.435 47.647 C 27.451 47.762 26.508 47.873 25.529 47.988 C 25.504 47.828 25.477 47.709 25.469 47.59 C 25.25 44.077 25.038 40.563 24.814 37.05 C 24.798 36.782 24.83 36.557 25.035 36.372 C 25.399 36.044 25.462 35.653 25.384 35.171 C 25.22 34.172 25.111 33.162 24.993 32.156 C 24.974 31.996 24.829 31.758 25.162 31.703 C 25.473 31.653 25.481 31.873 25.519 32.074 C 26.065 34.995 26.606 37.919 27.155 40.838 C 27.566 43.021 27.987 45.201 28.403 47.382 C 28.415 47.448 28.42 47.513 28.435 47.647 Z M 20.91 47.871 C 19.928 47.677 19.019 47.498 18.1 47.316 C 18.1 47.236 18.09 47.189 18.1 47.149 C 18.904 43.97 19.714 40.793 20.509 37.611 C 20.595 37.265 20.729 36.997 21.068 36.859 C 21.451 36.703 21.61 36.418 21.679 36.005 C 21.9 34.691 22.166 33.385 22.415 32.077 C 22.439 31.956 22.469 31.836 22.501 31.69 C 22.669 31.711 22.811 31.732 22.995 31.757 C 22.301 37.12 21.608 42.467 20.909 47.871 Z M 20.19 30.851 C 20.341 30.924 20.472 30.985 20.643 31.067 C 18.337 35.955 16.038 40.826 13.709 45.761 C 12.865 45.296 12.059 44.851 11.224 44.391 C 11.309 44.231 11.358 44.119 11.423 44.015 C 12.948 41.574 14.48 39.14 15.99 36.689 C 16.237 36.287 16.515 36.022 16.994 36.014 C 17.291 36.01 17.455 35.85 17.591 35.595 C 18.357 34.173 19.137 32.759 19.913 31.342 C 19.999 31.185 20.09 31.03 20.193 30.851 Z M 7.527 41.571 C 6.83 40.825 6.205 40.156 5.491 39.393 C 5.62 39.323 5.72 39.288 5.798 39.223 C 7.812 37.538 9.833 35.862 11.83 34.157 C 12.203 33.837 12.567 33.692 13.028 33.835 C 13.305 33.921 13.485 33.82 13.685 33.63 C 15.095 32.291 16.518 30.966 17.936 29.636 C 18.034 29.544 18.135 29.454 18.229 29.368 C 18.657 29.626 18.665 29.649 18.345 29.99 C 15.952 32.532 13.556 35.07 11.163 37.612 C 10.072 38.772 8.984 39.933 7.898 41.098 C 7.775 41.229 7.675 41.383 7.529 41.571 Z M 16.901 27.294 C 16.996 27.55 17.201 27.739 16.833 27.938 C 13.279 29.868 9.734 31.811 6.185 33.75 C 5.239 34.267 4.293 34.786 3.344 35.301 C 3.207 35.375 3.063 35.435 2.868 35.528 C 2.508 34.735 2.156 33.973 1.826 33.203 C 1.803 33.149 1.927 32.972 2.017 32.934 C 2.925 32.546 3.84 32.174 4.754 31.799 C 6.067 31.262 7.385 30.736 8.692 30.181 C 9.015 30.043 9.3 30.009 9.581 30.221 C 9.948 30.498 10.282 30.427 10.675 30.236 C 12.637 29.285 14.613 28.364 16.583 27.432 C 16.675 27.39 16.767 27.352 16.9 27.294 Z M 0.374 28.464 C 0.248 27.56 0.128 26.686 0 25.759 C 0.359 25.729 0.682 25.697 1.005 25.672 C 2.975 25.521 4.946 25.366 6.918 25.231 C 7.069 25.22 7.286 25.307 7.376 25.424 C 7.728 25.879 8.137 25.986 8.708 25.905 C 11.025 25.582 13.35 25.31 15.672 25.022 C 15.839 25.001 16.008 24.99 16.166 24.975 C 16.34 25.433 16.336 25.445 15.895 25.528 C 11.228 26.403 6.56 27.277 1.894 28.153 C 1.406 28.245 0.919 28.351 0.374 28.462 Z M 0.139 20.901 C 0.308 20.016 0.466 19.184 0.633 18.312 C 1.17 18.433 1.657 18.533 2.138 18.65 C 3.584 19.002 5.026 19.368 6.473 19.711 C 6.78 19.784 6.99 19.906 7.047 20.238 C 7.115 20.625 7.334 20.79 7.747 20.866 C 10.451 21.355 13.15 21.884 15.848 22.403 C 15.978 22.427 16.14 22.453 16.215 22.539 C 16.276 22.612 16.265 22.791 16.22 22.892 C 16.196 22.947 16.027 22.966 15.93 22.954 C 13.901 22.698 11.873 22.436 9.845 22.173 C 6.747 21.772 3.649 21.37 0.551 20.968 C 0.428 20.952 0.307 20.929 0.136 20.9 Z M 17.13 20.174 C 17.05 20.341 16.983 20.481 16.902 20.65 C 12.004 18.33 7.133 16.023 2.236 13.704 C 2.669 12.914 3.075 12.17 3.498 11.396 C 4.008 11.705 4.482 11.989 4.954 12.279 C 5.952 12.89 6.945 13.511 7.95 14.113 C 8.178 14.25 8.318 14.399 8.287 14.675 C 8.23 15.169 8.463 15.442 8.898 15.676 C 11.57 17.113 14.225 18.581 16.887 20.038 C 16.957 20.077 17.025 20.115 17.129 20.174 Z M 6.48 7.483 C 6.836 7.13 7.152 6.806 7.481 6.494 C 7.76 6.229 8.052 5.979 8.362 5.701 C 8.84 6.255 9.3 6.784 9.757 7.318 C 10.238 7.878 10.706 8.451 11.198 9.002 C 11.396 9.223 11.471 9.441 11.356 9.711 C 11.165 10.163 11.329 10.482 11.654 10.824 C 13.908 13.199 16.137 15.598 18.386 17.979 C 18.648 18.255 18.515 18.401 18.251 18.619 C 14.341 14.921 10.432 11.222 6.48 7.484 Z M 12.419 2.864 C 13.144 2.523 13.827 2.194 14.52 1.887 C 14.584 1.858 14.763 1.943 14.794 2.016 C 15.259 3.092 15.719 4.17 16.147 5.261 C 16.201 5.399 16.113 5.655 16.005 5.782 C 15.676 6.169 15.768 6.507 15.967 6.924 C 17.486 10.107 18.982 13.303 20.485 16.495 C 20.678 16.905 20.674 16.907 20.193 17.102 C 17.611 12.373 15.026 7.636 12.42 2.864 Z M 21.979 0 C 22.061 1.052 22.145 2.027 22.203 3.002 C 22.21 3.111 22.081 3.281 21.972 3.335 C 21.492 3.58 21.451 3.956 21.517 4.44 C 21.814 6.641 22.083 8.845 22.362 11.048 C 22.57 12.676 22.778 14.302 22.984 15.929 C 22.995 16.016 22.985 16.105 22.985 16.189 C 22.549 16.305 22.516 16.293 22.441 15.896 C 21.675 11.835 20.913 7.772 20.148 3.71 C 19.957 2.691 19.773 1.672 19.568 0.656 C 19.516 0.398 19.589 0.313 19.84 0.283 C 20.536 0.201 21.229 0.1 21.979 -0.003 Z M 24.948 16.191 C 25.642 10.835 26.333 5.497 27.03 0.112 C 27.837 0.257 28.61 0.397 29.407 0.54 C 29.253 1.265 29.12 1.945 28.951 2.615 C 28.921 2.734 28.751 2.876 28.624 2.899 C 28.07 3.002 27.9 3.323 27.8 3.87 C 27.145 7.478 26.44 11.076 25.751 14.676 C 25.675 15.078 25.601 15.482 25.526 15.885 C 25.445 16.316 25.432 16.324 24.946 16.19 Z M 27.772 17.113 C 27.299 16.919 27.293 16.916 27.468 16.546 C 29.695 11.824 31.924 7.102 34.152 2.381 C 34.166 2.351 34.188 2.325 34.249 2.23 C 34.949 2.604 35.65 2.977 36.359 3.356 C 36.119 3.757 35.921 4.127 35.681 4.469 C 35.609 4.572 35.414 4.659 35.292 4.64 C 34.747 4.554 34.492 4.8 34.237 5.276 C 32.506 8.503 30.736 11.71 28.979 14.924 C 28.582 15.65 28.18 16.375 27.773 17.115 Z M 42.057 8.156 C 41.615 8.671 41.591 8.703 41.096 8.45 C 40.755 8.276 40.564 8.406 40.332 8.625 C 37.702 11.106 35.065 13.581 32.43 16.057 C 31.643 16.797 30.856 17.538 30.068 18.277 C 29.945 18.392 29.813 18.497 29.692 18.602 C 29.299 18.318 29.294 18.292 29.592 17.975 C 33.117 14.232 36.644 10.492 40.162 6.743 C 40.392 6.498 40.535 6.497 40.751 6.743 C 41.176 7.226 41.625 7.691 42.057 8.156 Z\" fill=\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"></path></svg>',svgContentId:11595145190,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIExpZ2h0\",\"--framer-font-family\":'\"Uxum Grotesque Light\", \"Uxum Grotesque Light Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-1.9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif'},children:\"OAKWOOD\"}),/*#__PURE__*/_jsx(\"br\",{}),\"ARCHITECTS\"]})}),className:\"framer-15102mv\",fonts:[\"CUSTOM;Uxum Grotesque Light\",\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mp48yp-container\",inComponentSlot:true,nodeId:\"KKogp6mik\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"KKogp6mik\",layoutId:\"KKogp6mik\",style:{height:\"100%\"},T4hjfp049:T4hjfp0491wnntms({overlay:overlay1}),T6pkQAf15:\"Get Started\",variant:\"COAGoKyJf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1koiyms\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-185539r\",\"data-border\":true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7quto\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gck06t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"18px\"},children:\"\\xa9 2024 \"}),/*#__PURE__*/_jsx(\"br\",{}),\"Aurum Company. All right reserved.\"]})}),className:\"framer-veeix6\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1216,intrinsicWidth:1980,pixelHeight:1216,pixelWidth:1980,src:\"https://framerusercontent.com/images/WUMe9sDb7fd7Va3HJou9WXgPADc.png\"},className:\"framer-o71jjl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qdpyhe-container\",inComponentSlot:true,nodeId:\"vTO0IPuPp\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"vTO0IPuPp\",layoutId:\"vTO0IPuPp\",style:{height:\"100%\"},T6pkQAf15:\"Get Started\",variant:\"pFx5Nu8z9\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y4sw4p\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c7difm-container\",inComponentSlot:true,nodeId:\"aehKgGxi9\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks7[0],height:\"100%\",id:\"aehKgGxi9\",layoutId:\"aehKgGxi9\",variant:\"mCuMxEUjX\",VrDPKNiPK:\"Home\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iI0Y4f2kb\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxwdnl-container\",inComponentSlot:true,nodeId:\"bhAbI1nAO\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks8[0],height:\"100%\",id:\"bhAbI1nAO\",layoutId:\"bhAbI1nAO\",variant:\"mCuMxEUjX\",VrDPKNiPK:\"Projects\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RBNM_NPDw\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mq1tlm-container\",inComponentSlot:true,nodeId:\"eZ2abIuH4\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks9[0],height:\"100%\",id:\"eZ2abIuH4\",layoutId:\"eZ2abIuH4\",variant:\"mCuMxEUjX\",VrDPKNiPK:\"About\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wpZI9oyvU\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ebu8ch-container\",inComponentSlot:true,nodeId:\"o_r4SC5vM\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks10[0],height:\"100%\",id:\"o_r4SC5vM\",layoutId:\"o_r4SC5vM\",variant:\"mCuMxEUjX\",VrDPKNiPK:\"Journal\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"q9PhJJJxc\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rj0x8i-container\",inComponentSlot:true,nodeId:\"L6kChfjBV\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(TabBar,{eXVEi3f5i:resolvedLinks11[0],height:\"100%\",id:\"L6kChfjBV\",layoutId:\"L6kChfjBV\",variant:\"mCuMxEUjX\",VrDPKNiPK:\"Sustainability\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w7dk43\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xzao6i\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzkrxw\",\"data-border\":true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qxpazc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mxsbw5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"SOCIAL\"})}),className:\"framer-1a6cbcg\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hekjr9\",\"data-framer-name\":\"SM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11xgc7s-container\",inComponentSlot:true,nodeId:\"Z04d2smAS\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkThreads,{height:\"100%\",id:\"Z04d2smAS\",layoutId:\"Z04d2smAS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tclnv9-container\",inComponentSlot:true,nodeId:\"FO4hBNWJ8\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkFacebook,{height:\"100%\",id:\"FO4hBNWJ8\",layoutId:\"FO4hBNWJ8\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uweceg-container\",inComponentSlot:true,nodeId:\"nEsU5NGmg\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkLinkedin,{height:\"100%\",id:\"nEsU5NGmg\",layoutId:\"nEsU5NGmg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gy8npf-container\",inComponentSlot:true,nodeId:\"gUOtTvBMa\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkTwitter,{height:\"100%\",id:\"gUOtTvBMa\",layoutId:\"gUOtTvBMa\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"38px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ozbiz-container\",inComponentSlot:true,nodeId:\"ivElIJBBq\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",whileHover:animation3,children:/*#__PURE__*/_jsx(SocialMediaLinkInstagram,{height:\"100%\",id:\"ivElIJBBq\",layoutId:\"ivElIJBBq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7h05c7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"CONTACT US\"})}),className:\"framer-1cu1d2o\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"Wellington 6140, New Zealand\"})}),className:\"framer-1tt3j5x\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28068da4-59b3-4234-aa97-0477c5e250da, rgb(170, 136, 103))\"},children:\"76-86 Manners Street\"})}),className:\"framer-1a9du04\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{animate:animation5,exit:animation4,initial:animation6}},children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-dvy2uc-container\")} hidden-1co06u3`,\"data-framer-portal-id\":\"1hmakm9\",inComponentSlot:true,nodeId:\"fBbHmhg7b\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MSszAD9cG:{Yzc_NpQAm:Yzc_NpQAm1wnntms({overlay:overlay1})}},children:/*#__PURE__*/_jsx(NavbarMenuMobile,{height:\"100%\",id:\"fBbHmhg7b\",layoutId:\"fBbHmhg7b\",style:{height:\"100%\",width:\"100%\"},variant:\"hBrZrwITu\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:24,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-xf8eoe-container hidden-2c0cre hidden-1trmoim\",id:\"xf8eoe\",layoutScroll:true,nodeId:\"Gbu0akYIb\",scopeId:\"g9Z1wLT3X\",children:[/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Gbu0akYIb\",k98s9Mg5i:resolvedLinks12[0],layoutId:\"Gbu0akYIb\",style:{width:\"100%\"},variant:overlay2.visible?\"CANJvbszS\":undefined,width:\"100%\",WMRuJsfOh:WMRuJsfOh3bnx0g({overlay:overlay2})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},className:cx(scopingClassNames,\"framer-pclglj\"),\"data-framer-portal-id\":\"xf8eoe\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"Gc26ljp4E\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation5,className:cx(scopingClassNames,\"framer-y3ntwc-container\"),\"data-framer-portal-id\":\"xf8eoe\",exit:animation4,inComponentSlot:true,initial:animation6,nodeId:\"XHAQh7a62\",rendersWithMotion:true,scopeId:\"g9Z1wLT3X\",children:/*#__PURE__*/_jsx(NavbarMenu,{height:\"100%\",id:\"XHAQh7a62\",layoutId:\"XHAQh7a62\",style:{height:\"100%\",width:\"100%\"},TTk_7m0j0:TTk_7m0j01wnntms({overlay:overlay2}),variant:\"UQuq9ATbq\",width:\"100%\"})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SSRqR.framer-1m3tgru, .framer-SSRqR .framer-1m3tgru { display: block; }\",\".framer-SSRqR.framer-1co06u3 { 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: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-SSRqR .framer-w5cl9k-container, .framer-SSRqR .framer-1pzy827-container, .framer-SSRqR .framer-1h4qyua-container, .framer-SSRqR .framer-d79y7r-container, .framer-SSRqR .framer-8nrng6-container, .framer-SSRqR .framer-10e26k7-container, .framer-SSRqR .framer-1rb1qi9-container, .framer-SSRqR .framer-1c7difm-container, .framer-SSRqR .framer-rxwdnl-container, .framer-SSRqR .framer-1mq1tlm-container, .framer-SSRqR .framer-1ebu8ch-container, .framer-SSRqR .framer-1rj0x8i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SSRqR .framer-9azae2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1w2230e { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-SSRqR .framer-x58n5z-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-SSRqR .framer-m40yfp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-SSRqR .framer-qj4eh3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80%; justify-content: center; max-height: 600px; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SSRqR .framer-bymvq3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-SSRqR .framer-1yfnxry { align-content: center; align-items: center; background-color: rgba(242, 240, 239, 0.9); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1eobu6b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1wnegix { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SSRqR .framer-1n7glyo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1oh9c3k, .framer-SSRqR .framer-1p24myy, .framer-SSRqR .framer-r86ira, .framer-SSRqR .framer-s3689z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1ppm50, .framer-SSRqR .framer-w0v0sh, .framer-SSRqR .framer-4grl1i, .framer-SSRqR .framer-u1n5ea { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-SSRqR .framer-c4v8qw, .framer-SSRqR .framer-1snx9yn, .framer-SSRqR .framer-7lfj7s { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-28068da4-59b3-4234-aa97-0477c5e250da, #2e4855); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-SSRqR .framer-1lo1v0 { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-28068da4-59b3-4234-aa97-0477c5e250da, #2e4855); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 139px; position: relative; width: 100%; }',\".framer-SSRqR .framer-1jwvgfy-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-pshhos { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 802px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SSRqR .framer-1smuxwg { align-content: center; align-items: center; background-color: var(--token-65301db5-9b27-4f89-81a3-891249fc7112, #f2f0ef); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-vw26st-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-SSRqR .framer-ys0c6i { align-content: flex-start; align-items: flex-start; background-color: var(--token-bcd60df8-51ac-421d-b09e-478ae57e230b, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 60px 150px 60px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-qesnky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-11f0qvw-container, .framer-SSRqR .framer-1dloffx-container, .framer-SSRqR .framer-1ooy6ze-container { flex: none; height: auto; position: relative; width: 1320px; }\",\".framer-SSRqR .framer-pcooqa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1440px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SSRqR .framer-1osnccn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 44px 0px 44px 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-tidiju-container { flex: none; height: auto; position: relative; width: 344px; }\",\".framer-SSRqR .framer-7ft1r7-container, .framer-SSRqR .framer-1az1b0f-container { align-self: stretch; flex: none; height: auto; position: relative; width: 344px; }\",\".framer-SSRqR .framer-oeripq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; min-height: 100vh; overflow: visible; padding: 150px 60px 150px 60px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-3akjn1, .framer-SSRqR .framer-1xzao6i { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1991q33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1iceulh-container, .framer-SSRqR .framer-5ca8wh-container, .framer-SSRqR .framer-1uwtwv4-container, .framer-SSRqR .framer-r5xtm-container, .framer-SSRqR .framer-oqlb2v-container { flex: none; height: auto; position: relative; width: 949px; }\",\".framer-SSRqR .framer-3lnjo6 { align-content: center; align-items: center; background-color: var(--token-65301db5-9b27-4f89-81a3-891249fc7112, #f2f0ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: hidden; padding: 156px 0px 156px 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-nqcmxo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-SSRqR .framer-awo6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SSRqR .framer-1mw35my { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 57px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 238px; }\",\".framer-SSRqR .framer-7y8aix-container { flex: none; height: 420px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1rvkpin, .framer-SSRqR .framer-129sm3b, .framer-SSRqR .framer-arst8f, .framer-SSRqR .framer-1acdh9l { height: 514px; overflow: hidden; position: relative; width: 443px; }\",\".framer-SSRqR .framer-mq8ebu-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-SSRqR .framer-3an836-container { flex: none; height: auto; left: 12px; position: fixed; right: 12px; top: 24px; z-index: 10; }\",\".framer-SSRqR.framer-ok4j82, .framer-SSRqR.framer-k14gtq { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-SSRqR.framer-1e2htry, .framer-SSRqR.framer-74uo98 { align-content: center; align-items: center; background-color: #3e362e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 90vh; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-SSRqR .framer-3w41rr, .framer-SSRqR .framer-w90cu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-ahxsly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 24px 12px 24px 12px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-qo32mf, .framer-SSRqR .framer-v4h7fr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 174px; }\",\".framer-SSRqR .framer-eyuubn, .framer-SSRqR .framer-rvv9q0 { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-SSRqR .framer-tote3s, .framer-SSRqR .framer-15102mv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-SSRqR .framer-hqxjeg-container, .framer-SSRqR .framer-1mp48yp-container, .framer-SSRqR .framer-1qdpyhe-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-SSRqR .framer-xrbroz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1irbneu { --border-bottom-width: 0px; --border-color: rgba(170, 136, 103, 0.24); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 44px 0px 24px 24px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-8shqi, .framer-SSRqR .framer-1w7dk43 { align-content: flex-end; align-items: flex-end; 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-SSRqR .framer-1a2pluq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 286px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-9sz5u6 { --border-bottom-width: 1px; --border-color: rgba(170, 136, 103, 0.24); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1v05o83 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-isx3vk, .framer-SSRqR .framer-1a6cbcg, .framer-SSRqR .framer-1cu1d2o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SSRqR .framer-1wqsr4f, .framer-SSRqR .framer-hekjr9 { 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; z-index: 2; }\",\".framer-SSRqR .framer-1anetp3-container, .framer-SSRqR .framer-9lz7iz-container, .framer-SSRqR .framer-1wew9hb-container, .framer-SSRqR .framer-1gvfgyl-container, .framer-SSRqR .framer-1auoy12-container, .framer-SSRqR .framer-11xgc7s-container, .framer-SSRqR .framer-tclnv9-container, .framer-SSRqR .framer-1uweceg-container, .framer-SSRqR .framer-1gy8npf-container, .framer-SSRqR .framer-ozbiz-container { flex: none; height: 38px; position: relative; width: 38px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SSRqR .framer-1y4yhwj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1ulmsg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 0px 32px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1jcdig3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 76px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SSRqR .framer-hodvxb, .framer-SSRqR .framer-8f58vy { flex: none; height: 17px; overflow: hidden; position: relative; width: 100%; }\",\".framer-SSRqR .framer-uoiavq, .framer-SSRqR .framer-1r8i4w0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; max-width: 100%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre-wrap; width: 392px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SSRqR.framer-1j8awml-container { flex: none; height: 720px; left: -523px; position: fixed; top: 66px; width: 1440px; }\",\".framer-SSRqR .framer-1hmakm9-container, .framer-SSRqR .framer-xf8eoe-container { flex: none; height: auto; left: 24px; position: fixed; right: 24px; top: 24px; z-index: 10; }\",\".framer-SSRqR .framer-tpn6ca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1koiyms { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-185539r { --border-bottom-width: 0px; --border-color: rgba(170, 136, 103, 0.24); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px 0px 32px 24px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-7quto { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 464px; }\",\".framer-SSRqR .framer-1gck06t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-veeix6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SSRqR .framer-o71jjl { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 184px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SSRqR .framer-1y4sw4p { --border-bottom-width: 0px; --border-color: rgba(170, 136, 103, 0.24); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 44px 0px 44px 24px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1nzkrxw { --border-bottom-width: 1px; --border-color: rgba(170, 136, 103, 0.24); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-1qxpazc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 32px 24px; position: relative; width: 100%; }\",\".framer-SSRqR .framer-mxsbw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SSRqR .framer-7h05c7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 44px; position: relative; width: 1px; }\",\".framer-SSRqR .framer-1tt3j5x, .framer-SSRqR .framer-1a9du04 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 392px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-SSRqR.framer-dvy2uc-container { flex: none; height: 720px; left: -364px; position: fixed; top: -39px; width: 1440px; }\",\".framer-SSRqR.framer-pclglj { background-color: var(--token-28068da4-59b3-4234-aa97-0477c5e250da, #2e4855); inset: 0px; position: fixed; user-select: none; }\",\".framer-SSRqR.framer-y3ntwc-container { bottom: 0px; flex: none; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SSRqR.framer-1co06u3, .framer-SSRqR .framer-9azae2, .framer-SSRqR .framer-1w2230e, .framer-SSRqR .framer-m40yfp, .framer-SSRqR .framer-qj4eh3, .framer-SSRqR .framer-bymvq3, .framer-SSRqR .framer-1yfnxry, .framer-SSRqR .framer-1eobu6b, .framer-SSRqR .framer-1n7glyo, .framer-SSRqR .framer-1oh9c3k, .framer-SSRqR .framer-1p24myy, .framer-SSRqR .framer-r86ira, .framer-SSRqR .framer-s3689z, .framer-SSRqR .framer-pshhos, .framer-SSRqR .framer-1smuxwg, .framer-SSRqR .framer-ys0c6i, .framer-SSRqR .framer-qesnky, .framer-SSRqR .framer-1osnccn, .framer-SSRqR .framer-oeripq, .framer-SSRqR .framer-3akjn1, .framer-SSRqR .framer-1991q33, .framer-SSRqR .framer-3lnjo6, .framer-SSRqR .framer-nqcmxo, .framer-SSRqR .framer-awo6n, .framer-SSRqR .framer-1mw35my, .framer-SSRqR.framer-1e2htry, .framer-SSRqR .framer-3w41rr, .framer-SSRqR .framer-qo32mf, .framer-SSRqR .framer-xrbroz, .framer-SSRqR .framer-1irbneu, .framer-SSRqR .framer-8shqi, .framer-SSRqR .framer-1a2pluq, .framer-SSRqR .framer-9sz5u6, .framer-SSRqR .framer-1v05o83, .framer-SSRqR .framer-1wqsr4f, .framer-SSRqR .framer-1y4yhwj, .framer-SSRqR .framer-1ulmsg, .framer-SSRqR.framer-74uo98, .framer-SSRqR .framer-w90cu, .framer-SSRqR .framer-v4h7fr, .framer-SSRqR .framer-1koiyms, .framer-SSRqR .framer-185539r, .framer-SSRqR .framer-7quto, .framer-SSRqR .framer-1gck06t, .framer-SSRqR .framer-o71jjl, .framer-SSRqR .framer-1y4sw4p, .framer-SSRqR .framer-1w7dk43, .framer-SSRqR .framer-1xzao6i, .framer-SSRqR .framer-1nzkrxw, .framer-SSRqR .framer-1qxpazc, .framer-SSRqR .framer-mxsbw5, .framer-SSRqR .framer-hekjr9, .framer-SSRqR .framer-7h05c7 { gap: 0px; } .framer-SSRqR.framer-1co06u3 > *, .framer-SSRqR .framer-9azae2 > *, .framer-SSRqR .framer-3akjn1 > *, .framer-SSRqR.framer-1e2htry > *, .framer-SSRqR .framer-3w41rr > *, .framer-SSRqR .framer-8shqi > *, .framer-SSRqR .framer-1a2pluq > *, .framer-SSRqR.framer-74uo98 > *, .framer-SSRqR .framer-w90cu > *, .framer-SSRqR .framer-185539r > *, .framer-SSRqR .framer-1w7dk43 > *, .framer-SSRqR .framer-1xzao6i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SSRqR.framer-1co06u3 > :first-child, .framer-SSRqR .framer-9azae2 > :first-child, .framer-SSRqR .framer-bymvq3 > :first-child, .framer-SSRqR .framer-1yfnxry > :first-child, .framer-SSRqR .framer-1eobu6b > :first-child, .framer-SSRqR .framer-1n7glyo > :first-child, .framer-SSRqR .framer-1oh9c3k > :first-child, .framer-SSRqR .framer-1p24myy > :first-child, .framer-SSRqR .framer-r86ira > :first-child, .framer-SSRqR .framer-s3689z > :first-child, .framer-SSRqR .framer-ys0c6i > :first-child, .framer-SSRqR .framer-qesnky > :first-child, .framer-SSRqR .framer-oeripq > :first-child, .framer-SSRqR .framer-3akjn1 > :first-child, .framer-SSRqR .framer-1991q33 > :first-child, .framer-SSRqR .framer-3lnjo6 > :first-child, .framer-SSRqR .framer-nqcmxo > :first-child, .framer-SSRqR .framer-awo6n > :first-child, .framer-SSRqR .framer-1mw35my > :first-child, .framer-SSRqR.framer-1e2htry > :first-child, .framer-SSRqR .framer-3w41rr > :first-child, .framer-SSRqR .framer-xrbroz > :first-child, .framer-SSRqR .framer-1irbneu > :first-child, .framer-SSRqR .framer-8shqi > :first-child, .framer-SSRqR .framer-1a2pluq > :first-child, .framer-SSRqR .framer-9sz5u6 > :first-child, .framer-SSRqR .framer-1v05o83 > :first-child, .framer-SSRqR .framer-1y4yhwj > :first-child, .framer-SSRqR .framer-1ulmsg > :first-child, .framer-SSRqR.framer-74uo98 > :first-child, .framer-SSRqR .framer-w90cu > :first-child, .framer-SSRqR .framer-1koiyms > :first-child, .framer-SSRqR .framer-185539r > :first-child, .framer-SSRqR .framer-7quto > :first-child, .framer-SSRqR .framer-o71jjl > :first-child, .framer-SSRqR .framer-1y4sw4p > :first-child, .framer-SSRqR .framer-1w7dk43 > :first-child, .framer-SSRqR .framer-1xzao6i > :first-child, .framer-SSRqR .framer-1nzkrxw > :first-child, .framer-SSRqR .framer-mxsbw5 > :first-child, .framer-SSRqR .framer-7h05c7 > :first-child { margin-top: 0px; } .framer-SSRqR.framer-1co06u3 > :last-child, .framer-SSRqR .framer-9azae2 > :last-child, .framer-SSRqR .framer-bymvq3 > :last-child, .framer-SSRqR .framer-1yfnxry > :last-child, .framer-SSRqR .framer-1eobu6b > :last-child, .framer-SSRqR .framer-1n7glyo > :last-child, .framer-SSRqR .framer-1oh9c3k > :last-child, .framer-SSRqR .framer-1p24myy > :last-child, .framer-SSRqR .framer-r86ira > :last-child, .framer-SSRqR .framer-s3689z > :last-child, .framer-SSRqR .framer-ys0c6i > :last-child, .framer-SSRqR .framer-qesnky > :last-child, .framer-SSRqR .framer-oeripq > :last-child, .framer-SSRqR .framer-3akjn1 > :last-child, .framer-SSRqR .framer-1991q33 > :last-child, .framer-SSRqR .framer-3lnjo6 > :last-child, .framer-SSRqR .framer-nqcmxo > :last-child, .framer-SSRqR .framer-awo6n > :last-child, .framer-SSRqR .framer-1mw35my > :last-child, .framer-SSRqR.framer-1e2htry > :last-child, .framer-SSRqR .framer-3w41rr > :last-child, .framer-SSRqR .framer-xrbroz > :last-child, .framer-SSRqR .framer-1irbneu > :last-child, .framer-SSRqR .framer-8shqi > :last-child, .framer-SSRqR .framer-1a2pluq > :last-child, .framer-SSRqR .framer-9sz5u6 > :last-child, .framer-SSRqR .framer-1v05o83 > :last-child, .framer-SSRqR .framer-1y4yhwj > :last-child, .framer-SSRqR .framer-1ulmsg > :last-child, .framer-SSRqR.framer-74uo98 > :last-child, .framer-SSRqR .framer-w90cu > :last-child, .framer-SSRqR .framer-1koiyms > :last-child, .framer-SSRqR .framer-185539r > :last-child, .framer-SSRqR .framer-7quto > :last-child, .framer-SSRqR .framer-o71jjl > :last-child, .framer-SSRqR .framer-1y4sw4p > :last-child, .framer-SSRqR .framer-1w7dk43 > :last-child, .framer-SSRqR .framer-1xzao6i > :last-child, .framer-SSRqR .framer-1nzkrxw > :last-child, .framer-SSRqR .framer-mxsbw5 > :last-child, .framer-SSRqR .framer-7h05c7 > :last-child { margin-bottom: 0px; } .framer-SSRqR .framer-1w2230e > *, .framer-SSRqR .framer-pshhos > *, .framer-SSRqR .framer-1smuxwg > *, .framer-SSRqR .framer-qo32mf > *, .framer-SSRqR .framer-v4h7fr > *, .framer-SSRqR .framer-1gck06t > *, .framer-SSRqR .framer-1qxpazc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SSRqR .framer-1w2230e > :first-child, .framer-SSRqR .framer-m40yfp > :first-child, .framer-SSRqR .framer-qj4eh3 > :first-child, .framer-SSRqR .framer-pshhos > :first-child, .framer-SSRqR .framer-1smuxwg > :first-child, .framer-SSRqR .framer-1osnccn > :first-child, .framer-SSRqR .framer-qo32mf > :first-child, .framer-SSRqR .framer-1wqsr4f > :first-child, .framer-SSRqR .framer-v4h7fr > :first-child, .framer-SSRqR .framer-1gck06t > :first-child, .framer-SSRqR .framer-1qxpazc > :first-child, .framer-SSRqR .framer-hekjr9 > :first-child { margin-left: 0px; } .framer-SSRqR .framer-1w2230e > :last-child, .framer-SSRqR .framer-m40yfp > :last-child, .framer-SSRqR .framer-qj4eh3 > :last-child, .framer-SSRqR .framer-pshhos > :last-child, .framer-SSRqR .framer-1smuxwg > :last-child, .framer-SSRqR .framer-1osnccn > :last-child, .framer-SSRqR .framer-qo32mf > :last-child, .framer-SSRqR .framer-1wqsr4f > :last-child, .framer-SSRqR .framer-v4h7fr > :last-child, .framer-SSRqR .framer-1gck06t > :last-child, .framer-SSRqR .framer-1qxpazc > :last-child, .framer-SSRqR .framer-hekjr9 > :last-child { margin-right: 0px; } .framer-SSRqR .framer-m40yfp > *, .framer-SSRqR .framer-qj4eh3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-SSRqR .framer-bymvq3 > *, .framer-SSRqR .framer-1yfnxry > *, .framer-SSRqR .framer-1n7glyo > *, .framer-SSRqR .framer-1oh9c3k > *, .framer-SSRqR .framer-1p24myy > *, .framer-SSRqR .framer-r86ira > *, .framer-SSRqR .framer-s3689z > *, .framer-SSRqR .framer-qesnky > *, .framer-SSRqR .framer-awo6n > *, .framer-SSRqR .framer-1mw35my > *, .framer-SSRqR .framer-xrbroz > *, .framer-SSRqR .framer-9sz5u6 > *, .framer-SSRqR .framer-1v05o83 > *, .framer-SSRqR .framer-1y4yhwj > *, .framer-SSRqR .framer-1koiyms > *, .framer-SSRqR .framer-7quto > *, .framer-SSRqR .framer-o71jjl > *, .framer-SSRqR .framer-1nzkrxw > *, .framer-SSRqR .framer-mxsbw5 > *, .framer-SSRqR .framer-7h05c7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SSRqR .framer-1eobu6b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SSRqR .framer-ys0c6i > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-SSRqR .framer-1osnccn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-SSRqR .framer-oeripq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-SSRqR .framer-1991q33 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SSRqR .framer-3lnjo6 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-SSRqR .framer-nqcmxo > *, .framer-SSRqR .framer-1y4sw4p > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SSRqR .framer-1irbneu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SSRqR .framer-1wqsr4f > *, .framer-SSRqR .framer-hekjr9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-SSRqR .framer-1ulmsg > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-SSRqR[data-border=\"true\"]::after, .framer-SSRqR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-SSRqR.framer-1co06u3 { width: 810px; } .framer-SSRqR .framer-m40yfp { flex-direction: column; } .framer-SSRqR .framer-qj4eh3 { flex: none; height: min-content; max-height: unset; padding: 0px 40px 0px 40px; width: 100%; } .framer-SSRqR .framer-bymvq3 { height: 848px; } .framer-SSRqR .framer-1yfnxry { flex: none; height: 650px; } .framer-SSRqR .framer-pshhos { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 650px; will-change: unset; } .framer-SSRqR .framer-1smuxwg { height: 650px; } .framer-SSRqR .framer-11f0qvw-container, .framer-SSRqR .framer-1dloffx-container, .framer-SSRqR .framer-nqcmxo { width: 100%; } .framer-SSRqR .framer-1osnccn { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-SSRqR .framer-tidiju-container, .framer-SSRqR .framer-7ft1r7-container, .framer-SSRqR .framer-1az1b0f-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-SSRqR .framer-1iceulh-container, .framer-SSRqR .framer-5ca8wh-container, .framer-SSRqR .framer-1uwtwv4-container, .framer-SSRqR .framer-r5xtm-container, .framer-SSRqR .framer-oqlb2v-container { width: auto; } .framer-SSRqR .framer-awo6n { padding: 0px 60px 0px 60px; width: 100%; } .framer-SSRqR .framer-1ooy6ze-container { order: 0; width: 100%; } .framer-SSRqR .framer-1mw35my { align-content: center; align-items: center; order: 1; width: 100%; } .framer-SSRqR.framer-dvy2uc-container { bottom: 0px; height: unset; left: 0px; right: 0px; top: 0px; width: unset; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SSRqR .framer-m40yfp, .framer-SSRqR .framer-1osnccn { gap: 0px; } .framer-SSRqR .framer-m40yfp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SSRqR .framer-m40yfp > :first-child { margin-top: 0px; } .framer-SSRqR .framer-m40yfp > :last-child { margin-bottom: 0px; } .framer-SSRqR .framer-1osnccn > *, .framer-SSRqR .framer-1osnccn > :first-child, .framer-SSRqR .framer-1osnccn > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-SSRqR.framer-1co06u3 { height: 5412px; width: 390px; } .framer-SSRqR .framer-9azae2 { height: 844px; min-height: 100vh; padding: 150px 0px 40px 0px; } .framer-SSRqR .framer-m40yfp { flex: 1 0 0px; flex-direction: column; height: 1px; } .framer-SSRqR .framer-qj4eh3 { flex-direction: column; height: 1px; justify-content: flex-start; max-height: unset; padding: 0px 20px 0px 20px; width: 100%; } .framer-SSRqR .framer-bymvq3 { height: 1px; width: 100%; } .framer-SSRqR .framer-1yfnxry { padding: 20px; } .framer-SSRqR .framer-1eobu6b { flex: none; gap: 10px; height: min-content; padding: 10px; } .framer-SSRqR .framer-1n7glyo { flex: none; gap: unset; height: 206px; justify-content: space-between; } .framer-SSRqR .framer-1oh9c3k, .framer-SSRqR .framer-1p24myy, .framer-SSRqR .framer-r86ira, .framer-SSRqR .framer-s3689z { gap: 5px; } .framer-SSRqR .framer-c4v8qw, .framer-SSRqR .framer-1snx9yn, .framer-SSRqR .framer-7lfj7s { --framer-input-font-size: 10px; height: 20px; } .framer-SSRqR .framer-1lo1v0 { --framer-input-font-size: 10px; min-height: 50px; } .framer-SSRqR .framer-1jwvgfy-container { height: 30px; } .framer-SSRqR .framer-pshhos { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 300px; width: 100%; will-change: unset; } .framer-SSRqR .framer-ys0c6i, .framer-SSRqR .framer-oeripq { padding: 75px 20px 75px 20px; } .framer-SSRqR .framer-11f0qvw-container, .framer-SSRqR .framer-tidiju-container, .framer-SSRqR .framer-1dloffx-container, .framer-SSRqR .framer-1iceulh-container, .framer-SSRqR .framer-5ca8wh-container, .framer-SSRqR .framer-1uwtwv4-container, .framer-SSRqR .framer-r5xtm-container, .framer-SSRqR .framer-oqlb2v-container, .framer-SSRqR .framer-nqcmxo, .framer-SSRqR .framer-1ooy6ze-container { width: 100%; } .framer-SSRqR .framer-1osnccn { flex-direction: column; justify-content: flex-start; padding: 0px; } .framer-SSRqR .framer-7ft1r7-container, .framer-SSRqR .framer-1az1b0f-container { align-self: unset; width: 100%; } .framer-SSRqR .framer-awo6n { padding: 0px 16px 0px 16px; width: 100%; } .framer-SSRqR .framer-1mw35my { align-content: center; align-items: center; width: 100%; } .framer-SSRqR.framer-1j8awml-container { bottom: 0px; height: unset; left: 0px; right: 0px; top: 0px; width: unset; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SSRqR .framer-m40yfp, .framer-SSRqR .framer-qj4eh3, .framer-SSRqR .framer-1eobu6b, .framer-SSRqR .framer-1n7glyo, .framer-SSRqR .framer-1oh9c3k, .framer-SSRqR .framer-1p24myy, .framer-SSRqR .framer-r86ira, .framer-SSRqR .framer-s3689z, .framer-SSRqR .framer-1osnccn { gap: 0px; } .framer-SSRqR .framer-m40yfp > *, .framer-SSRqR .framer-qj4eh3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SSRqR .framer-m40yfp > :first-child, .framer-SSRqR .framer-qj4eh3 > :first-child, .framer-SSRqR .framer-1eobu6b > :first-child, .framer-SSRqR .framer-1oh9c3k > :first-child, .framer-SSRqR .framer-1p24myy > :first-child, .framer-SSRqR .framer-r86ira > :first-child, .framer-SSRqR .framer-s3689z > :first-child, .framer-SSRqR .framer-1osnccn > :first-child { margin-top: 0px; } .framer-SSRqR .framer-m40yfp > :last-child, .framer-SSRqR .framer-qj4eh3 > :last-child, .framer-SSRqR .framer-1eobu6b > :last-child, .framer-SSRqR .framer-1oh9c3k > :last-child, .framer-SSRqR .framer-1p24myy > :last-child, .framer-SSRqR .framer-r86ira > :last-child, .framer-SSRqR .framer-s3689z > :last-child, .framer-SSRqR .framer-1osnccn > :last-child { margin-bottom: 0px; } .framer-SSRqR .framer-1eobu6b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SSRqR .framer-1n7glyo > *, .framer-SSRqR .framer-1n7glyo > :first-child, .framer-SSRqR .framer-1n7glyo > :last-child { margin: 0px; } .framer-SSRqR .framer-1oh9c3k > *, .framer-SSRqR .framer-1p24myy > *, .framer-SSRqR .framer-r86ira > *, .framer-SSRqR .framer-s3689z > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-SSRqR .framer-1osnccn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4396\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MSszAD9cG\":{\"layout\":[\"fixed\",\"auto\"]},\"p2JJpjNSR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ddvimfIju\":{\"pattern\":\":ddvimfIju\",\"name\":\"our-approach\"},\"Gm2g0ceRU\":{\"pattern\":\":Gm2g0ceRU\",\"name\":\"faq\"},\"GIxFwTQNS\":{\"pattern\":\":GIxFwTQNS\",\"name\":\"spaces\"}}\n * @framerResponsiveScreen\n */const Framerg9Z1wLT3X=withCSS(Component,css,\"framer-SSRqR\");export default Framerg9Z1wLT3X;Framerg9Z1wLT3X.displayName=\"About\";Framerg9Z1wLT3X.defaultProps={height:4396,width:1440};addFonts(Framerg9Z1wLT3X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Uxum Grotesque Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/PZDoU2OUqim08s9sD3MvLHGGqw.woff2\"},{family:\"Uxum Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2\"},{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"}]},...SmoothScrollFonts,...VideoFonts,...Button2Fonts,...EmbedFonts,...SectionHeadingFonts,...CardStatisticsCardFonts,...FAQFonts,...LoadingAnimationsFonts,...TickerFonts,...FooterFonts,...NavbarFonts,...ButtonButtonFonts,...TabBarFonts,...SocialMediaLinkThreadsFonts,...SocialMediaLinkFacebookFonts,...SocialMediaLinkLinkedinFonts,...SocialMediaLinkTwitterFonts,...SocialMediaLinkInstagramFonts,...NavbarMenuMobileFonts,...NavbarMenuFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg9Z1wLT3X\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MSszAD9cG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p2JJpjNSR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerScrollSections\":\"{\\\"ddvimfIju\\\":{\\\"pattern\\\":\\\":ddvimfIju\\\",\\\"name\\\":\\\"our-approach\\\"},\\\"Gm2g0ceRU\\\":{\\\"pattern\\\":\\\":Gm2g0ceRU\\\",\\\"name\\\":\\\"faq\\\"},\\\"GIxFwTQNS\\\":{\\\"pattern\\\":\\\":GIxFwTQNS\\\",\\\"name\\\":\\\"spaces\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4396\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"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", "_componentPresets_fonts", "_componentPresets_fonts1", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "u", "Link", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "m8tIEvSe2", "tLsdLbzKf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapawpp59", "args", "onTapoz1x7q", "onTap14w6zqa", "onTap17moa6c", "onTap113shyk", "onTapi2ay9a", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "SVG", "RichText2", "ComponentPresetsProvider", "css", "FramerhZx1WYFb3", "withCSS", "hZx1WYFb3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerXX78cUPnx", "withCSS", "XX78cUPnx_default", "addPropertyControls", "ControlType", "addFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "VideoFonts", "Video", "Button2Fonts", "XX78cUPnx_default", "EmbedFonts", "Embed", "SectionHeadingFonts", "zzidT1Y9s_default", "CardStatisticsCardFonts", "ohtteefEL_default", "MotionDivWithFX", "withFX", "motion", "FAQFonts", "hZx1WYFb3_default", "LoadingAnimationsFonts", "BYJUhJKQW_default", "TickerFonts", "Ticker", "FooterFonts", "KnZA0_XI_default", "NavbarFonts", "jYAXLFRaw_default", "ButtonButtonFonts", "H33V13AOG_default", "TabBarFonts", "qUh2EYS63_default", "SocialMediaLinkThreadsFonts", "z91qwqBjz_default", "SocialMediaLinkFacebookFonts", "iLKcxMXCN_default", "SocialMediaLinkLinkedinFonts", "aq5Bk_8he_default", "SocialMediaLinkTwitterFonts", "mJxVxGhbl_default", "SocialMediaLinkInstagramFonts", "lPPlD48j9_default", "NavbarMenuMobileFonts", "e3YCpmeOF_default", "NavbarMenuFonts", "QJ8FW7rd_default", "CursorFonts", "DLzb02IAq_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "formVariants", "form", "variants", "currentVariant", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "transformTemplate1", "_", "t", "transition3", "animation4", "animation5", "animation6", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition4", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "WMRuJsfOh3bnx0g", "overlay", "loadMore", "args", "T4hjfp0491wnntms", "Yzc_NpQAm1wnntms", "TTk_7m0j01wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "FormContainer", "formState", "l", "RichText2", "x", "PropertyOverrides2", "FormPlainTextInput2", "Link", "Image2", "ResolveLinks", "resolvedLinks", "AnimatePresence", "Ga", "SVG", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "overlay1", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "overlay2", "resolvedLinks12", "css", "Framerg9Z1wLT3X", "withCSS", "g9Z1wLT3X_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
