{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gHfEhJSyg0k1AyjmTPef/pGZVZ9HGNUAaKaX3ueNM/NewsletterSubscriptionForm.js", "ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/u6rJWIrjTdKVqJJgvlJW/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/N7likuYwsyiG0Aku3Csp/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/EDYDB7ihtf8Ou4i0ygB9/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/Soos9Q1A9zL94xYH62sT/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/CUUcuP1woK9faEWrL9ZQ/Cookies.js", "ssg:https://framerusercontent.com/modules/1GQc9xYIx5mScduo8phh/KNJOnVsagXLMMMcf1AMF/nby9eb6K2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";// BuildShip.com Open Source Form component for Framer\nexport default function NewsletterSubscriptionForm(props){// Paste your API link from BuildShip.com\n// Read tutorial here:\n// Watch tutorial video:\n// TODO: Update this with your BuildShip API or any external API handler\nconst formUrl=\"https://wvgzkd.buildship.run/productnewsletter\";// MAYBE: If you are adding more fields to your form in addition to email update here\nconst[email,setEmail]=useState(\"\");const[formStatus,setFormStatus]=useState(\"unsubmitted\");const onSubmit=async event=>{event.preventDefault();try{const response=await fetch(formUrl,{method:\"POST\",body:JSON.stringify({email}),headers:{\"Content-type\":\"application/json\"}});if(!response.ok){throw new Error(\"Network response was not ok\");}setFormStatus(\"submitted\")// Update state to indicate successful submission\n;}catch(error){console.error(\"Error during form submission: \",error);setFormStatus(\"error\")// Update state to indicate an error\n;}};// Function to update email state\n// MAYBE: If you are adding more fields to your form in addition to email update here\nconst handleEmailChange=event=>{setEmail(event.target.value);};if(formStatus===\"submitted\"){return /*#__PURE__*/_jsx(\"div\",{style:responseText,children:\"Thank you for subscribing!\"});}if(formStatus===\"error\"){return /*#__PURE__*/_jsx(\"div\",{children:\"Something went wrong. Please refresh and try again!\"});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:labelStyle,children:\"Subscribe to our product updates newsletter\"}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:onSubmit,style:containerStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"email\",value:email,onChange:handleEmailChange,placeholder:\"Your email\",required:true,style:inputStyle}),/*#__PURE__*/_jsx(\"input\",{type:\"submit\",value:\"Signup\",style:submitButtonStyle})]})]});}/// Updated Form Styles to match the provided image\n// Assuming a dark theme similar to the one in the image\nconst containerStyle={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",//background: \"#18181B\", // Dark background\npadding:\"0.5rem\",borderRadius:\"4px\",// boxShadow: \"0 4px 8px rgba(0, 0, 0, 0.1)\", // A subtle shadow\nmaxWidth:\"500px\",margin:\"auto\"};const inputStyle={flex:\"1\",fontSize:\"16px\",padding:\"0.75rem\",margin:\"0\",backgroundColor:\"#18181B\",border:\"1px solid #333\",borderRadius:\"12px\",color:\"#FFF\",marginRight:\"0.5rem\"};const submitButtonStyle={fontSize:\"16px\",padding:\"0.75rem 1.5rem\",backgroundColor:\"#2C91ED\",color:\"#FFF\",border:\"none\",borderRadius:\"12px\",cursor:\"pointer\",fontWeight:\"bold\"};const responseText={textAlign:\"center\",color:\"#5FCEAE\",fontSize:\"16px\",marginTop:\"1rem\"};const labelStyle={textAlign:\"center\",letterSpacing:.3,color:\"#FFF\",fontSize:\"16px\",marginBottom:\"1rem\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"NewsletterSubscriptionForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NewsletterSubscriptionForm.map", "import{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window['${dataLayerName}']=window['${dataLayerName}']||[];`+(dataLayer?`window['${dataLayerName}'].push(${JSON.stringify(dataLayer)});`:\"\")+`window['${dataLayerName}'].push({'gtm.start':new Date().getTime(),event:'gtm.js'})`;/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=\"\";if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`${customDomain}/${customScriptName}?id=${id}${dataLayerName===\"dataLayer\"?\"\":`&l=${dataLayerName}`}${params}`;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.src=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();document.head.append(dataLayerScript,script);};export function sendToGTM(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFlexboxValues(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){const[state,dispatch]=useReducer(reducer,initialState);const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM&&!gtmLoadedExternally){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\"];const isInEUTimezone=()=>{var _Intl_DateTimeFormat_resolvedOptions_timeZone,_Intl_DateTimeFormat_resolvedOptions,_Intl_DateTimeFormat,_Intl;return(_Intl=Intl)===null||_Intl===void 0?void 0:(_Intl_DateTimeFormat=_Intl.DateTimeFormat())===null||_Intl_DateTimeFormat===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions=_Intl_DateTimeFormat.resolvedOptions())===null||_Intl_DateTimeFormat_resolvedOptions===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions_timeZone=_Intl_DateTimeFormat_resolvedOptions.timeZone)===null||_Intl_DateTimeFormat_resolvedOptions_timeZone===void 0?void 0:_Intl_DateTimeFormat_resolvedOptions_timeZone.startsWith(\"Europe\");};const isEULocale=()=>{var _navigator_languages;var _navigator_language;const locale=(_navigator_language=navigator.language)!==null&&_navigator_language!==void 0?_navigator_language:(_navigator_languages=navigator.languages)===null||_navigator_languages===void 0?void 0:_navigator_languages[0];return countries.some(country=>{var _locale_toUpperCase;return locale===null||locale===void 0?void 0:(_locale_toUpperCase=locale.toUpperCase())===null||_locale_toUpperCase===void 0?void 0:_locale_toUpperCase.includes(country);});};let _inEU=null;export const inEU=()=>{if(_inEU===null)_inEU=isInEUTimezone()||isEULocale();return _inEU;};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/N7likuYwsyiG0Aku3Csp/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,lazy,Suspense}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";const SPACING=20;// if you update the Toggle component inside this project, copy the new URL to here:\nconst Toggle=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/QDCSmi7dYWSK5AcRSFyX/iWVjq9atvKQLvxgv6qiM/Blf0sjosZ.js\"));export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,showReject:region.showReject,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,showReject=true,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme,optional:option===\"necessary\"?options[option].optional:true}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[showReject&&/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,optional,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),optional?/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"p\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",fontWeight:\"bold\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);return shouldShow&&/*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[description,\" \",(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}const Button=withCSS(function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;var _settings_hoverOpacity,_settings_tapOpacity;return /*#__PURE__*/_jsx(motion.input,{className:\"__framer-cookie-component-button\",id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:(_settings_hoverOpacity=settings.hoverOpacity)!==null&&_settings_hoverOpacity!==void 0?_settings_hoverOpacity:.6},whileTap:{opacity:(_settings_tapOpacity=settings.tapOpacity)!==null&&_settings_tapOpacity!==void 0?_settings_tapOpacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");\nexport const __FramerMetadata__ = {\"exports\":{\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsOnFramerCanvas,withCSS}from\"framer\";import{AnimatePresence,isBrowser,motion}from\"framer-motion\";import{lazy,Suspense,useEffect,useState}from\"react\";import{createPortal}from\"react-dom\";import{defaultConsent,useConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/u6rJWIrjTdKVqJJgvlJW/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/EDYDB7ihtf8Ou4i0ygB9/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/Soos9Q1A9zL94xYH62sT/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/N7likuYwsyiG0Aku3Csp/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});const consent=useConsent({gtmId,defaultConsent:region.defaults,gtmLoadedExternally});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({isInEU});}});}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);const isOpen=props.isOpen;const[shouldRenderPortal,setShouldRenderPortal]=useState(isOpen);// if the portal has previously been rendered, we want to keep rendering the portal, which ensures:\n// - that AnimatePresence works (fade out effect)\n// - we don't cause body style recalc/reflow when the DOM node is removed\nif(!shouldRenderPortal&&isOpen)setShouldRenderPortal(isOpen);if(!shouldRenderPortal)return null;const blocking=props.region.blocking;return /*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen?/*#__PURE__*/_jsxs(motion.div,{style:{// We only need to span to the full viewport width if the overlay is blocking.\n// Otherwise, we optimize for a smaller layer size. see: https://framer-team.slack.com/archives/C05V49Q4NJ2/p1709820207863249\ntop:blocking||alignItems===\"flex-start\"?0:undefined,left:blocking||justifyContent===\"flex-start\"?0:undefined,right:blocking||justifyContent===\"flex-end\"?0:undefined,height:blocking?\"100%\":undefined,width:blocking||justifyContent===\"center\"?\"100%\":undefined,bottom:blocking||alignItems===\"flex-end\"?0:undefined,boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:blocking?\"all\":\"none\"},children:[blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}):null})}),document.body);}const Trigger=withCSS(({trigger,style,onClick})=>{const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{className:\"__framer-cookie-component-button\",\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cookies.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/CUUcuP1woK9faEWrL9ZQ/Cookies.js\";import{withAnalytics_button_footer_options__blog,withAnalytics_button_footer_options__changelog,withAnalytics_button_footer_options__contactus,withAnalytics_button_footer_options__discord,withAnalytics_button_footer_options__docs,withAnalytics_button_footer_options__officehours,withAnalytics_button_footer_options__partnerwithus,withAnalytics_button_footer_options__pricing,withAnalytics_button_footer_options__privacy,withAnalytics_button_footer_options__templates,withAnalytics_button_footer_options__terms,withAnalytics_button_footer_options__twitter,withAnalytics_button_footer_options__videos,withAnalytics_button_footer_options__youtube,withAnalytics_button_header_options__casestudies,withAnalytics_button_header_options__linkedin,withAnalytics_button_header_options__reddit}from\"https://framerusercontent.com/modules/5Iyyv7KTCbtrv1x9cTI9/MG80XoSGPO0OxEMAQimB/Analytics.js\";import NewsletterSubscriptionForm from\"https://framerusercontent.com/modules/gHfEhJSyg0k1AyjmTPef/pGZVZ9HGNUAaKaX3ueNM/NewsletterSubscriptionForm.js\";import Link1,*as LinkInfo from\"https://framerusercontent.com/modules/bZmjdGCNxLmbOzDViSjH/2faPWV6TGYqkpwUJgbWz/oUhQWB9gd.js\";const CookieBannerFonts=getFonts(CookieBanner);const Link1Fonts=getFonts(Link1);const Link1WithAnalytics_button_footer_options__pricing16qqbwyWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"gOBTVmsai\",override:withAnalytics_button_footer_options__pricing,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__changelog850999WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"PsQK1tXCa\",override:withAnalytics_button_footer_options__changelog,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__templateswybj5dWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"PKHlio0RM\",override:withAnalytics_button_footer_options__templates,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithus1y7l77oWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"RgJ8ljul_\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_header_options__casestudies1nr6577WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"Gq49wPJbR\",override:withAnalytics_button_header_options__casestudies,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_header_options__casestudies11l3oydWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"wk4QN03VD\",override:withAnalytics_button_header_options__casestudies,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithus1jnn232WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"sEZSienKj\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithus5o9u0lWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"LaKfvl_Y_\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithus1vfy6q2WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"YB8CNskPe\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithus1hm03ayWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"Cps6MT_iA\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithussmmcilWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"OuXfuBVDj\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__docs1trb62wWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"zewNuGhct\",override:withAnalytics_button_footer_options__docs,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__videosdvk0fqWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"ggl9BRdFU\",override:withAnalytics_button_footer_options__videos,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__officehours1xvou48WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"XaLlG4628\",override:withAnalytics_button_footer_options__officehours,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__officehoursxa7tskWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"tb7R7LexM\",override:withAnalytics_button_footer_options__officehours,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__blog13z4od8WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"RI2lUQnsp\",override:withAnalytics_button_footer_options__blog,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__blog53t9zuWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"fbOv9xXy_\",override:withAnalytics_button_footer_options__blog,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__discordhsm2l5WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"Gz8VCySgm\",override:withAnalytics_button_footer_options__discord,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__twitter16uybvwWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"s6Bxa0tNb\",override:withAnalytics_button_footer_options__twitter,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__youtube91he4vWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"AsGK_Yus8\",override:withAnalytics_button_footer_options__youtube,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_header_options__linkedin1npwx0lWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"OqvBrMaq4\",override:withAnalytics_button_header_options__linkedin,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_header_options__redditnfkx1gWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"Ft0WrOt0w\",override:withAnalytics_button_header_options__reddit,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__partnerwithus14zffe2WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"kjFxSwtvx\",override:withAnalytics_button_footer_options__partnerwithus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__contactus1owj7k2WithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"Ug6ZUCTUg\",override:withAnalytics_button_footer_options__contactus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__contactusieki2gWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"q3tm5JvI3\",override:withAnalytics_button_footer_options__contactus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__contactuswq1uucWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"XsglBKav2\",override:withAnalytics_button_footer_options__contactus,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__terms1qrf1jyWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"E63KEaCAK\",override:withAnalytics_button_footer_options__terms,scopeId:\"nby9eb6K2\"}),LinkInfo);const Link1WithAnalytics_button_footer_options__privacy1uk3oisWithMappedReactProps5kvezk=withMappedReactProps(withCodeBoundaryForOverrides(Link1,{nodeId:\"UujUteCey\",override:withAnalytics_button_footer_options__privacy,scopeId:\"nby9eb6K2\"}),LinkInfo);const NewsletterSubscriptionFormFonts=getFonts(NewsletterSubscriptionForm);const cycleOrder=[\"gUs7ecM70\",\"sotWhIjvw\",\"eJbUOHIru\"];const serializationHash=\"framer-vnrHj\";const variantClassNames={eJbUOHIru:\"framer-v-1b1mrgx\",gUs7ecM70:\"framer-v-14qr5as\",sotWhIjvw:\"framer-v-1ft1tub\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -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={Desktop:\"gUs7ecM70\",Phone:\"eJbUOHIru\",Tablet:\"sotWhIjvw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gUs7ecM70\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gUs7ecM70\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const U13PzKMR21yvflcc=activeVariantCallback(async(...args)=>{setVariant(\"gUs7ecM70\");});const onTap1yvflcc=activeVariantCallback(async(...args)=>{setVariant(\"gUs7ecM70\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14qr5as\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"gUs7ecM70\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6a64c683-1ca6-49ec-b1e2-5ab9dab4e58c, rgb(16, 16, 19))\",...style},...addPropertyOverrides({eJbUOHIru:{\"data-framer-name\":\"Phone\"},sotWhIjvw:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cs3vnd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pqv2gGZWm-container\",nodeId:\"pqv2gGZWm\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-NPCTV6MK\",height:\"100%\",id:\"pqv2gGZWm\",layoutId:\"pqv2gGZWm\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"none\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"J6H4qP3eE\"},motionChild:true,nodeId:\"bUIWN7jJR\",openInNewTab:false,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1j6avet framer-jneiwd\",\"data-framer-name\":\"Logotype\",layoutDependency:layoutDependency,layoutId:\"bUIWN7jJR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zgqc2o\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"tjrDTNtJg\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lQcSTYgP7VzZ0NdMzHsgUL2SpE.png\"},className:\"framer-uvucr3\",\"data-framer-name\":\"Icon 1\",layoutDependency:layoutDependency,layoutId:\"r4q_TjW0y\",...addPropertyOverrides({eJbUOHIru:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+0+1.75+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lQcSTYgP7VzZ0NdMzHsgUL2SpE.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3ob0rc\",\"data-framer-name\":\"BuildShip\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"T4bFWVt6o\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114 28\"><path d=\"M 1.512 20.75 L 1.512 3.092 L 8.932 3.092 C 11.99 3.092 13.921 5.237 13.921 7.835 C 13.921 9.752 12.868 10.912 12.116 11.442 C 13.219 12.047 14.572 13.309 14.572 15.655 C 14.572 18.606 12.392 20.75 9.183 20.75 Z M 4.094 18.429 L 9.032 18.429 C 10.436 18.429 11.89 17.37 11.89 15.579 C 11.89 13.838 10.561 12.779 9.032 12.779 L 4.094 12.779 Z M 4.094 10.458 L 8.431 10.458 C 10.211 10.458 11.263 9.323 11.263 7.936 C 11.263 6.422 10.135 5.413 8.631 5.413 L 4.094 5.413 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.817 20.977 C 19.859 20.977 17.829 18.808 17.829 15.983 L 17.829 7.759 L 20.336 7.759 L 20.336 15.428 C 20.336 17.446 21.664 18.606 23.344 18.606 C 25.074 18.606 26.402 17.345 26.402 15.428 L 26.402 7.759 L 28.909 7.759 L 28.909 18.152 L 29.812 20.75 L 27.129 20.75 L 26.628 19.388 C 26.076 20.119 24.798 20.977 22.817 20.977 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 33.012 20.75 L 33.012 7.759 L 35.519 7.759 L 35.519 20.75 Z M 32.435 3.774 C 32.435 2.714 33.212 1.932 34.265 1.932 C 35.318 1.932 36.095 2.714 36.095 3.774 C 36.095 4.808 35.318 5.615 34.265 5.615 C 33.212 5.615 32.435 4.808 32.435 3.774 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 39.47 20.75 L 39.47 2.083 L 41.977 2.083 L 41.977 20.75 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 51.177 20.977 C 47.642 20.977 44.86 18.455 44.86 14.242 C 44.86 10.357 47.592 7.532 51.177 7.532 C 52.982 7.532 54.712 8.365 55.464 9.474 L 55.464 2.083 L 57.971 2.083 L 57.971 20.75 L 55.464 20.75 L 55.464 19.111 C 54.661 20.195 52.882 20.977 51.177 20.977 Z M 47.392 14.242 C 47.392 16.664 48.946 18.657 51.453 18.657 C 53.96 18.657 55.514 16.664 55.514 14.242 C 55.514 11.871 53.96 9.878 51.453 9.878 C 48.946 9.878 47.392 11.846 47.392 14.242 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 67.94 18.53 C 70.748 18.53 71.826 17.244 71.826 15.857 C 71.826 14.57 70.898 13.788 69.269 13.384 L 66.511 12.703 C 63.879 12.073 62.024 10.635 62.024 7.86 C 62.024 4.808 64.631 2.865 68.04 2.865 C 71.726 2.865 73.731 4.984 74.333 6.902 L 72.052 8.112 C 71.776 6.876 70.497 5.262 68.04 5.262 C 65.985 5.262 64.656 6.271 64.656 7.81 C 64.656 9.096 65.609 9.828 67.088 10.181 L 69.971 10.862 C 73.054 11.619 74.508 13.41 74.508 15.806 C 74.508 18.606 72.252 20.977 67.89 20.977 C 64.005 20.977 61.798 18.707 61.096 16.765 L 63.328 15.503 C 63.829 17.193 65.584 18.53 67.94 18.53 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 77.887 20.75 L 77.887 2.083 L 80.393 2.083 L 80.393 9.374 C 81.12 8.264 82.399 7.532 84.154 7.532 C 87.011 7.532 88.967 9.676 88.967 12.476 L 88.967 20.75 L 86.46 20.75 L 86.46 13.082 C 86.46 11.064 85.131 9.903 83.427 9.903 C 81.697 9.903 80.393 11.165 80.393 13.082 L 80.393 20.75 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 92.917 20.75 L 92.917 7.759 L 95.424 7.759 L 95.424 20.75 Z M 92.34 3.774 C 92.34 2.714 93.117 1.932 94.17 1.932 C 95.223 1.932 96 2.714 96 3.774 C 96 4.808 95.223 5.615 94.17 5.615 C 93.117 5.615 92.34 4.808 92.34 3.774 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 99.626 26.527 L 99.626 7.759 L 102.133 7.759 L 102.133 9.424 C 102.96 8.314 104.514 7.532 106.444 7.532 C 109.954 7.532 112.737 10.055 112.737 14.267 C 112.737 18.177 110.004 20.977 106.444 20.977 C 104.514 20.977 102.885 20.145 102.133 19.035 L 102.133 26.527 Z M 102.082 14.267 C 102.082 16.638 103.637 18.631 106.144 18.631 C 108.65 18.631 110.205 16.664 110.205 14.267 C 110.205 11.846 108.65 9.878 106.144 9.878 C 103.637 9.878 102.082 11.871 102.082 14.267 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9160330183,withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7yeh29\",\"data-border\":true,\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"f3xTMfniN\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dlfr0a\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"NrAc1l_4v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Product\"})}),className:\"framer-13rc3js\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"KhI1Ha8pB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w9stb0\",layoutDependency:layoutDependency,layoutId:\"TeSz3USI8\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G5EyF_KqF\"},implicitPathVariables:undefined},{href:{webPageId:\"G5EyF_KqF\"},implicitPathVariables:undefined},{href:{webPageId:\"G5EyF_KqF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+0+0+56.6+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16qqbwy-container\",layoutDependency:layoutDependency,layoutId:\"gOBTVmsai-container\",nodeId:\"gOBTVmsai\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__pricing16qqbwyWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks[0],height:\"100%\",id:\"gOBTVmsai\",layoutId:\"gOBTVmsai\",Uu0GmLbtj:\"Pricing\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rRVTAIyAN\"},implicitPathVariables:undefined},{href:{webPageId:\"rRVTAIyAN\"},implicitPathVariables:undefined},{href:{webPageId:\"rRVTAIyAN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+0+0+56.6+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-850999-container\",layoutDependency:layoutDependency,layoutId:\"PsQK1tXCa-container\",nodeId:\"PsQK1tXCa\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__changelog850999WithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks1[0],height:\"100%\",id:\"PsQK1tXCa\",layoutId:\"PsQK1tXCa\",Uu0GmLbtj:\"Changelog\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks1[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nJhD9_B1m\"},implicitPathVariables:undefined},{href:{webPageId:\"nJhD9_B1m\"},implicitPathVariables:undefined},{href:{webPageId:\"nJhD9_B1m\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+0+0+56.6+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wybj5d-container\",layoutDependency:layoutDependency,layoutId:\"PKHlio0RM-container\",nodeId:\"PKHlio0RM\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__templateswybj5dWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks2[0],height:\"100%\",id:\"PKHlio0RM\",layoutId:\"PKHlio0RM\",Uu0GmLbtj:\"Templates\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks2[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Uyl0rN9Dv\"},implicitPathVariables:undefined},{href:{webPageId:\"Uyl0rN9Dv\"},implicitPathVariables:undefined},{href:{webPageId:\"Uyl0rN9Dv\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+0+0+56.6+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y7l77o-container\",layoutDependency:layoutDependency,layoutId:\"RgJ8ljul_-container\",nodeId:\"RgJ8ljul_\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithus1y7l77oWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks3[0],height:\"100%\",id:\"RgJ8ljul_\",layoutId:\"RgJ8ljul_\",Uu0GmLbtj:\"AI Assistants\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks3[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aYjRKHQk1\"},implicitPathVariables:undefined},{href:{webPageId:\"aYjRKHQk1\"},implicitPathVariables:undefined},{href:{webPageId:\"aYjRKHQk1\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+0+0+56.6+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nr6577-container\",layoutDependency:layoutDependency,layoutId:\"Gq49wPJbR-container\",nodeId:\"Gq49wPJbR\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_header_options__casestudies1nr6577WithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks4[0],height:\"100%\",id:\"Gq49wPJbR\",layoutId:\"Gq49wPJbR\",Uu0GmLbtj:\"Case Studies\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks4[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MQIbW0Qvn\"},implicitPathVariables:undefined},{href:{webPageId:\"MQIbW0Qvn\"},implicitPathVariables:undefined},{href:{webPageId:\"MQIbW0Qvn\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+0+0+56.6+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11l3oyd-container\",layoutDependency:layoutDependency,layoutId:\"wk4QN03VD-container\",nodeId:\"wk4QN03VD\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_header_options__casestudies11l3oydWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks5[0],height:\"100%\",id:\"wk4QN03VD\",layoutId:\"wk4QN03VD\",Uu0GmLbtj:\"Integrations\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks5[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dtjpur\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"amV8KI4Us\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Help\"})}),className:\"framer-1nfl9ds\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"EKlbfGa6D\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7hbax4\",layoutDependency:layoutDependency,layoutId:\"ybe7sKnE5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+248.6+0+56.6+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jnn232-container\",layoutDependency:layoutDependency,layoutId:\"sEZSienKj-container\",nodeId:\"sEZSienKj\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithus1jnn232WithMappedReactProps5kvezk,{cS9YzmSZA:\"https://docs.buildship.com/support-messages\",height:\"100%\",id:\"sEZSienKj\",layoutId:\"sEZSienKj\",Uu0GmLbtj:\"In-App Support\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+248.6+0+56.6+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5o9u0l-container\",layoutDependency:layoutDependency,layoutId:\"LaKfvl_Y_-container\",nodeId:\"LaKfvl_Y_\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithus5o9u0lWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://buildship.com/discord\",height:\"100%\",id:\"LaKfvl_Y_\",layoutId:\"LaKfvl_Y_\",Uu0GmLbtj:\"Chat\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+248.6+0+56.6+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vfy6q2-container\",layoutDependency:layoutDependency,layoutId:\"YB8CNskPe-container\",nodeId:\"YB8CNskPe\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithus1vfy6q2WithMappedReactProps5kvezk,{cS9YzmSZA:\"https://cal.com/buildship/office-hours\",height:\"100%\",id:\"YB8CNskPe\",layoutId:\"YB8CNskPe\",Uu0GmLbtj:\"Office Hours\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+248.6+0+56.6+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hm03ay-container\",layoutDependency:layoutDependency,layoutId:\"Cps6MT_iA-container\",nodeId:\"Cps6MT_iA\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithus1hm03ayWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://cal.com/buildship/demo\",height:\"100%\",id:\"Cps6MT_iA\",layoutId:\"Cps6MT_iA\",Uu0GmLbtj:\"Book a Demo\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bfEVrAKhK\"},implicitPathVariables:undefined},{href:{webPageId:\"bfEVrAKhK\"},implicitPathVariables:undefined},{href:{webPageId:\"bfEVrAKhK\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+248.6+0+56.6+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-smmcil-container\",layoutDependency:layoutDependency,layoutId:\"OuXfuBVDj-container\",nodeId:\"OuXfuBVDj\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithussmmcilWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks6[0],height:\"100%\",id:\"OuXfuBVDj\",layoutId:\"OuXfuBVDj\",Uu0GmLbtj:\"Find Experts\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks6[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18hsd4y\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"cuk6KE5VT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Resources\"})}),className:\"framer-13to6d6\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"nD0SizBpS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e5i8c0\",layoutDependency:layoutDependency,layoutId:\"bL7_pFsXW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+497.2+0+56.6+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1trb62w-container\",layoutDependency:layoutDependency,layoutId:\"zewNuGhct-container\",nodeId:\"zewNuGhct\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__docs1trb62wWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://docs.buildship.com/\",height:\"100%\",id:\"zewNuGhct\",layoutId:\"zewNuGhct\",Uu0GmLbtj:\"Documentation\",variant:\"XjkKWl9L2\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+497.2+0+56.6+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dvk0fq-container\",layoutDependency:layoutDependency,layoutId:\"ggl9BRdFU-container\",nodeId:\"ggl9BRdFU\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__videosdvk0fqWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://buildship.com/youtube\",height:\"100%\",id:\"ggl9BRdFU\",layoutId:\"ggl9BRdFU\",U13PzKMR2:U13PzKMR21yvflcc,Uu0GmLbtj:\"Video Tutorials\",variant:\"XjkKWl9L2\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MgWYvoMqj\"},implicitPathVariables:undefined},{href:{webPageId:\"MgWYvoMqj\"},implicitPathVariables:undefined},{href:{webPageId:\"MgWYvoMqj\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+497.2+0+56.6+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xvou48-container\",layoutDependency:layoutDependency,layoutId:\"XaLlG4628-container\",nodeId:\"XaLlG4628\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__officehours1xvou48WithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks7[0],height:\"100%\",id:\"XaLlG4628\",layoutId:\"XaLlG4628\",Uu0GmLbtj:\"Events\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks7[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"U_ffUoeiV\"},implicitPathVariables:undefined},{href:{webPageId:\"U_ffUoeiV\"},implicitPathVariables:undefined},{href:{webPageId:\"U_ffUoeiV\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+497.2+0+56.6+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xa7tsk-container\",layoutDependency:layoutDependency,layoutId:\"tb7R7LexM-container\",nodeId:\"tb7R7LexM\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__officehoursxa7tskWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks8[0],height:\"100%\",id:\"tb7R7LexM\",layoutId:\"tb7R7LexM\",Uu0GmLbtj:\"Affiliate Program\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks8[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sXYpvIMQo\"},implicitPathVariables:undefined},{href:{webPageId:\"sXYpvIMQo\"},implicitPathVariables:undefined},{href:{webPageId:\"sXYpvIMQo\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+497.2+0+56.6+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13z4od8-container\",layoutDependency:layoutDependency,layoutId:\"RI2lUQnsp-container\",nodeId:\"RI2lUQnsp\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__blog13z4od8WithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks9[0],height:\"100%\",id:\"RI2lUQnsp\",layoutId:\"RI2lUQnsp\",Uu0GmLbtj:\"Blog\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks9[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tqnKs7EsB\"},implicitPathVariables:undefined},{href:{webPageId:\"tqnKs7EsB\"},implicitPathVariables:undefined},{href:{webPageId:\"tqnKs7EsB\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+497.2+0+56.6+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-53t9zu-container\",layoutDependency:layoutDependency,layoutId:\"fbOv9xXy_-container\",nodeId:\"fbOv9xXy_\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__blog53t9zuWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks10[0],height:\"100%\",id:\"fbOv9xXy_\",layoutId:\"fbOv9xXy_\",Uu0GmLbtj:\"Community Nodes\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks10[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j1r59o\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"naKdYj2g1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Community\"})}),className:\"framer-p0sei6\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"VozL8GlkJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uw3tyz\",layoutDependency:layoutDependency,layoutId:\"tSZFBFV3c\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+775.8+0+56.6+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hsm2l5-container\",layoutDependency:layoutDependency,layoutId:\"Gz8VCySgm-container\",nodeId:\"Gz8VCySgm\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__discordhsm2l5WithMappedReactProps5kvezk,{cS9YzmSZA:\"https://discord.com/invite/fjBugmvzZP\",height:\"100%\",id:\"Gz8VCySgm\",layoutId:\"Gz8VCySgm\",Uu0GmLbtj:\"Discord\",variant:\"XTKZ9dhxl\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+775.8+0+56.6+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16uybvw-container\",layoutDependency:layoutDependency,layoutId:\"s6Bxa0tNb-container\",nodeId:\"s6Bxa0tNb\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__twitter16uybvwWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://x.com/BuildShipApp\",height:\"100%\",id:\"s6Bxa0tNb\",layoutId:\"s6Bxa0tNb\",Uu0GmLbtj:\"Twitter\",variant:\"vJhLmADQU\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+775.8+0+56.6+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-91he4v-container\",layoutDependency:layoutDependency,layoutId:\"AsGK_Yus8-container\",nodeId:\"AsGK_Yus8\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__youtube91he4vWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://www.youtube.com/@buildshipapp\",height:\"100%\",id:\"AsGK_Yus8\",layoutId:\"AsGK_Yus8\",Uu0GmLbtj:\"YouTube\",variant:\"hKulXMAjA\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+775.8+0+56.6+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1npwx0l-container\",layoutDependency:layoutDependency,layoutId:\"OqvBrMaq4-container\",nodeId:\"OqvBrMaq4\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_header_options__linkedin1npwx0lWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://www.linkedin.com/company/buildship\",height:\"100%\",id:\"OqvBrMaq4\",layoutId:\"OqvBrMaq4\",Uu0GmLbtj:\"LinkedIn\",variant:\"P40hgf6d4\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+775.8+0+56.6+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nfkx1g-container\",layoutDependency:layoutDependency,layoutId:\"Ft0WrOt0w-container\",nodeId:\"Ft0WrOt0w\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_header_options__redditnfkx1gWithMappedReactProps5kvezk,{cS9YzmSZA:\"https://www.reddit.com/r/Buildship/\",height:\"100%\",id:\"Ft0WrOt0w\",layoutId:\"Ft0WrOt0w\",Uu0GmLbtj:\"Reddit\",variant:\"ekhUJAfKZ\",width:\"100%\",ZOoO9thM9:true})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bfEVrAKhK\"},implicitPathVariables:undefined},{href:{webPageId:\"bfEVrAKhK\"},implicitPathVariables:undefined},{href:{webPageId:\"bfEVrAKhK\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+775.8+0+56.6+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14zffe2-container\",layoutDependency:layoutDependency,layoutId:\"kjFxSwtvx-container\",nodeId:\"kjFxSwtvx\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__partnerwithus14zffe2WithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks11[0],height:\"100%\",id:\"kjFxSwtvx\",layoutId:\"kjFxSwtvx\",Uu0GmLbtj:\"Partner with us\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks11[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h9r1f6\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"HvWtNuvic\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company\"})}),className:\"framer-d4oymr\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"xAAamedl1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ngzr4z\",layoutDependency:layoutDependency,layoutId:\"aHAaVROfX\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AgWZpS0IC\"},implicitPathVariables:undefined},{href:{webPageId:\"AgWZpS0IC\"},implicitPathVariables:undefined},{href:{webPageId:\"AgWZpS0IC\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+1054.4+0+56.6+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1owj7k2-container\",layoutDependency:layoutDependency,layoutId:\"Ug6ZUCTUg-container\",nodeId:\"Ug6ZUCTUg\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__contactus1owj7k2WithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks12[0],height:\"100%\",id:\"Ug6ZUCTUg\",layoutId:\"Ug6ZUCTUg\",Uu0GmLbtj:\"About Us\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks12[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uTiI2Cp4k\"},implicitPathVariables:undefined},{href:{webPageId:\"uTiI2Cp4k\"},implicitPathVariables:undefined},{href:{webPageId:\"uTiI2Cp4k\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+1054.4+0+56.6+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ieki2g-container\",layoutDependency:layoutDependency,layoutId:\"q3tm5JvI3-container\",nodeId:\"q3tm5JvI3\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__contactusieki2gWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks13[0],height:\"100%\",id:\"q3tm5JvI3\",layoutId:\"q3tm5JvI3\",Uu0GmLbtj:\"Careers\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks13[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+1054.4+0+56.6+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wq1uuc-container\",layoutDependency:layoutDependency,layoutId:\"XsglBKav2-container\",nodeId:\"XsglBKav2\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__contactuswq1uucWithMappedReactProps5kvezk,{cS9YzmSZA:\"mailto:hello@buildship.com\",height:\"100%\",id:\"XsglBKav2\",layoutId:\"XsglBKav2\",Uu0GmLbtj:\"Contact\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eRjMhejI2\"},implicitPathVariables:undefined},{href:{webPageId:\"eRjMhejI2\"},implicitPathVariables:undefined},{href:{webPageId:\"eRjMhejI2\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+1054.4+0+56.6+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qrf1jy-container\",layoutDependency:layoutDependency,layoutId:\"E63KEaCAK-container\",nodeId:\"E63KEaCAK\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__terms1qrf1jyWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks14[0],height:\"100%\",id:\"E63KEaCAK\",layoutId:\"E63KEaCAK\",Uu0GmLbtj:\"Terms\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks14[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fIMNDajQG\"},implicitPathVariables:undefined},{href:{webPageId:\"fIMNDajQG\"},implicitPathVariables:undefined},{href:{webPageId:\"fIMNDajQG\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({eJbUOHIru:{y:(componentViewport?.y||0)+60+102+32+1054.4+0+56.6+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uk3ois-container\",layoutDependency:layoutDependency,layoutId:\"UujUteCey-container\",nodeId:\"UujUteCey\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(Link1WithAnalytics_button_footer_options__privacy1uk3oisWithMappedReactProps5kvezk,{cS9YzmSZA:resolvedLinks15[0],height:\"100%\",id:\"UujUteCey\",layoutId:\"UujUteCey\",Uu0GmLbtj:\"Privacy\",variant:\"YiyNoPf5U\",width:\"100%\",ZOoO9thM9:false,...addPropertyOverrides({eJbUOHIru:{cS9YzmSZA:resolvedLinks15[2]},sotWhIjvw:{cS9YzmSZA:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nixqjr\",layoutDependency:layoutDependency,layoutId:\"pLQRzVrvG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gi988r\",layoutDependency:layoutDependency,layoutId:\"V8PU84eHx\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://trustcenter.buildship.com/\",motionChild:true,nodeId:\"ShR6Mgy8f\",openInNewTab:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1w6owgl framer-jneiwd\",\"data-border\":true,\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ShR6Mgy8f\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:150,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/DWHFCP8SjT8PCqIMrJSIN5RmI.png\"},className:\"framer-w41tu4\",\"data-framer-name\":\"Soc2\",layoutDependency:layoutDependency,layoutId:\"iAkOTcPOi\",...addPropertyOverrides({eJbUOHIru:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+1455+0+0+0+32+-19),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/DWHFCP8SjT8PCqIMrJSIN5RmI.png\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:\"https://trustcenter.buildship.com/\",motionChild:true,nodeId:\"WYDfw76S0\",openInNewTab:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1falch5 framer-jneiwd\",\"data-border\":true,\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"WYDfw76S0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"54px\",src:\"https://framerusercontent.com/images/6xC09WjpYXByWRCeC0VMMOJqDvA.png\",srcSet:\"https://framerusercontent.com/images/6xC09WjpYXByWRCeC0VMMOJqDvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6xC09WjpYXByWRCeC0VMMOJqDvA.png 1024w\"},className:\"framer-15ytw0t\",\"data-framer-name\":\"image 240\",layoutDependency:layoutDependency,layoutId:\"GCHLIUN6d\",style:{borderBottomLeftRadius:300,borderBottomRightRadius:300,borderTopLeftRadius:300,borderTopRightRadius:300},...addPropertyOverrides({eJbUOHIru:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+1455+0+0+0+32+-19),sizes:\"54px\",src:\"https://framerusercontent.com/images/6xC09WjpYXByWRCeC0VMMOJqDvA.png\",srcSet:\"https://framerusercontent.com/images/6xC09WjpYXByWRCeC0VMMOJqDvA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6xC09WjpYXByWRCeC0VMMOJqDvA.png 1024w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:\"https://trustcenter.buildship.com/\",motionChild:true,nodeId:\"DU5UYRkWD\",openInNewTab:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10xew5l framer-jneiwd\",\"data-border\":true,\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"DU5UYRkWD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m823sl\",\"data-framer-name\":\"* 1946705 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:66,layoutDependency:layoutDependency,layoutId:\"rEeixTq_e\",svg:'<svg width=\"66\" height=\"35\" viewBox=\"0 0 66 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_562_86961)\">\\n<path d=\"M19.3569 5.07823C18.9173 5.07941 18.5651 5.0501 18.3003 4.99028C17.4313 4.79418 17.4643 3.32228 17.3732 2.70132C17.2094 1.5806 16.624 0.626273 15.3743 0.454541C14.6929 0.361247 14.0158 0.421264 13.335 0.622707C12.9806 0.727687 12.7017 0.831875 12.4984 0.935271C11.3242 1.53425 10.1354 2.10431 8.93195 2.64546C8.9266 2.64795 8.92206 2.65176 8.91883 2.65647C8.9156 2.66119 8.91379 2.66663 8.91361 2.6722C8.91178 2.71974 8.97411 2.6722 8.98817 2.66685C10.2379 2.16829 11.256 1.62933 12.3841 1.09155C13.3888 0.612011 15.0486 0.282809 16.074 0.834846C17.2131 1.4475 17.1893 2.70191 17.3237 3.78756C17.3909 4.32593 17.6769 5.06694 18.3027 5.15369C18.6038 5.19568 18.9603 5.22163 19.3722 5.23154M21.0539 5.26006C22.0684 5.18697 22.6239 5.32721 23.0272 4.23799C23.1006 4.04031 23.1401 3.87551 23.1458 3.74359C23.2161 2.16829 23.5393 0.643505 25.4998 0.576952C26.4128 0.546052 27.2524 0.715605 28.0188 1.08561C29.1487 1.63171 30.2878 2.22593 31.4447 2.67279C31.4569 2.67755 31.4691 2.67953 31.4813 2.67873C31.5367 2.67636 31.5392 2.66408 31.4887 2.64189C30.4253 2.17523 29.3773 1.67825 28.3445 1.15098C27.4071 0.672622 26.4727 0.361841 25.413 0.43612C24.6289 0.490789 23.9262 0.763539 23.5271 1.41362C23.0651 2.16651 23.0896 2.98417 22.9502 3.84758C22.8936 4.19817 22.7532 4.50737 22.5292 4.77517C22.2554 5.10199 21.4279 5.10972 21.068 5.07823\" stroke=\"white\" stroke-width=\"0.64421\"/>\\n<path d=\"M14.487 0H15.1592C16.8282 0.111121 17.5511 1.23778 17.6629 2.75246C17.7076 3.3562 17.7601 4.52623 18.6138 4.61655C18.8302 4.63953 19.052 4.65696 19.2793 4.66885C19.2942 4.66956 19.3083 4.67566 19.3189 4.68597C19.3295 4.69628 19.3359 4.71007 19.3368 4.7247L19.3569 5.07827C18.9174 5.07946 18.5651 5.05014 18.3003 4.99032C17.4313 4.79423 17.4643 3.32233 17.3733 2.70136C17.2095 1.58065 16.6241 0.626316 15.3743 0.454584C14.6929 0.36129 14.0158 0.421307 13.3351 0.62275C12.9806 0.727731 12.7017 0.831918 12.4984 0.935314C11.3243 1.5343 10.1355 2.10436 8.932 2.6455C8.92665 2.64799 8.92212 2.6518 8.91888 2.65652C8.91565 2.66123 8.91384 2.66667 8.91367 2.67224C8.91183 2.71978 8.97417 2.67224 8.98822 2.66689C10.2379 2.16834 11.2561 1.62937 12.3842 1.0916C13.3888 0.612054 15.0486 0.282852 16.0741 0.83489C17.2132 1.44754 17.1893 2.70195 17.3238 3.78761C17.391 4.32598 17.677 5.06698 18.3028 5.15374C18.6039 5.19573 18.9603 5.22168 19.3722 5.23158C19.3527 5.60594 19.3504 6.02725 19.3655 6.4955C19.3798 6.94434 19.3971 7.89293 19.4174 9.34126C19.4174 9.35216 19.4145 9.36283 19.4089 9.37216C19.0318 9.99253 18.4103 10.582 17.6727 10.7413C17.4087 10.7983 17.1624 10.7216 17.1239 10.4412C17.1101 10.3421 17.1427 10.2025 17.2217 10.0222C17.2376 9.9854 17.5462 9.38879 17.4491 9.42267C17.4365 9.42723 17.4264 9.4362 17.4209 9.44762C17.1013 10.1126 16.3191 10.8559 15.4935 10.7074C15.0254 10.623 14.9044 10.1435 15.1446 9.79227C15.3764 9.45317 15.5729 9.09445 15.7343 8.71613C15.7563 8.66463 15.7475 8.65908 15.708 8.69949C15.6982 8.70939 15.6884 8.72227 15.6787 8.73812C15.4709 9.07326 15.0969 9.63243 14.7192 9.85823C14.1301 10.2106 11.5647 11.1834 12.8095 9.182C12.9016 9.03384 13.059 8.85023 13.2819 8.63115C13.5874 8.33166 13.8818 8.02187 14.1649 7.70178C14.1876 7.67683 14.1808 7.62513 14.1399 7.66494C13.6834 8.11239 13.1303 8.66027 12.5412 8.93183C11.8996 9.22776 10.6559 9.76613 9.95194 9.5837C9.34144 9.42504 9.77533 8.80467 9.988 8.55628C10.0609 8.47111 10.1882 8.36732 10.3699 8.24491C11.1738 7.70297 11.9629 7.14123 12.7374 6.55968C12.782 6.5264 12.7252 6.53591 12.7178 6.54007C11.8317 7.103 10.9346 7.64909 10.0265 8.17835C9.88309 8.26234 9.73602 8.32354 9.58528 8.36197C8.71954 8.58263 7.85298 8.68147 6.98561 8.65849C6.82835 8.65413 6.66213 8.62759 6.48694 8.57886C5.58128 8.32691 7.05406 7.51935 7.32111 7.39932C8.492 6.87482 9.64354 6.31387 10.7757 5.71647C12.4086 4.85405 12.3899 4.81879 10.7195 5.6107C10.6445 5.64595 10.5698 5.68161 10.4952 5.71766C9.95622 5.97476 8.77739 6.48223 6.95872 7.24007C6.82631 7.29513 6.69146 7.32881 6.55417 7.34109C5.54583 7.43141 4.33522 7.47182 3.344 7.2371C2.72617 7.09092 3.75467 6.46104 3.9215 6.37844C6.7155 4.99706 9.51174 3.61984 12.3102 2.24677C12.3343 2.23529 12.3326 2.22776 12.3053 2.22419C12.2996 2.2238 12.2939 2.22479 12.2882 2.22716C9.47956 3.46157 6.67659 4.70806 3.87933 5.96664C3.7783 6.0122 3.67339 6.03735 3.56461 6.04211C2.85328 6.07182 1.98978 6.07558 0.974111 6.0534C0.599296 6.04508 0.274593 5.99239 0 5.89533V5.84958C0.0932963 5.78778 0.195556 5.74479 0.306778 5.72063C1.46463 5.46749 2.59519 5.1264 3.69844 4.69737C5.65563 3.93676 7.57248 3.09078 9.449 2.15942C11.1112 1.33463 12.5632 0.187182 14.487 0ZM21.054 5.2601C22.0684 5.18701 22.6239 5.32725 23.0273 4.23803C23.1006 4.04035 23.1401 3.87555 23.1458 3.74363C23.2161 2.16834 23.5394 0.643548 25.4998 0.576995C26.4128 0.546095 27.2525 0.715648 28.0188 1.08565C29.1488 1.63175 30.2879 2.22598 31.4447 2.67284C31.4569 2.67759 31.4692 2.67957 31.4814 2.67878C31.5368 2.6764 31.5392 2.66412 31.4887 2.64194C30.4254 2.17527 29.3773 1.6783 28.3446 1.15102C27.4071 0.672666 26.4727 0.361885 25.4131 0.436163C24.629 0.490832 23.9262 0.763582 23.5272 1.41367C23.0652 2.16655 23.0896 2.98421 22.9503 3.84762C22.8936 4.19822 22.7533 4.50741 22.5292 4.77521C22.2554 5.10204 21.428 5.10976 21.0681 5.07827L21.0699 4.73599C21.0699 4.72049 21.0762 4.70562 21.0874 4.6946C21.0986 4.68359 21.1138 4.67732 21.1298 4.67716C21.3909 4.6732 21.6506 4.65478 21.9089 4.6219C22.8476 4.50068 22.7486 2.72394 22.8971 2.08514C23.2485 0.574024 24.2171 -0.0410017 25.7742 0.0196095C27.2317 0.0760611 28.3097 0.698812 29.5289 1.38812C31.4423 2.46902 33.4907 3.37759 35.6388 4.26774C36.9054 4.79264 38.1323 5.2187 39.3195 5.54593C39.4081 5.57029 40.447 5.75628 40.4507 5.89414C40.451 5.90738 40.4467 5.92036 40.4385 5.93101C40.4303 5.94167 40.4187 5.9494 40.4054 5.95297C40.2189 6.00091 40.0306 6.03062 39.8408 6.04211C38.8577 6.10192 37.8744 6.10806 36.8909 6.06053C36.7814 6.05538 36.6758 6.03002 36.5744 5.98447C33.824 4.74609 31.0669 3.52199 28.303 2.31214C28.2651 2.2955 28.2498 2.29887 28.2572 2.32224C28.2595 2.32874 28.2641 2.33404 28.27 2.3371C31.0387 3.68797 33.802 5.04935 36.5597 6.42122C36.8502 6.56542 37.0953 6.76211 37.2949 7.01129C37.3662 7.10003 37.3493 7.16341 37.2442 7.20144C37.0657 7.26641 36.882 7.3092 36.6929 7.3298C35.7685 7.43042 34.8439 7.44032 33.9191 7.35951C33.7777 7.34683 33.639 7.31276 33.5029 7.2573C31.6998 6.52165 29.9198 5.73628 28.1631 4.90119C28.137 4.88851 28.1378 4.8901 28.1655 4.90594C29.8249 5.83967 31.5221 6.70289 33.2573 7.49559C33.5783 7.64216 33.8633 7.83766 34.1122 8.08209C34.5033 8.46596 33.9937 8.63115 33.6961 8.65314C32.7611 8.72148 31.7588 8.60738 30.8562 8.37267C30.7022 8.33265 30.5505 8.26887 30.4009 8.18132C29.5095 7.65999 28.6159 7.11548 27.72 6.54779C27.5395 6.43331 27.5316 6.4436 27.6962 6.57869C27.7206 6.5989 27.7499 6.62168 27.7842 6.64703C28.5639 7.22184 29.3572 7.77864 30.1638 8.3174C30.5317 8.56341 31.328 9.52606 30.3356 9.62946C29.546 9.71265 27.9101 9.06613 27.2843 8.54796C27.1661 8.45011 27.0488 8.35147 26.9323 8.25204C26.2853 7.69861 26.257 7.72694 26.8473 8.33701C26.9643 8.45784 27.0849 8.5753 27.2091 8.68939C27.5501 9.00136 27.7334 9.32402 27.896 9.72869C28.1692 10.4097 27.5917 10.4923 27.0777 10.3883C26.5204 10.2754 25.7724 10.0252 25.3966 9.58667C25.3287 9.50764 24.7207 8.72029 24.7201 8.72029C24.7184 8.72052 24.7168 8.72116 24.7155 8.72216C24.7141 8.72315 24.713 8.72447 24.7123 8.72602C24.7115 8.72756 24.7111 8.7293 24.7111 8.73108C24.711 8.73287 24.7114 8.73467 24.7121 8.73633C24.8698 9.10436 25.0627 9.45317 25.2908 9.78277C25.3572 9.87943 25.3949 9.97074 25.4039 10.0567C25.4595 10.5963 25.1301 10.768 24.6308 10.7413C24.0802 10.7115 23.5192 10.2231 23.2314 9.79762C23.2155 9.77425 23.1998 9.75088 23.1843 9.7275C22.9709 9.41058 22.9423 9.42564 23.0988 9.77267C23.1411 9.86735 23.1856 9.96104 23.232 10.0537C23.2915 10.173 23.3198 10.2789 23.3169 10.3716C23.2998 10.9486 22.7291 10.7876 22.3844 10.6248C21.7965 10.3479 21.3457 9.92499 21.032 9.35611C20.9917 9.28203 20.9725 9.20003 20.9746 9.1101C21.0084 7.82815 21.0349 6.54482 21.054 5.2601Z\" fill=\"white\"/>\\n<path d=\"M19.3569 5.07823C19.5084 5.11467 19.5135 5.16577 19.3722 5.23154C18.9603 5.22163 18.6038 5.19568 18.3027 5.15369C17.6769 5.06694 17.3909 4.32593 17.3237 3.78756C17.1893 2.70191 17.2131 1.4475 16.074 0.834846C15.0486 0.282809 13.3888 0.612011 12.3841 1.09155C11.256 1.62933 10.2379 2.16829 8.98817 2.66685C8.97411 2.6722 8.91178 2.71974 8.91361 2.6722C8.91379 2.66663 8.9156 2.66119 8.91883 2.65647C8.92206 2.65176 8.9266 2.64795 8.93195 2.64546C10.1354 2.10431 11.3242 1.53425 12.4984 0.935271C12.7017 0.831875 12.9806 0.727687 13.335 0.622707C14.0158 0.421264 14.6929 0.361247 15.3743 0.454541C16.624 0.626273 17.2094 1.5806 17.3732 2.70132C17.4643 3.32228 17.4313 4.79418 18.3003 4.99028C18.5651 5.0501 18.9173 5.07941 19.3569 5.07823ZM21.0539 5.26006C20.9549 5.18637 20.9596 5.12576 21.068 5.07823C21.4279 5.10972 22.2554 5.10199 22.5292 4.77517C22.7532 4.50737 22.8936 4.19817 22.9502 3.84758C23.0896 2.98417 23.0651 2.16651 23.5271 1.41362C23.9262 0.763539 24.6289 0.490789 25.413 0.43612C26.4727 0.361841 27.4071 0.672622 28.3445 1.15098C29.3773 1.67825 30.4253 2.17523 31.4887 2.64189C31.5392 2.66408 31.5367 2.67636 31.4813 2.67873C31.4691 2.67953 31.4569 2.67755 31.4447 2.67279C30.2878 2.22593 29.1487 1.63171 28.0188 1.08561C27.2524 0.715605 26.4128 0.546052 25.4998 0.576952C23.5393 0.643505 23.2161 2.16829 23.1458 3.74359C23.1401 3.87551 23.1006 4.04031 23.0272 4.23799C22.6239 5.32721 22.0684 5.18697 21.0539 5.26006Z\" fill=\"white\"/>\\n<path d=\"M20.2137 3.0064C20.8826 3.0064 21.4249 2.4791 21.4249 1.82864C21.4249 1.17818 20.8826 0.650879 20.2137 0.650879C19.5447 0.650879 19.0024 1.17818 19.0024 1.82864C19.0024 2.4791 19.5447 3.0064 20.2137 3.0064Z\" fill=\"white\"/>\\n<path d=\"M20.7773 15.3649C21.3888 15.105 21.9677 14.7897 22.5141 14.4189C22.849 14.1913 23.6556 13.7967 23.5267 13.2982C23.4664 13.064 23.3122 12.9503 23.0641 12.9571C22.5128 12.9713 21.7758 12.4829 21.4061 12.1216C21.3136 12.0309 21.3037 11.951 21.3762 11.8821C21.3819 11.8766 21.3865 11.8701 21.3897 11.8629C21.3929 11.8556 21.3945 11.8479 21.3946 11.84C21.3946 11.8322 21.3931 11.8244 21.39 11.8172C21.387 11.8099 21.3825 11.8033 21.3768 11.7977C21.3267 11.7482 21.3206 11.6836 21.3585 11.604C21.5259 11.2502 21.8101 11.0573 22.211 11.0252C22.9247 10.9688 24.048 11.1863 24.2496 11.9742C24.2528 11.9866 24.2601 11.9978 24.2704 12.0063C24.8216 12.4389 25.2842 13.2043 25.1205 13.909C24.818 15.2098 23.1148 15.8979 21.9726 16.283C21.9651 16.2856 21.9571 16.2867 21.9492 16.2863C21.9412 16.2859 21.9334 16.284 21.9262 16.2806L19.6913 15.2419C19.6812 15.237 19.6726 15.2295 19.6666 15.2202C19.6606 15.2109 19.6573 15.2001 19.6571 15.189L19.4603 3.20282C19.4602 3.19426 19.4582 3.18582 19.4544 3.1781C19.4505 3.17038 19.445 3.16357 19.4381 3.15814C19.4312 3.15271 19.4232 3.14878 19.4146 3.14665C19.406 3.14451 19.397 3.14422 19.3882 3.14578C19.1638 3.185 19.0511 3.08239 19.0503 2.83797C19.0503 2.78845 19.0707 2.7421 19.1114 2.69892C19.1169 2.69296 19.1237 2.68818 19.1312 2.68487C19.1388 2.68157 19.1469 2.6798 19.1553 2.67969C19.1636 2.67958 19.1718 2.68112 19.1795 2.68423C19.1872 2.68733 19.1942 2.69192 19.2 2.69773C19.3809 2.87758 19.5518 2.99306 19.7127 3.04416C20.301 3.23036 20.8046 3.11527 21.2234 2.69892C21.2345 2.68783 21.2496 2.68142 21.2655 2.68109C21.2814 2.68075 21.2968 2.68652 21.3083 2.69714C21.3654 2.74863 21.3864 2.82073 21.3713 2.91343C21.3379 3.11824 21.2289 3.19391 21.0443 3.14043C21.0354 3.13778 21.0259 3.13721 21.0166 3.13874C21.0073 3.14028 20.9986 3.14389 20.9909 3.14929C20.9833 3.15469 20.9771 3.16174 20.9726 3.16989C20.9682 3.17804 20.9658 3.18707 20.9655 3.19629C20.9032 5.83347 20.8398 8.44589 20.7755 11.0336C20.7404 12.4589 20.7125 13.8843 20.6917 15.3096C20.6916 15.3196 20.694 15.3294 20.6988 15.3381C20.7036 15.3469 20.7105 15.3544 20.719 15.3599C20.7275 15.3654 20.7373 15.3687 20.7475 15.3696C20.7577 15.3705 20.7679 15.3689 20.7773 15.3649ZM22.5788 11.5093C22.579 11.4945 22.5732 11.4799 22.562 11.4662C22.5507 11.4525 22.5341 11.44 22.5132 11.4294C22.4923 11.4188 22.4674 11.4104 22.44 11.4046C22.4126 11.3987 22.3832 11.3956 22.3535 11.3954C22.2936 11.395 22.236 11.4065 22.1934 11.4272C22.1509 11.448 22.1268 11.4764 22.1266 11.5062C22.1265 11.521 22.1323 11.5356 22.1435 11.5493C22.1548 11.563 22.1714 11.5755 22.1923 11.5861C22.2132 11.5966 22.2381 11.6051 22.2655 11.6109C22.2929 11.6168 22.3222 11.6199 22.3519 11.6201C22.4119 11.6205 22.4695 11.609 22.5121 11.5882C22.5546 11.5675 22.5786 11.5391 22.5788 11.5093Z\" fill=\"white\"/>\\n<path d=\"M20.5456 27.136C19.7389 26.3124 18.5497 25.531 17.8524 24.4626C17.3874 23.7501 17.2816 23.1309 17.7852 22.4321C18.127 21.9583 18.5226 21.5619 18.972 21.243C20.5446 20.1263 21.5586 19.4134 22.0141 19.1044C23.2039 18.2963 21.1206 17.2991 20.5431 17.0912C19.7369 16.8004 18.932 16.5062 18.1286 16.2087C17.5187 15.9825 17.1413 15.834 16.9962 15.7631C16.1712 15.3578 14.9466 14.4314 15.1641 13.3772C15.2697 12.867 15.5237 12.437 15.9262 12.0872C16.0985 11.9374 16.068 11.8132 16.1871 11.6593C16.7084 10.9843 18.6334 10.5826 18.9707 11.7009C18.9742 11.7118 18.9742 11.7235 18.9708 11.7345C18.9675 11.7455 18.9609 11.7553 18.9518 11.7627L18.9157 11.7924C18.9086 11.7983 18.903 11.8057 18.8993 11.814C18.8955 11.8223 18.8938 11.8313 18.8942 11.8404C18.8946 11.8495 18.8972 11.8583 18.9016 11.8663C18.9061 11.8742 18.9124 11.8811 18.92 11.8863L18.9469 11.9047C18.9583 11.9126 18.9666 11.924 18.9704 11.9371C18.9742 11.9502 18.9732 11.9642 18.9677 11.9766C18.785 12.395 17.6122 13.0605 17.1606 12.9405C17.1475 12.937 17.1336 12.9378 17.1209 12.9429C16.8361 13.0585 16.7186 13.2392 16.7683 13.4848C16.8325 13.7997 17.1411 13.9929 17.4142 14.1735C18.0877 14.6198 18.6359 14.9597 19.3875 15.3037C20.6232 15.8688 22.008 16.4173 23.0878 17.1975C23.3176 17.3635 23.4944 17.5687 23.6183 17.8131C24.0968 18.7556 23.3659 19.5792 22.6105 20.0682C21.5411 20.7605 20.402 21.3951 19.4004 22.1468C18.7501 22.6347 18.1714 23.3472 18.7605 24.1541C19.4407 25.0859 20.3745 25.8762 21.2031 26.6826C21.5641 27.0344 21.8391 27.3959 22.0281 27.767C22.4101 28.5164 21.9346 29.4392 21.3626 29.9687C20.4833 30.7822 19.5207 31.6693 19.4621 32.9398C19.4474 33.2637 19.5776 33.6018 19.6705 33.9197C19.6815 33.9577 19.6692 33.9668 19.6338 33.947C19.6248 33.9423 19.6165 33.9337 19.6087 33.9215C18.6878 32.4537 19.8599 30.8172 20.7986 29.7322C21.3718 29.0696 21.6089 28.4718 21.0583 27.6946C21 27.6122 20.8291 27.426 20.5456 27.136ZM18.1641 11.5128C18.1643 11.4982 18.1588 11.4836 18.1477 11.47C18.1367 11.4563 18.1203 11.4438 18.0996 11.4331C18.0789 11.4224 18.0543 11.4138 18.0271 11.4078C17.9999 11.4017 17.9707 11.3984 17.9412 11.3979C17.9117 11.3974 17.8824 11.3997 17.855 11.4049C17.8276 11.41 17.8027 11.4178 17.7816 11.4277C17.7605 11.4377 17.7438 11.4497 17.7322 11.4629C17.7207 11.4762 17.7146 11.4906 17.7144 11.5052C17.7138 11.5346 17.737 11.5633 17.7788 11.5849C17.8206 11.6064 17.8775 11.6191 17.9372 11.6201C17.9667 11.6206 17.996 11.6182 18.0234 11.6131C18.0508 11.608 18.0757 11.6002 18.0968 11.5903C18.1178 11.5803 18.1346 11.5683 18.1462 11.555C18.1577 11.5417 18.1638 11.5274 18.164 11.5128H18.1641ZM31.0665 18.4793L29.3114 18.4811C29.305 18.4811 29.299 18.4835 29.2945 18.4878C29.29 18.4922 29.2875 18.4981 29.2875 18.5042V20.4182C29.2875 20.4244 29.285 20.4303 29.2805 20.4346C29.2761 20.439 29.27 20.4414 29.2637 20.4414H28.41C28.4037 20.4414 28.3976 20.439 28.3931 20.4346C28.3886 20.4303 28.3861 20.4244 28.3861 20.4182V16.0055C28.3861 15.9994 28.3886 15.9935 28.3931 15.9891C28.3976 15.9848 28.4037 15.9823 28.41 15.9823H29.2637C29.27 15.9823 29.2761 15.9848 29.2805 15.9891C29.285 15.9935 29.2875 15.9994 29.2875 16.0055V17.7294C29.2875 17.7355 29.29 17.7414 29.2945 17.7457C29.299 17.7501 29.305 17.7525 29.3114 17.7525H31.0665C31.0728 17.7525 31.0789 17.7501 31.0833 17.7457C31.0878 17.7414 31.0903 17.7355 31.0903 17.7294V16.0067C31.0903 16.0005 31.0928 15.9947 31.0973 15.9903C31.1018 15.986 31.1078 15.9835 31.1141 15.9835L31.9679 15.9817C31.9742 15.9817 31.9802 15.9842 31.9847 15.9885C31.9892 15.9929 31.9917 15.9988 31.9917 16.0049V20.4182C31.9917 20.4244 31.9892 20.4303 31.9847 20.4346C31.9802 20.439 31.9742 20.4414 31.9679 20.4414H31.1141C31.1078 20.4414 31.1018 20.439 31.0973 20.4346C31.0928 20.4303 31.0903 20.4244 31.0903 20.4182V18.5024C31.0903 18.4963 31.0878 18.4904 31.0833 18.4861C31.0789 18.4817 31.0728 18.4793 31.0665 18.4793Z\" fill=\"white\"/>\\n<path d=\"M33.7483 15.9844H32.8793C32.8702 15.9844 32.8628 15.9916 32.8628 16.0004V20.425C32.8628 20.4339 32.8702 20.4411 32.8793 20.4411H33.7483C33.7574 20.4411 33.7648 20.4339 33.7648 20.425V16.0004C33.7648 15.9916 33.7574 15.9844 33.7483 15.9844Z\" fill=\"white\"/>\\n<path d=\"M35.536 19.0627V20.3813C35.536 20.3969 35.5296 20.412 35.5181 20.4231C35.5067 20.4342 35.4912 20.4405 35.4749 20.4407L34.6957 20.4431C34.6795 20.4431 34.664 20.4368 34.6525 20.4257C34.6411 20.4145 34.6346 20.3994 34.6346 20.3837V16.041C34.6346 16.0253 34.6411 16.0102 34.6527 15.999C34.6643 15.9879 34.68 15.9816 34.6963 15.9816C35.1327 15.9848 35.5686 15.9858 36.0041 15.9846C36.611 15.9834 37.0656 16.047 37.4506 16.4552C38.264 17.3168 37.813 18.6889 36.6458 18.9539C36.5203 18.9825 36.3366 18.9975 36.0946 18.9991C35.9288 19.0003 35.7627 19.0017 35.5965 19.0033C35.5804 19.0034 35.565 19.0097 35.5537 19.0209C35.5424 19.032 35.536 19.047 35.536 19.0627ZM36.6574 16.8403C36.5083 16.7143 36.3683 16.6519 36.2376 16.6531C36.0294 16.6551 35.8163 16.6537 35.5983 16.6489C35.5902 16.6488 35.5821 16.6502 35.5746 16.6531C35.567 16.656 35.5601 16.6604 35.5543 16.6659C35.5485 16.6714 35.5439 16.678 35.5408 16.6853C35.5376 16.6926 35.536 16.7004 35.536 16.7084V18.2557C35.536 18.2714 35.5424 18.2864 35.5537 18.2975C35.565 18.3087 35.5804 18.315 35.5965 18.3151C35.7257 18.3163 35.855 18.3171 35.9846 18.3175C36.172 18.3179 36.3174 18.2969 36.4209 18.2545C37.0186 18.0097 37.1518 17.2574 36.6574 16.8403ZM40.9358 19.5648H38.737C38.733 19.5648 38.7291 19.5659 38.7257 19.568C38.7224 19.5701 38.7197 19.5731 38.7181 19.5767L38.3068 20.4288C38.3051 20.4322 38.3024 20.4351 38.299 20.4371C38.2956 20.4391 38.2918 20.4402 38.2878 20.4401L37.3376 20.4431C37.334 20.4431 37.3305 20.4423 37.3274 20.4406C37.3242 20.439 37.3216 20.4366 37.3197 20.4337C37.3178 20.4308 37.3167 20.4274 37.3165 20.424C37.3163 20.4205 37.3171 20.4171 37.3186 20.414L39.4758 15.981C39.4776 15.9776 39.4803 15.9747 39.4836 15.9727C39.487 15.9707 39.4909 15.9697 39.4948 15.9697H40.1719C40.1758 15.9697 40.1797 15.9707 40.1831 15.9727C40.1864 15.9747 40.1891 15.9776 40.1908 15.981L42.3475 20.4122C42.349 20.4153 42.3497 20.4187 42.3496 20.4222C42.3494 20.4256 42.3483 20.429 42.3464 20.4319C42.3445 20.4348 42.3418 20.4372 42.3387 20.4389C42.3356 20.4405 42.3321 20.4413 42.3285 20.4413H41.3801C41.3761 20.4413 41.3722 20.4402 41.3688 20.4381C41.3654 20.436 41.3628 20.4329 41.3611 20.4294L40.9547 19.5767C40.9531 19.5731 40.9504 19.5701 40.9471 19.568C40.9437 19.5659 40.9398 19.5648 40.9358 19.5648ZM39.0853 18.7935C39.084 18.7963 39.0834 18.7994 39.0836 18.8025C39.0839 18.8055 39.0849 18.8085 39.0866 18.8111C39.0883 18.8137 39.0906 18.8159 39.0934 18.8174C39.0962 18.8188 39.0993 18.8196 39.1025 18.8196L40.5581 18.8244C40.5613 18.8244 40.5644 18.8236 40.5672 18.8221C40.57 18.8206 40.5723 18.8185 40.574 18.8159C40.5757 18.8133 40.5767 18.8103 40.5769 18.8072C40.5771 18.8041 40.5766 18.8011 40.5752 18.7983L39.8529 17.2782C39.8514 17.2751 39.8489 17.2724 39.8459 17.2706C39.8429 17.2687 39.8394 17.2677 39.8358 17.2677C39.8322 17.2677 39.8287 17.2687 39.8257 17.2706C39.8226 17.2724 39.8202 17.2751 39.8187 17.2782L39.0853 18.7935ZM43.8318 19.5761L43.423 20.4282C43.4213 20.4317 43.4186 20.4347 43.4153 20.4368C43.4119 20.4389 43.4081 20.44 43.4041 20.4401L42.4532 20.4437C42.4496 20.4437 42.446 20.4428 42.4428 20.4412C42.4396 20.4395 42.4369 20.4371 42.4349 20.4341C42.433 20.4311 42.4318 20.4277 42.4316 20.4242C42.4314 20.4207 42.4321 20.4171 42.4336 20.414L44.5915 15.9816C44.5932 15.9781 44.5958 15.9751 44.5992 15.973C44.6025 15.9709 44.6064 15.9698 44.6104 15.9697H45.2869C45.2909 15.9698 45.2948 15.9709 45.2981 15.973C45.3015 15.9751 45.3041 15.9781 45.3058 15.9816L47.4618 20.4116C47.4634 20.4147 47.4641 20.4182 47.4639 20.4217C47.4637 20.4251 47.4626 20.4285 47.4607 20.4315C47.4588 20.4344 47.4562 20.4369 47.4531 20.4386C47.45 20.4403 47.4465 20.4412 47.4429 20.4413H46.4945C46.4905 20.4412 46.4866 20.4401 46.4832 20.438C46.4799 20.4359 46.4772 20.4329 46.4755 20.4294L46.0685 19.5761C46.0668 19.5726 46.0641 19.5696 46.0608 19.5675C46.0574 19.5654 46.0536 19.5643 46.0496 19.5642H43.8508C43.8468 19.5643 43.8429 19.5654 43.8396 19.5675C43.8362 19.5696 43.8336 19.5726 43.8318 19.5761ZM44.1991 18.7929C44.1977 18.7957 44.197 18.7989 44.1971 18.802C44.1972 18.8052 44.1982 18.8083 44.1999 18.811C44.2017 18.8136 44.2041 18.8159 44.2069 18.8174C44.2098 18.8189 44.213 18.8197 44.2162 18.8196L45.6719 18.8244C45.6751 18.8245 45.6783 18.8238 45.6812 18.8223C45.684 18.8209 45.6865 18.8187 45.6882 18.8161C45.69 18.8135 45.6911 18.8105 45.6913 18.8074C45.6916 18.8042 45.691 18.8011 45.6896 18.7983L44.9667 17.2752C44.9651 17.2721 44.9627 17.2694 44.9597 17.2676C44.9567 17.2657 44.9532 17.2647 44.9496 17.2647C44.946 17.2647 44.9425 17.2657 44.9394 17.2676C44.9364 17.2694 44.934 17.2721 44.9325 17.2752L44.1991 18.7929ZM19.0336 20.9095C18.1798 20.3961 16.7529 19.7294 16.5604 18.6568C16.3801 17.652 17.5284 16.8718 18.3662 16.5111C18.3807 16.5046 18.3972 16.504 18.4121 16.5093L20.5962 17.2949C20.6081 17.2992 20.6184 17.307 20.6255 17.3173C20.6327 17.3275 20.6363 17.3396 20.6359 17.3519L20.5742 19.856C20.574 19.8652 20.5716 19.8742 20.5671 19.8824C20.5626 19.8905 20.5563 19.8976 20.5485 19.9029L19.1014 20.9072C19.0916 20.914 19.0799 20.9179 19.0679 20.9184C19.0558 20.9188 19.0438 20.9157 19.0336 20.9095ZM18.2226 19.0484C18.6863 19.3919 19.1578 19.725 19.6373 20.0479C19.7029 20.0919 19.7349 20.0752 19.7333 19.998L19.6868 17.201C19.6866 17.1914 19.684 17.1819 19.6793 17.1735C19.6745 17.1651 19.6678 17.1579 19.6595 17.1525C19.6513 17.1472 19.6419 17.1438 19.6321 17.1427C19.6223 17.1416 19.6124 17.1429 19.6031 17.1463C19.0843 17.343 17.2051 18.2961 18.2226 19.0484ZM20.829 26.0567C20.4978 25.7668 20.0828 25.352 19.8317 25.0882C19.8211 25.0775 19.8152 25.0634 19.8152 25.0489L19.7687 22.1164C19.7686 22.1064 19.7709 22.0965 19.7756 22.0877C19.7803 22.0789 19.7872 22.0714 19.7956 22.0659L21.1749 21.1704C21.1855 21.1636 21.1979 21.1601 21.2106 21.1604C21.2233 21.1607 21.2356 21.1648 21.2458 21.1722C22.1215 21.8122 23.3138 22.9531 22.6568 24.1243C22.2397 24.8683 21.6563 25.5134 20.9066 26.0597C20.8953 26.0681 20.8813 26.0724 20.8671 26.0718C20.853 26.0713 20.8395 26.066 20.829 26.0567ZM20.972 22.2121C20.86 22.1166 20.7433 22.0265 20.6218 21.9417C20.5591 21.8977 20.5267 21.9134 20.5247 21.9887L20.4513 25.2593C20.4493 25.3401 20.4772 25.3516 20.5351 25.2938C20.7551 25.0735 20.9692 24.8481 21.1773 24.6175C21.412 24.3572 21.5819 24.1207 21.687 23.908C22.0298 23.2134 21.4701 22.6346 20.972 22.2121ZM32.0258 25.7899L32.5678 26.3307C32.5785 26.3414 32.5846 26.3556 32.585 26.3706C32.5853 26.3856 32.5798 26.4002 32.5697 26.4115C32.172 26.852 31.694 27.1218 31.1354 27.2208C29.6345 27.487 28.0982 26.3651 28.2112 24.8077C28.2925 23.6983 29.1175 22.8491 30.2352 22.6601C31.1148 22.5116 31.8889 22.7726 32.5575 23.4433C32.5685 23.4545 32.5747 23.4694 32.5747 23.4848C32.5747 23.5002 32.5685 23.515 32.5575 23.5259L32.0172 24.0667C32.0112 24.0727 32.0039 24.0775 31.9958 24.0806C31.9878 24.0837 31.9791 24.0851 31.9704 24.0847C31.9618 24.0844 31.9533 24.0822 31.9455 24.0783C31.9378 24.0745 31.931 24.0691 31.9256 24.0625C31.7015 23.79 31.4308 23.6071 31.1134 23.514C29.7091 23.1022 28.5088 24.7221 29.4579 25.8464C30.1087 26.6177 31.3236 26.626 31.9323 25.7965C31.9375 25.7894 31.9443 25.7836 31.9521 25.7793C31.9599 25.7751 31.9686 25.7726 31.9775 25.772C31.9864 25.7713 31.9953 25.7726 32.0037 25.7757C32.012 25.7788 32.0196 25.7837 32.0258 25.7899ZM37.6309 24.9467C37.6287 25.5626 37.3688 26.1524 36.9083 26.5863C36.4479 27.0203 35.8247 27.2628 35.1757 27.2606C34.8544 27.2596 34.5364 27.1984 34.2399 27.0807C33.9435 26.963 33.6743 26.791 33.4479 26.5746C33.2215 26.3582 33.0421 26.1016 32.9202 25.8194C32.7982 25.5372 32.736 25.2351 32.7371 24.9301C32.7393 24.3142 32.9992 23.7244 33.4597 23.2905C33.9201 22.8565 34.5434 22.614 35.1923 22.6162C35.5137 22.6172 35.8316 22.6784 36.1281 22.7961C36.4245 22.9138 36.6937 23.0858 36.9201 23.3022C37.1466 23.5186 37.3259 23.7752 37.4478 24.0574C37.5698 24.3396 37.632 24.6418 37.6309 24.9467ZM36.7136 24.9396C36.7136 24.5451 36.5525 24.1668 36.2656 23.8879C35.9788 23.6089 35.5897 23.4522 35.184 23.4522C34.7783 23.4522 34.3893 23.6089 34.1024 23.8879C33.8156 24.1668 33.6544 24.5451 33.6544 24.9396C33.6544 25.3341 33.8156 25.7124 34.1024 25.9913C34.3893 26.2702 34.7783 26.4269 35.184 26.4269C35.5897 26.4269 35.9788 26.2702 36.2656 25.9913C36.5525 25.7124 36.7136 25.3341 36.7136 24.9396ZM41.9741 24.2735L40.5868 26.5511C40.5849 26.5543 40.5822 26.557 40.5789 26.5588C40.5756 26.5606 40.5718 26.5615 40.568 26.5614C40.5642 26.5614 40.5605 26.5603 40.5573 26.5584C40.554 26.5565 40.5514 26.5538 40.5496 26.5505L39.2241 24.2616C39.2218 24.2574 39.2182 24.2541 39.2138 24.2522C39.2094 24.2503 39.2045 24.2499 39.1998 24.2511C39.1951 24.2523 39.191 24.2549 39.1881 24.2587C39.1852 24.2624 39.1836 24.267 39.1837 24.2717L39.1892 27.1501C39.1892 27.1556 39.187 27.1609 39.183 27.1648C39.179 27.1687 39.1735 27.1709 39.1678 27.1709H38.3227C38.317 27.1709 38.3116 27.1687 38.3076 27.1648C38.3035 27.1609 38.3013 27.1556 38.3013 27.1501V22.7178C38.3013 22.7123 38.3035 22.707 38.3076 22.7031C38.3116 22.6992 38.317 22.697 38.3227 22.697L39.3023 22.7005C39.306 22.7006 39.3097 22.7016 39.3129 22.7035C39.3161 22.7054 39.3188 22.7081 39.3206 22.7112L40.5673 24.8778C40.5692 24.881 40.5719 24.8837 40.5751 24.8855C40.5784 24.8874 40.5821 24.8884 40.5859 24.8884C40.5897 24.8884 40.5934 24.8874 40.5967 24.8855C40.6 24.8837 40.6027 24.881 40.6046 24.8778L41.9081 22.7095C41.91 22.7064 41.9127 22.7038 41.9159 22.7021C41.9191 22.7003 41.9227 22.6994 41.9264 22.6994H42.8626C42.8683 22.6994 42.8737 22.7015 42.8777 22.7054C42.8818 22.7093 42.884 22.7146 42.884 22.7202L42.8858 27.1501C42.8858 27.1528 42.8853 27.1556 42.8842 27.1581C42.8831 27.1606 42.8816 27.1629 42.8796 27.1648C42.8776 27.1668 42.8752 27.1683 42.8726 27.1693C42.87 27.1704 42.8673 27.1709 42.8645 27.1709H42.0352C42.0295 27.1709 42.0241 27.1687 42.0201 27.1648C42.016 27.1609 42.0138 27.1556 42.0138 27.1501V24.2842C42.0138 24.2796 42.0123 24.2752 42.0094 24.2716C42.0066 24.268 42.0026 24.2653 41.9981 24.2641C41.9936 24.2629 41.9888 24.2632 41.9845 24.2649C41.9801 24.2665 41.9765 24.2696 41.9741 24.2735ZM56.139 26.2796H53.9531C53.9491 26.2796 53.9452 26.2807 53.9418 26.2828C53.9384 26.2849 53.9358 26.2879 53.9341 26.2915L53.5167 27.159C53.5151 27.1626 53.5124 27.1656 53.5091 27.1677C53.5057 27.1698 53.5018 27.1709 53.4978 27.1709H52.5475C52.544 27.171 52.5405 27.1701 52.5373 27.1685C52.5342 27.1668 52.5316 27.1644 52.5297 27.1615C52.5278 27.1586 52.5267 27.1552 52.5265 27.1518C52.5263 27.1483 52.527 27.1449 52.5286 27.1418L54.6852 22.7089C54.6868 22.7053 54.6895 22.7023 54.6929 22.7002C54.6962 22.6981 54.7001 22.697 54.7041 22.697L55.3843 22.7005C55.3881 22.7006 55.3919 22.7017 55.3951 22.7037C55.3983 22.7057 55.4009 22.7085 55.4026 22.7118L57.558 27.1418C57.5596 27.1449 57.5603 27.1483 57.5601 27.1518C57.5599 27.1552 57.5588 27.1586 57.5569 27.1615C57.555 27.1644 57.5524 27.1668 57.5493 27.1685C57.5461 27.1701 57.5426 27.171 57.5391 27.1709H56.5918C56.5878 27.1709 56.5839 27.1698 56.5806 27.1677C56.5772 27.1656 56.5746 27.1626 56.5729 27.159L56.158 26.2915C56.1563 26.2879 56.1536 26.2849 56.1503 26.2828C56.1469 26.2807 56.143 26.2796 56.139 26.2796ZM54.2898 25.5326C54.2883 25.5359 54.2876 25.5396 54.2879 25.5432C54.2882 25.5468 54.2894 25.5503 54.2914 25.5533C54.2934 25.5564 54.2961 25.5589 54.2994 25.5607C54.3026 25.5625 54.3062 25.5635 54.31 25.5635L55.7705 25.5689C55.7744 25.5689 55.7782 25.568 55.7816 25.5663C55.785 25.5645 55.7879 25.5619 55.7899 25.5588C55.792 25.5556 55.7932 25.552 55.7935 25.5482C55.7937 25.5445 55.793 25.5408 55.7913 25.5374L55.0665 24.0126C55.0648 24.0086 55.062 24.0052 55.0583 24.0028C55.0547 24.0004 55.0504 23.999 55.0459 23.999C55.0415 23.9989 55.0372 24.0001 55.0334 24.0024C55.0297 24.0047 55.0268 24.0081 55.025 24.012L54.2898 25.5326ZM58.9226 24.2289L58.9281 27.1115C58.9281 27.1273 58.9217 27.1424 58.9102 27.1535C58.8988 27.1647 58.8832 27.1709 58.867 27.1709H58.1013C58.0851 27.1709 58.0695 27.1647 58.0581 27.1535C58.0466 27.1424 58.0402 27.1273 58.0402 27.1115V22.7564C58.0402 22.7485 58.0418 22.7408 58.0448 22.7335C58.0479 22.7263 58.0524 22.7197 58.0581 22.7142C58.0638 22.7086 58.0705 22.7043 58.078 22.7013C58.0854 22.6984 58.0933 22.6969 58.1013 22.697L59.0143 22.7005C59.0244 22.7006 59.0343 22.7031 59.0432 22.7078C59.0521 22.7126 59.0596 22.7195 59.065 22.7279L60.9002 25.4756C60.9601 25.5655 60.99 25.557 60.99 25.45L60.9882 22.7588C60.9882 22.743 60.9946 22.7279 61.0061 22.7168C61.0175 22.7056 61.0331 22.6994 61.0493 22.6994H61.8138C61.83 22.6994 61.8455 22.7056 61.857 22.7168C61.8685 22.7279 61.8749 22.743 61.8749 22.7588V27.1115C61.8749 27.1273 61.8685 27.1424 61.857 27.1535C61.8455 27.1647 61.83 27.1709 61.8138 27.1709H61.0102C60.9999 27.1709 60.9897 27.1684 60.9808 27.1636C60.9718 27.1588 60.9642 27.1519 60.9589 27.1436L59.0131 24.2027C58.9528 24.112 58.9226 24.1207 58.9226 24.2289ZM50.6567 26.3521L50.6629 27.1412C50.6629 27.1491 50.6596 27.1566 50.6539 27.1622C50.6482 27.1678 50.6404 27.1709 50.6323 27.1709H47.5596C47.5515 27.1709 47.5437 27.1678 47.538 27.1622C47.5323 27.1566 47.5291 27.1491 47.5291 27.1412V22.741C47.5291 22.7331 47.5323 22.7255 47.538 22.7199C47.5437 22.7144 47.5515 22.7112 47.5596 22.7112L48.4152 22.7154C48.4233 22.7154 48.4311 22.7185 48.4368 22.7241C48.4425 22.7297 48.4457 22.7372 48.4457 22.7451V26.2974C48.4457 26.3053 48.449 26.3128 48.4547 26.3184C48.4604 26.324 48.4682 26.3271 48.4763 26.3271L50.6262 26.3224C50.6343 26.3224 50.6421 26.3255 50.6478 26.3311C50.6535 26.3366 50.6567 26.3442 50.6567 26.3521Z\" fill=\"white\"/>\\n<path d=\"M52.0813 22.7139H51.2123C51.2032 22.7139 51.1958 22.7211 51.1958 22.7299V27.1545C51.1958 27.1634 51.2032 27.1706 51.2123 27.1706H52.0813C52.0904 27.1706 52.0978 27.1634 52.0978 27.1545V22.7299C52.0978 22.7211 52.0904 22.7139 52.0813 22.7139Z\" fill=\"white\"/>\\n<path d=\"M62.4557 23.4573V22.7436C62.4557 22.7357 62.4589 22.7281 62.4647 22.7226C62.4704 22.717 62.4782 22.7139 62.4863 22.7139L65.8779 22.7151C65.886 22.7151 65.8938 22.7182 65.8995 22.7238C65.9053 22.7293 65.9085 22.7369 65.9085 22.7448V23.4573C65.9085 23.4651 65.9053 23.4727 65.8995 23.4783C65.8938 23.4838 65.886 23.487 65.8779 23.487H64.671C64.6629 23.487 64.6551 23.4901 64.6494 23.4957C64.6437 23.5012 64.6404 23.5088 64.6404 23.5167V27.1415C64.6404 27.1493 64.6372 27.1569 64.6315 27.1625C64.6257 27.168 64.618 27.1712 64.6099 27.1712H63.7543C63.7462 27.1712 63.7384 27.168 63.7327 27.1625C63.727 27.1569 63.7238 27.1493 63.7238 27.1415V23.5167C63.7238 23.5088 63.7205 23.5012 63.7148 23.4957C63.7091 23.4901 63.7013 23.487 63.6932 23.487H62.4863C62.4782 23.487 62.4704 23.4838 62.4647 23.4783C62.4589 23.4727 62.4557 23.4651 62.4557 23.4573ZM44.6742 25.7896L44.6724 27.1118C44.6724 27.1275 44.6659 27.1426 44.6545 27.1538C44.643 27.1649 44.6275 27.1712 44.6113 27.1712H43.8321C43.8159 27.1712 43.8003 27.1649 43.7889 27.1538C43.7774 27.1426 43.771 27.1275 43.771 27.1118V22.7739C43.771 22.7581 43.7774 22.743 43.7889 22.7319C43.8003 22.7207 43.8159 22.7145 43.8321 22.7145C44.3002 22.7149 44.7708 22.7147 45.2438 22.7139C45.5526 22.7135 45.7893 22.7398 45.9539 22.7929C47.3796 23.2528 47.3344 25.2411 45.9068 25.6553C45.7793 25.6925 45.575 25.7112 45.2939 25.7112C45.1065 25.7116 44.9191 25.7179 44.7316 25.7302C44.7162 25.7311 44.7016 25.7377 44.691 25.7487C44.6803 25.7598 44.6743 25.7744 44.6742 25.7896ZM45.8481 23.6213C45.5408 23.3081 45.1313 23.3634 44.7292 23.3681C44.7131 23.3684 44.6978 23.3749 44.6866 23.3861C44.6754 23.3974 44.6692 23.4125 44.6693 23.4281L44.6834 24.988C44.6835 25.0035 44.69 25.0184 44.7013 25.0294C44.7126 25.0404 44.7279 25.0467 44.7439 25.0468C45.215 25.0516 45.6984 25.0991 45.9728 24.6493C46.1989 24.2781 46.1574 23.9354 45.8481 23.6213ZM19.7097 30.7294C19.0522 30.1073 18.2846 29.4744 18.1447 28.5563C18.0169 27.7196 18.837 26.9311 19.3925 26.3886C19.4038 26.3776 19.4191 26.3714 19.4349 26.3712C19.4508 26.3709 19.4661 26.3768 19.4775 26.3874L20.3819 27.2175C20.3881 27.2231 20.393 27.23 20.3962 27.2377C20.3995 27.2454 20.4011 27.2537 20.4009 27.2621L20.3404 29.9831C20.3404 29.995 20.3363 30.0069 20.3288 30.0169L19.802 30.7217C19.7968 30.7286 19.7902 30.7344 19.7826 30.7386C19.7749 30.7428 19.7664 30.7454 19.7577 30.7461C19.7489 30.7468 19.7401 30.7457 19.7318 30.7429C19.7235 30.74 19.716 30.7354 19.7097 30.7294ZM19.7488 27.1385C19.5199 27.358 19.3178 27.5863 19.1426 27.8236C19.0693 27.9231 19.0035 28.1 18.9452 28.3543C18.8383 28.8213 19.1102 29.2629 19.4048 29.6218C19.549 29.7981 19.684 29.9652 19.8099 30.1233C19.8698 30.1982 19.8992 30.1883 19.8979 30.0936L19.8527 27.1801C19.8515 27.0874 19.8169 27.0735 19.7488 27.1385ZM20.3037 31.6231C20.2776 32.5885 20.2528 33.5597 20.2292 34.5366C20.2279 34.6044 20.2155 34.6737 20.1919 34.7446C20.1752 34.7953 20.1597 34.8464 20.1454 34.8979C20.1165 34.9989 20.0851 34.9997 20.0513 34.9003C20.0273 34.8282 20.0079 34.7547 19.9933 34.6798C19.9794 34.6089 19.9717 34.5148 19.97 34.3976C19.9594 33.608 19.9474 32.8185 19.934 32.029C19.9328 31.9355 19.9531 31.8507 19.9951 31.7747C20.1189 31.55 20.2697 31.345 20.4473 31.1596C20.4537 31.1529 20.4617 31.1478 20.4705 31.1446C20.4793 31.1414 20.4888 31.1403 20.4982 31.1413C20.5076 31.1422 20.5167 31.1453 20.5247 31.1502C20.5328 31.1552 20.5395 31.1619 20.5445 31.1697C20.6533 31.3432 20.7382 31.5253 20.7993 31.7158C20.9338 32.1342 20.9099 32.8948 20.5262 33.2014C20.5227 33.204 20.5187 33.2057 20.5144 33.2064C20.5101 33.2071 20.5057 33.2067 20.5016 33.2053C20.4975 33.2039 20.4939 33.2014 20.491 33.1983C20.4881 33.1951 20.4861 33.1913 20.4852 33.1871C20.4844 33.1816 20.484 33.1756 20.484 33.1693C20.484 33.1618 20.486 33.1541 20.4901 33.1461C20.7635 32.6157 20.739 32.0981 20.4168 31.5934C20.3451 31.4809 20.3074 31.4908 20.3037 31.6231Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_562_86961\">\\n<rect width=\"66\" height=\"35\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://trustcenter.buildship.com/\",motionChild:true,nodeId:\"x9Me5f8Uz\",openInNewTab:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tupi98 framer-jneiwd\",\"data-border\":true,\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"x9Me5f8Uz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:150,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/pRPVF8xzO8mL8XWPRDSlNr6bLFc.png\"},className:\"framer-1sg61e4\",\"data-framer-name\":\"Iso-27001\",layoutDependency:layoutDependency,layoutId:\"GZRoIBxiE\",...addPropertyOverrides({eJbUOHIru:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:150,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+1455+0+0+0+32+-19),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/pRPVF8xzO8mL8XWPRDSlNr6bLFc.png\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14z7xbe-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"OX2Z8c5x4-container\",nodeId:\"OX2Z8c5x4\",rendersWithMotion:true,scopeId:\"nby9eb6K2\",children:/*#__PURE__*/_jsx(NewsletterSubscriptionForm,{height:\"100%\",id:\"OX2Z8c5x4\",layoutId:\"OX2Z8c5x4\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gyai0i\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"rsU_1WT5k\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153)))\"},children:\"\\xa9 2025 BuildShip, Rowy Inc.\"})}),className:\"framer-m2srhb\",\"data-highlight\":true,fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"dSv4Zrtzl\",onTap:onTap1yvflcc,style:{\"--extracted-r6o4lv\":\"var(--token-ba0f8505-1870-43c0-8d4e-7d4bc5406462, rgb(153, 153, 153))\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vnrHj.framer-jneiwd, .framer-vnrHj .framer-jneiwd { display: block; }\",\".framer-vnrHj.framer-14qr5as { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 60px 30px 60px; position: relative; width: 1200px; }\",\".framer-vnrHj .framer-1cs3vnd-container { flex: none; height: auto; position: absolute; right: 60px; top: 0px; width: auto; z-index: 1; }\",\".framer-vnrHj .framer-1j6avet { flex: none; height: 42px; overflow: hidden; position: relative; text-decoration: none; width: 160px; }\",\".framer-vnrHj .framer-zgqc2o { aspect-ratio: 0.9937887811041498 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); left: 12%; overflow: hidden; position: absolute; top: 50%; width: 38px; }\",\".framer-vnrHj .framer-uvucr3 { aspect-ratio: 0.9743589743589743 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 39px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-vnrHj .framer-3ob0rc { flex: none; height: 28px; left: calc(60.70258140563964% - 114px / 2); position: absolute; top: calc(55.30816032772973% - 28px / 2); width: 114px; }\",\".framer-vnrHj .framer-7yeh29 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 800px; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vnrHj .framer-dlfr0a, .framer-vnrHj .framer-1dtjpur, .framer-vnrHj .framer-18hsd4y, .framer-vnrHj .framer-1j1r59o, .framer-vnrHj .framer-1h9r1f6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vnrHj .framer-13rc3js, .framer-vnrHj .framer-1nfl9ds, .framer-vnrHj .framer-13to6d6, .framer-vnrHj .framer-p0sei6, .framer-vnrHj .framer-d4oymr { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-vnrHj .framer-1w9stb0, .framer-vnrHj .framer-7hbax4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 152px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-vnrHj .framer-16qqbwy-container, .framer-vnrHj .framer-850999-container, .framer-vnrHj .framer-wybj5d-container, .framer-vnrHj .framer-1y7l77o-container, .framer-vnrHj .framer-1nr6577-container, .framer-vnrHj .framer-11l3oyd-container, .framer-vnrHj .framer-1jnn232-container, .framer-vnrHj .framer-5o9u0l-container, .framer-vnrHj .framer-1vfy6q2-container, .framer-vnrHj .framer-1hm03ay-container, .framer-vnrHj .framer-smmcil-container, .framer-vnrHj .framer-1trb62w-container, .framer-vnrHj .framer-dvk0fq-container, .framer-vnrHj .framer-1xvou48-container, .framer-vnrHj .framer-xa7tsk-container, .framer-vnrHj .framer-13z4od8-container, .framer-vnrHj .framer-53t9zu-container, .framer-vnrHj .framer-hsm2l5-container, .framer-vnrHj .framer-16uybvw-container, .framer-vnrHj .framer-91he4v-container, .framer-vnrHj .framer-1npwx0l-container, .framer-vnrHj .framer-nfkx1g-container, .framer-vnrHj .framer-14zffe2-container, .framer-vnrHj .framer-1owj7k2-container, .framer-vnrHj .framer-ieki2g-container, .framer-vnrHj .framer-wq1uuc-container, .framer-vnrHj .framer-1qrf1jy-container, .framer-vnrHj .framer-1uk3ois-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vnrHj .framer-1e5i8c0, .framer-vnrHj .framer-uw3tyz, .framer-vnrHj .framer-1ngzr4z { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vnrHj .framer-1nixqjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vnrHj .framer-gi988r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vnrHj .framer-1w6owgl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 32px; position: relative; text-decoration: none; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vnrHj .framer-w41tu4, .framer-vnrHj .framer-1sg61e4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 54px; }\",\".framer-vnrHj .framer-1falch5, .framer-vnrHj .framer-10xew5l, .framer-vnrHj .framer-tupi98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 80px; justify-content: center; overflow: hidden; padding: 32px; position: relative; text-decoration: none; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vnrHj .framer-15ytw0t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); position: relative; width: 54px; }\",\".framer-vnrHj .framer-1m823sl { flex: none; height: 35px; position: relative; width: 66px; }\",\".framer-vnrHj .framer-14z7xbe-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-vnrHj .framer-1gyai0i { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vnrHj .framer-m2srhb { align-self: start; cursor: pointer; flex: none; height: 100%; justify-self: start; overflow: visible; position: relative; white-space: pre; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vnrHj.framer-14qr5as, .framer-vnrHj .framer-dlfr0a, .framer-vnrHj .framer-1w9stb0, .framer-vnrHj .framer-1dtjpur, .framer-vnrHj .framer-7hbax4, .framer-vnrHj .framer-18hsd4y, .framer-vnrHj .framer-1e5i8c0, .framer-vnrHj .framer-1j1r59o, .framer-vnrHj .framer-uw3tyz, .framer-vnrHj .framer-1h9r1f6, .framer-vnrHj .framer-1ngzr4z, .framer-vnrHj .framer-gi988r, .framer-vnrHj .framer-1w6owgl, .framer-vnrHj .framer-1falch5, .framer-vnrHj .framer-10xew5l, .framer-vnrHj .framer-tupi98 { gap: 0px; } .framer-vnrHj.framer-14qr5as > *, .framer-vnrHj .framer-1falch5 > *, .framer-vnrHj .framer-10xew5l > *, .framer-vnrHj .framer-tupi98 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-vnrHj.framer-14qr5as > :first-child, .framer-vnrHj .framer-dlfr0a > :first-child, .framer-vnrHj .framer-1w9stb0 > :first-child, .framer-vnrHj .framer-1dtjpur > :first-child, .framer-vnrHj .framer-7hbax4 > :first-child, .framer-vnrHj .framer-18hsd4y > :first-child, .framer-vnrHj .framer-1e5i8c0 > :first-child, .framer-vnrHj .framer-1j1r59o > :first-child, .framer-vnrHj .framer-uw3tyz > :first-child, .framer-vnrHj .framer-1h9r1f6 > :first-child, .framer-vnrHj .framer-1ngzr4z > :first-child, .framer-vnrHj .framer-1w6owgl > :first-child, .framer-vnrHj .framer-1falch5 > :first-child, .framer-vnrHj .framer-10xew5l > :first-child, .framer-vnrHj .framer-tupi98 > :first-child { margin-top: 0px; } .framer-vnrHj.framer-14qr5as > :last-child, .framer-vnrHj .framer-dlfr0a > :last-child, .framer-vnrHj .framer-1w9stb0 > :last-child, .framer-vnrHj .framer-1dtjpur > :last-child, .framer-vnrHj .framer-7hbax4 > :last-child, .framer-vnrHj .framer-18hsd4y > :last-child, .framer-vnrHj .framer-1e5i8c0 > :last-child, .framer-vnrHj .framer-1j1r59o > :last-child, .framer-vnrHj .framer-uw3tyz > :last-child, .framer-vnrHj .framer-1h9r1f6 > :last-child, .framer-vnrHj .framer-1ngzr4z > :last-child, .framer-vnrHj .framer-1w6owgl > :last-child, .framer-vnrHj .framer-1falch5 > :last-child, .framer-vnrHj .framer-10xew5l > :last-child, .framer-vnrHj .framer-tupi98 > :last-child { margin-bottom: 0px; } .framer-vnrHj .framer-dlfr0a > *, .framer-vnrHj .framer-1dtjpur > *, .framer-vnrHj .framer-18hsd4y > *, .framer-vnrHj .framer-1j1r59o > *, .framer-vnrHj .framer-1h9r1f6 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-vnrHj .framer-1w9stb0 > *, .framer-vnrHj .framer-7hbax4 > *, .framer-vnrHj .framer-1e5i8c0 > *, .framer-vnrHj .framer-uw3tyz > *, .framer-vnrHj .framer-1ngzr4z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vnrHj .framer-gi988r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vnrHj .framer-gi988r > :first-child { margin-left: 0px; } .framer-vnrHj .framer-gi988r > :last-child { margin-right: 0px; } .framer-vnrHj .framer-1w6owgl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-vnrHj.framer-v-1ft1tub.framer-14qr5as { width: 810px; }\",\".framer-vnrHj.framer-v-1b1mrgx.framer-14qr5as { padding: 60px 40px 30px 40px; width: 390px; }\",\".framer-vnrHj.framer-v-1b1mrgx .framer-1cs3vnd-container { right: 0px; }\",\".framer-vnrHj.framer-v-1b1mrgx .framer-7yeh29 { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-vnrHj.framer-v-1b1mrgx .framer-dlfr0a, .framer-vnrHj.framer-v-1b1mrgx .framer-18hsd4y, .framer-vnrHj.framer-v-1b1mrgx .framer-1h9r1f6 { width: 100%; }\",\".framer-vnrHj.framer-v-1b1mrgx .framer-1nixqjr { flex-direction: column; gap: 32px; justify-content: flex-start; }\",\".framer-vnrHj.framer-v-1b1mrgx .framer-gi988r { order: 0; }\",\".framer-vnrHj.framer-v-1b1mrgx .framer-14z7xbe-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vnrHj.framer-v-1b1mrgx .framer-7yeh29, .framer-vnrHj.framer-v-1b1mrgx .framer-1nixqjr { gap: 0px; } .framer-vnrHj.framer-v-1b1mrgx .framer-7yeh29 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vnrHj.framer-v-1b1mrgx .framer-7yeh29 > :first-child, .framer-vnrHj.framer-v-1b1mrgx .framer-1nixqjr > :first-child { margin-top: 0px; } .framer-vnrHj.framer-v-1b1mrgx .framer-7yeh29 > :last-child, .framer-vnrHj.framer-v-1b1mrgx .framer-1nixqjr > :last-child { margin-bottom: 0px; } .framer-vnrHj.framer-v-1b1mrgx .framer-1nixqjr > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",'.framer-vnrHj[data-border=\"true\"]::after, .framer-vnrHj [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 733\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sotWhIjvw\":{\"layout\":[\"fixed\",\"auto\"]},\"eJbUOHIru\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framernby9eb6K2=withCSS(Component,css,\"framer-vnrHj\");export default Framernby9eb6K2;Framernby9eb6K2.displayName=\"Footer Dark\";Framernby9eb6K2.defaultProps={height:733,width:1200};addPropertyControls(Framernby9eb6K2,{variant:{options:[\"gUs7ecM70\",\"sotWhIjvw\",\"eJbUOHIru\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framernby9eb6K2,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...CookieBannerFonts,...Link1Fonts,...NewsletterSubscriptionFormFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernby9eb6K2\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sotWhIjvw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eJbUOHIru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"733\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nby9eb6K2.map"],
  "mappings": "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",
  "names": ["NewsletterSubscriptionForm", "props", "formUrl", "email", "setEmail", "ye", "formStatus", "setFormStatus", "onSubmit", "event", "error", "handleEmailChange", "p", "responseText", "u", "l", "labelStyle", "containerStyle", "inputStyle", "submitButtonStyle", "DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "_Intl_DateTimeFormat_resolvedOptions_timeZone", "_Intl_DateTimeFormat_resolvedOptions", "_Intl_DateTimeFormat", "_Intl", "isEULocale", "_navigator_languages", "_navigator_language", "locale", "navigator", "country", "_locale_toUpperCase", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "direction", "id", "primary", "settings", "_settings_hoverOpacity", "_settings_tapOpacity", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "CookieBannerFonts", "getFonts", "CookieBanner", "Link1Fonts", "oUhQWB9gd_default", "Link1WithAnalytics_button_footer_options__pricing16qqbwyWithMappedReactProps5kvezk", "withMappedReactProps", "withCodeBoundaryForOverrides", "withAnalytics_button_footer_options__pricing", "oUhQWB9gd_exports", "Link1WithAnalytics_button_footer_options__changelog850999WithMappedReactProps5kvezk", "withAnalytics_button_footer_options__changelog", "Link1WithAnalytics_button_footer_options__templateswybj5dWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__templates", "Link1WithAnalytics_button_footer_options__partnerwithus1y7l77oWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__partnerwithus", "Link1WithAnalytics_button_header_options__casestudies1nr6577WithMappedReactProps5kvezk", "withAnalytics_button_header_options__casestudies", "Link1WithAnalytics_button_header_options__casestudies11l3oydWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__partnerwithus1jnn232WithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__partnerwithus5o9u0lWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__partnerwithus1vfy6q2WithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__partnerwithus1hm03ayWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__partnerwithussmmcilWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__docs1trb62wWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__docs", "Link1WithAnalytics_button_footer_options__videosdvk0fqWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__videos", "Link1WithAnalytics_button_footer_options__officehours1xvou48WithMappedReactProps5kvezk", "withAnalytics_button_footer_options__officehours", "Link1WithAnalytics_button_footer_options__officehoursxa7tskWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__blog13z4od8WithMappedReactProps5kvezk", "withAnalytics_button_footer_options__blog", "Link1WithAnalytics_button_footer_options__blog53t9zuWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__discordhsm2l5WithMappedReactProps5kvezk", "withAnalytics_button_footer_options__discord", "Link1WithAnalytics_button_footer_options__twitter16uybvwWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__twitter", "Link1WithAnalytics_button_footer_options__youtube91he4vWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__youtube", "Link1WithAnalytics_button_header_options__linkedin1npwx0lWithMappedReactProps5kvezk", "withAnalytics_button_header_options__linkedin", "Link1WithAnalytics_button_header_options__redditnfkx1gWithMappedReactProps5kvezk", "withAnalytics_button_header_options__reddit", "Link1WithAnalytics_button_footer_options__partnerwithus14zffe2WithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__contactus1owj7k2WithMappedReactProps5kvezk", "withAnalytics_button_footer_options__contactus", "Link1WithAnalytics_button_footer_options__contactusieki2gWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__contactuswq1uucWithMappedReactProps5kvezk", "Link1WithAnalytics_button_footer_options__terms1qrf1jyWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__terms", "Link1WithAnalytics_button_footer_options__privacy1uk3oisWithMappedReactProps5kvezk", "withAnalytics_button_footer_options__privacy", "NewsletterSubscriptionFormFonts", "NewsletterSubscriptionForm", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "U13PzKMR21yvflcc", "args", "onTap1yvflcc", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "css", "Framernby9eb6K2", "withCSS", "nby9eb6K2_default", "addPropertyControls", "ControlType", "addFonts"]
}
