{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/7Vzkp1ORK9zU9dYiZ1fu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/nrn5valPIfiaZFRgtVW3/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js", "ssg:https://framerusercontent.com/modules/GEOgCNje2quYr4LzYFrW/JkUgmzqgCAhL91MxnHOp/I5YOnbYC2.js"],
  "sourcesContent": ["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);script.crossOrigin=\"anonymous\"// allows for more detailed INP collection\n;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_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"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{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/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 isOnFramerCanvas=useIsOnFramerCanvas();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(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;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\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// 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=()=>{return Intl?.DateTimeFormat()?.resolvedOptions()?.timeZone?.startsWith(\"Europe\");};const isEULocale=()=>{const locale=navigator.language??navigator.languages?.[0];return countries.some(country=>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/wTCMOQdBhrD1LTpkwItL/inEU.js\";export function useRegion({content,useRegionFromProps,skipEUCheck}){const isInEUBasedOnLocation=isBrowser&&!skipEUCheck?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\":{\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"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}){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?.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        }`],\"framer-lib-cookie-banner\");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?.link;if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description?.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&policy?.link?\" \":null,policy?.link&&/*#__PURE__*/_jsxs(\"span\",{children:[policy?.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy?.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children: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;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??.6},whileTap:{opacity: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/7Vzkp1ORK9zU9dYiZ1fu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/nrn5valPIfiaZFRgtVW3/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/wTCMOQdBhrD1LTpkwItL/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 skipLogic=!preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview,// skip EU check (expensive) if we are on the canvas and don't want a preview\nskipEUCheck:skipLogic});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(()=>{if(skipLogic)return;// 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,skipLogic]);// Check if user should be prompted\nuseEffect(()=>{if(skipLogic)return;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,skipLogic]);useEffect(()=>{if(skipLogic)return;if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes,skipLogic]);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)}),!skipLogic&&/*#__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){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?.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}\",\"framer-lib-cookie-trigger\");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\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},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\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},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\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS}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/IH6s9ASs8tTeXMp8PWOj/Cookies.js\";import{withCurrentYear}from\"https://framerusercontent.com/modules/vdJMW2XUpuyuUNW1mQ8Q/EqDy7U6UNpjq44d9MsqI/Copyright_current_year_footer.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6Ej8dkZSG5k4QNKJOgnS/JCXQBBwhzVvUmyMu62XR/PlgTBwJvl.js\";const CookieBannerFonts=getFonts(CookieBanner);const RichTextWithCurrentYear1fru6fg=withCodeBoundaryForOverrides(RichText,{nodeId:\"J2nElULrO\",override:withCurrentYear,scopeId:\"I5YOnbYC2\"});const cycleOrder=[\"owIunnpli\",\"JcFjRATAW\",\"nyf_TpD9f\"];const serializationHash=\"framer-0kJ32\";const variantClassNames={JcFjRATAW:\"framer-v-ysq9fx\",nyf_TpD9f:\"framer-v-18vixrp\",owIunnpli:\"framer-v-4tt1f4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};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:\"owIunnpli\",Phone:\"nyf_TpD9f\",Tablet:\"JcFjRATAW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"owIunnpli\"};};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:\"owIunnpli\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4tt1f4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"owIunnpli\",ref:refBinding,style:{backgroundColor:\"rgb(8, 9, 10)\",...style},...addPropertyOverrides({JcFjRATAW:{\"data-framer-name\":\"Tablet\"},nyf_TpD9f:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bheseg\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"U7mTlI84x\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lml8ty\",\"data-framer-name\":\"link-column-01\",layoutDependency:layoutDependency,layoutId:\"awvmqLWHD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Product\"})}),className:\"framer-rb5sib\",\"data-framer-name\":\"Product\",fonts:[\"GF;IBM Plex Sans-600\"],layoutDependency:layoutDependency,layoutId:\"y79gmNUyP\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DuFkYncxp\"},motionChild:true,nodeId:\"k4iCvZe1k\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Kubernetes Dashboard\"})})})}),className:\"framer-509mm0\",\"data-framer-name\":\"Kubernetes Dashboard\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"k4iCvZe1k\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JcFjRATAW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PFf1RIqPs\"},motionChild:true,nodeId:\"k4iCvZe1k\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Kubernetes Dashboard\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XTwy36pDc\"},motionChild:true,nodeId:\"bRmKOD2pM\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Release Orchestration\"})})})}),className:\"framer-j0udit\",\"data-framer-name\":\"Release Orchestration\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"bRmKOD2pM\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qVTpzthWh\"},motionChild:true,nodeId:\"asM9TPD6b\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Continuous Deployment with GitOps\"})})})}),className:\"framer-1u9279q\",\"data-framer-name\":\"Continuous Deployment with GitOps\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"asM9TPD6b\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"INZPeAn4X\"},motionChild:true,nodeId:\"fJyXPk_6d\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Devtron Platform\"})})})}),className:\"framer-1blrskl\",\"data-framer-name\":\"Devtron Platform\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"fJyXPk_6d\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11nu095\",\"data-framer-name\":\"link-column-02\",layoutDependency:layoutDependency,layoutId:\"E5AnwkWR0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Solutions\"})}),className:\"framer-zktvfk\",\"data-framer-name\":\"Solutions\",fonts:[\"GF;IBM Plex Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Fsa0Bus4_\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gRRPaB6Kt\"},motionChild:true,nodeId:\"lUipld0uS\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Telco Kubernetes Adoption\"})})})}),className:\"framer-18x7jps\",\"data-framer-name\":\"Multi-cluster Deployment Workflows\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"lUipld0uS\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NLoy12Hmh\"},motionChild:true,nodeId:\"cqzng42Ci\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Customer End Deployment\"})})})}),className:\"framer-1womdp2\",\"data-framer-name\":\"Edge Workload Deployment\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"cqzng42Ci\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"V8d52UQFs\"},motionChild:true,nodeId:\"X7df690ca\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"VMware Tanzu Alternative\"})})})}),className:\"framer-5jjwiy\",\"data-framer-name\":\"Enterprise Grade RBAC\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"X7df690ca\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ohnuwr\",\"data-framer-name\":\"link-column-03\",layoutDependency:layoutDependency,layoutId:\"f1KMhj2MO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Resources\"})}),className:\"framer-1fgf759\",\"data-framer-name\":\"Resources\",fonts:[\"GF;IBM Plex Sans-600\"],layoutDependency:layoutDependency,layoutId:\"IhedyT8Yx\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://devtron.ai/blog/\",motionChild:true,nodeId:\"CJaBFaj5m\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Blogs\"})})})}),className:\"framer-1nh7bsx\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"CJaBFaj5m\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IwJiwGSBP\"},motionChild:true,nodeId:\"UX9SqYEhS\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Videos\"})})})}),className:\"framer-14cc1jd\",\"data-framer-name\":\"Videos\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"UX9SqYEhS\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d6IbtQf3b\"},motionChild:true,nodeId:\"RguQbYXFo\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Webinars\"})})})}),className:\"framer-1mcfjdo\",\"data-framer-name\":\"Webinars\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"RguQbYXFo\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l_TuQdohv\"},motionChild:true,nodeId:\"HrxfdmqCz\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"E-Books\"})})})}),className:\"framer-192t621\",\"data-framer-name\":\"E-Books\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"HrxfdmqCz\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://devtron.ai/blog/tag/product-updates/\",motionChild:true,nodeId:\"sPMKpjyHA\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Product Updates\"})})})}),className:\"framer-1r9xevs\",\"data-framer-name\":\"Product Updates\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"sPMKpjyHA\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.devtron.ai/\",motionChild:true,nodeId:\"FZR6zAkJn\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Documentation\"})})})}),className:\"framer-h3wfu5\",\"data-framer-name\":\"Documentation\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"FZR6zAkJn\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Cy6JgZWlw\"},motionChild:true,nodeId:\"CasMOAFSC\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Terms\"})})})}),className:\"framer-1lu0u2h\",\"data-framer-name\":\"Documentation\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"CasMOAFSC\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pP1dtjVm6\"},motionChild:true,nodeId:\"pk05ZDNQM\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Privacy\"})})})}),className:\"framer-c2tun1\",\"data-framer-name\":\"Documentation\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"pk05ZDNQM\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QoeZEMOyj\"},motionChild:true,nodeId:\"krj9hhKMb\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"EULA\"})})})}),className:\"framer-m3cv8v\",\"data-framer-name\":\"Documentation\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"krj9hhKMb\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pP1dtjVm6\"},implicitPathVariables:undefined},{href:{webPageId:\"pP1dtjVm6\"},implicitPathVariables:undefined},{href:{webPageId:\"pP1dtjVm6\"},implicitPathVariables:undefined},{href:{webPageId:\"pP1dtjVm6\"},implicitPathVariables:undefined},{href:{webPageId:\"pP1dtjVm6\"},implicitPathVariables:undefined},{href:{webPageId:\"pP1dtjVm6\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5thexm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SwtQ4F4Jq-container\",nodeId:\"SwtQ4F4Jq\",rendersWithMotion:true,scopeId:\"I5YOnbYC2\",style:{opacity:0},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:16,insetBottom:16,insetLeft:16,insetPerSide:false,insetRight:16,insetTop:16,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-left\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"var(--token-e793d21e-5aaf-480f-ba39-fad474f126b8, rgba(255, 255, 255, 0.1))\",radius:16,width:1},colorBody:\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(208, 214, 224))\",colorTitle:\"var(--token-4d6c804b-293b-43c4-9966-4ac7f15f6d03, rgb(247, 248, 248))\",fill:\"var(--token-a681f9d1-66b8-4564-b27b-027ff44426c9, rgb(35, 35, 38))\",fontBody:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"130%\",textAlign:\"left\"},fontTitle:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"130%\",textAlign:\"left\"},link:\"var(--token-69d3a0c7-f097-40e3-89a3-2e8b971af770, rgb(2, 137, 255))\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},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:\"var(--token-671d5637-c3cc-4807-8d40-9e37dd94d7e5, rgb(8, 9, 1))\",fill:\"var(--token-2a6199d4-17a6-4c11-877a-305545812ccf, rgb(247, 248, 248))\"},secondary:{color:\"var(--token-4d6c804b-293b-43c4-9966-4ac7f15f6d03, rgb(247, 248, 248))\",fill:\"var(--token-a7ef9406-7919-4a15-bf4c-5a409cc6d146, rgba(255, 255, 255, 0.05))\",shadow:{shadowBlur:0,shadowColor:\"rgba(0, 0, 0, 0.25)\",shadowX:0,shadowY:0}},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:\"Privacy Policy\",link:resolvedLinks[0],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:false,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:\"Privacy Policy\",link:resolvedLinks[1],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"advanced\"},gtmId:\"GTM-NCWTWQ97\",height:\"100%\",id:\"SwtQ4F4Jq\",layoutId:\"SwtQ4F4Jq\",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:false,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},type:\"none\"},width:\"100%\",...addPropertyOverrides({JcFjRATAW:{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:\"Privacy Policy\",link:resolvedLinks[2],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:false,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:\"Privacy Policy\",link:resolvedLinks[3],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"advanced\"}},nyf_TpD9f:{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:\"Privacy Policy\",link:resolvedLinks[4],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:false,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:\"Privacy Policy\",link:resolvedLinks[5],prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"advanced\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uhix6w\",\"data-framer-name\":\"link-column-04\",layoutDependency:layoutDependency,layoutId:\"A8WhzVhsr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Community\"})}),className:\"framer-1dwr0cl\",\"data-framer-name\":\"Community\",fonts:[\"GF;IBM Plex Sans-600\"],layoutDependency:layoutDependency,layoutId:\"wyAp4V4gu\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.com/invite/jsRG5qx2gp\",motionChild:true,nodeId:\"vVlW00Idy\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Join Discord\"})})})}),className:\"framer-tun010\",\"data-framer-name\":\"Join Discord\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"vVlW00Idy\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/devtron-labs/devtron\",motionChild:true,nodeId:\"SiqiwpgAB\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Devtron OSS\"})})})}),className:\"framer-amh5s1\",\"data-framer-name\":\"Devtron OSS\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"SiqiwpgAB\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/devtron-labs/silver-surfer\",motionChild:true,nodeId:\"CDV991qO5\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Silver Surfer\"})})})}),className:\"framer-j3n9dj\",\"data-framer-name\":\"Silver Surfer\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"CDV991qO5\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/devtron-labs/winter-soldier\",motionChild:true,nodeId:\"CMIPhkubK\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Winter Soldier\"})})})}),className:\"framer-196ggqh\",\"data-framer-name\":\"Winter Soldier\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"CMIPhkubK\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1puxxmk\",\"data-framer-name\":\"link-column-05\",layoutDependency:layoutDependency,layoutId:\"VAxBw7kxe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Company\"})}),className:\"framer-y0m2dz\",\"data-framer-name\":\"Company\",fonts:[\"GF;IBM Plex Sans-600\"],layoutDependency:layoutDependency,layoutId:\"B_28CtWZ7\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UFOkTEO9y\"},motionChild:true,nodeId:\"Ha1XoeLWZ\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"About\"})})})}),className:\"framer-1dnb8j0\",\"data-framer-name\":\"About\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Ha1XoeLWZ\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Khz7kavse\"},motionChild:true,nodeId:\"e5HfP6bcB\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Contact Us\"})})})}),className:\"framer-proilm\",\"data-framer-name\":\"Contact Us\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"e5HfP6bcB\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://devtron.ai/careers/\",motionChild:true,nodeId:\"ZA55xAz9z\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Careers\"})})})}),className:\"framer-1kf1vl7\",\"data-framer-name\":\"Careers\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ZA55xAz9z\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mr2pU6ff_\"},motionChild:true,nodeId:\"rxSn2BgCs\",openInNewTab:false,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Reviews\"})})})}),className:\"framer-14nzefq\",\"data-framer-name\":\"Reviews\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rxSn2BgCs\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/devtron-labs/devtron\",motionChild:true,nodeId:\"Qk6I_cRa_\",openInNewTab:true,scopeId:\"I5YOnbYC2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ontk33\",\"data-styles-preset\":\"PlgTBwJvl\",children:\"Open Source\"})})})}),className:\"framer-1wqdijw\",\"data-framer-name\":\"Open Source\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Qk6I_cRa_\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m006b3\",\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"qteafHIwp\",style:{backgroundColor:\"var(--token-e793d21e-5aaf-480f-ba39-fad474f126b8, rgba(255, 255, 255, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g6aur\",\"data-framer-name\":\"About Container\",layoutDependency:layoutDependency,layoutId:\"siHYGiwBv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1twdpg8\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"VxKBmg4SR\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ifyzao\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"fmVD_T6h_\",svg:'<svg width=\"96\" height=\"22\" viewBox=\"0 0 96 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.8465 15.4136C37.3286 15.4136 37.7166 15.3158 38.0098 15.1204C38.3031 14.9249 38.5311 14.6805 38.6941 14.3872C38.857 14.094 38.9645 13.778 39.0167 13.4389C39.0687 13.1002 39.0949 12.7874 39.0949 12.5005C39.0949 12.214 39.0687 11.9011 39.0167 11.562C38.9645 11.2233 38.857 10.9071 38.6941 10.6138C38.5311 10.3206 38.3031 10.0762 38.0098 9.88072C37.7166 9.68512 37.3286 9.58745 36.8465 9.58745C36.3642 9.58745 35.9766 9.68512 35.6833 9.88072C35.39 10.0762 35.1651 10.3206 35.0088 10.6138C34.8524 10.9071 34.7479 11.2233 34.696 11.562C34.6437 11.9011 34.6177 12.214 34.6177 12.5005C34.6177 12.7874 34.6437 13.1002 34.696 13.4389C34.7479 13.778 34.8524 14.094 35.0088 14.3872C35.1651 14.6805 35.39 14.9249 35.6833 15.1204C35.9766 15.3158 36.3642 15.4136 36.8465 15.4136ZM39.0949 8.68546V4.25H41.4216V12.481C41.4216 13.1588 41.3561 13.7518 41.226 14.2601C41.0955 14.7685 40.923 15.2083 40.7079 15.5798C40.4928 15.9513 40.2485 16.2578 39.9748 16.4988C39.7011 16.7401 39.4206 16.9387 39.134 17.0951C38.4562 17.447 37.6937 17.6294 36.8465 17.6425C35.9731 17.6294 35.1975 17.447 34.5199 17.0951C34.2332 16.9387 33.9496 16.7401 33.6696 16.4988C33.3891 16.2578 33.1416 15.9546 32.9266 15.5897C32.7115 15.2248 32.5386 14.7881 32.4084 14.2797C32.2781 13.7714 32.2129 13.1784 32.2129 12.5005C32.2129 11.8229 32.2746 11.2297 32.3987 10.7214C32.5224 10.213 32.6851 9.77319 32.8874 9.4017C33.0894 9.03021 33.3175 8.72081 33.5718 8.47298C33.8259 8.22553 34.0898 8.02327 34.3635 7.86697C34.9892 7.50214 35.7058 7.30666 36.5142 7.28042C36.9181 7.31947 37.3091 7.41727 37.6872 7.5737C38.0129 7.7172 38.3453 7.93533 38.6844 8.2286C38.9102 8.42412 39.0471 8.57641 39.0949 8.68546ZM49.4374 11.2302C49.372 11.0218 49.2907 10.8132 49.193 10.6046C49.0952 10.3962 48.9615 10.2071 48.7922 10.0376C48.6226 9.86824 48.4207 9.73447 48.1861 9.6368C47.9515 9.53899 47.6778 9.49009 47.365 9.49009C47.0522 9.49009 46.7785 9.53899 46.5438 9.6368C46.3092 9.73447 46.1069 9.86824 45.9377 10.0376C45.7682 10.2071 45.6314 10.3962 45.5272 10.6046C45.4227 10.8132 45.3445 11.0218 45.2925 11.2302H49.4374ZM51.9009 11.2302C51.9269 11.4256 51.9498 11.6279 51.9692 11.8363C51.9888 12.045 51.9985 12.2664 51.9985 12.5009V12.8528H45.1557C45.1817 13.0747 45.2143 13.2995 45.2535 13.5275C45.2925 13.7556 45.3577 13.9805 45.4489 14.202C45.5922 14.5411 45.8138 14.8407 46.1137 15.1012C46.4134 15.3621 46.8303 15.4923 47.365 15.4923C47.8992 15.4923 48.3163 15.3621 48.6162 15.1012C48.9159 14.8407 49.1374 14.5411 49.281 14.202H51.8227C51.7182 14.6583 51.5715 15.0558 51.3828 15.3945C51.1936 15.7336 50.9849 16.0269 50.7571 16.2743C50.529 16.5222 50.2845 16.7274 50.024 16.8902C49.7631 17.0533 49.5088 17.1868 49.2614 17.291C48.6618 17.5256 48.0297 17.6429 47.365 17.6429C46.4916 17.6298 45.716 17.4474 45.0384 17.0955C44.7515 16.9391 44.468 16.7406 44.1879 16.4992C43.9074 16.2582 43.66 15.9551 43.4449 15.5901C43.2299 15.2253 43.057 14.7885 42.9269 14.2802C42.7964 13.7718 42.7314 13.1789 42.7314 12.5009C42.7314 11.8234 42.7964 11.2302 42.9269 10.7218C43.057 10.2135 43.2299 9.77364 43.4449 9.40215C43.66 9.03066 43.9074 8.72126 44.1879 8.47343C44.468 8.22598 44.7515 8.02372 45.0384 7.86742C45.716 7.50258 46.4916 7.30711 47.365 7.28087C48.0816 7.30711 48.7531 7.45676 49.3788 7.73044C49.6393 7.84783 49.9032 8.00119 50.1705 8.19001C50.4376 8.37908 50.6853 8.6136 50.9135 8.89382C51.1414 9.17429 51.3436 9.50661 51.5197 9.8909C51.6955 10.2756 51.8227 10.7218 51.9009 11.2302ZM56.2214 17.4479H57.8247H59.4279L62.6538 7.53541H60.249L57.8247 14.9454L55.4004 7.53541H52.9955L56.2214 17.4479ZM66.0946 9.8616V14.2215C66.1337 14.3779 66.2052 14.5215 66.3097 14.6517C66.4007 14.7561 66.5278 14.8539 66.6909 14.9449C66.8537 15.0362 67.0655 15.0818 67.3263 15.0818H68.8122V17.4474H66.4269C65.9186 17.3955 65.4622 17.252 65.0584 17.0173C64.7192 16.8219 64.4098 16.5319 64.1298 16.1474C63.8493 15.7629 63.7094 15.2317 63.7094 14.5539V6.18984H66.0946V7.53498H68.343V9.8616H66.0946ZM70.3569 8.83563C70.07 9.22018 69.9268 9.75142 69.9268 10.429V17.4479H72.3316V10.7613C72.3706 10.605 72.4422 10.4616 72.5466 10.3312C72.6377 10.2271 72.7648 10.1293 72.9279 10.0379C73.0907 9.9469 73.3024 9.90107 73.5633 9.90107H75.4011V7.53541H72.6639C72.1556 7.58764 71.6992 7.73089 71.2953 7.96553C70.9562 8.16101 70.6434 8.45121 70.3569 8.83563ZM81.0705 9.58743C80.5882 9.58743 80.2004 9.68523 79.9071 9.8807C79.614 10.0762 79.3891 10.3206 79.2326 10.6138C79.0763 10.9071 78.9718 11.2233 78.9199 11.5621C78.8677 11.9012 78.8417 12.214 78.8417 12.5006C78.8417 12.7875 78.8677 13.1002 78.9199 13.439C78.9718 13.7782 79.0763 14.094 79.2326 14.3872C79.3891 14.6805 79.614 14.9249 79.9071 15.1204C80.2004 15.316 80.5882 15.4136 81.0705 15.4136C81.5526 15.4136 81.9405 15.316 82.2338 15.1204C82.527 14.9249 82.7519 14.6805 82.9083 14.3872C83.0647 14.094 83.1689 13.7782 83.2211 13.439C83.2731 13.1002 83.2993 12.7875 83.2993 12.5006C83.2993 12.214 83.2731 11.9012 83.2211 11.5621C83.1689 11.2233 83.0647 10.9071 82.9083 10.6138C82.7519 10.3206 82.527 10.0762 82.2338 9.8807C81.9405 9.68523 81.5526 9.58743 81.0705 9.58743ZM76.4369 12.5006C76.4369 11.823 76.5019 11.2297 76.6323 10.7214C76.7625 10.213 76.9355 9.77317 77.1505 9.40168C77.3656 9.03019 77.613 8.72079 77.8934 8.47296C78.1736 8.22551 78.457 8.02338 78.7439 7.86695C79.4215 7.50212 80.1971 7.30664 81.0705 7.2804C81.9308 7.30664 82.6997 7.50212 83.3775 7.86695C83.664 8.02338 83.9476 8.22551 84.2281 8.47296C84.5081 8.72079 84.7558 9.03019 84.9709 9.40168C85.186 9.77317 85.362 10.213 85.4988 10.7214C85.6357 11.2297 85.7042 11.823 85.7042 12.5006C85.7042 13.1784 85.6357 13.7714 85.4988 14.2797C85.362 14.788 85.186 15.2249 84.9709 15.5896C84.7558 15.9547 84.5081 16.2577 84.2281 16.4988C83.9476 16.7401 83.664 16.9386 83.3775 17.0951C82.6997 17.447 81.9308 17.6294 81.0705 17.6424C80.1971 17.6294 79.4215 17.447 78.7439 17.0951C78.457 16.9386 78.1736 16.7401 77.8934 16.4988C77.613 16.2577 77.3656 15.9547 77.1505 15.5896C76.9355 15.2249 76.7625 14.788 76.6323 14.2797C76.5019 13.7714 76.4369 13.1784 76.4369 12.5006ZM91.6577 7.29999C91.4163 7.28706 91.2764 7.2804 91.2373 7.2804C91.1851 7.2804 91.0419 7.28706 90.8072 7.29999C90.5726 7.31304 90.2921 7.36834 89.9666 7.46615C89.6405 7.56395 89.295 7.7173 88.9303 7.92558C88.5652 8.13424 88.2265 8.43391 87.9136 8.82499C87.6008 9.21594 87.3433 9.70814 87.1413 10.3011C86.9391 10.8943 86.8383 11.6274 86.8383 12.5006V17.447H89.2236V12.5006C89.2236 12.214 89.2496 11.9207 89.3018 11.6208C89.3536 11.3211 89.4514 11.0474 89.5951 10.7996C89.7383 10.5521 89.9402 10.3469 90.2011 10.1837C90.4617 10.0209 90.8072 9.93933 91.2373 9.93933C91.6674 9.93933 92.0127 10.0209 92.2736 10.1837C92.5341 10.3469 92.7361 10.5521 92.8796 10.7996C93.0228 11.0474 93.1206 11.3211 93.1729 11.6208C93.2248 11.9207 93.2511 12.214 93.2511 12.5006V17.447H95.6363V12.5006C95.6363 11.6274 95.5352 10.8943 95.3333 10.3011C95.1311 9.70814 94.8739 9.21594 94.561 8.82499C94.2482 8.43391 93.9091 8.13424 93.5444 7.92558C93.1793 7.7173 92.8338 7.56395 92.5081 7.46615C92.1822 7.36834 91.8986 7.31304 91.6577 7.29999Z\" fill=\"#F7F8F8\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.82228 19.5564L0.297026 12.432C-0.093796 11.8195 -0.0992703 11.0373 0.282559 10.4191L6.11733 0.974833C6.4931 0.366605 7.15783 -0.00251567 7.87261 1.29079e-05L16.2961 0.0301343C16.3151 0.0301343 16.3338 0.0307208 16.3524 0.0316984C17.1737 0.0739283 17.6242 1.01394 17.1712 1.70056L11.3253 10.5593C11.1055 11.0113 10.5947 11.295 10.0377 11.1675C9.62534 11.0733 9.29181 10.7366 9.19972 10.3239C9.13657 10.0406 9.18017 9.77058 9.29669 9.54477C9.29708 9.54399 9.29708 9.5434 9.29748 9.54282L9.29884 9.54066C9.33364 9.47419 9.3747 9.41143 9.42123 9.35337L10.3114 7.99262C10.5751 7.60024 10.3294 7.06806 9.85956 7.0141L7.72011 6.85163C7.32303 6.82133 6.93084 6.95604 6.63601 7.22388C6.24871 7.67688 4.52882 10.4513 3.74365 11.7519C3.49027 12.1716 3.52077 12.6958 3.80485 13.0954L3.79507 13.1001L6.51949 17.3786L7.03055 18.1904C7.08373 18.2588 7.13026 18.3325 7.16917 18.4107L7.18833 18.441L7.18696 18.4479C7.28725 18.666 7.32948 18.9165 7.29253 19.1794C7.21491 19.7304 6.77463 20.1869 6.22564 20.2786C5.61311 20.381 5.06275 20.0571 4.82228 19.5564ZM19.9195 2.42269L24.4764 9.5269C24.87 10.1377 24.879 10.9199 24.4999 11.5397L18.7074 21.0099C18.3343 21.6197 17.6712 21.992 16.9564 21.9925L8.53288 22.0002C8.51391 22.0002 8.49514 21.9998 8.47657 21.9988C7.65504 21.9603 7.20048 21.0222 7.65035 20.3337L13.4566 11.4488C13.6744 10.996 14.1839 10.7099 14.7415 10.8349C15.1542 10.9273 15.4893 11.2624 15.5831 11.6748C15.6476 11.9579 15.6052 12.2279 15.4897 12.4544L15.4891 12.4562L15.4875 12.4584C15.4531 12.5252 15.4124 12.588 15.3659 12.6462L14.482 14.0111C14.22 14.4047 14.4681 14.9357 14.9381 14.9875L17.0782 15.1405C17.4756 15.1689 17.8671 15.0324 18.1609 14.7634C18.5461 14.3087 20.2534 11.5266 21.0327 10.2225C21.2844 9.80159 21.2517 9.27763 20.9657 8.87937L20.9755 8.87449L18.2319 4.60809L17.7173 3.79868C17.6637 3.73045 17.6168 3.65694 17.5775 3.57893L17.5583 3.54882L17.5597 3.54198C17.4584 3.32418 17.4152 3.07393 17.451 2.81078C17.5259 2.25944 17.9642 1.80117 18.5128 1.70693C19.125 1.60175 19.6767 1.92317 19.9195 2.42269Z\" fill=\"#F7F8F8\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Simplify application management and troubleshooting to unlock the full value of K8s, and drive innovation at scale.\"})}),className:\"framer-57bkbd\",\"data-framer-name\":\"Simplify cluster management and troubleshooting to unlock the full value of K8s, and drive innovation at scale.\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"sZ8BYy73Z\",style:{\"--extracted-r6o4lv\":\"var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JcFjRATAW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Simplify application management and troubleshooting to unlock the full value of K8s, and drive innovation at scale.\"})})},nyf_TpD9f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4cd52408-e59d-47a0-93a9-4463216884c4, rgb(247, 248, 248)))\"},children:\"Simplify application management and troubleshooting to unlock the full value of K8s, and drive innovation at scale.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mf9v0q\",\"data-framer-name\":\"footer-badges\",layoutDependency:layoutDependency,layoutId:\"dSsFHOzPh\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9pjmzs\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:96,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"TKrqjv7Ut\",svg:'<svg width=\"96\" height=\"96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M.75 65.292V.75h64.222L95.25 31.028V95.25H30.708L.75 65.292Z\" stroke=\"#2B2C2E\" stroke-width=\"1.5\"/><path d=\"M15.591 54.062v3.526H13.61v-9.589h3.673a3.392 3.392 0 0 1 2.39.787c.466.438.786 1.02.903 1.633a3.162 3.162 0 0 1-.204 1.865 3.073 3.073 0 0 1-1.253 1.399 2.886 2.886 0 0 1-1.836.379h-1.69Zm0-1.516h1.487c.204.03.407 0 .582-.058.175-.059.35-.175.496-.32.233-.322.35-.73.35-1.108 0-.408-.117-.787-.35-1.108a1.6 1.6 0 0 0-1.078-.408H15.62l-.029 3.002Zm13.377 5.042-.641-2.128h-3.264l-.641 2.128h-2.128l3.352-9.589h2.331l3.264 9.589h-2.273Zm-3.526-3.672h2.39l-1.195-3.993-1.195 3.993Zm8.655 3.672v-9.589h3.673a3.392 3.392 0 0 1 2.39.787c.553.554.874 1.341.874 2.128a2.55 2.55 0 0 1-.496 1.515c-.32.467-.757.816-1.282 1.079l2.39 4.138h-2.128l-2.127-3.76h-1.37v3.673h-1.924v.029Zm1.982-5.217h1.457c.175.03.321.03.496-.029.175-.03.32-.117.437-.204.146-.087.233-.233.32-.379a1.29 1.29 0 0 0 .176-.466v-.408c.058-.32-.03-.67-.234-.933a1.328 1.328 0 0 0-.845-.495h-1.748V52.4l-.059-.029Zm10.492 5.217V49.66h-2.973v-1.662h7.928v1.662h-2.973v7.927H46.57Zm9.997-6.645v6.645H54.73v-9.589h2.244l3.906 6.733v-6.733h1.836v9.589h-2.244l-3.905-6.645Zm9.85 6.645v-9.589h6.324v1.603h-4.255v2.245h3.44v1.602h-3.44v2.565h4.255v1.603h-6.324v-.03Zm9.967 0v-9.589h3.672a3.392 3.392 0 0 1 2.39.787c.554.554.875 1.341.875 2.128a2.73 2.73 0 0 1-.467 1.515c-.32.467-.758.816-1.282 1.079l2.39 4.138h-2.128l-2.127-3.76h-1.34v3.673h-1.983v.029Zm2.011-5.217h1.428a1.2 1.2 0 0 0 .933-.233c.262-.204.437-.495.495-.845v-.408c.059-.32-.029-.67-.233-.933a1.337 1.337 0 0 0-.816-.495h-1.836l.03 2.914ZM21.333 21.974c-.029.321.03.67.175.962.088.233.233.554.32.787.03.03.06.088.06.117 0 .029.028.087 0 .116 0 .146-.088.233-.234.32l-.729.467h-.233c-.058 0-.116 0-.175-.03-.058-.028-.116-.057-.145-.116a3.118 3.118 0 0 1-.408-.466c-.117-.204-.234-.408-.321-.641a4.186 4.186 0 0 1-1.428 1.137 4.177 4.177 0 0 1-1.778.408 2.71 2.71 0 0 1-1.166-.175c-.379-.146-.7-.35-.99-.642-.263-.29-.496-.611-.613-.99a2.583 2.583 0 0 1-.174-1.137c0-.408.058-.845.233-1.224.175-.379.408-.729.728-1.02.758-.583 1.69-.874 2.653-.874.35 0 .728.029 1.078.087l1.195.233v-.787c.029-.32.029-.64-.059-.932a2.217 2.217 0 0 0-.437-.816 1.765 1.765 0 0 0-.845-.408 2.003 2.003 0 0 0-.932-.059c-.409.03-.817.059-1.195.146a5.776 5.776 0 0 0-1.195.408c-.146.088-.233.088-.408.175h-.146c-.146 0-.233-.087-.233-.32v-.584a.93.93 0 0 1 .087-.407 1.32 1.32 0 0 1 .32-.234 3.68 3.68 0 0 1 1.341-.466 6.572 6.572 0 0 1 1.69-.233 3.887 3.887 0 0 1 2.799.874c.32.35.553.787.699 1.224.146.466.204.933.175 1.4l.291 3.7Zm-4.371 1.603c.35-.029.728-.058 1.078-.145a3.358 3.358 0 0 0 1.078-.729c.204-.204.321-.466.408-.729.059-.32.088-.64.088-.961v-.496a9.465 9.465 0 0 0-2.011-.233 2.419 2.419 0 0 0-1.603.408 1.803 1.803 0 0 0-.145 2.39c.116.175.29.32.495.408a.963.963 0 0 0 .64.058h-.028v.03Zm8.714 1.224c-.146 0-.32 0-.408-.087a1.852 1.852 0 0 1-.233-.408l-2.565-8.394a.93.93 0 0 1-.087-.408c0-.145.087-.233.145-.233h1.079c.145 0 .32 0 .408.088.116.116.174.262.233.408l1.836 7.11 1.69-7.11c0-.088.03-.146.058-.233a.494.494 0 0 1 .175-.175.93.93 0 0 1 .408-.088h.875a.505.505 0 0 1 .408.088c.087.116.174.262.233.408l1.69 7.286 1.836-7.286c0-.088.03-.175.059-.233a.494.494 0 0 1 .174-.175.93.93 0 0 1 .408-.088h1.079c.145 0 .233.088.233.175v.233c0 .088-.088.146-.088.233l-2.564 8.306c0 .088-.03.175-.059.234-.029.058-.116.116-.174.174-.088.146-.234.146-.408.146h-.962c-.146 0-.32 0-.408-.087-.088-.088-.146-.233-.233-.408l-1.69-6.966-1.662 6.966a.551.551 0 0 1-.058.233c-.03.058-.117.116-.175.175a.588.588 0 0 1-.32.087h-.933v.03Zm13.843.321a10.65 10.65 0 0 1-1.661-.146 6.563 6.563 0 0 1-1.282-.408.794.794 0 0 1-.292-.233c-.058-.117-.116-.262-.087-.379v-.553c0-.234.087-.321.233-.321h.146c.087 0 .145.087.233.087.379.175.787.292 1.195.408a6.17 6.17 0 0 0 1.282.146 2.866 2.866 0 0 0 1.603-.408c.175-.117.32-.291.408-.466.087-.175.146-.38.146-.612a.64.64 0 0 0-.059-.408.911.911 0 0 0-.262-.32c-.32-.263-.67-.467-1.078-.555l-1.603-.466a3.552 3.552 0 0 1-1.749-1.078 2.67 2.67 0 0 1-.554-1.603c0-.437.117-.845.321-1.195.437-.7 1.137-1.195 1.923-1.428a3.547 3.547 0 0 1 1.341-.175c.233 0 .496.03.729.088.233.029.495.058.728.145.233.088.408.088.642.146.233.087.32.087.466.146.116.058.233.145.32.233a.93.93 0 0 1 .088.408v.466c0 .233-.088.32-.233.32a.697.697 0 0 1-.408-.145 4.862 4.862 0 0 0-2.128-.408c-.495 0-.99.087-1.428.32a.921.921 0 0 0-.408.409.924.924 0 0 0-.087.553c0 .146 0 .292.058.437a.796.796 0 0 0 .262.35c.32.32.758.496 1.195.554l1.516.466c.64.204 1.224.554 1.66 1.079.321.437.496.99.467 1.515 0 .437-.087.903-.32 1.282a2.548 2.548 0 0 1-.787.962 6.755 6.755 0 0 1-1.195.641c-.437.117-.904.146-1.37.146h.03Z\" fill=\"#fff\"/><path d=\"M41.618 30.31a23.441 23.441 0 0 1-13.203 3.993 23.981 23.981 0 0 1-16.087-6.178c-.32-.32 0-.729.408-.467a31.48 31.48 0 0 0 16.087 4.314c4.226-.03 8.423-.846 12.328-2.478.525-.233 1.05.409.467.817Zm.553 2.42c-.145.32.175.466.496.233 1.923-1.603 2.39-4.955 1.981-5.45-.408-.467-3.759-.875-5.77.553-.32.234-.233.554.087.467 1.079-.146 3.702-.467 4.168.175.466.67-.554 2.972-.962 4.022Z\" fill=\"#F90\"/><path d=\"M68.485 69c-.114 0-.17-.057-.17-.17v-3.97c0-.113.056-.17.17-.17h.501c.114 0 .17.057.17.17v3.97c0 .113-.056.17-.17.17h-.501Zm.255-5.075a.548.548 0 0 1-.391-.136.524.524 0 0 1-.136-.374.49.49 0 0 1 .136-.365.528.528 0 0 1 .39-.145.5.5 0 0 1 .528.51.506.506 0 0 1-.145.374.518.518 0 0 1-.382.136Zm1.98 3.927c0 .805.402 1.207 1.206 1.207.295 0 .553-.034.774-.102.068-.022.113-.05.136-.085a.347.347 0 0 0 .034-.17v-.23c0-.056-.009-.096-.026-.118-.017-.029-.048-.043-.093-.043-.029 0-.085.009-.17.026a2.345 2.345 0 0 1-.4.042c-.226 0-.388-.042-.484-.127-.09-.085-.136-.233-.136-.442v-2.457h1.105c.113 0 .17-.056.17-.17v-.323c0-.113-.057-.17-.17-.17H71.56v-1.037c0-.113-.057-.17-.17-.17h-.357c-.108 0-.167.057-.179.17l-.11 1.054-.62.077c-.074.011-.125.03-.154.06a.203.203 0 0 0-.034.127v.212c0 .114.057.17.17.17h.612v2.5Zm7.912.978c0 .113.057.17.17.17h.501c.114 0 .17-.057.17-.17v-3.154c.431-.289.87-.433 1.318-.433.26 0 .45.07.57.212.124.142.186.363.186.663v2.712c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-2.992c0-.414-.108-.728-.323-.944-.215-.22-.53-.331-.944-.331-.595 0-1.161.2-1.7.603l-.05-.314c-.012-.063-.035-.105-.069-.128a.203.203 0 0 0-.127-.034h-.374c-.113 0-.17.057-.17.17v3.97Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M74.911 77.813c.272.187.595.28.97.28.243 0 .484-.045.722-.136.238-.096.45-.23.637-.4l.068.273c.017.068.04.113.068.136a.226.226 0 0 0 .128.034h.374c.113 0 .17-.057.17-.17v-5.95c0-.114-.057-.17-.17-.17h-.502c-.113 0-.17.056-.17.17v2.159a1.992 1.992 0 0 0-1.3-.476c-.363 0-.683.093-.96.28-.279.182-.494.448-.647.8-.153.345-.23.753-.23 1.223 0 .442.071.83.213 1.165a1.8 1.8 0 0 0 .63.782Zm2.295-.79c-.363.26-.72.39-1.07.39-.806 0-1.208-.524-1.208-1.572 0-1.066.385-1.598 1.156-1.598.215 0 .41.03.587.093.18.057.36.15.535.28v2.406Z\" fill=\"#fff\"/><path d=\"M79.177 79.793c.141.04.303.06.484.06.318 0 .578-.085.782-.255.204-.17.383-.45.536-.842l1.87-4.76a.649.649 0 0 0 .06-.204c0-.068-.04-.102-.12-.102h-.476c-.09 0-.153.014-.187.043a.45.45 0 0 0-.102.187l-1.147 3.298-1.19-3.298a.45.45 0 0 0-.102-.187c-.034-.029-.097-.043-.187-.043h-.51c-.08 0-.12.034-.12.102 0 .04.02.108.06.204l1.64 4.046-.16.434c-.097.266-.208.45-.332.552-.12.108-.284.162-.493.162-.097 0-.173-.006-.23-.017a.71.71 0 0 0-.127-.017c-.085 0-.128.054-.128.161v.221c0 .074.012.13.034.17.029.04.077.068.145.085Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.862 78.11c-.402 0-.725-.113-.969-.34-.238-.232-.357-.54-.357-.926 0-.414.147-.743.442-.986.295-.25.692-.374 1.19-.374.317 0 .674.048 1.071.144v-.56c0-.307-.07-.522-.212-.647-.136-.124-.371-.187-.706-.187-.39 0-.773.057-1.147.17-.13.04-.213.06-.247.06-.068 0-.102-.051-.102-.153v-.23c0-.073.011-.127.034-.161a.297.297 0 0 1 .136-.094c.176-.08.397-.141.663-.187.272-.05.541-.076.808-.076.538 0 .935.113 1.19.34.255.22.382.56.382 1.02v2.907c0 .113-.056.17-.17.17h-.365c-.108 0-.17-.054-.187-.162l-.043-.28c-.204.175-.43.311-.68.408a1.977 1.977 0 0 1-.73.144Zm.204-.637c.187 0 .383-.037.587-.11.204-.074.4-.182.586-.324v-.867a3.84 3.84 0 0 0-.9-.11c-.641 0-.961.246-.961.74 0 .215.06.382.178.5.12.114.29.17.51.17Zm-5.442.077c.357.385.884.577 1.58.577.239 0 .474-.022.706-.068.238-.045.442-.105.612-.178a.42.42 0 0 0 .145-.094.299.299 0 0 0 .034-.161v-.238c0-.102-.037-.153-.11-.153a.207.207 0 0 0-.077.017 1.257 1.257 0 0 0-.102.025 4.025 4.025 0 0 1-.595.145 3.316 3.316 0 0 1-.485.034c-.481 0-.838-.116-1.07-.349-.228-.232-.347-.592-.358-1.08h2.67c.056 0 .096-.01.118-.033.029-.023.048-.068.06-.136a3.69 3.69 0 0 0 .042-.553c0-.555-.144-.983-.433-1.283-.29-.306-.703-.46-1.241-.46-.64 0-1.14.202-1.496.604-.357.397-.536.955-.536 1.675 0 .753.179 1.323.536 1.708Zm2.405-2.304c0 .102-.003.175-.008.22h-2.117c.029-.419.142-.733.34-.943.198-.215.476-.323.833-.323.312 0 .547.088.706.264.164.175.246.436.246.782ZM60.434 78c-.113 0-.17-.057-.17-.17v-5.55c0-.114.057-.17.17-.17h1.98c.573 0 1.03.158 1.37.475.34.312.51.734.51 1.267 0 .39-.108.73-.324 1.02-.21.283-.507.49-.892.62l1.402 2.236a.33.33 0 0 1 .068.17.106.106 0 0 1-.034.076.153.153 0 0 1-.093.026h-.476a.65.65 0 0 1-.213-.026.22.22 0 0 1-.102-.102l-1.377-2.244h-1.147v2.202c0 .113-.057.17-.17.17h-.502Zm1.87-3.06c.363 0 .638-.09.825-.272.192-.182.289-.45.289-.808 0-.351-.09-.615-.272-.79-.182-.182-.45-.272-.808-.272h-1.232v2.142h1.198Zm13.233-5.813c-.646 0-1.15-.2-1.513-.603-.362-.403-.544-.964-.544-1.683 0-.714.182-1.272.544-1.675.363-.402.867-.603 1.513-.603.646 0 1.15.2 1.513.603.363.403.544.96.544 1.675 0 .72-.181 1.28-.544 1.683-.362.402-.867.603-1.513.603Zm0-.68c.8 0 1.199-.535 1.199-1.606 0-1.066-.4-1.598-1.199-1.598s-1.198.532-1.198 1.598c0 1.07.4 1.606 1.198 1.606Z\" fill=\"#fff\"/><path d=\"M65.087 68.966c.04.022.1.034.179.034h.433c.08 0 .136-.012.17-.034.04-.023.08-.088.12-.196l1.495-3.774.034-.102a.212.212 0 0 0 .026-.093c0-.074-.043-.11-.128-.11h-.467c-.085 0-.145.01-.179.033s-.07.088-.11.196l-1.165 3.315-1.164-3.315c-.04-.108-.077-.173-.11-.196a.353.353 0 0 0-.18-.034h-.5c-.086 0-.128.037-.128.11 0 .03.005.06.017.094a.774.774 0 0 1 .042.102l1.505 3.774c.04.108.076.173.11.196Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M60.627 69.11c-.402 0-.725-.113-.969-.34-.238-.232-.357-.54-.357-.926 0-.414.148-.743.442-.986.295-.25.692-.374 1.19-.374.318 0 .675.048 1.071.144v-.56c0-.307-.07-.522-.212-.647-.136-.124-.371-.187-.706-.187-.39 0-.773.057-1.147.17-.13.04-.213.06-.247.06-.068 0-.102-.051-.102-.153v-.23c0-.073.012-.127.034-.161a.298.298 0 0 1 .136-.094c.176-.08.397-.141.663-.187.272-.05.541-.076.808-.076.538 0 .935.113 1.19.34.255.22.382.56.382 1.02v2.907c0 .113-.056.17-.17.17h-.365c-.108 0-.17-.054-.187-.162l-.043-.28c-.204.175-.43.311-.68.408a1.976 1.976 0 0 1-.73.144Zm.204-.637c.187 0 .383-.037.587-.11.204-.074.4-.182.586-.324v-.867a3.84 3.84 0 0 0-.9-.11c-.641 0-.961.246-.961.74 0 .215.06.382.178.5.12.114.29.17.51.17Z\" fill=\"#fff\"/><path d=\"M56.402 68.83c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-3.01a1.748 1.748 0 0 1 1.317-.399 1.4 1.4 0 0 0 .153.009c.102 0 .153-.051.153-.153v-.46c0-.09-.048-.14-.144-.152a2.441 2.441 0 0 0-.204-.009 1.6 1.6 0 0 0-.468.068c-.141.046-.28.116-.416.213a2.89 2.89 0 0 0-.434.39l-.06-.475c-.01-.063-.033-.105-.067-.128-.028-.022-.07-.034-.128-.034h-.374c-.113 0-.17.057-.17.17v3.97Zm-3.131.272c-.93 0-1.635-.255-2.116-.765-.482-.51-.723-1.258-.723-2.244 0-.998.247-1.757.74-2.278.493-.527 1.207-.79 2.142-.79.527 0 1.014.09 1.462.271a.277.277 0 0 1 .136.102c.028.034.042.085.042.153v.298c0 .107-.04.161-.119.161-.04 0-.122-.02-.246-.06a3.93 3.93 0 0 0-1.182-.195c-.72 0-1.246.182-1.58.544-.335.357-.502.918-.502 1.683v.187c0 .754.17 1.31.51 1.666.345.357.88.536 1.606.536.334 0 .635-.031.901-.094v-1.725h-1.147c-.114 0-.17-.057-.17-.17v-.332c0-.113.056-.17.17-.17h1.793c.114 0 .17.057.17.17v2.414c0 .09-.014.159-.042.204-.023.04-.071.077-.145.11-.476.216-1.042.324-1.7.324Zm-9.027-.034c.272.05.544.076.816.076.657 0 1.179-.161 1.564-.484.39-.323.586-.757.586-1.3 0-.38-.102-.69-.306-.927-.198-.244-.527-.45-.986-.62l-.773-.29c-.368-.136-.62-.269-.757-.4-.136-.135-.204-.317-.204-.543 0-.278.1-.49.298-.638.204-.153.49-.23.858-.23.357 0 .74.06 1.148.18.08.022.133.036.161.042a.438.438 0 0 0 .085.008c.08 0 .12-.054.12-.161v-.298c0-.08-.015-.136-.043-.17a.25.25 0 0 0-.128-.085 4.18 4.18 0 0 0-1.402-.246c-.38 0-.72.068-1.02.204a1.61 1.61 0 0 0-.697.57 1.5 1.5 0 0 0-.255.866c0 .38.105.694.314.944.21.25.547.462 1.012.637l.824.315c.318.124.542.258.672.4a.702.702 0 0 1 .204.518c0 .3-.116.538-.349.714-.226.175-.54.263-.943.263-.204 0-.425-.017-.663-.05a4.85 4.85 0 0 1-.655-.154 1.11 1.11 0 0 0-.238-.06c-.085 0-.127.055-.127.162v.306c0 .074.011.128.034.162a.299.299 0 0 0 .136.093c.204.085.442.15.714.196ZM37.004 69c-.09 0-.155-.014-.195-.043-.034-.028-.065-.09-.094-.187l-1.572-5.355a1.011 1.011 0 0 1-.043-.195c0-.074.046-.11.136-.11h.544c.102 0 .167.013.196.042.034.028.062.09.085.187l1.215 4.709 1.08-4.548c.023-.09.05-.15.085-.178.04-.029.105-.043.195-.043h.493c.091 0 .153.014.187.043.04.028.071.088.094.178l1.08 4.556 1.223-4.717c.023-.097.048-.159.077-.187.034-.029.102-.043.204-.043h.51c.09 0 .136.037.136.11 0 .03-.014.094-.043.196l-1.572 5.355c-.029.097-.063.159-.102.187-.034.029-.096.043-.187.043h-.519c-.096 0-.164-.014-.204-.043a.41.41 0 0 1-.085-.187l-1.054-4.386-1.062 4.386c-.023.09-.054.153-.094.187-.034.029-.099.043-.195.043h-.519Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.986 68.89c0 .073.048.11.145.11h.476c.085 0 .144-.012.178-.034.04-.029.077-.094.11-.196l.451-1.334h2.44l.467 1.334a.467.467 0 0 0 .102.196c.04.022.102.034.187.034h.485c.096 0 .144-.037.144-.11a.651.651 0 0 0-.05-.196l-1.99-5.355c-.034-.102-.07-.165-.11-.187-.034-.029-.094-.043-.179-.043h-.527c-.085 0-.147.014-.187.043-.034.022-.068.085-.102.187l-1.989 5.355a.651.651 0 0 0-.05.195Zm2.576-4.999 1.003 2.89h-1.99l.987-2.89Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h96v96H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j3uc0i\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:96,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"SdttRg7Xb\",svg:'<svg width=\"96\" height=\"96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M.75 65.292V.75h64.222L95.25 31.028V95.25H30.708L.75 65.292Z\" stroke=\"#2B2C2E\" stroke-width=\"1.5\"/><path d=\"M15.591 54.062v3.526H13.61v-9.589h3.673a3.392 3.392 0 0 1 2.39.787c.466.438.786 1.02.903 1.633a3.162 3.162 0 0 1-.204 1.865 3.073 3.073 0 0 1-1.253 1.399 2.886 2.886 0 0 1-1.836.379h-1.69Zm0-1.516h1.487c.204.03.407 0 .582-.058.175-.059.35-.175.496-.32.233-.322.35-.73.35-1.108 0-.408-.117-.787-.35-1.108a1.6 1.6 0 0 0-1.078-.408H15.62l-.029 3.002Zm13.377 5.042-.641-2.128h-3.264l-.641 2.128h-2.128l3.352-9.589h2.331l3.264 9.589h-2.273Zm-3.526-3.672h2.39l-1.195-3.993-1.195 3.993Zm8.655 3.672v-9.589h3.673a3.392 3.392 0 0 1 2.39.787c.553.554.874 1.341.874 2.128a2.55 2.55 0 0 1-.496 1.515c-.32.467-.757.816-1.282 1.079l2.39 4.138h-2.128l-2.127-3.76h-1.37v3.673h-1.924v.029Zm1.982-5.217h1.457c.175.03.321.03.496-.029.175-.03.32-.117.437-.204.146-.087.233-.233.32-.379a1.29 1.29 0 0 0 .176-.466v-.408c.058-.32-.03-.67-.234-.933a1.328 1.328 0 0 0-.845-.495h-1.748V52.4l-.059-.029Zm10.492 5.217V49.66h-2.973v-1.662h7.928v1.662h-2.973v7.927H46.57Zm9.997-6.645v6.645H54.73v-9.589h2.244l3.906 6.733v-6.733h1.836v9.589h-2.244l-3.905-6.645Zm9.85 6.645v-9.589h6.324v1.603h-4.255v2.245h3.44v1.602h-3.44v2.565h4.255v1.603h-6.324v-.03Zm9.967 0v-9.589h3.672a3.392 3.392 0 0 1 2.39.787c.554.554.875 1.341.875 2.128a2.73 2.73 0 0 1-.467 1.515c-.32.467-.758.816-1.282 1.079l2.39 4.138h-2.128l-2.127-3.76h-1.34v3.673h-1.983v.029Zm2.011-5.217h1.428a1.2 1.2 0 0 0 .933-.233c.262-.204.437-.495.495-.845v-.408c.059-.32-.029-.67-.233-.933a1.337 1.337 0 0 0-.816-.495h-1.836l.03 2.914ZM21.333 21.974c-.029.321.03.67.175.962.088.233.233.554.32.787.03.03.06.088.06.117 0 .029.028.087 0 .116 0 .146-.088.233-.234.32l-.729.467h-.233c-.058 0-.116 0-.175-.03-.058-.028-.116-.057-.145-.116a3.118 3.118 0 0 1-.408-.466c-.117-.204-.234-.408-.321-.641a4.186 4.186 0 0 1-1.428 1.137 4.177 4.177 0 0 1-1.778.408 2.71 2.71 0 0 1-1.166-.175c-.379-.146-.7-.35-.99-.642-.263-.29-.496-.611-.613-.99a2.583 2.583 0 0 1-.174-1.137c0-.408.058-.845.233-1.224.175-.379.408-.729.728-1.02.758-.583 1.69-.874 2.653-.874.35 0 .728.029 1.078.087l1.195.233v-.787c.029-.32.029-.64-.059-.932a2.217 2.217 0 0 0-.437-.816 1.765 1.765 0 0 0-.845-.408 2.003 2.003 0 0 0-.932-.059c-.409.03-.817.059-1.195.146a5.776 5.776 0 0 0-1.195.408c-.146.088-.233.088-.408.175h-.146c-.146 0-.233-.087-.233-.32v-.584a.93.93 0 0 1 .087-.407 1.32 1.32 0 0 1 .32-.234 3.68 3.68 0 0 1 1.341-.466 6.572 6.572 0 0 1 1.69-.233 3.887 3.887 0 0 1 2.799.874c.32.35.553.787.699 1.224.146.466.204.933.175 1.4l.291 3.7Zm-4.371 1.603c.35-.029.728-.058 1.078-.145a3.358 3.358 0 0 0 1.078-.729c.204-.204.321-.466.408-.729.059-.32.088-.64.088-.961v-.496a9.465 9.465 0 0 0-2.011-.233 2.419 2.419 0 0 0-1.603.408 1.803 1.803 0 0 0-.145 2.39c.116.175.29.32.495.408a.963.963 0 0 0 .64.058h-.028v.03Zm8.714 1.224c-.146 0-.32 0-.408-.087a1.852 1.852 0 0 1-.233-.408l-2.565-8.394a.93.93 0 0 1-.087-.408c0-.145.087-.233.145-.233h1.079c.145 0 .32 0 .408.088.116.116.174.262.233.408l1.836 7.11 1.69-7.11c0-.088.03-.146.058-.233a.494.494 0 0 1 .175-.175.93.93 0 0 1 .408-.088h.875a.505.505 0 0 1 .408.088c.087.116.174.262.233.408l1.69 7.286 1.836-7.286c0-.088.03-.175.059-.233a.494.494 0 0 1 .174-.175.93.93 0 0 1 .408-.088h1.079c.145 0 .233.088.233.175v.233c0 .088-.088.146-.088.233l-2.564 8.306c0 .088-.03.175-.059.234-.029.058-.116.116-.174.174-.088.146-.234.146-.408.146h-.962c-.146 0-.32 0-.408-.087-.088-.088-.146-.233-.233-.408l-1.69-6.966-1.662 6.966a.551.551 0 0 1-.058.233c-.03.058-.117.116-.175.175a.588.588 0 0 1-.32.087h-.933v.03Zm13.843.321a10.65 10.65 0 0 1-1.661-.146 6.563 6.563 0 0 1-1.282-.408.794.794 0 0 1-.292-.233c-.058-.117-.116-.262-.087-.379v-.553c0-.234.087-.321.233-.321h.146c.087 0 .145.087.233.087.379.175.787.292 1.195.408a6.17 6.17 0 0 0 1.282.146 2.866 2.866 0 0 0 1.603-.408c.175-.117.32-.291.408-.466.087-.175.146-.38.146-.612a.64.64 0 0 0-.059-.408.911.911 0 0 0-.262-.32c-.32-.263-.67-.467-1.078-.555l-1.603-.466a3.552 3.552 0 0 1-1.749-1.078 2.67 2.67 0 0 1-.554-1.603c0-.437.117-.845.321-1.195.437-.7 1.137-1.195 1.923-1.428a3.547 3.547 0 0 1 1.341-.175c.233 0 .496.03.729.088.233.029.495.058.728.145.233.088.408.088.642.146.233.087.32.087.466.146.116.058.233.145.32.233a.93.93 0 0 1 .088.408v.466c0 .233-.088.32-.233.32a.697.697 0 0 1-.408-.145 4.862 4.862 0 0 0-2.128-.408c-.495 0-.99.087-1.428.32a.921.921 0 0 0-.408.409.924.924 0 0 0-.087.553c0 .146 0 .292.058.437a.796.796 0 0 0 .262.35c.32.32.758.496 1.195.554l1.516.466c.64.204 1.224.554 1.66 1.079.321.437.496.99.467 1.515 0 .437-.087.903-.32 1.282a2.548 2.548 0 0 1-.787.962 6.755 6.755 0 0 1-1.195.641c-.437.117-.904.146-1.37.146h.03Z\" fill=\"#fff\"/><path d=\"M41.618 30.31a23.441 23.441 0 0 1-13.203 3.993 23.981 23.981 0 0 1-16.087-6.178c-.32-.32 0-.729.408-.467a31.48 31.48 0 0 0 16.087 4.314c4.226-.03 8.423-.846 12.328-2.478.525-.233 1.05.409.467.817Zm.553 2.42c-.145.32.175.466.496.233 1.923-1.603 2.39-4.955 1.981-5.45-.408-.467-3.759-.875-5.77.553-.32.234-.233.554.087.467 1.079-.146 3.702-.467 4.168.175.466.67-.554 2.972-.962 4.022Z\" fill=\"#F90\"/><path d=\"M58.676 68.83c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-3.477h1.147c.113 0 .17-.056.17-.17v-.323c0-.113-.057-.17-.17-.17h-1.147v-.782c0-.226.05-.388.153-.484.107-.102.291-.153.552-.153.12 0 .224.008.315.025.096.017.17.026.22.026.086 0 .128-.054.128-.162v-.22c0-.086-.014-.145-.042-.18-.023-.033-.066-.059-.128-.076a2.687 2.687 0 0 0-.68-.093c-.907 0-1.36.473-1.36 1.42v.696l-.612.077c-.074.011-.125.031-.153.06-.023.028-.034.07-.034.127v.212c0 .114.057.17.17.17h.63v3.477Zm4.451.23c-.804 0-1.207-.403-1.207-1.208v-2.499h-.611c-.114 0-.17-.056-.17-.17v-.212c0-.057.01-.1.033-.128.029-.028.08-.048.154-.06l.62-.076.11-1.054c.012-.113.071-.17.179-.17h.357c.113 0 .17.057.17.17v1.037h1.105c.113 0 .17.057.17.17v.323c0 .114-.057.17-.17.17h-1.105v2.457c0 .21.045.357.136.442.096.085.258.127.484.127.108 0 .241-.014.4-.042.085-.017.142-.026.17-.026.045 0 .076.014.094.043.016.022.025.062.025.119v.23c0 .073-.011.13-.034.17-.023.033-.068.062-.136.084a2.638 2.638 0 0 1-.774.102Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.025 69.127c-.697 0-1.224-.192-1.58-.578-.357-.385-.536-.955-.536-1.708 0-.72.178-1.278.535-1.675.358-.402.856-.603 1.496-.603.539 0 .953.153 1.242.459.288.3.433.728.433 1.283 0 .182-.014.366-.042.553-.012.068-.032.113-.06.136-.023.022-.062.034-.119.034h-2.669c.011.487.13.847.357 1.08.232.232.59.348 1.071.348.17 0 .331-.011.484-.034a4 4 0 0 0 .596-.145c.04-.011.073-.02.102-.025a.21.21 0 0 1 .076-.017c.074 0 .11.05.11.153v.238a.298.298 0 0 1-.034.161.418.418 0 0 1-.144.094 3.67 3.67 0 0 1-1.318.247Zm.816-2.66c.006-.046.009-.12.009-.221 0-.346-.082-.606-.246-.782-.16-.176-.394-.264-.706-.264-.357 0-.635.108-.833.323-.198.21-.312.525-.34.944h2.117Z\" fill=\"#fff\"/><path d=\"M35.972 77.337c.482.51 1.188.765 2.117.765.47 0 .91-.068 1.317-.204.068-.023.114-.051.136-.085a.346.346 0 0 0 .034-.17v-.315c0-.107-.042-.161-.127-.161a.543.543 0 0 0-.085.008l-.17.034c-.442.091-.78.136-1.012.136-.697 0-1.207-.175-1.53-.527-.317-.351-.476-.9-.476-1.649v-.204c0-.759.165-1.312.493-1.657.329-.352.85-.527 1.564-.527.261 0 .544.034.85.102.097.023.162.037.196.042.04.006.07.009.093.009.08 0 .12-.054.12-.162v-.323a.298.298 0 0 0-.035-.161c-.022-.04-.068-.071-.136-.094a4.314 4.314 0 0 0-1.19-.17c-.923 0-1.635.264-2.133.79-.493.528-.74 1.282-.74 2.262 0 .992.238 1.745.714 2.26Zm28.06.723c-.804 0-1.207-.403-1.207-1.208v-2.499h-.612c-.113 0-.17-.056-.17-.17v-.212c0-.057.012-.1.034-.128.029-.028.08-.048.153-.06l.62-.076.111-1.054c.012-.113.071-.17.179-.17h.357c.113 0 .17.057.17.17v1.037h1.105c.113 0 .17.057.17.17v.323c0 .114-.057.17-.17.17h-1.105v2.457c0 .21.045.357.136.442.096.085.258.127.484.127.108 0 .241-.014.4-.042.085-.017.142-.026.17-.026.045 0 .076.014.093.043.017.022.026.062.026.119v.23c0 .073-.011.13-.034.17-.023.033-.068.062-.136.084a2.638 2.638 0 0 1-.774.102Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.122 77.55c.357.385.884.577 1.58.577.239 0 .474-.022.706-.068.238-.045.442-.105.612-.178a.417.417 0 0 0 .145-.094.298.298 0 0 0 .034-.161v-.238c0-.102-.037-.153-.11-.153a.21.21 0 0 0-.077.017 1.37 1.37 0 0 0-.102.025 3.997 3.997 0 0 1-.595.145 3.302 3.302 0 0 1-.485.034c-.481 0-.838-.116-1.07-.349-.227-.232-.347-.592-.358-1.08h2.67c.056 0 .096-.01.118-.033.029-.023.048-.068.06-.136.028-.187.042-.371.042-.553 0-.555-.144-.983-.433-1.283-.29-.306-.703-.46-1.241-.46-.64 0-1.14.202-1.496.604-.357.397-.536.955-.536 1.675 0 .754.179 1.323.536 1.708Zm2.405-2.304c0 .102-.003.175-.008.22h-2.117c.028-.418.142-.733.34-.943.198-.215.476-.323.833-.323.312 0 .547.088.706.264.164.175.246.436.246.782Z\" fill=\"#fff\"/><path d=\"M70.476 78c-.113 0-.17-.057-.17-.17v-3.97c0-.113.057-.17.17-.17h.374c.057 0 .1.012.128.034.034.023.056.066.068.128l.05.314c.54-.402 1.106-.603 1.7-.603.414 0 .729.11.944.331.216.216.323.53.323.944v2.992c0 .113-.056.17-.17.17h-.501c-.114 0-.17-.057-.17-.17v-2.712c0-.3-.063-.521-.187-.663-.12-.141-.31-.212-.57-.212-.447 0-.887.144-1.317.433v3.154c0 .113-.057.17-.17.17h-.502Zm5.134-.476c.356.38.87.57 1.538.57.368 0 .691-.06.969-.18a.298.298 0 0 0 .136-.093.298.298 0 0 0 .034-.161v-.23c0-.113-.037-.17-.11-.17a.597.597 0 0 0-.128.026c-.272.08-.527.119-.765.119-.46 0-.796-.12-1.012-.357-.21-.244-.314-.624-.314-1.14v-.11c0-.527.105-.91.314-1.147.21-.244.553-.366 1.029-.366a2.5 2.5 0 0 1 .705.102.59.59 0 0 0 .136.026c.074 0 .11-.057.11-.17v-.23c0-.079-.013-.136-.042-.17a.251.251 0 0 0-.127-.085 2.608 2.608 0 0 0-.901-.161c-.669 0-1.187.198-1.556.595-.362.39-.544.946-.544 1.666 0 .725.176 1.28.527 1.666Zm3.567 2.269c.141.04.303.06.484.06.318 0 .578-.085.782-.255.204-.17.383-.45.536-.842l1.87-4.76a.645.645 0 0 0 .06-.204c0-.068-.04-.102-.12-.102h-.476c-.09 0-.153.014-.187.043a.451.451 0 0 0-.102.187l-1.147 3.298-1.19-3.298a.451.451 0 0 0-.102-.187c-.034-.029-.096-.043-.187-.043h-.51c-.08 0-.12.034-.12.102 0 .04.02.108.06.204l1.64 4.046-.16.434c-.097.266-.208.45-.332.552-.12.108-.284.162-.493.162-.097 0-.173-.006-.23-.017a.72.72 0 0 0-.127-.017c-.085 0-.128.054-.128.161v.221c0 .074.012.13.034.17.029.04.077.068.145.085Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M58.369 77.55c.357.385.884.577 1.58.577.239 0 .474-.022.706-.068.238-.045.442-.105.612-.178a.418.418 0 0 0 .145-.094.298.298 0 0 0 .034-.161v-.238c0-.102-.037-.153-.11-.153a.21.21 0 0 0-.077.017 1.347 1.347 0 0 0-.102.025 3.997 3.997 0 0 1-.595.145 3.302 3.302 0 0 1-.485.034c-.481 0-.838-.116-1.07-.349-.227-.232-.346-.592-.358-1.08h2.67c.056 0 .096-.01.118-.033.029-.023.048-.068.06-.136.028-.187.042-.371.042-.553 0-.555-.144-.983-.433-1.283-.29-.306-.703-.46-1.241-.46-.64 0-1.14.202-1.496.604-.357.397-.536.955-.536 1.675 0 .754.179 1.323.536 1.708Zm2.405-2.304c0 .102-.002.175-.008.22h-2.117c.029-.418.142-.733.34-.943.199-.215.476-.323.833-.323.312 0 .547.088.706.264.164.175.246.436.246.782Zm-7.58 4.504c-.113 0-.17-.056-.17-.17v-5.72c0-.113.057-.17.17-.17h.374c.113 0 .178.057.196.17l.042.272c.43-.38.91-.57 1.437-.57.55 0 .983.202 1.3.604.317.397.476.938.476 1.624 0 .697-.167 1.255-.502 1.674-.334.42-.779.63-1.334.63-.51 0-.95-.168-1.318-.502v1.989c0 .113-.056.17-.17.17h-.501Zm1.793-2.337c.782 0 1.173-.527 1.173-1.58 0-.539-.096-.939-.288-1.2-.188-.26-.477-.39-.867-.39-.403 0-.783.13-1.14.39v2.372c.369.272.743.408 1.122.408Z\" fill=\"#fff\"/><path d=\"M45.437 77.83c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-3.213a2.29 2.29 0 0 1 1.24-.374c.233 0 .403.068.51.204.108.136.162.346.162.629v2.754c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-3.077a.898.898 0 0 0-.009-.128c.42-.255.836-.382 1.25-.382.232 0 .402.068.51.204.107.136.161.346.161.629v2.754c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-2.992c0-.408-.105-.723-.315-.944-.21-.22-.51-.331-.9-.331-.562 0-1.123.201-1.684.603-.187-.402-.544-.603-1.07-.603-.517 0-1.046.187-1.59.56l-.051-.271c-.012-.063-.034-.105-.068-.128a.208.208 0 0 0-.128-.034h-.374c-.113 0-.17.057-.17.17v3.97Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.342 78.127c-.646 0-1.15-.2-1.513-.603-.362-.403-.544-.963-.544-1.683 0-.714.182-1.272.544-1.675.363-.402.867-.603 1.513-.603.646 0 1.15.201 1.513.603.363.403.544.96.544 1.675 0 .72-.18 1.28-.544 1.683-.362.402-.867.603-1.513.603Zm0-.68c.8 0 1.199-.535 1.199-1.606 0-1.066-.4-1.598-1.199-1.598s-1.198.532-1.198 1.598c0 1.07.4 1.606 1.198 1.606Z\" fill=\"#fff\"/><path d=\"M76.042 68.83c0 .113.057.17.17.17h.502c.113 0 .17-.057.17-.17v-3.01a1.748 1.748 0 0 1 1.317-.399c.051.006.102.009.153.009.102 0 .153-.051.153-.153v-.46c0-.09-.048-.14-.144-.152a2.485 2.485 0 0 0-.204-.009c-.165 0-.32.023-.468.068-.142.046-.28.117-.416.213-.136.096-.28.227-.434.39l-.06-.475c-.01-.063-.033-.105-.067-.128a.208.208 0 0 0-.128-.034h-.374c-.113 0-.17.057-.17.17v3.97Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M72.614 69.11c-.403 0-.726-.113-.97-.34-.237-.232-.356-.54-.356-.926 0-.414.147-.742.442-.986.294-.25.691-.374 1.19-.374.317 0 .674.048 1.07.144v-.56c0-.307-.07-.522-.212-.647-.136-.124-.371-.187-.705-.187a3.95 3.95 0 0 0-1.148.17c-.13.04-.212.06-.246.06-.068 0-.102-.051-.102-.153v-.23c0-.073.011-.127.034-.161a.298.298 0 0 1 .136-.094c.175-.079.396-.141.663-.187.272-.05.54-.076.807-.076.538 0 .935.113 1.19.34.255.22.383.56.383 1.02v2.907c0 .113-.057.17-.17.17h-.366c-.108 0-.17-.054-.187-.162l-.042-.28a2.31 2.31 0 0 1-.68.408 1.975 1.975 0 0 1-.731.144Zm.204-.637c.187 0 .382-.037.586-.11.204-.074.4-.182.587-.324v-.867a3.845 3.845 0 0 0-.901-.11c-.64 0-.96.246-.96.74 0 .215.059.382.178.5.119.114.289.17.51.17Z\" fill=\"#fff\"/><path d=\"M65.91 68.957c.04.029.103.043.188.043h.416c.085 0 .148-.017.187-.051a.41.41 0 0 0 .102-.196l.842-3.128.85 3.128a.413.413 0 0 0 .102.196c.04.034.102.05.187.05h.416c.085 0 .145-.013.179-.042a.462.462 0 0 0 .11-.195l1.292-3.757a.87.87 0 0 0 .051-.196c0-.079-.042-.119-.127-.119h-.46c-.09 0-.155.017-.195.051-.034.029-.065.091-.093.187l-.952 3.256-.859-3.256c-.028-.096-.062-.158-.102-.187-.04-.034-.102-.05-.187-.05h-.39c-.086 0-.148.016-.188.05-.04.029-.073.091-.102.187l-.85 3.213-.926-3.213c-.028-.096-.062-.158-.102-.187-.034-.034-.096-.05-.187-.05h-.485c-.085 0-.127.039-.127.118a.87.87 0 0 0 .05.196l1.259 3.757a.547.547 0 0 0 .102.195Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.258 69.127c-.646 0-1.15-.2-1.513-.603-.362-.403-.544-.963-.544-1.683 0-.714.182-1.272.544-1.675.363-.402.867-.603 1.513-.603.646 0 1.15.201 1.513.603.363.403.544.96.544 1.675 0 .72-.18 1.28-.544 1.683-.362.402-.867.603-1.513.603Zm0-.68c.8 0 1.199-.535 1.199-1.606 0-1.066-.4-1.598-1.199-1.598s-1.198.532-1.198 1.598c0 1.07.4 1.606 1.198 1.606Z\" fill=\"#fff\"/><path d=\"M49.374 69.068c.272.05.544.076.816.076.657 0 1.178-.161 1.564-.484.39-.323.586-.757.586-1.3 0-.38-.102-.69-.306-.927-.198-.244-.527-.45-.986-.62l-.773-.29c-.368-.136-.62-.269-.757-.4-.136-.135-.204-.317-.204-.543 0-.278.1-.49.298-.638.204-.153.49-.23.858-.23.357 0 .74.06 1.148.18.08.022.133.036.161.042a.43.43 0 0 0 .085.008c.08 0 .12-.053.12-.161v-.298c0-.079-.015-.136-.043-.17a.251.251 0 0 0-.128-.085 4.182 4.182 0 0 0-1.402-.246c-.38 0-.72.068-1.02.204-.295.13-.527.32-.697.57a1.5 1.5 0 0 0-.255.866c0 .38.105.695.314.944.21.25.547.462 1.012.637l.824.315c.318.124.541.258.672.4a.703.703 0 0 1 .204.518c0 .3-.116.538-.349.714-.226.175-.54.263-.943.263-.204 0-.425-.017-.663-.05a4.82 4.82 0 0 1-.655-.154 1.117 1.117 0 0 0-.238-.06c-.085 0-.127.055-.127.162v.306c0 .074.011.128.034.162a.298.298 0 0 0 .136.093c.204.085.442.15.714.196Zm-5.537.059a3.3 3.3 0 0 1-1.283-.238.374.374 0 0 1-.145-.093.298.298 0 0 1-.034-.162v-.238c0-.102.034-.153.102-.153.04 0 .11.017.213.051.374.12.762.179 1.164.179.278 0 .488-.054.63-.162a.543.543 0 0 0 .22-.467.434.434 0 0 0-.136-.332c-.085-.085-.243-.17-.476-.255l-.722-.272c-.63-.232-.944-.629-.944-1.19 0-.368.142-.666.425-.892.29-.227.666-.34 1.13-.34.37 0 .729.065 1.08.195a.28.28 0 0 1 .145.094c.028.034.042.088.042.161v.23c0 .102-.037.153-.11.153a.758.758 0 0 1-.196-.043 3.18 3.18 0 0 0-.918-.136c-.544 0-.816.184-.816.553 0 .147.046.263.136.348.09.085.27.179.536.28l.663.256c.334.13.575.286.722.467.148.176.221.406.221.689 0 .402-.15.722-.45.96-.3.238-.7.357-1.199.357Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.651 70.58c0 .114.057.17.17.17h.502c.113 0 .17-.056.17-.17v-1.988c.368.334.807.501 1.317.501.555 0 1-.21 1.334-.629.335-.419.502-.977.502-1.674 0-.686-.159-1.227-.476-1.624-.317-.402-.75-.603-1.3-.603-.527 0-1.006.19-1.437.57l-.042-.273c-.017-.113-.083-.17-.196-.17h-.374c-.113 0-.17.057-.17.17v5.72Zm3.136-3.748c0 1.054-.39 1.581-1.172 1.581-.38 0-.754-.136-1.123-.408v-2.371c.358-.26.737-.391 1.14-.391.39 0 .68.13.867.39.192.261.288.661.288 1.2Zm-7.066 2.312c-.578 0-1.077-.124-1.496-.374a2.448 2.448 0 0 1-.944-1.07c-.215-.465-.322-1.012-.322-1.641 0-.64.11-1.193.331-1.658.227-.464.547-.816.96-1.054.414-.243.904-.365 1.471-.365.856 0 1.527.275 2.015.824.492.544.739 1.295.739 2.253 0 .646-.113 1.201-.34 1.666-.221.459-.538.81-.952 1.054-.414.243-.901.365-1.462.365Zm0-.73c.606 0 1.068-.202 1.386-.604.317-.403.476-.986.476-1.751 0-.765-.16-1.346-.477-1.743-.317-.402-.779-.603-1.385-.603-.612 0-1.077.201-1.394.603-.317.397-.476.978-.476 1.743 0 .77.159 1.357.476 1.76.323.396.788.594 1.394.594Z\" fill=\"#fff\"/><path d=\"M27.85 68.966c.04.023.1.034.178.034h.434c.08 0 .136-.011.17-.034.04-.023.08-.088.119-.196l1.496-3.774.034-.102a.211.211 0 0 0 .025-.093c0-.074-.042-.11-.127-.11h-.468c-.085 0-.144.01-.178.033s-.07.088-.11.196l-1.165 3.315-1.165-3.315c-.04-.108-.076-.173-.11-.196a.349.349 0 0 0-.179-.034h-.501c-.085 0-.128.037-.128.11 0 .03.006.06.017.094a.774.774 0 0 1 .043.102l1.504 3.774c.04.108.077.173.11.196Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.09 69.127c-.697 0-1.224-.192-1.58-.578-.358-.385-.536-.955-.536-1.708 0-.72.178-1.278.535-1.675.357-.402.856-.603 1.496-.603.539 0 .952.153 1.241.459.29.3.434.728.434 1.283a3.6 3.6 0 0 1-.043.553c-.01.068-.03.113-.06.136-.022.022-.061.034-.118.034h-2.67c.012.487.131.847.358 1.08.232.232.59.348 1.07.348.17 0 .332-.011.485-.034.16-.023.357-.071.595-.145.04-.011.074-.02.102-.025a.21.21 0 0 1 .077-.017c.074 0 .11.05.11.153v.238a.298.298 0 0 1-.034.161.417.417 0 0 1-.144.094 3.67 3.67 0 0 1-1.318.247Zm.816-2.66c.006-.046.009-.12.009-.221 0-.346-.082-.606-.247-.782-.158-.176-.393-.264-.705-.264-.357 0-.635.108-.833.323-.198.21-.312.525-.34.944h2.116Zm-8.495 2.363c0 .113.057.17.17.17h1.743c.867 0 1.533-.252 1.997-.757.465-.504.697-1.232.697-2.184 0-.963-.23-1.694-.688-2.193-.454-.505-1.114-.757-1.98-.757h-1.77c-.113 0-.17.057-.17.17v5.55Zm1.82-.51h-.953v-4.53h.952c.63 0 1.102.18 1.42.543.317.363.476.904.476 1.624v.195c0 1.445-.632 2.168-1.896 2.168Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h96v96H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bhhsuw\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:96,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"wZ4ulfVuE\",svg:'<svg width=\"96\" height=\"96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M.75 65.292V.75h64.222L95.25 31.028V95.25H30.708L.75 65.292Z\" stroke=\"#2B2C2E\" stroke-width=\"1.5\"/><path d=\"M15.591 54.062v3.526H13.61v-9.589h3.673a3.392 3.392 0 0 1 2.39.787c.466.438.786 1.02.903 1.633a3.162 3.162 0 0 1-.204 1.865 3.073 3.073 0 0 1-1.253 1.399 2.886 2.886 0 0 1-1.836.379h-1.69Zm0-1.516h1.487c.204.03.407 0 .582-.058.175-.059.35-.175.496-.32.233-.322.35-.73.35-1.108 0-.408-.117-.787-.35-1.108a1.6 1.6 0 0 0-1.078-.408H15.62l-.029 3.002Zm13.377 5.042-.641-2.128h-3.264l-.641 2.128h-2.128l3.352-9.589h2.331l3.264 9.589h-2.273Zm-3.526-3.672h2.39l-1.195-3.993-1.195 3.993Zm8.655 3.672v-9.589h3.673a3.392 3.392 0 0 1 2.39.787c.553.554.874 1.341.874 2.128a2.55 2.55 0 0 1-.496 1.515c-.32.467-.757.816-1.282 1.079l2.39 4.138h-2.128l-2.127-3.76h-1.37v3.673h-1.924v.029Zm1.982-5.217h1.457c.175.03.321.03.496-.029.175-.03.32-.117.437-.204.146-.087.233-.233.32-.379a1.29 1.29 0 0 0 .176-.466v-.408c.058-.32-.03-.67-.234-.933a1.328 1.328 0 0 0-.845-.495h-1.748V52.4l-.059-.029Zm10.492 5.217V49.66h-2.973v-1.662h7.928v1.662h-2.973v7.927H46.57Zm9.997-6.645v6.645H54.73v-9.589h2.244l3.906 6.733v-6.733h1.836v9.589h-2.244l-3.905-6.645Zm9.85 6.645v-9.589h6.324v1.603h-4.255v2.245h3.44v1.602h-3.44v2.565h4.255v1.603h-6.324v-.03Zm9.967 0v-9.589h3.672a3.392 3.392 0 0 1 2.39.787c.554.554.875 1.341.875 2.128a2.73 2.73 0 0 1-.467 1.515c-.32.467-.758.816-1.282 1.079l2.39 4.138h-2.128l-2.127-3.76h-1.34v3.673h-1.983v.029Zm2.011-5.217h1.428a1.2 1.2 0 0 0 .933-.233c.262-.204.437-.495.495-.845v-.408c.059-.32-.029-.67-.233-.933a1.337 1.337 0 0 0-.816-.495h-1.836l.03 2.914ZM21.333 21.974c-.029.321.03.67.175.962.088.233.233.554.32.787.03.03.06.088.06.117 0 .029.028.087 0 .116 0 .146-.088.233-.234.32l-.729.467h-.233c-.058 0-.116 0-.175-.03-.058-.028-.116-.057-.145-.116a3.118 3.118 0 0 1-.408-.466c-.117-.204-.234-.408-.321-.641a4.186 4.186 0 0 1-1.428 1.137 4.177 4.177 0 0 1-1.778.408 2.71 2.71 0 0 1-1.166-.175c-.379-.146-.7-.35-.99-.642-.263-.29-.496-.611-.613-.99a2.583 2.583 0 0 1-.174-1.137c0-.408.058-.845.233-1.224.175-.379.408-.729.728-1.02.758-.583 1.69-.874 2.653-.874.35 0 .728.029 1.078.087l1.195.233v-.787c.029-.32.029-.64-.059-.932a2.217 2.217 0 0 0-.437-.816 1.765 1.765 0 0 0-.845-.408 2.003 2.003 0 0 0-.932-.059c-.409.03-.817.059-1.195.146a5.776 5.776 0 0 0-1.195.408c-.146.088-.233.088-.408.175h-.146c-.146 0-.233-.087-.233-.32v-.584a.93.93 0 0 1 .087-.407 1.32 1.32 0 0 1 .32-.234 3.68 3.68 0 0 1 1.341-.466 6.572 6.572 0 0 1 1.69-.233 3.887 3.887 0 0 1 2.799.874c.32.35.553.787.699 1.224.146.466.204.933.175 1.4l.291 3.7Zm-4.371 1.603c.35-.029.728-.058 1.078-.145a3.358 3.358 0 0 0 1.078-.729c.204-.204.321-.466.408-.729.059-.32.088-.64.088-.961v-.496a9.465 9.465 0 0 0-2.011-.233 2.419 2.419 0 0 0-1.603.408 1.803 1.803 0 0 0-.145 2.39c.116.175.29.32.495.408a.963.963 0 0 0 .64.058h-.028v.03Zm8.714 1.224c-.146 0-.32 0-.408-.087a1.852 1.852 0 0 1-.233-.408l-2.565-8.394a.93.93 0 0 1-.087-.408c0-.145.087-.233.145-.233h1.079c.145 0 .32 0 .408.088.116.116.174.262.233.408l1.836 7.11 1.69-7.11c0-.088.03-.146.058-.233a.494.494 0 0 1 .175-.175.93.93 0 0 1 .408-.088h.875a.505.505 0 0 1 .408.088c.087.116.174.262.233.408l1.69 7.286 1.836-7.286c0-.088.03-.175.059-.233a.494.494 0 0 1 .174-.175.93.93 0 0 1 .408-.088h1.079c.145 0 .233.088.233.175v.233c0 .088-.088.146-.088.233l-2.564 8.306c0 .088-.03.175-.059.234-.029.058-.116.116-.174.174-.088.146-.234.146-.408.146h-.962c-.146 0-.32 0-.408-.087-.088-.088-.146-.233-.233-.408l-1.69-6.966-1.662 6.966a.551.551 0 0 1-.058.233c-.03.058-.117.116-.175.175a.588.588 0 0 1-.32.087h-.933v.03Zm13.843.321a10.65 10.65 0 0 1-1.661-.146 6.563 6.563 0 0 1-1.282-.408.794.794 0 0 1-.292-.233c-.058-.117-.116-.262-.087-.379v-.553c0-.234.087-.321.233-.321h.146c.087 0 .145.087.233.087.379.175.787.292 1.195.408a6.17 6.17 0 0 0 1.282.146 2.866 2.866 0 0 0 1.603-.408c.175-.117.32-.291.408-.466.087-.175.146-.38.146-.612a.64.64 0 0 0-.059-.408.911.911 0 0 0-.262-.32c-.32-.263-.67-.467-1.078-.555l-1.603-.466a3.552 3.552 0 0 1-1.749-1.078 2.67 2.67 0 0 1-.554-1.603c0-.437.117-.845.321-1.195.437-.7 1.137-1.195 1.923-1.428a3.547 3.547 0 0 1 1.341-.175c.233 0 .496.03.729.088.233.029.495.058.728.145.233.088.408.088.642.146.233.087.32.087.466.146.116.058.233.145.32.233a.93.93 0 0 1 .088.408v.466c0 .233-.088.32-.233.32a.697.697 0 0 1-.408-.145 4.862 4.862 0 0 0-2.128-.408c-.495 0-.99.087-1.428.32a.921.921 0 0 0-.408.409.924.924 0 0 0-.087.553c0 .146 0 .292.058.437a.796.796 0 0 0 .262.35c.32.32.758.496 1.195.554l1.516.466c.64.204 1.224.554 1.66 1.079.321.437.496.99.467 1.515 0 .437-.087.903-.32 1.282a2.548 2.548 0 0 1-.787.962 6.755 6.755 0 0 1-1.195.641c-.437.117-.904.146-1.37.146h.03Z\" fill=\"#fff\"/><path d=\"M41.618 30.31a23.441 23.441 0 0 1-13.203 3.993 23.981 23.981 0 0 1-16.087-6.178c-.32-.32 0-.729.408-.467a31.48 31.48 0 0 0 16.087 4.314c4.226-.03 8.423-.846 12.328-2.478.525-.233 1.05.409.467.817Zm.553 2.42c-.145.32.175.466.496.233 1.923-1.603 2.39-4.955 1.981-5.45-.408-.467-3.759-.875-5.77.553-.32.234-.233.554.087.467 1.079-.146 3.702-.467 4.168.175.466.67-.554 2.972-.962 4.022Z\" fill=\"#F90\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.114 68.813c.272.187.595.28.97.28a2.008 2.008 0 0 0 1.359-.535l.068.272c.017.068.04.113.068.136a.226.226 0 0 0 .128.034h.374c.113 0 .17-.057.17-.17v-5.95c0-.113-.057-.17-.17-.17h-.502c-.113 0-.17.057-.17.17v2.159a1.993 1.993 0 0 0-1.3-.476c-.363 0-.683.093-.96.28a1.765 1.765 0 0 0-.647.8c-.153.345-.23.753-.23 1.224 0 .441.072.83.213 1.164.148.334.357.595.63.782Zm2.295-.79c-.362.26-.72.39-1.07.39-.805 0-1.208-.524-1.208-1.572 0-1.065.386-1.598 1.156-1.598.216 0 .411.031.587.094.181.056.36.15.535.28v2.405Zm6.533.748c.244.227.567.34.969.34.244 0 .487-.048.731-.145.25-.096.476-.232.68-.407l.043.28c.017.108.079.162.187.162h.365c.113 0 .17-.057.17-.17v-2.907c0-.46-.127-.8-.383-1.02-.254-.227-.651-.34-1.19-.34a4.37 4.37 0 0 0-.807.076 2.746 2.746 0 0 0-.663.187.298.298 0 0 0-.136.094.298.298 0 0 0-.034.161v.23c0 .102.034.153.102.153.034 0 .116-.02.246-.06.375-.113.757-.17 1.148-.17.334 0 .57.062.706.187.141.125.212.34.212.646v.561a4.58 4.58 0 0 0-1.071-.145c-.499 0-.895.125-1.19.375-.295.243-.442.572-.442.986 0 .385.119.694.357.926Zm1.76-.408c-.204.074-.4.11-.587.11-.221 0-.391-.056-.51-.17-.119-.118-.178-.286-.178-.501 0-.493.32-.74.96-.74.295 0 .595.037.901.111v.867a2.22 2.22 0 0 1-.587.323Z\" fill=\"#fff\"/><path d=\"M70.51 69c-.114 0-.17-.056-.17-.17v-3.969c0-.113.056-.17.17-.17h.373c.057 0 .1.011.128.034.034.023.057.065.068.128l.05.314c.54-.402 1.106-.603 1.7-.603.415 0 .73.11.944.331.216.215.323.53.323.944v2.992c0 .113-.056.17-.17.17h-.501c-.113 0-.17-.057-.17-.17v-2.712c0-.3-.062-.521-.187-.663-.12-.142-.309-.213-.57-.213-.447 0-.886.145-1.317.434v3.153c0 .114-.057.17-.17.17h-.502Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M79.445 68.55c.357.385.884.578 1.58.578.238 0 .474-.023.706-.068.238-.045.442-.105.612-.178a.418.418 0 0 0 .144-.094.298.298 0 0 0 .035-.162v-.238c0-.102-.037-.153-.111-.153a.207.207 0 0 0-.076.017 1.278 1.278 0 0 0-.102.026 4.022 4.022 0 0 1-.596.144 3.316 3.316 0 0 1-.484.035c-.482 0-.839-.117-1.071-.349-.227-.232-.346-.592-.357-1.08h2.669c.057 0 .096-.01.119-.034.028-.022.048-.067.06-.135a3.69 3.69 0 0 0 .042-.553c0-.555-.144-.983-.433-1.284-.29-.306-.703-.459-1.242-.459-.64 0-1.138.202-1.495.604-.357.397-.536.955-.536 1.674 0 .754.178 1.324.535 1.709Zm2.405-2.303c0 .102-.003.175-.008.22h-2.117c.028-.419.142-.733.34-.943.198-.215.476-.323.833-.323.312 0 .547.088.706.264.164.175.246.436.246.781Z\" fill=\"#fff\"/><path d=\"M75.642 68.524c.358.38.87.57 1.539.57.368 0 .691-.06.969-.18a.298.298 0 0 0 .136-.093.298.298 0 0 0 .034-.161v-.23c0-.113-.037-.17-.11-.17a.6.6 0 0 0-.128.026 2.74 2.74 0 0 1-.765.119c-.459 0-.796-.12-1.011-.357-.21-.244-.315-.624-.315-1.14v-.11c0-.527.105-.91.314-1.147.21-.244.553-.366 1.029-.366a2.5 2.5 0 0 1 .706.102.59.59 0 0 0 .135.026c.074 0 .111-.057.111-.17v-.23c0-.08-.014-.136-.043-.17a.25.25 0 0 0-.127-.085 2.606 2.606 0 0 0-.901-.161c-.669 0-1.187.198-1.556.595-.362.39-.544.946-.544 1.666 0 .725.176 1.28.528 1.666Zm-12.8.476a.369.369 0 0 1-.179-.034c-.034-.023-.07-.088-.11-.196l-1.505-3.774a.774.774 0 0 0-.042-.102.298.298 0 0 1-.017-.093c0-.074.042-.11.127-.11h.502c.085 0 .144.01.178.033s.071.088.11.196l1.165 3.315 1.165-3.315c.04-.108.076-.173.11-.196a.349.349 0 0 1 .179-.034h.467c.085 0 .128.037.128.11 0 .03-.009.06-.026.094l-.034.102-1.496 3.774c-.04.108-.079.173-.119.196-.034.023-.09.034-.17.034h-.433Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.775 69c-.097 0-.145-.037-.145-.11 0-.04.017-.106.051-.196l1.99-5.355c.033-.102.067-.164.101-.187.04-.029.102-.043.187-.043h.527c.085 0 .145.014.179.043.04.023.076.085.11.187l1.99 5.355c.033.09.05.156.05.195 0 .074-.048.11-.144.11h-.485a.393.393 0 0 1-.187-.033c-.034-.028-.068-.094-.102-.196l-.467-1.334h-2.44l-.45 1.334c-.034.102-.071.168-.11.196-.035.023-.094.034-.18.034h-.475Zm3.434-2.219-1.003-2.89-.986 2.89h1.989Z\" fill=\"#fff\"/><path d=\"M45.102 68.957c.034.029.096.043.187.043h.527c.09 0 .153-.014.187-.043a.451.451 0 0 0 .102-.187l1.972-5.355a.745.745 0 0 0 .051-.195c0-.074-.045-.11-.136-.11h-.518c-.091 0-.153.014-.188.042-.028.023-.059.085-.093.187l-1.623 4.794-1.624-4.794c-.034-.102-.068-.164-.102-.187-.028-.029-.088-.043-.178-.043h-.553c-.09 0-.136.037-.136.11 0 .035.017.1.051.196L45 68.77a.451.451 0 0 0 .102.187Zm-4.79.188a4.42 4.42 0 0 1-.816-.077 3.248 3.248 0 0 1-.714-.195.297.297 0 0 1-.136-.094.298.298 0 0 1-.034-.161v-.306c0-.108.042-.162.127-.162.034 0 .114.02.238.06.199.062.417.113.655.153.238.034.459.05.663.05.402 0 .717-.087.943-.263a.848.848 0 0 0 .349-.714.703.703 0 0 0-.204-.518c-.13-.142-.354-.275-.672-.4l-.824-.314c-.465-.176-.802-.388-1.012-.638-.21-.249-.314-.563-.314-.943a1.5 1.5 0 0 1 .255-.867c.17-.25.402-.44.697-.57.3-.136.64-.204 1.02-.204.47 0 .938.083 1.402.247a.251.251 0 0 1 .128.085c.028.034.042.09.042.17v.297c0 .108-.04.162-.119.162a.43.43 0 0 1-.085-.009 2.445 2.445 0 0 1-.161-.042 4.109 4.109 0 0 0-1.148-.179c-.368 0-.654.077-.858.23-.199.147-.298.36-.298.637 0 .227.068.408.204.544.136.13.389.264.757.4l.773.289c.46.17.788.377.986.62.204.238.306.547.306.927 0 .544-.195.977-.586 1.3-.386.323-.907.485-1.564.485Zm-3.862-.315c0 .113.057.17.17.17h.527c.114 0 .17-.057.17-.17v-5.55c0-.114-.056-.17-.17-.17h-.527c-.113 0-.17.056-.17.17v5.55Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h96v96H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11p7b2g\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:96,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"VMu1u1lRU\",svg:'<svg width=\"96\" height=\"96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"95\" height=\"95\" rx=\"7.5\" stroke=\"#2B2C2E\"/><path d=\"m53.334 23.998 2.898-2.898.193-1.22c-5.28-4.8-13.674-4.256-18.433 1.136-1.322 1.498-2.303 3.365-2.826 5.294l1.037-.147 5.795-.955.448-.458c2.577-2.83 6.936-3.212 9.912-.803l.976.05Z\" fill=\"#EA4335\"/><path d=\"M60.36 26.224a13.053 13.053 0 0 0-3.935-6.344l-4.067 4.067a7.229 7.229 0 0 1 2.654 5.733v.722a3.62 3.62 0 0 1 3.62 3.62c0 1.999-1.621 3.578-3.62 3.578h-7.25l-.71.773v4.341l.71.681h7.25c5.199.04 9.447-4.1 9.487-9.3a9.414 9.414 0 0 0-4.14-7.871Z\" fill=\"#4285F4\"/><path d=\"M40.525 43.396h7.238V37.6h-7.238a3.553 3.553 0 0 1-1.485-.326l-1.027.316-2.918 2.897-.254.986c1.637 1.236 3.633 1.93 5.684 1.922Z\" fill=\"#34A853\"/><path d=\"M40.524 24.598a9.414 9.414 0 0 0-5.683 16.876l4.199-4.198a3.62 3.62 0 1 1 4.788-4.789l4.2-4.199a9.404 9.404 0 0 0-7.504-3.69Z\" fill=\"#FBBC05\"/><path d=\"M14.163 63.174a4.278 4.278 0 0 0 2.175.573c1.279 0 2.304-.417 3.076-1.251.358-.367.62-.791.783-1.275a4.74 4.74 0 0 0 .246-1.508c0-.188-.02-.39-.059-.608h-4.022v.923h3.099a3.57 3.57 0 0 1-.234 1.03 2.574 2.574 0 0 1-.491.783 3.22 3.22 0 0 1-.983.701c-.374.172-.842.258-1.403.258a3.39 3.39 0 0 1-1.649-.421 3.338 3.338 0 0 1-1.24-1.205c-.303-.522-.455-1.122-.455-1.8 0-.679.152-1.275.456-1.79a3.25 3.25 0 0 1 1.228-1.204 3.34 3.34 0 0 1 1.66-.433c.476 0 .92.09 1.333.27.413.17.753.42 1.018.748l.713-.714c-.35-.397-.8-.705-1.345-.924A4.558 4.558 0 0 0 16.34 55c-.788 0-1.513.191-2.176.573a4.26 4.26 0 0 0-1.578 1.579A4.34 4.34 0 0 0 12 59.373c0 .811.195 1.552.585 2.222a4.26 4.26 0 0 0 1.578 1.579Zm41.819 0c.662.382 1.4.573 2.21.573a4.37 4.37 0 0 0 1.87-.398 4.29 4.29 0 0 0 1.44-1.099l-.726-.701c-.71.834-1.57 1.25-2.584 1.25-.608 0-1.166-.14-1.672-.42a3.276 3.276 0 0 1-1.217-1.205c-.296-.522-.444-1.122-.444-1.8 0-.679.148-1.275.444-1.79.305-.522.71-.924 1.217-1.204a3.32 3.32 0 0 1 1.672-.433c.491 0 .924.09 1.298.27.382.178.733.46 1.052.841l.714-.69a3.904 3.904 0 0 0-1.357-1.006A3.966 3.966 0 0 0 58.192 55c-.81 0-1.548.191-2.21.573a4.174 4.174 0 0 0-1.567 1.579c-.374.662-.562 1.403-.562 2.221 0 .82.188 1.564.562 2.234a4.199 4.199 0 0 0 1.567 1.567Zm6.635-7.987h.994v8.373h-.994v-8.373Z\" fill=\"#F7F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.96 63.747a2.68 2.68 0 0 1-1.45-.41 2.894 2.894 0 0 1-1.018-1.122c-.25-.483-.374-1.029-.374-1.637 0-.6.125-1.142.374-1.626.25-.483.589-.86 1.018-1.134a2.68 2.68 0 0 1 1.45-.41c.46 0 .869.106 1.228.317.358.202.63.456.818.76h.047l-.047-.83v-2.468H84v8.373h-.947v-.877h-.047a2.34 2.34 0 0 1-.819.76 2.453 2.453 0 0 1-1.227.304Zm.117-.9c.35 0 .674-.094.97-.281a1.99 1.99 0 0 0 .725-.795c.187-.343.28-.74.28-1.193 0-.452-.093-.85-.28-1.193a1.993 1.993 0 0 0-.725-.795 1.82 1.82 0 0 0-1.941 0c-.304.187-.55.456-.737.807-.18.343-.269.737-.269 1.181 0 .444.09.842.27 1.193.186.343.432.608.736.795.304.187.628.28.97.28Z\" fill=\"#F7F8F8\"/><path d=\"M74.1 63.747c-.718 0-1.268-.21-1.65-.632-.374-.42-.56-1.009-.56-1.765v-3.754h.993v3.602c0 .569.129.986.386 1.251.257.265.604.398 1.04.398.336 0 .632-.09.89-.27.264-.179.467-.413.608-.701a1.97 1.97 0 0 0 .222-.912v-3.368h.994v5.964h-.947v-.866h-.047c-.164.297-.425.546-.784.749-.358.203-.74.304-1.146.304Z\" fill=\"#F7F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.196 63.326c.468.28.994.421 1.579.421s1.11-.14 1.579-.421c.467-.28.83-.663 1.087-1.146a3.277 3.277 0 0 0 .398-1.602c0-.585-.133-1.119-.398-1.602a2.903 2.903 0 0 0-1.087-1.146 3.009 3.009 0 0 0-1.579-.421 2.986 2.986 0 0 0-2.678 1.567 3.356 3.356 0 0 0-.386 1.602c0 .585.129 1.119.386 1.602.265.483.632.865 1.1 1.146Zm2.596-.748c-.311.179-.65.269-1.017.269-.366 0-.71-.09-1.03-.27a2.103 2.103 0 0 1-.77-.795c-.188-.343-.281-.744-.281-1.204 0-.46.093-.861.28-1.205.195-.342.452-.604.772-.783.32-.187.663-.28 1.029-.28.366 0 .706.093 1.017.28.32.18.573.44.76.783.195.344.293.745.293 1.205 0 .46-.098.861-.293 1.204a2.02 2.02 0 0 1-.76.796ZM47.64 63.747c-.57 0-1.08-.136-1.532-.41a2.892 2.892 0 0 1-1.064-1.122 3.49 3.49 0 0 1-.374-1.625c0-.577.116-1.107.35-1.59a2.93 2.93 0 0 1 1.018-1.158c.436-.289.943-.433 1.52-.433.585 0 1.091.133 1.52.398.429.257.756.615.982 1.075.234.46.351.986.351 1.579 0 .117-.011.218-.035.304h-4.712c.023.452.132.834.327 1.146.195.312.44.546.737.702.304.156.62.234.947.234.764 0 1.352-.359 1.766-1.076l.841.409a2.985 2.985 0 0 1-1.052 1.146c-.436.28-.967.421-1.59.421Zm1.719-3.8a1.935 1.935 0 0 0-.21-.749 1.587 1.587 0 0 0-.597-.631c-.265-.172-.6-.258-1.006-.258a1.69 1.69 0 0 0-1.193.456c-.32.297-.53.69-.631 1.181h3.637Z\" fill=\"#F7F8F8\"/><path d=\"M43.57 55.187h-.994v8.373h.994v-8.373Z\" fill=\"#F7F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.218 66.273c-.702 0-1.283-.164-1.743-.491-.452-.328-.756-.721-.912-1.181l.9-.386c.133.343.351.62.655.83.312.218.679.327 1.1.327.615 0 1.091-.179 1.426-.537.343-.36.515-.866.515-1.52v-.667h-.047a2.218 2.218 0 0 1-.83.748 2.52 2.52 0 0 1-1.205.28 2.64 2.64 0 0 1-1.415-.397 2.837 2.837 0 0 1-1.005-1.11c-.25-.476-.375-1.018-.375-1.626 0-.6.125-1.138.375-1.614a2.82 2.82 0 0 1 1.005-1.123 2.64 2.64 0 0 1 1.415-.397c.452 0 .854.097 1.205.292a2.1 2.1 0 0 1 .83.749h.047v-.854h.947v5.73c0 .959-.265 1.688-.795 2.187-.53.506-1.228.76-2.093.76Zm0-3.497a1.8 1.8 0 0 0 .97-.269c.296-.179.53-.436.702-.771.18-.336.269-.733.269-1.193 0-.468-.09-.87-.27-1.205a1.797 1.797 0 0 0-.7-.76 1.801 1.801 0 0 0-.971-.269c-.359 0-.686.09-.983.27a1.951 1.951 0 0 0-.713.771c-.172.335-.257.733-.257 1.193 0 .46.085.861.257 1.204.18.336.417.593.713.772.297.172.624.257.983.257Zm-8.416.55c.467.28.994.421 1.578.421.585 0 1.111-.14 1.579-.421.468-.28.83-.663 1.087-1.146a3.277 3.277 0 0 0 .398-1.602c0-.585-.133-1.119-.398-1.602a2.903 2.903 0 0 0-1.087-1.146 3.009 3.009 0 0 0-1.579-.421c-.584 0-1.11.14-1.578.42a3 3 0 0 0-1.1 1.147 3.356 3.356 0 0 0-.386 1.602c0 .585.129 1.119.386 1.602.265.483.632.865 1.1 1.146Zm2.596-.748a2.01 2.01 0 0 1-1.018.269c-.366 0-.71-.09-1.029-.27a2.103 2.103 0 0 1-.772-.795c-.187-.343-.28-.744-.28-1.204 0-.46.093-.861.28-1.205.195-.342.453-.604.772-.783.32-.187.663-.28 1.03-.28.366 0 .705.093 1.017.28.32.18.572.44.76.783.194.344.292.745.292 1.205 0 .46-.098.861-.292 1.204a2.02 2.02 0 0 1-.76.796Zm-7.984 1.169a2.986 2.986 0 0 1-2.678-1.567 3.356 3.356 0 0 1-.386-1.602c0-.585.129-1.119.386-1.602a2.988 2.988 0 0 1 2.678-1.567c.585 0 1.111.14 1.579.42.468.282.83.664 1.087 1.147.265.483.398 1.017.398 1.602 0 .585-.133 1.119-.398 1.602-.257.483-.62.865-1.087 1.146-.468.28-.994.421-1.579.421Zm0-.9c.366 0 .706-.09 1.017-.27a2.02 2.02 0 0 0 .76-.795c.196-.343.293-.744.293-1.204 0-.46-.098-.861-.292-1.205a1.938 1.938 0 0 0-.76-.783 1.942 1.942 0 0 0-1.018-.28c-.366 0-.71.093-1.029.28-.32.18-.577.44-.772.783-.187.344-.28.745-.28 1.205 0 .46.093.861.28 1.204.195.343.452.609.772.796.32.179.663.269 1.03.269Zm3.86 7.323H25v9.304h1.754v-3.417h1.52c.59 0 1.126-.121 1.611-.364a2.854 2.854 0 0 0 1.144-1.052c.277-.45.416-.962.416-1.534 0-.571-.14-1.078-.416-1.52a2.765 2.765 0 0 0-1.144-1.04 3.45 3.45 0 0 0-1.61-.376Zm1.066 3.847c-.243.251-.58.377-1.014.377h-1.572v-2.56h1.572c.433 0 .771.126 1.014.377.25.242.376.541.376.896 0 .356-.125.659-.376.91Z\" fill=\"#F7F8F8\"/><path d=\"M41.324 72.847h-1.598v6.627h1.702v-3.261c0-.598.156-1.07.468-1.416.32-.347.749-.52 1.286-.52.32 0 .59.043.806.13v-1.663c-.122-.052-.33-.078-.624-.078a2.3 2.3 0 0 0-1.143.298c-.356.191-.62.447-.793.767h-.104v-.883Zm5.99 6.588c.277.095.58.143.91.143.415 0 .81-.074 1.182-.22v-1.664a2.917 2.917 0 0 1-.429.22 1.059 1.059 0 0 1-.403.066c-.294 0-.502-.07-.623-.208-.148-.147-.221-.39-.221-.728v-2.741h1.624v-1.456H47.73v-1.87h-1.702v1.87H44.87v1.456h1.157v3.053c0 .72.203 1.273.61 1.663.174.173.399.312.676.416Zm3.514-6.588h1.599v.832h.104c.199-.32.48-.572.844-.754a2.51 2.51 0 0 1 1.182-.285c.797 0 1.404.242 1.82.727.415.485.623 1.148.623 1.988v4.119h-1.702v-3.91c0-.425-.108-.754-.325-.988-.216-.234-.52-.351-.91-.351-.458 0-.83.177-1.117.532-.277.356-.415.802-.415 1.339v3.378h-1.703v-6.627Z\" fill=\"#F7F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.932 79.227a3.512 3.512 0 0 0 1.78.455c1.377 0 2.404-.59 3.08-1.767l-1.378-.676c-.165.286-.39.516-.676.689-.277.164-.61.247-1 .247-.468 0-.87-.135-1.208-.403-.33-.277-.538-.68-.624-1.209h4.976a4.02 4.02 0 0 0 .04-.571c0-.624-.13-1.191-.39-1.702a2.838 2.838 0 0 0-1.118-1.209c-.494-.294-1.083-.441-1.767-.441a3.25 3.25 0 0 0-1.741.48 3.39 3.39 0 0 0-1.221 1.3 3.589 3.589 0 0 0-.442 1.754c0 .667.147 1.269.441 1.806.304.528.72.944 1.248 1.247Zm3.118-4.483c.139.2.217.403.234.611h-3.3c.13-.407.338-.727.623-.961a1.603 1.603 0 0 1 1.053-.364c.32 0 .598.07.832.208.242.13.428.299.558.507Z\" fill=\"#F7F8F8\"/><path d=\"M67.83 72.847h-1.598v6.627h1.703v-3.3c0-.555.147-1.014.441-1.378.295-.363.693-.545 1.196-.545.182 0 .35.021.506.065.165.034.364.095.598.182v-1.703a2.327 2.327 0 0 0-.832-.142 2.18 2.18 0 0 0-1.143.311 1.92 1.92 0 0 0-.766.767h-.104v-.883Z\" fill=\"#F7F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.47 79.682c-.702 0-1.278-.204-1.728-.61-.451-.417-.676-.958-.676-1.625 0-.442.117-.832.35-1.17.235-.337.555-.597.962-.779a3.276 3.276 0 0 1 1.351-.273c.685 0 1.27.1 1.755.3v-.287c0-.364-.14-.658-.416-.883-.269-.226-.633-.338-1.092-.338a2.01 2.01 0 0 0-.91.22 2.075 2.075 0 0 0-.714.56l-1.091-.858c.32-.416.723-.736 1.208-.962a3.718 3.718 0 0 1 1.585-.337c1.014 0 1.785.234 2.313.701.528.468.793 1.152.793 2.053v4.08h-1.676v-.676h-.104c-.2.26-.464.472-.793.637-.32.165-.693.247-1.117.247Zm.402-1.325c.494 0 .884-.156 1.17-.468a1.6 1.6 0 0 0 .441-1.118 3.227 3.227 0 0 0-1.39-.311c-.883 0-1.325.329-1.325.987 0 .269.095.49.286.663.19.164.463.247.818.247Z\" fill=\"#F7F8F8\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nfl18k\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:96,intrinsicWidth:113,layoutDependency:layoutDependency,layoutId:\"P5RkazzGJ\",svg:'<svg width=\"113\" height=\"96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M105.233 62.423h-3.552a46.849 46.849 0 0 0 2.592-15.388C104.273 21.058 83.149 0 57.083 0 31.019 0 9.918 21.058 9.918 47.035a46.8 46.8 0 0 0 2.592 15.388H7.6c-4.203 0-7.611 3.42-7.6 7.622v18.333a7.612 7.612 0 0 0 7.59 7.633h97.643c4.202 0 7.611-3.42 7.6-7.622V70.056a7.615 7.615 0 0 0-7.6-7.633Z\" fill=\"#D9D9D9\"/><path d=\"M21.741 62.422a38.901 38.901 0 0 1-2.934-14.88c0-21.499 17.352-38.927 38.751-38.927 21.4 0 38.74 17.44 38.74 38.927a38.9 38.9 0 0 1-2.934 14.88h5.714a44.687 44.687 0 0 0 2.526-14.88c0-24.665-19.889-44.652-44.443-44.652S12.707 22.877 12.707 47.542c0 5.063.85 10.104 2.537 14.88h6.497Zm52.242 21.422a1.29 1.29 0 0 0 .309-.53 1.65 1.65 0 0 0 .088-.518 1.65 1.65 0 0 0-.088-.518 1.29 1.29 0 0 0-.31-.53 1.91 1.91 0 0 0-.65-.408 2.585 2.585 0 0 0-1.081-.165h-1.787v3.232h1.787c.364.01.739-.044 1.081-.166.243-.088.463-.22.65-.397Zm8.571-13.248a.378.378 0 0 0 .055-.242.29.29 0 0 0-.055-.21.35.35 0 0 0-.133-.121.27.27 0 0 0-.176-.066 1.22 1.22 0 0 0-.199-.022h-.562v.838h.662c.077-.011.154-.033.231-.055a.34.34 0 0 0 .177-.122Zm-44.3 5.471c.386-.32.706-.716.916-1.169a4.396 4.396 0 0 0 0-3.386 3.196 3.196 0 0 0-.916-1.18 3.866 3.866 0 0 0-1.356-.695 6.086 6.086 0 0 0-1.677-.221h-1.743v7.556h1.743a6.19 6.19 0 0 0 1.677-.232 3.47 3.47 0 0 0 1.356-.672Z\" fill=\"#145273\"/><path d=\"M83.282 69.604a1.774 1.774 0 0 0-.585-.397 1.828 1.828 0 0 0-1.445 0 1.879 1.879 0 0 0-.982.992 1.827 1.827 0 0 0 0 1.445c.188.441.54.805.982.993.463.199.982.199 1.445 0 .22-.088.42-.22.585-.397.176-.165.309-.375.397-.596a1.827 1.827 0 0 0 0-1.445 1.65 1.65 0 0 0-.397-.595Zm-.585 2.559-.74-1.103h-.462v1.103h-.31v-2.515h.96c.276 0 .486.055.607.176a.705.705 0 0 1 .177.53.926.926 0 0 1-.044.297.547.547 0 0 1-.144.21.625.625 0 0 1-.198.132.89.89 0 0 1-.243.078l.739 1.103-.342-.011ZM23.43 83.844c.143-.154.253-.33.32-.53.043-.165.076-.341.076-.518a2.804 2.804 0 0 0-.077-.518 1.453 1.453 0 0 0-.32-.53 1.974 1.974 0 0 0-.64-.408 2.637 2.637 0 0 0-1.092-.165H19.91v3.232h1.787c.375.01.74-.044 1.092-.166.232-.088.453-.22.64-.397Z\" fill=\"#145273\"/><path d=\"M101.813 66.24H11.02a6.566 6.566 0 0 0-6.564 6.574V85.52a6.577 6.577 0 0 0 6.553 6.596h90.804a6.579 6.579 0 0 0 6.563-6.596V72.836c.011-3.63-2.934-6.586-6.563-6.597Zm-42.28 2.404h1.092l5.526 7.964h.022v-7.964h.85v9.1H65.93l-5.526-7.975h-.033v7.975h-.838v-9.1Zm-4.964 5.714h3.166v.695h-3.166v-.695Zm-13.028 0h3.166v.695h-3.166v-.695ZM24.037 89.514l-2.56-4.324H19.9v4.324h-.838v-9.111h2.372l.496.01c.22.012.441.034.662.078.253.044.496.11.728.21.242.088.474.231.662.408.21.187.375.43.485.684.143.32.21.65.199 1.003.01.375-.067.75-.232 1.092a2.25 2.25 0 0 1-.563.684c-.22.177-.485.31-.75.397a4.724 4.724 0 0 1-.783.177l2.648 4.379h-.95v-.011Zm8.372 0h-5.747v-9.1H32.2v.772h-4.7v3.232h4.413v.772H27.5v3.552h4.908v.772Zm.22-20.87h2.814c.783 0 1.445.088 1.996.287.496.154.96.408 1.357.739.342.276.64.606.86.993.199.33.353.684.464 1.047.088.298.154.607.176.916.022.188.033.386.044.574 0 .11-.01.297-.044.573a4.238 4.238 0 0 1-.176.905c-.11.364-.276.717-.464 1.048a3.56 3.56 0 0 1-.86 1.003c-.408.32-.86.574-1.357.74a6.482 6.482 0 0 1-1.996.286H32.63v-9.111Zm9.101 20.274a5.985 5.985 0 0 1-1.643.64 8.31 8.31 0 0 1-1.732.177c-.651 0-1.302-.11-1.909-.342a4.474 4.474 0 0 1-1.478-.993 4.518 4.518 0 0 1-.96-1.522 5.475 5.475 0 0 1 0-3.839 4.525 4.525 0 0 1 .96-1.511c.42-.43.916-.761 1.478-.993a4.74 4.74 0 0 1 1.909-.364c1.345 0 2.437.43 3.265 1.268l-.629.64a1.992 1.992 0 0 0-.507-.452 2.9 2.9 0 0 0-.651-.364 4.31 4.31 0 0 0-.728-.232 3.4 3.4 0 0 0-.75-.088c-.552 0-1.092.1-1.6.309-.452.199-.86.496-1.202.85a4.07 4.07 0 0 0-.772 1.279 4.864 4.864 0 0 0 0 3.166c.176.474.43.904.772 1.268s.75.651 1.202.85a4.01 4.01 0 0 0 1.6.308c.452 0 .915-.033 1.367-.11.409-.077.806-.22 1.17-.43v-3.067h-2.173v-.772h3.022l-.01 4.324Zm3.331.596h-.849v-9.1h.85v9.1Zm7.457-1.235a2.525 2.525 0 0 1-1.522 1.29 3.19 3.19 0 0 1-1.07.166 4.278 4.278 0 0 1-1.655-.31 3.113 3.113 0 0 1-1.29-1.07l.805-.529c.198.364.507.662.871.86.375.2.794.287 1.214.276.264 0 .54-.044.794-.132.243-.077.463-.198.65-.353.387-.32.607-.794.596-1.302a1.445 1.445 0 0 0-.198-.794 1.83 1.83 0 0 0-.54-.507 5.011 5.011 0 0 0-.75-.331l-.85-.287a9.909 9.909 0 0 1-.86-.32 3.088 3.088 0 0 1-.75-.474 2.244 2.244 0 0 1-.53-.717 2.63 2.63 0 0 1-.199-1.092 2.24 2.24 0 0 1 .243-1.07c.154-.309.375-.574.64-.783.276-.22.584-.386.926-.475.353-.11.728-.165 1.103-.165.475 0 .938.088 1.38.265.44.187.827.496 1.102.882l-.728.53a1.997 1.997 0 0 0-.75-.673 2.27 2.27 0 0 0-1.004-.232c-.264 0-.529.033-.783.11a2.413 2.413 0 0 0-.65.331 1.7 1.7 0 0 0-.442.53 1.493 1.493 0 0 0-.165.75c0 .452.11.816.342 1.048.242.254.53.452.86.584.364.144.74.265 1.114.365.397.099.772.242 1.125.419.342.176.64.44.86.75.232.33.343.772.343 1.334 0 .409-.078.784-.232 1.126Zm.43-14.01c0 .475-.055.95-.165 1.401-.1.43-.287.839-.552 1.192a2.985 2.985 0 0 1-1.026.827c-.485.22-1.025.32-1.555.309-.618 0-1.136-.1-1.555-.309a2.588 2.588 0 0 1-1.026-.827 3.18 3.18 0 0 1-.552-1.191 5.937 5.937 0 0 1-.165-1.401v-5.626h.838v5.394c0 .353.033.706.089 1.048.055.364.176.706.352 1.026.177.32.43.584.74.783.32.21.739.309 1.28.309.54 0 .948-.1 1.279-.31a2.19 2.19 0 0 0 .739-.782c.176-.32.287-.673.342-1.026.055-.342.088-.695.088-1.048v-5.394h.838l.011 5.626Zm7.678 6.906h-3.1v8.328h-.85v-8.328h-3.099v-.772h7.049v.772Zm7.136 8.328h-5.746v-9.1h5.537v.772h-4.7v3.232h4.413v.772h-4.412v3.552h4.908v.772Zm1.048-15.145h3.155v.695H68.81v-.695Zm5.77 15.145-2.55-4.313h-1.566v4.324h-.86v-9.111h2.382l.486.01c.22.012.452.034.672.078.243.044.486.11.717.21.254.088.475.231.673.408.199.198.364.43.486.684.132.32.198.661.187 1.003.011.375-.055.75-.22 1.092a2.248 2.248 0 0 1-.563.684 2.589 2.589 0 0 1-.75.397 4.724 4.724 0 0 1-.783.177l2.647 4.379-.96-.022Zm1.566-11.516a4.091 4.091 0 0 1-1.655-.32 3.021 3.021 0 0 1-1.29-1.059l.805-.53c.198.365.507.662.871.861a2.57 2.57 0 0 0 1.214.276c.264 0 .54-.044.794-.133.231-.077.452-.198.64-.353a1.674 1.674 0 0 0 .607-1.29 1.456 1.456 0 0 0-.21-.794 1.462 1.462 0 0 0-.53-.508 5.067 5.067 0 0 0-.75-.342l-.86-.276c-.287-.099-.574-.21-.85-.33a2.754 2.754 0 0 1-.75-.464 2.246 2.246 0 0 1-.53-.717 2.631 2.631 0 0 1-.198-1.092 2.24 2.24 0 0 1 .243-1.07c.154-.309.375-.573.64-.783a2.77 2.77 0 0 1 .926-.485 4.07 4.07 0 0 1 1.103-.155c.475 0 .938.089 1.38.265.44.188.826.496 1.102.882l-.728.53a2.073 2.073 0 0 0-1.776-.904c-.264 0-.53.033-.783.11a1.963 1.963 0 0 0-.64.33 1.69 1.69 0 0 0-.44.53 1.61 1.61 0 0 0-.155.75c0 .453.11.806.342 1.048.242.254.54.452.86.585.364.143.74.276 1.125.364.386.11.772.254 1.125.441.342.177.64.441.86.75.232.331.343.761.343 1.335.01.375-.078.75-.232 1.092a2.49 2.49 0 0 1-.629.805c-.264.22-.573.386-.904.496-.342.11-.706.166-1.07.155Zm6.817 11.527h-5.747v-9.111h5.537v.772h-4.699v3.232h4.401v.772h-4.4v3.552h4.908v.783Zm1.004-17.737a2.64 2.64 0 0 1-.464.695c-.198.198-.43.364-.695.474-.54.22-1.147.22-1.687 0a2.289 2.289 0 0 1-.695-.474 2.254 2.254 0 0 1-.464-.695 2.207 2.207 0 0 1 0-1.677c.11-.254.276-.485.464-.695a1.97 1.97 0 0 1 .695-.463 2.136 2.136 0 0 1 1.687 0 2.127 2.127 0 0 1 1.159 1.158 2.109 2.109 0 0 1 0 1.677Zm8.394 13.766a4.932 4.932 0 0 1-.65 1.952 3.737 3.737 0 0 1-.85 1.004 4.58 4.58 0 0 1-1.368.74 6.179 6.179 0 0 1-1.997.286h-2.813v-9.111h2.813c.783 0 1.456.088 1.997.287.496.165.96.408 1.368.739.342.275.628.617.85.992.198.331.352.684.462 1.048.089.298.155.607.188.905.022.264.044.463.044.573 0 .11-.022.298-.044.585Zm2.283-4.655h-.783v2.129h-.309v-2.129h-.783v-.276h1.875v.276Zm2.923 2.129h-.32V80.91h-.01l-.828 2.107h-.187l-.828-2.107h-.01v2.107h-.32v-2.405h.507l.75 1.92.75-1.92h.485l.011 2.405Z\" fill=\"#145273\"/><path d=\"M90.32 82.09a4.015 4.015 0 0 0-1.369-.695 6.086 6.086 0 0 0-1.676-.22h-1.743v7.556h1.743c.562 0 1.125-.077 1.676-.232.497-.132.96-.364 1.368-.684.386-.32.695-.728.905-1.18a4.396 4.396 0 0 0 0-3.386 3.549 3.549 0 0 0-.905-1.159Zm-44.4-52.958 27.368 28.536-2.88 2.78-4.312-4.49-4.269 4.137a10.258 10.258 0 0 1-7.38 2.923h-.01a10.414 10.414 0 0 1-7.005-17.892l2.857-2.757 2.78 2.89-2.857 2.757a6.392 6.392 0 0 0-.166 9.035c2.427 2.526 6.442 2.614 8.968.187l.033-.033 4.27-4.137L45.92 34.956v-5.824Z\" fill=\"#145273\"/><path d=\"M65.743 33.688v4.158c.893.331 1.621.85 2.305 1.555a6.436 6.436 0 0 1-.176 9.045l-.364.343 2.802 2.867.341-.33c4.137-3.994 4.247-10.579.265-14.726a10.296 10.296 0 0 0-5.173-2.913Zm-17.219-8.582-1.975 1.919 2.78 2.89 1.986-1.908a4.764 4.764 0 0 1 6.75.099l.012.011a4.818 4.818 0 0 1-.133 6.795l-1.974 1.886 2.78 2.89 1.974-1.886c3.486-3.386 3.574-8.99.232-12.476-3.365-3.485-8.924-3.596-12.41-.22-.011-.011-.011 0-.022 0Z\" fill=\"#2C95B4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.183 56.124a4.56 4.56 0 0 0-.386-.97 2.602 2.602 0 0 0-.595-.706 1.788 1.788 0 0 0-.806-.364 2.158 2.158 0 0 0-1.025.077 2.4 2.4 0 0 0-.927.441 1.758 1.758 0 0 0-.53.673 2.24 2.24 0 0 0-.165.85c0 .33.044.661.132.981l.276 1.015 4.28-1.17-.254-.827Zm-4.754 3.387-.662-2.471a4.011 4.011 0 0 1-.143-1.258c.022-.408.132-.805.309-1.18a3.24 3.24 0 0 1 .794-.982 3.688 3.688 0 0 1 1.324-.64 3.064 3.064 0 0 1 2.67.442 3.841 3.841 0 0 1 1.378 2.019l.64 2.349-6.31 1.72Zm2.239-15.156c.364 0 .728.077 1.06.22.308.133.573.32.805.563.22.242.386.53.496.838.11.331.165.684.154 1.037 0 .353-.066.706-.198 1.037a2.526 2.526 0 0 1-.53.827 2.3 2.3 0 0 1-.816.53 2.541 2.541 0 0 1-1.07.176l-4.125-.077.022-1.158 4.092.077c.166 0 .342-.022.508-.066.375-.089.683-.331.86-.673.187-.441.199-.938.022-1.39a1.21 1.21 0 0 0-.353-.463 1.485 1.485 0 0 0-.474-.243 1.949 1.949 0 0 0-.508-.077l-4.092-.077.022-1.159 4.125.078Zm-3.43-4.733.463-1.467 5.582-1.534V36.6l-4.633-1.467.364-1.103 6.21 1.975-.43 1.412-5.747 1.544-.011.011 4.776 1.522-.353 1.103-6.221-1.974ZM32.97 26.506l-.054.376a1.434 1.434 0 0 0-.022.375c0 .12.022.231.066.342a.952.952 0 0 0 .231.32c.1.099.22.165.342.209a.862.862 0 0 0 .375.055 1.47 1.47 0 0 0 .375-.11.953.953 0 0 0 .32-.232c.166-.165.276-.386.31-.617a3.67 3.67 0 0 0 .032-.695l-1.974-.023Zm-1.72-2.217a.803.803 0 0 0-.232.53.54.54 0 0 0 .188.485.69.69 0 0 0 .22.144c.089.033.188.044.287.055.1.01.21.022.31.022l.297-.022.077-.331c.022-.122.033-.243.033-.364a.89.89 0 0 0-.055-.342.62.62 0 0 0-.188-.287.55.55 0 0 0-.463-.143.724.724 0 0 0-.474.253Zm4.589 1.159 2.084.033-.981 1.048h-1.015c.044.364.022.739-.066 1.092a2.537 2.537 0 0 1-.563.937c-.187.21-.419.386-.662.53-.22.143-.474.231-.739.264a1.836 1.836 0 0 1-.772-.055 1.572 1.572 0 0 1-.717-.44 1.64 1.64 0 0 1-.375-.497 2.038 2.038 0 0 1-.176-1.192 2.26 2.26 0 0 1 .154-.595l-.441-.033a5.181 5.181 0 0 1-.408-.055 1.66 1.66 0 0 1-.75-.397 1.767 1.767 0 0 1-.42-.596c-.077-.21-.11-.43-.088-.64.022-.22.088-.441.188-.64a2.5 2.5 0 0 1 .948-1.026 1.71 1.71 0 0 1 .607-.242c.21-.034.42-.034.629.033.231.077.441.198.617.364.144.132.254.287.331.463.078.166.122.342.144.53.022.187.022.375 0 .562a4.267 4.267 0 0 1-.11.54l1.533.012-.32-1.291.882-.949.486 2.24Zm8.261-4.975.982-.42c.133-.055.265-.132.42-.21.143-.076.264-.187.375-.308a.915.915 0 0 0 .21-.408.883.883 0 0 0-.078-.53c-.132-.32-.331-.496-.585-.529-.253-.033-.606.044-1.036.22l-1.015.43.728 1.755Zm-1.125-2.648.971-.419c.353-.154.585-.342.706-.551a.8.8 0 0 0-.342-1.07.55.55 0 0 0-.143-.056c-.243-.044-.552.012-.96.188l-.882.375.65 1.533Zm-2.095-2.007 2.316-.993c.22-.1.463-.165.706-.21.232-.033.463-.033.695.022.496.11.893.453 1.081.927.143.298.166.65.066.97-.099.31-.298.585-.54.795l.01.022c.188-.055.387-.077.585-.055.188.01.375.055.54.143a1.656 1.656 0 0 1 .773.838c.265.53.21 1.17-.132 1.655-.166.232-.375.43-.607.596a4.68 4.68 0 0 1-.794.441l-2.151.916-2.548-6.067Zm10.931-.551c.154-.033.331-.055.485-.1.155-.033.298-.099.442-.176a.803.803 0 0 0 .286-.32.837.837 0 0 0 .056-.518.783.783 0 0 0-.177-.442.741.741 0 0 0-.342-.21 1.469 1.469 0 0 0-.441-.054c-.154.01-.309.022-.441.044l-.993.143.254 1.765.871-.132Zm-2.438-2.438 2.229-.33c.297-.045.595-.067.904-.045.276.011.551.077.816.188.243.099.464.264.618.485a2.11 2.11 0 0 1 .132 2.118c-.22.375-.584.64-1.003.739l2.128 2.614-1.378.21-1.898-2.537-.827.12.42 2.748-1.148.165-.993-6.475Zm11.936 3.661-.695-2.768-1.302 2.548 1.997.22Zm-.993-4.191.992.11 2.03 6.84-1.313-.166-.43-1.556-2.79-.33-.75 1.422-1.291-.143 3.552-6.177Zm7.324 7.369c.32.132.65.231.993.286.309.044.618.033.915-.044.298-.066.563-.21.795-.408a2.48 2.48 0 0 0 .584-.871c.144-.32.22-.662.232-1.004a1.69 1.69 0 0 0-.21-.838 1.954 1.954 0 0 0-.551-.651 3.119 3.119 0 0 0-.85-.497l-.97-.419-1.732 4.104.794.341Zm.276-5.847 2.35.993c.385.165.738.386 1.058.662a2.956 2.956 0 0 1 1.015 2.206c0 .496-.1.982-.309 1.434a3.183 3.183 0 0 1-.849 1.224 3.04 3.04 0 0 1-1.147.618 3.412 3.412 0 0 1-1.247.133 3.937 3.937 0 0 1-1.18-.287l-2.228-.949 2.537-6.034Zm10.611 7.622c.011-.21-.044-.43-.143-.617a1.724 1.724 0 0 0-.441-.497 1.52 1.52 0 0 0-.331-.21 1.276 1.276 0 0 0-.353-.087.701.701 0 0 0-.342.055.842.842 0 0 0-.309.242.607.607 0 0 0-.143.54c.055.21.154.409.264.596.122.21.265.43.42.651.165.22.297.453.386.717.088.254.121.53.099.806-.044.33-.177.628-.386.882a2.01 2.01 0 0 1-.717.607 1.75 1.75 0 0 1-.816.198c-.287 0-.563-.055-.828-.154a3.144 3.144 0 0 1-.794-.453 3.51 3.51 0 0 1-.794-.87 2.316 2.316 0 0 1-.342-1.137l1.213-.143c-.022.253.022.507.133.739.11.231.264.43.463.595.11.078.232.144.353.199.121.055.254.088.386.1a.913.913 0 0 0 .386-.056.986.986 0 0 0 .32-.243.705.705 0 0 0 .154-.584 2.12 2.12 0 0 0-.242-.618 6.584 6.584 0 0 0-.43-.65 2.506 2.506 0 0 1-.387-.718 1.764 1.764 0 0 1-.11-.794 1.73 1.73 0 0 1 .386-.883 1.69 1.69 0 0 1 .706-.562c.254-.11.53-.155.805-.155.287 0 .563.067.817.177.275.11.54.254.772.441.265.21.496.452.684.728.187.287.32.607.364.949l-1.203.21Zm4.534 4.104-1.247-1.555.817-.662 3.21 4.004-.817.662-1.246-1.544-4.258 3.452-.728-.904 4.269-3.453Zm3.122 8.119c.066.143.143.297.231.44.078.133.177.265.298.365.11.1.243.165.386.187a.813.813 0 0 0 .508-.099.744.744 0 0 0 .364-.298.826.826 0 0 0 .11-.397c0-.154-.033-.298-.077-.441a6.73 6.73 0 0 0-.155-.43l-.43-.905-1.6.75.365.828Zm1.643-3.045.949 2.063c.132.276.231.562.298.85.066.275.088.55.055.827a1.559 1.559 0 0 1-.287.728 1.974 1.974 0 0 1-.739.573 1.945 1.945 0 0 1-1.246.154 1.638 1.638 0 0 1-.993-.76l-1.886 2.79-.596-1.268 1.875-2.548-.353-.761-2.504 1.169-.485-1.048 5.912-2.769Zm3.199 8.251.805 4.247-1.037.187-.584-3.088-1.578.287.552 2.945-1.026.198-.551-2.945-1.743.342.606 3.254-1.025.199-.828-4.39 6.41-1.236Zm1.059 8.582-.231 4.313-1.048-.066.176-3.144-1.61-.088-.166 2.978-1.048-.055.166-2.979-1.765-.099-.188 3.31-1.048-.056.254-4.478 6.508.364Zm-2.416 9.541.574-1.908 1.015.309-1.5 4.92-.993-.31.574-1.908-5.24-1.6.342-1.102 5.228 1.6Z\" fill=\"#145273\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h112.833v96H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbpjui\",\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"bSlMZRUJv\",style:{backgroundColor:\"var(--token-e793d21e-5aaf-480f-ba39-fad474f126b8, rgba(255, 255, 255, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uj3ab4\",\"data-framer-name\":\"Footnote\",layoutDependency:layoutDependency,layoutId:\"rFJtJxrIr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j8hyzf\",\"data-framer-name\":\"footer-social-links\",layoutDependency:layoutDependency,layoutId:\"c9W3a4075\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/devtron-labs/\",motionChild:true,nodeId:\"Db1EDBFx1\",scopeId:\"I5YOnbYC2\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-6n5mge framer-4s6yc4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"Db1EDBFx1\",svg:'<svg width=\"18\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.585 1H2.148c-.63 0-1.14.506-1.148 1.134v13.481a1.148 1.148 0 0 0 1.148 1.135h13.45c.63 0 1.142-.506 1.152-1.134V2.134A1.153 1.153 0 0 0 15.597 1h-.015.003ZM5.67 14.421H3.332V6.907h2.339v7.516ZM4.502 5.879a1.354 1.354 0 1 1 1.354-1.355v.002c0 .748-.606 1.354-1.353 1.354h-.001v-.001Zm9.916 8.543h-2.332v-3.654c0-.872-.018-1.993-1.216-1.993-1.216 0-1.401.949-1.401 1.929v3.72H7.137V6.906h2.24V7.93h.03a2.46 2.46 0 0 1 2.216-1.214h-.004c2.363 0 2.8 1.556 2.8 3.58v4.125h-.001Z\" fill=\"#8A8F98\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/DevtronL\",motionChild:true,nodeId:\"UFlBVcxPD\",scopeId:\"I5YOnbYC2\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1vvcskh framer-4s6yc4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"UFlBVcxPD\",svg:'<svg width=\"18\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.568 1.894h2.413l-5.3 6.032 6.19 8.184h-4.856l-3.803-4.972-4.354 4.972H1.442l5.614-6.453-5.929-7.763h4.98l3.436 4.541 4.023-4.542h.002Zm-.845 12.8h1.337L5.403 3.257H3.967l8.756 11.437Z\" fill=\"#8A8F98\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.devtron.ai/\",motionChild:true,nodeId:\"rFA08gCBW\",scopeId:\"I5YOnbYC2\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1qft8qy framer-4s6yc4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"rFA08gCBW\",svg:'<svg width=\"18\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.342 4.021A12.827 12.827 0 0 0 11.092 3c-.14.253-.303.593-.416.864a11.931 11.931 0 0 0-3.601 0A9.236 9.236 0 0 0 6.654 3a12.747 12.747 0 0 0-3.252 1.024C1.346 7.13.788 10.16 1.067 13.149a12.99 12.99 0 0 0 3.985 2.042c.32-.442.607-.911.854-1.406a8.392 8.392 0 0 1-1.344-.654c.112-.084.223-.17.329-.26 2.592 1.211 5.407 1.211 7.968 0 .108.09.218.176.33.26a8.362 8.362 0 0 1-1.347.655c.246.494.531.965.853 1.406a12.965 12.965 0 0 0 3.988-2.043c.327-3.463-.559-6.466-2.341-9.128Zm-8.083 7.29c-.778 0-1.416-.726-1.416-1.61 0-.885.624-1.612 1.416-1.612.791 0 1.43.726 1.416 1.612 0 .884-.625 1.61-1.416 1.61Zm5.232 0c-.778 0-1.416-.726-1.416-1.61 0-.885.625-1.612 1.416-1.612.792 0 1.43.726 1.416 1.612 0 .884-.624 1.61-1.416 1.61Z\" fill=\"#8A8F98\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@devtronL\",motionChild:true,nodeId:\"GwBJSqoO2\",scopeId:\"I5YOnbYC2\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-i51tzj framer-4s6yc4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"GwBJSqoO2\",svg:'<svg width=\"18\" height=\"18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.134 3.826a1.97 1.97 0 0 1 1.392 1.391c.48 1.936.448 5.595.01 7.561a1.971 1.971 0 0 1-1.392 1.391c-1.915.474-10.494.415-12.298 0a1.971 1.971 0 0 1-1.392-1.391c-.452-1.845-.421-5.746-.01-7.55a1.971 1.971 0 0 1 1.391-1.392c2.561-.534 11.388-.362 12.3-.01ZM7.473 6.638v4.718l4.113-2.36-4.113-2.358Z\" fill=\"#8A8F98\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithCurrentYear1fru6fg,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a8fa161-5735-4b47-8b78-989e0efd9a45, rgb(208, 214, 224)))\"},children:\"copyright-current-year\"})}),className:\"framer-1fru6fg\",\"data-framer-name\":\"\\xa9 2024 Devtron Inc. All rights reserved\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"J2nElULrO\",style:{\"--extracted-r6o4lv\":\"var(--token-7a8fa161-5735-4b47-8b78-989e0efd9a45, rgb(208, 214, 224))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0kJ32.framer-4s6yc4, .framer-0kJ32 .framer-4s6yc4 { display: block; }\",\".framer-0kJ32.framer-4tt1f4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 100px 50px 100px; position: relative; width: 1200px; }\",\".framer-0kJ32 .framer-1bheseg { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0kJ32 .framer-1lml8ty, .framer-0kJ32 .framer-11nu095, .framer-0kJ32 .framer-1ohnuwr, .framer-0kJ32 .framer-uhix6w, .framer-0kJ32 .framer-1puxxmk { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0kJ32 .framer-rb5sib, .framer-0kJ32 .framer-509mm0, .framer-0kJ32 .framer-j0udit, .framer-0kJ32 .framer-1u9279q, .framer-0kJ32 .framer-1blrskl, .framer-0kJ32 .framer-zktvfk, .framer-0kJ32 .framer-18x7jps, .framer-0kJ32 .framer-1womdp2, .framer-0kJ32 .framer-5jjwiy, .framer-0kJ32 .framer-1fgf759, .framer-0kJ32 .framer-1nh7bsx, .framer-0kJ32 .framer-14cc1jd, .framer-0kJ32 .framer-1mcfjdo, .framer-0kJ32 .framer-192t621, .framer-0kJ32 .framer-1r9xevs, .framer-0kJ32 .framer-h3wfu5, .framer-0kJ32 .framer-1lu0u2h, .framer-0kJ32 .framer-c2tun1, .framer-0kJ32 .framer-m3cv8v, .framer-0kJ32 .framer-1dwr0cl, .framer-0kJ32 .framer-tun010, .framer-0kJ32 .framer-amh5s1, .framer-0kJ32 .framer-j3n9dj, .framer-0kJ32 .framer-196ggqh, .framer-0kJ32 .framer-y0m2dz, .framer-0kJ32 .framer-1dnb8j0, .framer-0kJ32 .framer-proilm, .framer-0kJ32 .framer-1kf1vl7, .framer-0kJ32 .framer-14nzefq, .framer-0kJ32 .framer-1wqdijw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0kJ32 .framer-5thexm-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; width: auto; z-index: 0; }\",\".framer-0kJ32 .framer-1m006b3, .framer-0kJ32 .framer-1dbpjui { flex: none; height: 1px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-0kJ32 .framer-g6aur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0kJ32 .framer-1twdpg8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-0kJ32 .framer-1ifyzao { flex: none; height: 22px; position: relative; width: 96px; }\",\".framer-0kJ32 .framer-57bkbd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-0kJ32 .framer-1mf9v0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0kJ32 .framer-9pjmzs, .framer-0kJ32 .framer-j3uc0i, .framer-0kJ32 .framer-1bhhsuw, .framer-0kJ32 .framer-11p7b2g { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); position: relative; width: 96px; }\",\".framer-0kJ32 .framer-nfl18k { aspect-ratio: 1.1770833333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); position: relative; width: 113px; }\",\".framer-0kJ32 .framer-1uj3ab4 { 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: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0kJ32 .framer-1j8hyzf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0kJ32 .framer-6n5mge, .framer-0kJ32 .framer-1vvcskh, .framer-0kJ32 .framer-1qft8qy, .framer-0kJ32 .framer-i51tzj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; text-decoration: none; width: 18px; }\",\".framer-0kJ32 .framer-1fru6fg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0kJ32.framer-v-ysq9fx.framer-4tt1f4 { padding: 50px 50px 40px 50px; width: 810px; }\",\".framer-0kJ32.framer-v-ysq9fx .framer-g6aur { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-0kJ32.framer-v-ysq9fx .framer-1twdpg8 { align-content: center; align-items: center; flex-wrap: wrap; gap: 16px; }\",\".framer-0kJ32.framer-v-ysq9fx .framer-1mf9v0q, .framer-0kJ32.framer-v-18vixrp .framer-1mf9v0q { flex-wrap: wrap; width: 100%; }\",\".framer-0kJ32.framer-v-ysq9fx .framer-9pjmzs, .framer-0kJ32.framer-v-ysq9fx .framer-j3uc0i, .framer-0kJ32.framer-v-ysq9fx .framer-1bhhsuw, .framer-0kJ32.framer-v-ysq9fx .framer-11p7b2g, .framer-0kJ32.framer-v-18vixrp .framer-9pjmzs, .framer-0kJ32.framer-v-18vixrp .framer-j3uc0i, .framer-0kJ32.framer-v-18vixrp .framer-1bhhsuw, .framer-0kJ32.framer-v-18vixrp .framer-11p7b2g { height: var(--framer-aspect-ratio-supported, 80px); width: 80px; }\",\".framer-0kJ32.framer-v-ysq9fx .framer-nfl18k, .framer-0kJ32.framer-v-18vixrp .framer-nfl18k { height: var(--framer-aspect-ratio-supported, 80px); width: 94px; }\",\".framer-0kJ32.framer-v-18vixrp.framer-4tt1f4 { padding: 50px 24px 40px 24px; width: 390px; }\",\".framer-0kJ32.framer-v-18vixrp .framer-1bheseg { grid-template-columns: repeat(2, minmax(50px, 1fr)); max-width: unset; }\",\".framer-0kJ32.framer-v-18vixrp .framer-g6aur { flex-direction: column; gap: 40px; justify-content: flex-start; max-width: unset; }\",\".framer-0kJ32.framer-v-18vixrp .framer-1twdpg8 { align-content: center; align-items: center; gap: 16px; width: 100%; }\",\".framer-0kJ32.framer-v-18vixrp .framer-57bkbd { width: 100%; }\",\".framer-0kJ32.framer-v-18vixrp .framer-1uj3ab4 { flex-direction: column; gap: 16px; justify-content: flex-start; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 770.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JcFjRATAW\":{\"layout\":[\"fixed\",\"auto\"]},\"nyf_TpD9f\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerI5YOnbYC2=withCSS(Component,css,\"framer-0kJ32\");export default FramerI5YOnbYC2;FramerI5YOnbYC2.displayName=\"Navigation/footer\";FramerI5YOnbYC2.defaultProps={height:770.5,width:1200};addPropertyControls(FramerI5YOnbYC2,{variant:{options:[\"owIunnpli\",\"JcFjRATAW\",\"nyf_TpD9f\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerI5YOnbYC2,[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSDNF5zBaI5loa26g.woff2\",weight:\"600\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD6llzBaI5loa26g.woff2\",weight:\"400\"}]},...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI5YOnbYC2\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"770.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JcFjRATAW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nyf_TpD9f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./I5YOnbYC2.map"],
  "mappings": "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",
  "names": ["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", "isOnFramerCanvas", "useIsOnFramerCanvas", "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", "isEULocale", "locale", "navigator", "country", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "skipEUCheck", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "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", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "skipLogic", "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", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "CookieBannerFonts", "getFonts", "CookieBanner", "RichTextWithCurrentYear1fru6fg", "withCodeBoundaryForOverrides", "RichText2", "withCurrentYear", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "Link", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerI5YOnbYC2", "withCSS", "I5YOnbYC2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
