{"version":3,"file":"Mv6_4rTth.Ee3RIGs-.mjs","names":["useReducer","defaultConsent","useState","useState","_Fragment","Suspense","Banner","Button","useState","_Fragment","Suspense","Cookies","useState","useRef","_Fragment","Image","v0","v1","v2","v3","v4","v5","v6","v7","v8","v9","v10","React.Fragment","v11","v12","v13","v14","v15","v16","v17","v18","v19","v20","v21","v22","v23","v24","v25","v26","v27","v29","v31","v32","v33","v34","v35","v36","v37","v38","v39","v40","v41","v42","v43","v44","v45","v47","v48","v49","v50","v51","v52","v53","v54","v55","v56","v57","v58","v59","v60","v61","v62","v63","v64","v65","v66","v67","v68","v69","__FramerMetadata__","v0","v1","v2","v3","v4","v5","v6","v7","v8","v9","v10","React.Fragment","v11","v12","v13","v14","v15","v16","v17","v18","v19","v20","v21","v22","v23","v24","v25","v26","v27","v28","v29","v30","v31","v32","v33","v34","v35","v36","v37","v38","v39","v40","v41","v42","v43","v44","v45","v47","v48","v49","v50","v51","v52","v53","v54","v55","v56","v57","v58","v59","v60","v61","v62","v63","v64","v65","v66","v67","v68","v69","__FramerMetadata__","React.Fragment","localizedValues","localizedValues2","localizedValues1","LocaleSelector","BtnLink","FormTextField","FormSubmit","BtnMain","t","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","sharedStyle.className","sharedStyle1.className","sharedStyle2.className","sharedStyle3.className","className","_Fragment","sharedStyle.css","sharedStyle1.css","sharedStyle2.css","sharedStyle3.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts"],"sources":["https:/framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/2CcJhEanvh9oX5JHRkd8/send.js","https:/framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js","https:/framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/dsQTNWNk09IMnZEHMfzP/consent.js","https:/framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/Nhaar5CYKIbxxEaVvTJs/inEU.js","https:/framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/atthcI0SmGvO4HAxG9e5/region.js","https:/framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js","https:/framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/LJki37UjB5KBVYI60fjt/Cookies.js","https:/framerusercontent.com/modules/tWxPGoauEDGvb60hKQfR/P8RtFxHSB1jdYdF6Os86/ThemeToggle.js","https:/framerusercontent.com/modules/XKT3lN1rkqsBMvQgRkH5/CSDzDQP0qoZnZaXhPcSm/Mv6_4rTth-0.js","https:/framerusercontent.com/modules/XKT3lN1rkqsBMvQgRkH5/CSDzDQP0qoZnZaXhPcSm/Mv6_4rTth-1.js","https:/framerusercontent.com/modules/XKT3lN1rkqsBMvQgRkH5/CSDzDQP0qoZnZaXhPcSm/Mv6_4rTth-2.js","https:/framerusercontent.com/modules/XKT3lN1rkqsBMvQgRkH5/CSDzDQP0qoZnZaXhPcSm/Mv6_4rTth.js","https:/framerusercontent.com/modules/wAkYFVqqgfUoHemUlrK8/BcjP1wOWdLbL0tNGPR8m/Mv6_4rTth.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,useState,startTransition}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 fromGTMConsent(consent){return{necessary:consent.functionality_storage===\"granted\"&&consent.security_storage===\"granted\",marketing:consent.ad_storage===\"granted\"&&consent.ad_user_data===\"granted\"&&consent.ad_personalization===\"granted\",analytics:consent.analytics_storage===\"granted\",preferences:consent.personalization_storage===\"granted\"};}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\"initFromGTM\":return{...state,modes:action.modes,initializedFromGTM:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:state.hasSynced||action.success};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,initializedFromGTM: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,defaultsFromGTM=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&&!defaultsFromGTM){// 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\n// GTM. See 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(?)\n// Publically documented: https://www.framer.com/academy/lessons/cookie-banner-component#:~:text=Run%20a%20Tag%20After%20The%20Consent%20Update\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;if(!defaultsFromGTM)return;if(defaultConsent===null)return;if(state.initializedFromGTM)return;if(state.modes!==null)return;// State was already set (from localStorage)\nyieldBeforeCb(()=>{dispatch({type:\"initFromGTM\",modes:defaultConsent});},{priority:\"user-blocking\"});},[defaultsFromGTM,defaultConsent,state.initializedFromGTM,state.modes]);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;if(!state.sync)return;const shouldSync=isBrowser&&state.modes!==null;yieldBeforeCb(()=>{if(!shouldSync){dispatch({type:\"synced\",success:false});return;}// else\nsyncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\",success:true});},{priority:\"user-blocking\"});},[state.sync,state.modes]);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||state.initializedFromGTM,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}////////////////////////////////////////////////////////////////////////////////\nconst PROMISE_NAME=\"__framer_cookieBannerDefaultConsentPromise\";// NOTE: Error can be ignored, because of `isBrowser`\nconst gtmSetsDefaultConsent=isBrowser&&!!window[PROMISE_NAME];export function useGTMDefaultConsent(){const[consent,setConsent]=useState(null);useEffect(()=>{if(!gtmSetsDefaultConsent)return;window[PROMISE_NAME].then(result=>{startTransition(()=>{setConsent(result);});});},[]);// Simplified region to use for the cookie banner\nlet region;if(consent){region=Object.values(consent).every(v=>v===\"granted\")?\"World\":\"EU\";}return{available:gtmSetsDefaultConsent,consent:consent?fromGTMConsent(consent):null,region};}\nexport const __FramerMetadata__ = {\"exports\":{\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useGTMDefaultConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map","// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\"];const isInEUTimezone=()=>{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/Nhaar5CYKIbxxEaVvTJs/inEU.js\";export function useRegion({content,useRegionFromProps,skipEUCheck,regionFromGTM}){const isInEUBasedOnLocation=isBrowser&&!skipEUCheck&&!regionFromGTM?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[regionFromGTM?regionFromGTM:useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./region.map","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,useGTMDefaultConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/dsQTNWNk09IMnZEHMfzP/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/atthcI0SmGvO4HAxG9e5/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/6ViXEDlSyuNyc0Na4Rzv/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/Nhaar5CYKIbxxEaVvTJs/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 gtmDefaults=useGTMDefaultConsent();const region=useRegion({content,useRegionFromProps:isPreview,// skip EU check (expensive) if we are on the canvas and don't want a preview\nskipEUCheck:skipLogic,regionFromGTM:gtmDefaults.region});const consent=useConsent({gtmId,defaultConsent:gtmDefaults.available?gtmDefaults.consent:region.defaults,gtmLoadedExternally,defaultsFromGTM:gtmDefaults.available});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’t 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’t 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\":{\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Image}from\"framer\";import{motion}from\"framer-motion\";import{useState,useEffect,useRef}from\"react\";import Cookies from\"js-cookie\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Sun and moon icons from tabler-icons.io\nconst THEME_ATTRIBUTE=\"framestack-theme\";const COOKIE_NAME=\"framestack-theme\";const STYLE_ID=\"framestack-theme-toggle\";const SIGNAL_NAME=\"framestack-theme-changed\";const THEMES=[\"light\",\"dark\",\"deviceTheme\"];const useThemeStore=createStore(\"deviceTheme\");function extractBodySection(inputString){const searchStr=\"body{\";const startIndex=inputString.indexOf(searchStr);if(startIndex!==-1){const endIndex=inputString.indexOf(\"}\",startIndex+searchStr.length);if(endIndex!==-1){const bodySection=inputString.substring(startIndex+searchStr.length,endIndex);return bodySection;}}return null// Return null if \"body{\" or \"}\" is not found\n;}function makeBorderStyle(border){return border?{borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color}:[];}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n */export default function ThemeToggle(props){const{toggle,dropdown,dropdownOptions,icons,transition}=props;let isPreview=false;let initialTheme=props.defaultTheme;if(typeof document!==\"undefined\"){if(document.body.hasAttribute(\"data-framer-theme\")){if(initialTheme==\"deviceTheme\"){initialTheme=document.body.getAttribute(\"data-framer-theme\");}isPreview=true;}else if(document.body.hasAttribute(THEME_ATTRIBUTE)){initialTheme=document.body.getAttribute(THEME_ATTRIBUTE);}else if(props.saveTheme){const storedTheme=Cookies.get(COOKIE_NAME);if(THEMES.includes(storedTheme)){initialTheme=storedTheme;}}}let deviceTheme=\"light\";if(isPreview&&document.body.hasAttribute(\"data-framer-theme\")){deviceTheme=document.body.getAttribute(\"data-framer-theme\");}else if(typeof window!=\"undefined\"&&window?.matchMedia){deviceTheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";}const[theme,setTheme]=useThemeStore();const[activeTheme,setActiveTheme]=useState(initialTheme==\"deviceTheme\"?deviceTheme:initialTheme)// light or dark\n;const[originalPreviewTheme,setOriginalPreviewTheme]=useState(initialTheme);const themeRef=useRef(theme);const selectRef=useRef(null);function changeTheme(newTheme){let newActiveTheme=newTheme;if(newTheme==\"deviceTheme\"){if(isPreview){newActiveTheme=originalPreviewTheme;}else{newActiveTheme=deviceTheme;}}setTheme(newTheme);setActiveTheme(newActiveTheme);if(isPreview){document.body.setAttribute(\"data-framer-theme\",newActiveTheme);}document.body.setAttribute(THEME_ATTRIBUTE,newTheme);document.documentElement.setAttribute(THEME_ATTRIBUTE,newTheme);if(props.saveTheme){Cookies.set(COOKIE_NAME,newTheme,{expires:365})// Expires in 1 year\n;}window.dispatchEvent(new CustomEvent(SIGNAL_NAME));}function toggleTheme(){const newActiveTheme=activeTheme==\"light\"?\"dark\":\"light\";if(props.resetToDeviceTheme){changeTheme(newActiveTheme==deviceTheme?\"deviceTheme\":newActiveTheme);}else{changeTheme(newActiveTheme);}}function onSelectChange(){if(selectRef.current){changeTheme(THEMES[selectRef.current.selectedIndex]);}}const handleThemeChange=event=>{if(themeRef.current==\"deviceTheme\"){setActiveTheme(event.matches?\"dark\":\"light\");}};useEffect(()=>{themeRef.current=theme// Update the ref whenever the theme state changes\n;if(theme==\"deviceTheme\"){if(isPreview){setActiveTheme(originalPreviewTheme);}else{setActiveTheme(deviceTheme);}}else{setActiveTheme(theme);}},[theme]);useEffect(()=>{if(initialTheme!=theme){changeTheme(initialTheme);}// const themeAttr = document.body.getAttribute(THEME_ATTRIBUTE)\n// if (themeAttr) {\n//     changeTheme(themeAttr)\n// }\nconst mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");mediaQuery.addEventListener(\"change\",handleThemeChange);if(!isPreview){let generateStyle=true;// Check if <head> already has theme attribute\nconst headElement=document.querySelector(\"head\");if(headElement){if(headElement.querySelector(`style#${STYLE_ID}`)){generateStyle=false;}}// Generate <style> with color styles\nif(generateStyle){let style=document.querySelector(\"style[data-framer-css-ssr]\")??document.querySelector(\"style[data-framer-css-ssr-minified]\");if(style&&style?.textContent){const styleText=style.textContent;let darkLocation=styleText.indexOf(\"@media (prefers-color-scheme: dark){body{--token\");if(darkLocation===-1){darkLocation=styleText.indexOf(\"@media (prefers-color-scheme:dark){body{--token\");}if(darkLocation!==-1){var styleElement=document.createElement(\"style\");styleElement.id=STYLE_ID;styleElement.textContent=`body[${THEME_ATTRIBUTE}=\"light\"] {${extractBodySection(styleText)}} body[${THEME_ATTRIBUTE}=\"dark\"] {${extractBodySection(styleText.substring(darkLocation))}} ${props.setColorScheme?`html {color-scheme: light dark; } html[${THEME_ATTRIBUTE}=\"light\"] { color-scheme: light; } html[${THEME_ATTRIBUTE}=\"dark\"] { color-scheme: dark; } `:\"\"}`;document.head.appendChild(styleElement);}}}}return()=>mediaQuery.removeEventListener(\"change\",handleThemeChange);},[]);switch(props.componentStyle){case\"toggle\":const{height,padding,shadow}=toggle;return /*#__PURE__*/_jsxs(motion.div,{onClick:toggleTheme,style:{position:\"relative\",minHeight:height,minWidth:height*2-padding*2,backgroundColor:toggle.fill,padding:padding,borderRadius:toggle.radius,color:icons?.color,cursor:\"pointer\",...props.style},layout:false,whileHover:{color:icons?.hoverColor||icons?.color},initial:false,transition:transition,children:[props.border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,boxSizing:\"border-box\",borderRadius:toggle.radius,...makeBorderStyle(props.border)}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",height:height-padding*2,aspectRatio:1,[activeTheme==\"light\"?\"left\":\"right\"]:padding,backgroundColor:toggle.switch,borderRadius:toggle.radius-padding,boxShadow:shadow?`${shadow.x}px ${shadow.y}px ${shadow.blur}px ${shadow.spread}px ${shadow.color}`:\"none\",boxSizing:\"border-box\",...makeBorderStyle(toggle.switchBorder)},layout:true,initial:false,transition:transition,children:icons&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,style:{position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\"},...icons})})})]});case\"dropdown\":const{showDeviceTheme}=dropdownOptions;const themeTitles={light:dropdownOptions.lightText,dark:dropdownOptions.darkText,deviceTheme:dropdownOptions.deviceThemeText};return /*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",flexDirection:\"row\",gap:dropdown.gap,alignItems:\"center\",justifyContent:\"space-between\",backgroundColor:dropdown.fill,color:dropdown.fontColor,borderRadius:dropdown.radiusIsMixed?`${dropdown.radiusTopLeft}px ${dropdown.radiusTopRight}px ${dropdown.radiusBottomRight}px ${dropdown.radiusBottomLeft}px`:`${dropdown.radius}px`,padding:dropdown.paddingIsMixed?`${dropdown.paddingTopLeft}px ${dropdown.paddingTopRight}px ${dropdown.paddingBottomRight}px ${dropdown.paddingBottomLeft}px`:`${dropdown.padding}px`,userSelect:\"none\",boxSizing:\"border-box\",cursor:\"pointer\",\"--icon-color\":icons?.color,...makeBorderStyle(props.border),...dropdown.font,...props.style},whileHover:{color:dropdown.fontColorHover||dropdown.fontColor,\"--icon-color\":icons?.hoverColor||icons?.color},initial:false,transition:transition,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:dropdown.gap,textWrap:props.style?.width==\"100%\"?\"wrap\":\"nowrap\"},children:[icons&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,...props.icons,style:{color:\"var(--icon-color)\"}})}),!showDeviceTheme&&theme==\"deviceTheme\"?themeTitles[deviceTheme]:themeTitles[theme]]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\",color:dropdown.arrow},children:dropdown.arrow&&/*#__PURE__*/_jsx(Icon,{theme:\"arrow\",size:18})}),/*#__PURE__*/_jsxs(\"select\",{ref:selectRef,name:\"theme\",onChange:onSelectChange,style:{position:\"absolute\",inset:0,opacity:0},children:[/*#__PURE__*/_jsx(\"option\",{value:\"light\",selected:theme==\"light\"||!showDeviceTheme&&deviceTheme==\"light\",children:themeTitles.light}),/*#__PURE__*/_jsx(\"option\",{value:\"dark\",selected:theme==\"dark\"||!showDeviceTheme&&deviceTheme==\"dark\",children:themeTitles.dark}),showDeviceTheme&&/*#__PURE__*/_jsx(\"option\",{value:\"deviceTheme\",selected:theme==\"deviceTheme\",children:themeTitles.deviceTheme})]})]});case\"custom\":return /*#__PURE__*/_jsx(\"div\",{onClick:toggleTheme,children:activeTheme==\"light\"?props.customLight:props.customDark});}}ThemeToggle.displayName=\"Theme Toggle\";const borderControls={color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}};const toggleShadowDefault={color:\"rgba(0, 0, 0, 0.2)\",x:0,y:2,blur:4,spread:0};const iconsDefault={type:\"default\",color:\"#333333\",size:18,opacity:1};addPropertyControls(ThemeToggle,{defaultTheme:{type:ControlType.Enum,defaultValue:\"deviceTheme\",options:[\"deviceTheme\",\"light\",\"dark\"],optionTitles:[\"Device Theme\",\"Light\",\"Dark\"],title:\"Default\"},saveTheme:{type:ControlType.Boolean,defaultValue:true,title:\"Save Cookie\"},componentStyle:{type:ControlType.Enum,defaultValue:\"toggle\",options:[\"toggle\",\"dropdown\",\"custom\"],optionTitles:[\"Toggle\",\"Dropdown\",\"Custom\"],title:\"Style\"},toggle:{type:ControlType.Object,buttonTitle:\"Options\",icon:\"boolean\",controls:{height:{type:ControlType.Number,defaultValue:32,min:1,step:1},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},switch:{type:ControlType.Color,defaultValue:\"#FFF\"},switchBorder:{type:ControlType.Object,optional:true,controls:borderControls},shadow:{type:ControlType.Object,defaultValue:toggleShadowDefault,optional:true,controls:{color:{type:ControlType.Color,defaultValue:toggleShadowDefault.color},x:{type:ControlType.Number,defaultValue:toggleShadowDefault.x,displayStepper:true},y:{type:ControlType.Number,defaultValue:toggleShadowDefault.y,displayStepper:true},blur:{type:ControlType.Number,defaultValue:toggleShadowDefault.blur,min:0,displayStepper:true},spread:{type:ControlType.Number,defaultValue:toggleShadowDefault.spread,displayStepper:true}}},padding:{type:ControlType.Number,defaultValue:4,min:0,step:1,displayStepper:true},radius:{type:ControlType.Number,defaultValue:16,min:0}},hidden:props=>props.componentStyle!==\"toggle\"},dropdown:{type:ControlType.Object,buttonTitle:\"Options\",controls:{fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},fontColor:{type:ControlType.Color,defaultValue:\"#000\"},fontColorHover:{type:ControlType.Color,optional:true,title:\"Hover Font Color\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},arrow:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\",optional:true},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1},padding:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTopLeft\",\"paddingTopRight\",\"paddingBottomRight\",\"paddingBottomLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0}},hidden:props=>props.componentStyle!==\"dropdown\"},dropdownOptions:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Options\",// buttonTitle: \"Options\",\ncontrols:{showDeviceTheme:{type:ControlType.Boolean,defaultValue:true},deviceThemeText:{type:ControlType.String,defaultValue:\"Device Theme\",hidden:props=>!props.showDeviceTheme},lightText:{type:ControlType.String,defaultValue:\"Light\"},darkText:{type:ControlType.String,defaultValue:\"Dark\"}},hidden:props=>props.componentStyle!==\"dropdown\"},icons:{type:ControlType.Object,defaultValue:iconsDefault,optional:true,controls:{type:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"svg\",\"image\"],optionTitles:[\"Default\",\"SVG\",\"Image\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},lightSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Light SVG\",hidden:props=>props.type!=\"svg\"},darkSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Dark SVG\",hidden:props=>props.type!=\"svg\"},lightImage:{type:ControlType.ResponsiveImage,title:\"Light\",hidden:props=>props.type!=\"image\"},darkImage:{type:ControlType.ResponsiveImage,title:\"Dark\",hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"fill\",\"fit\",\"stretch\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},color:{type:ControlType.Color,defaultValue:iconsDefault.color,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},hoverColor:{type:ControlType.Color,optional:true,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},size:{type:ControlType.Number,defaultValue:iconsDefault.size,min:1,step:1,displayStepper:true},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}},hidden:props=>props.componentStyle==\"custom\"},border:{type:ControlType.Object,optional:true,controls:borderControls,hidden:props=>props.componentStyle==\"custom\"},customLight:{type:ControlType.ComponentInstance,title:\"Light\",hidden:props=>props.componentStyle!==\"custom\"},customDark:{type:ControlType.ComponentInstance,title:\"Dark\",hidden:props=>props.componentStyle!==\"custom\"},resetToDeviceTheme:{type:ControlType.Boolean,defaultValue:true,// description:\n//     \"Uses the device theme when the toggle is switched to the current device theme.\",\nhidden:props=>props.componentStyle!==\"toggle\"},setColorScheme:{type:ControlType.Boolean,defaultValue:true,title:\"Theme Scroll Bars\"},transition:{type:ControlType.Transition,hidden:props=>props.type==\"custom\"}});function Icon(props){const{theme,type,size,lightSvg,darkSvg,lightImage,darkImage,sizing,opacity,style={}}=props;switch(type){case\"svg\":if(theme==\"light\"&&!lightSvg.length||theme==\"dark\"&&!darkSvg.length){return /*#__PURE__*/_jsx(\"div\",{});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"theme-toggle-icon\",style:{width:size,height:size,opacity,pointerEvents:\"none\",...style},dangerouslySetInnerHTML:{__html:(theme==\"light\"?lightSvg:darkSvg).replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}}),/*#__PURE__*/_jsx(\"style\",{children:`.theme-toggle-icon svg { display: block; }`})]});case\"image\":return /*#__PURE__*/_jsx(Image,{background:{fit:sizing,...theme==\"light\"?lightImage:darkImage},style:{opacity,width:size,height:size,...style}});case\"default\":return /*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",strokeWidth:\"2\",stroke:\"currentColor\",fill:\"none\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{opacity,...style},children:[/*#__PURE__*/_jsx(\"path\",{stroke:\"none\",d:\"M0 0h24v24H0z\",fill:\"none\"}),theme==\"light\"?[/*#__PURE__*/_jsx(\"path\",{d:\"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z\",strokeWidth:\"0\",fill:\"currentColor\"})]:theme==\"dark\"?/*#__PURE__*/_jsx(\"path\",{d:\"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z\",strokeWidth:\"0\",fill:\"currentColor\"}):// Arrow\n/*#__PURE__*/_jsx(\"path\",{d:\"M6 9l6 6l6 -6\"})]});}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeToggle\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeToggle.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Facebook\";export const v1='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 8.2 14\">   <path d=\"M1.86,8.18v5.82h3.26v-5.82h2.43l.51-2.67h-2.94v-.95c0-1.41.57-1.96,2.04-1.96.46,0,.83.01,1.04.03V.22c-.4-.11-1.39-.22-1.95-.22C3.24,0,1.86,1.38,1.86,4.36v1.15H0v2.67h1.86Z\"/> </svg>';export const v2=\"Instagram\";export const v3='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.01 12.25\">   <path d=\"M6,2.98c-1.7,0-3.08,1.4-3.08,3.14s1.37,3.14,3.08,3.14,3.08-1.4,3.08-3.14-1.37-3.14-3.08-3.14ZM6,8.17c-1.1,0-2-.92-2-2.04s.9-2.04,2-2.04,2,.92,2,2.04-.9,2.04-2,2.04ZM9.93,2.86c0,.41-.32.73-.72.73s-.72-.33-.72-.73.32-.73.72-.73.72.33.72.73ZM11.96,3.6c-.05-.98-.27-1.85-.97-2.57-.7-.72-1.55-.94-2.52-.99C7.49-.01,4.52-.01,3.53.04c-.96.05-1.81.27-2.52.99C.31,1.75.09,2.62.04,3.6-.01,4.61-.01,7.64.04,8.65c.05.98.27,1.85.97,2.57.7.72,1.55.94,2.52.99.99.06,3.96.06,4.95,0,.96-.05,1.81-.27,2.52-.99.7-.72.92-1.59.97-2.57.06-1.01.06-4.04,0-5.05ZM10.68,9.74c-.21.54-.61.95-1.14,1.16-.79.32-2.67.25-3.54.25s-2.75.07-3.54-.25c-.52-.21-.93-.63-1.14-1.16-.31-.81-.24-2.72-.24-3.61s-.07-2.81.24-3.61c.21-.54.61-.95,1.14-1.16.79-.32,2.67-.25,3.54-.25s2.75-.07,3.54.25c.52.21.93.63,1.14,1.16.31.81.24,2.72.24,3.61s.07,2.81-.24,3.61Z\"/> </svg>';export const v4=\"LinkedIn\";export const v5='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12 12\">   <path d=\"M2.69,12H.2V3.99h2.49v8.01ZM1.44,2.9c-.79,0-1.44-.66-1.44-1.45S.64,0,1.44,0s1.44.64,1.44,1.44-.64,1.45-1.44,1.45ZM12,12h-2.48v-3.9c0-.93-.02-2.12-1.29-2.12s-1.49,1.01-1.49,2.05v3.97h-2.49V3.99h2.39v1.09h.03c.33-.63,1.14-1.29,2.36-1.29,2.52,0,2.98,1.66,2.98,3.81v4.4h0Z\"/> </svg>';export const v6=\"YouTube\";export const v7='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.8 9\">   <path d=\"M12.8,4.51s0,2.1-.27,3.1c-.15.55-.58.97-1.13,1.12-1,.27-5,.27-5,.27,0,0-4,0-5-.27-.55-.15-.98-.57-1.13-1.12-.27-1-.27-3.1-.27-3.1,0,0,0-2.1.27-3.1C.42.85.85.42,1.4.27c1-.27,5-.27,5-.27,0,0,4,0,5,.27.55.15.98.58,1.13,1.14.27,1,.27,3.1.27,3.1ZM8.44,4.51l-3.35-1.9v3.81l3.35-1.9Z\"/> </svg>';export const v8=\"X\";export const v9='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.58 11.37\">   <path d=\"M9.91,0h1.93l-4.22,4.82,4.96,6.56h-3.88l-3.04-3.98-3.48,3.98H.25l4.51-5.15L0,0h3.98l2.75,3.63,3.18-3.63ZM9.23,10.22h1.07L3.4,1.09h-1.15l6.98,9.13Z\"/> </svg>';export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-eo96yc\",\"data-styles-preset\":\"SCUlvvE18\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 130, 169))\"},children:\"Suscr\\xedbete a nuestro bolet\\xedn\"})});export const v11=\"name@email.com\";export const v12=\"Reg\\xedstrate\";export const v13=\"Tienda de NCA\";export const v14=\"Tema del Dispositivo\";export const v15=\"Luz\";export const v16=\"Oscuro\";export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Recursos\"})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"ofjqhQqBT\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Seguridad y Privacidad\"})})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BX4bb_lyI\"},motionChild:true,nodeId:\"LhfDnu1Lz\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Carreras y Educaci\\xf3n\"})})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ao8GNqywE\"},motionChild:true,nodeId:\"fAps4uwSj\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ciberseguridad para Negocios\"})})})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E7o7lEW0h\",webPageId:\"jKLB8pqwn\"},motionChild:true,nodeId:\"p49Q7cDVI\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Diccionario de Ciberseguridad\"})})})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":a5uR9W5i0\",webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"mpjAfdoPf\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kits de herramientas\"})})})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zMF0z1pDD\"},motionChild:true,nodeId:\"lgWXt1WD2\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Todos los art\\xedculos y recursos\"})})})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K2zLKiWnT\"},motionChild:true,nodeId:\"CNtNBsdnX\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Todos los relatos de prensa y premios\"})})})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Iniciativas\"})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lwllYTr4U\"},motionChild:true,nodeId:\"GJsFoAV6t\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Semana de la Privacidad de Datos\"})})})});export const v27=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"stLL9reWP\"},motionChild:true,nodeId:\"EV2gYPRIY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Convene\"})})})});export const v29=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ihXsHGkCF\"},motionChild:true,nodeId:\"vOMHcgVgL\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Mes de la Concientizaci\\xf3n sobre la Ciberseguridad\"})})})});export const v31=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UuvQ490Ja\"},motionChild:true,nodeId:\"Rgc0mtRUW\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Todos los eventos\"})})})});export const v32=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Nosotros\"})});export const v33=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x5EYaq8Gh\"},motionChild:true,nodeId:\"xh0z06teu\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Donar\"})})})});export const v34=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ty32Z8sfz\"},motionChild:true,nodeId:\"JfU6QbFIZ\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Colaborar\"})})})});export const v35=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fQW5RCxNa\"},motionChild:true,nodeId:\"Kh7yYfZti\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Solicitar un orador\"})})})});export const v36=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r9_Mv9gTz\"},motionChild:true,nodeId:\"wVAk6vh0z\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Patrocinador\"})})})});export const v37=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"EVXpDZHBB\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"NCA\"})})})});export const v38=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cont\\xe1ctenos\"})})})});export const v39=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cont\\xe1ctenos\"})})})});export const v40=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Campa\\xf1as Especiales\"})});export const v41=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mfDqfdYcC\"},motionChild:true,nodeId:\"G779xY3NY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Gu\\xeda de Supervivencia\"})})})});export const v42=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rrPNaSvtO\"},motionChild:true,nodeId:\"JNPQzITzH\",openInNewTab:true,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kubikle\"})})})});export const v43=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Id4VOdDxC\"},motionChild:true,nodeId:\"VcNX1ulBy\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Palabra Clave\"})})})});export const v44=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g8af1gOCV\"},motionChild:true,nodeId:\"Tvv5niDl_\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Antes & Ahora\"})})})});export const v45=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Direcci\\xf3n postal: 717 Coliseum Drive NW, Winston-Salem, NC 27106\"})});export const v47=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Derechos de autor. Mantente seguro en l\\xednea, NCA. Todos los derechos reservados.\"})});export const v48=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Pol\\xedtica de Privacidad\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"C\\xf3digo de Conducta\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Recursos de Marca\"})})]})});export const v49=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Pol\\xedtica de Privacidad\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"C\\xf3digo de Conducta\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Recursos de Marca\"})})]})});export const v50=\"Configuraci\\xf3n de cookies\";export const v51=\"Aceptar\";export const v52=\"Rechazar\";export const v53=\"Aceptar todo\";export const v54=\"Rechazar todo\";export const v55=\"Personalizar\";export const v56=\"Guardar preferencias\";export const v57=\"De acuerdo\";export const v58=\"Usamos cookies para mejorar tu experiencia, analizar el tr\\xe1fico del sitio, y ofrecer contenido personalizado, como guardar tus art\\xedculos favoritos.\";export const v59=\"Lee nuestro\";export const v60=\"Pol\\xedtica de Privacidad\";export const v61=\"Pol\\xedtica de Cookies\";export const v62=\"NECESARIO\";export const v63=\"Habilita la seguridad y funcionalidad b\\xe1sica.\";export const v64=\"PREFERENCIAS\";export const v65=\"Permite contenido y configuraciones personalizadas.\";export const v66=\"ANAL\\xcdTICA\";export const v67=\"Permite el seguimiento del rendimiento.\";export const v68=\"MARKETING\";export const v69=\"Permite la personalizaci\\xf3n y el seguimiento de anuncios.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v55\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v67\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v62\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v58\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v64\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v66\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v54\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v56\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v60\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v63\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v61\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v57\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v59\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v53\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v69\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v52\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v65\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v68\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Facebook\";export const v1='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 8.2 14\">   <path d=\"M1.86,8.18v5.82h3.26v-5.82h2.43l.51-2.67h-2.94v-.95c0-1.41.57-1.96,2.04-1.96.46,0,.83.01,1.04.03V.22c-.4-.11-1.39-.22-1.95-.22C3.24,0,1.86,1.38,1.86,4.36v1.15H0v2.67h1.86Z\"/> </svg>';export const v2=\"Instagram\";export const v3='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.01 12.25\">   <path d=\"M6,2.98c-1.7,0-3.08,1.4-3.08,3.14s1.37,3.14,3.08,3.14,3.08-1.4,3.08-3.14-1.37-3.14-3.08-3.14ZM6,8.17c-1.1,0-2-.92-2-2.04s.9-2.04,2-2.04,2,.92,2,2.04-.9,2.04-2,2.04ZM9.93,2.86c0,.41-.32.73-.72.73s-.72-.33-.72-.73.32-.73.72-.73.72.33.72.73ZM11.96,3.6c-.05-.98-.27-1.85-.97-2.57-.7-.72-1.55-.94-2.52-.99C7.49-.01,4.52-.01,3.53.04c-.96.05-1.81.27-2.52.99C.31,1.75.09,2.62.04,3.6-.01,4.61-.01,7.64.04,8.65c.05.98.27,1.85.97,2.57.7.72,1.55.94,2.52.99.99.06,3.96.06,4.95,0,.96-.05,1.81-.27,2.52-.99.7-.72.92-1.59.97-2.57.06-1.01.06-4.04,0-5.05ZM10.68,9.74c-.21.54-.61.95-1.14,1.16-.79.32-2.67.25-3.54.25s-2.75.07-3.54-.25c-.52-.21-.93-.63-1.14-1.16-.31-.81-.24-2.72-.24-3.61s-.07-2.81.24-3.61c.21-.54.61-.95,1.14-1.16.79-.32,2.67-.25,3.54-.25s2.75-.07,3.54.25c.52.21.93.63,1.14,1.16.31.81.24,2.72.24,3.61s.07,2.81-.24,3.61Z\"/> </svg>';export const v4=\"LinkedIn\";export const v5='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12 12\">   <path d=\"M2.69,12H.2V3.99h2.49v8.01ZM1.44,2.9c-.79,0-1.44-.66-1.44-1.45S.64,0,1.44,0s1.44.64,1.44,1.44-.64,1.45-1.44,1.45ZM12,12h-2.48v-3.9c0-.93-.02-2.12-1.29-2.12s-1.49,1.01-1.49,2.05v3.97h-2.49V3.99h2.39v1.09h.03c.33-.63,1.14-1.29,2.36-1.29,2.52,0,2.98,1.66,2.98,3.81v4.4h0Z\"/> </svg>';export const v6=\"YouTube\";export const v7='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.8 9\">   <path d=\"M12.8,4.51s0,2.1-.27,3.1c-.15.55-.58.97-1.13,1.12-1,.27-5,.27-5,.27,0,0-4,0-5-.27-.55-.15-.98-.57-1.13-1.12-.27-1-.27-3.1-.27-3.1,0,0,0-2.1.27-3.1C.42.85.85.42,1.4.27c1-.27,5-.27,5-.27,0,0,4,0,5,.27.55.15.98.58,1.13,1.14.27,1,.27,3.1.27,3.1ZM8.44,4.51l-3.35-1.9v3.81l3.35-1.9Z\"/> </svg>';export const v8=\"X\";export const v9='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.58 11.37\">   <path d=\"M9.91,0h1.93l-4.22,4.82,4.96,6.56h-3.88l-3.04-3.98-3.48,3.98H.25l4.51-5.15L0,0h3.98l2.75,3.63,3.18-3.63ZM9.23,10.22h1.07L3.4,1.09h-1.15l6.98,9.13Z\"/> </svg>';export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-eo96yc\",\"data-styles-preset\":\"SCUlvvE18\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 130, 169))\"},children:\"Inscreva-se em nossa newsletter\"})});export const v11=\"name@email.com\";export const v12=\"Inscrever-se\";export const v13=\"Loja NCA\";export const v14=\"Tema do Dispositivo\";export const v15=\"Luz\";export const v16=\"Escuro\";export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Recursos\"})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"ofjqhQqBT\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Seguran\\xe7a e Privacidade Online\"})})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BX4bb_lyI\"},motionChild:true,nodeId:\"LhfDnu1Lz\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Carreiras e Educa\\xe7\\xe3o \"})})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ao8GNqywE\"},motionChild:true,nodeId:\"fAps4uwSj\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ciberseguran\\xe7a para Neg\\xf3cios\"})})})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E7o7lEW0h\",webPageId:\"jKLB8pqwn\"},motionChild:true,nodeId:\"p49Q7cDVI\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Dicion\\xe1rio Cibern\\xe9tico\"})})})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":a5uR9W5i0\",webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"mpjAfdoPf\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kits de Ferramentas\"})})})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zMF0z1pDD\"},motionChild:true,nodeId:\"lgWXt1WD2\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Todos os Artigos e Recursos\"})})})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K2zLKiWnT\"},motionChild:true,nodeId:\"CNtNBsdnX\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Todas as Hist\\xf3rias de Imprensa e Pr\\xeamios\"})})})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Iniciativas\"})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lwllYTr4U\"},motionChild:true,nodeId:\"GJsFoAV6t\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Semana da Privacidade de Dados\"})})})});export const v27=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"stLL9reWP\"},motionChild:true,nodeId:\"EV2gYPRIY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Convene\"})})})});export const v28=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BVOZV9Mrs\"},motionChild:true,nodeId:\"oD36i5QuV\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"CyberSecure My Business\"})})})});export const v29=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ihXsHGkCF\"},motionChild:true,nodeId:\"vOMHcgVgL\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"M\\xeas de Conscientiza\\xe7\\xe3o sobre Ciberseguran\\xe7a\"})})})});export const v30=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UpfzxsDV5\"},motionChild:true,nodeId:\"f0J8DoAwp\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"See Yourself in Cyber\"})})})});export const v31=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UuvQ490Ja\"},motionChild:true,nodeId:\"Rgc0mtRUW\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Todos os Eventos\"})})})});export const v32=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Sobre N\\xf3s\"})});export const v33=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x5EYaq8Gh\"},motionChild:true,nodeId:\"xh0z06teu\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Doar\"})})})});export const v34=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ty32Z8sfz\"},motionChild:true,nodeId:\"JfU6QbFIZ\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Colaborar\"})})})});export const v35=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fQW5RCxNa\"},motionChild:true,nodeId:\"Kh7yYfZti\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Solicitar um Palestrante\"})})})});export const v36=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r9_Mv9gTz\"},motionChild:true,nodeId:\"wVAk6vh0z\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Patrocinador\"})})})});export const v37=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"EVXpDZHBB\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"A NCA\"})})})});export const v38=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Contate-Nos\"})})})});export const v39=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Contate-Nos\"})})})});export const v40=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Campanhas Especiais\"})});export const v41=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mfDqfdYcC\"},motionChild:true,nodeId:\"G779xY3NY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Guia de Sobreviv\\xeancia\"})})})});export const v42=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rrPNaSvtO\"},motionChild:true,nodeId:\"JNPQzITzH\",openInNewTab:true,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kubikle\"})})})});export const v43=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Id4VOdDxC\"},motionChild:true,nodeId:\"VcNX1ulBy\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Palavra Segura\"})})})});export const v44=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g8af1gOCV\"},motionChild:true,nodeId:\"Tvv5niDl_\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ent\\xe3o & Agora\"})})})});export const v45=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Endere\\xe7o de correspond\\xeancia: 717 Coliseum Drive NW, Winston-Salem, NC 27106\"})});export const v47=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Direitos autorais. Fique Seguro Online, NCA. Todos os direitos reservados.\"})});export const v48=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Pol\\xedtica de Privacidade\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"C\\xf3digo de Conduta\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ativos de Marca\"})})]})});export const v49=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Pol\\xedtica de Privacidade\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"C\\xf3digo de Conduta\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ativos da Marca\"})})]})});export const v50=\"Configura\\xe7\\xf5es de Cookies\";export const v51=\"Aceitar\";export const v52=\"Rejeitar\";export const v53=\"Aceitar Todos\";export const v54=\"Rejeitar todos\";export const v55=\"Customizar\";export const v56=\"Salvar prefer\\xeancias\";export const v57=\"OK\";export const v58=\"Utilizamos cookies para melhorar sua experi\\xeancia, analisar o tr\\xe1fego do site e fornecer conte\\xfado personalizado, como salvar seus itens favoritos.\";export const v59=\"Leia o nosso\";export const v60=\"Pol\\xedtica de Privacidade\";export const v61=\"Pol\\xedtica de Cookies\";export const v62=\"NECESS\\xc1RIO\";export const v63=\"Permite seguran\\xe7a e funcionalidade b\\xe1sica.\";export const v64=\"PREFER\\xcaNCIAS\";export const v65=\"Permite conte\\xfado e configura\\xe7\\xf5es personalizadas.\";export const v66=\"AN\\xc1LISE\";export const v67=\"Permite o rastreamento de desempenho.\";export const v68=\"MARKETING\";export const v69=\"Permite a personaliza\\xe7\\xe3o e o rastreamento de an\\xfancios.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v65\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v64\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v62\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v56\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v68\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v57\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v60\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v67\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v59\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v63\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v58\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v69\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v66\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v54\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v53\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v55\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v61\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v52\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Facebook\";export const v1='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 8.2 14\">   <path d=\"M1.86,8.18v5.82h3.26v-5.82h2.43l.51-2.67h-2.94v-.95c0-1.41.57-1.96,2.04-1.96.46,0,.83.01,1.04.03V.22c-.4-.11-1.39-.22-1.95-.22C3.24,0,1.86,1.38,1.86,4.36v1.15H0v2.67h1.86Z\"/> </svg>';export const v2=\"Instagram\";export const v3='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.01 12.25\">   <path d=\"M6,2.98c-1.7,0-3.08,1.4-3.08,3.14s1.37,3.14,3.08,3.14,3.08-1.4,3.08-3.14-1.37-3.14-3.08-3.14ZM6,8.17c-1.1,0-2-.92-2-2.04s.9-2.04,2-2.04,2,.92,2,2.04-.9,2.04-2,2.04ZM9.93,2.86c0,.41-.32.73-.72.73s-.72-.33-.72-.73.32-.73.72-.73.72.33.72.73ZM11.96,3.6c-.05-.98-.27-1.85-.97-2.57-.7-.72-1.55-.94-2.52-.99C7.49-.01,4.52-.01,3.53.04c-.96.05-1.81.27-2.52.99C.31,1.75.09,2.62.04,3.6-.01,4.61-.01,7.64.04,8.65c.05.98.27,1.85.97,2.57.7.72,1.55.94,2.52.99.99.06,3.96.06,4.95,0,.96-.05,1.81-.27,2.52-.99.7-.72.92-1.59.97-2.57.06-1.01.06-4.04,0-5.05ZM10.68,9.74c-.21.54-.61.95-1.14,1.16-.79.32-2.67.25-3.54.25s-2.75.07-3.54-.25c-.52-.21-.93-.63-1.14-1.16-.31-.81-.24-2.72-.24-3.61s-.07-2.81.24-3.61c.21-.54.61-.95,1.14-1.16.79-.32,2.67-.25,3.54-.25s2.75-.07,3.54.25c.52.21.93.63,1.14,1.16.31.81.24,2.72.24,3.61s.07,2.81-.24,3.61Z\"/> </svg>';export const v4=\"LinkedIn\";export const v5='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12 12\">   <path d=\"M2.69,12H.2V3.99h2.49v8.01ZM1.44,2.9c-.79,0-1.44-.66-1.44-1.45S.64,0,1.44,0s1.44.64,1.44,1.44-.64,1.45-1.44,1.45ZM12,12h-2.48v-3.9c0-.93-.02-2.12-1.29-2.12s-1.49,1.01-1.49,2.05v3.97h-2.49V3.99h2.39v1.09h.03c.33-.63,1.14-1.29,2.36-1.29,2.52,0,2.98,1.66,2.98,3.81v4.4h0Z\"/> </svg>';export const v6=\"YouTube\";export const v7='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.8 9\">   <path d=\"M12.8,4.51s0,2.1-.27,3.1c-.15.55-.58.97-1.13,1.12-1,.27-5,.27-5,.27,0,0-4,0-5-.27-.55-.15-.98-.57-1.13-1.12-.27-1-.27-3.1-.27-3.1,0,0,0-2.1.27-3.1C.42.85.85.42,1.4.27c1-.27,5-.27,5-.27,0,0,4,0,5,.27.55.15.98.58,1.13,1.14.27,1,.27,3.1.27,3.1ZM8.44,4.51l-3.35-1.9v3.81l3.35-1.9Z\"/> </svg>';export const v8=\"X\";export const v9='<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.58 11.37\">   <path d=\"M9.91,0h1.93l-4.22,4.82,4.96,6.56h-3.88l-3.04-3.98-3.48,3.98H.25l4.51-5.15L0,0h3.98l2.75,3.63,3.18-3.63ZM9.23,10.22h1.07L3.4,1.09h-1.15l6.98,9.13Z\"/> </svg>';export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-eo96yc\",\"data-styles-preset\":\"SCUlvvE18\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 130, 169))\"},children:\"Abonnez-vous \\xe0 notre newsletter\"})});export const v11=\"name@email.com\";export const v12=\"S'inscrire\";export const v13=\"Boutique NCA\";export const v14=\"Th\\xe8me de l'appareil\";export const v15=\"Lumi\\xe8re\";export const v16=\"Sombre\";export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Ressources\"})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"ofjqhQqBT\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"S\\xe9curit\\xe9 et confidentialit\\xe9 en ligne\"})})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BX4bb_lyI\"},motionChild:true,nodeId:\"LhfDnu1Lz\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Carri\\xe8res et \\xc9ducation\"})})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ao8GNqywE\"},motionChild:true,nodeId:\"fAps4uwSj\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cybers\\xe9curit\\xe9 pour les entreprises\"})})})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E7o7lEW0h\",webPageId:\"jKLB8pqwn\"},motionChild:true,nodeId:\"p49Q7cDVI\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Dictionnaire Cyber\"})})})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":a5uR9W5i0\",webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"mpjAfdoPf\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kit d'outils\"})})})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zMF0z1pDD\"},motionChild:true,nodeId:\"lgWXt1WD2\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Tous les articles et ressources\"})})})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K2zLKiWnT\"},motionChild:true,nodeId:\"CNtNBsdnX\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Tous les articles de presse et r\\xe9compenses\"})})})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Initiatives\"})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lwllYTr4U\"},motionChild:true,nodeId:\"GJsFoAV6t\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Semaine de la confidentialit\\xe9 des donn\\xe9es\"})})})});export const v27=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"stLL9reWP\"},motionChild:true,nodeId:\"EV2gYPRIY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Convene\"})})})});export const v28=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BVOZV9Mrs\"},motionChild:true,nodeId:\"oD36i5QuV\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"CyberSecure My Business\"})})})});export const v29=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ihXsHGkCF\"},motionChild:true,nodeId:\"vOMHcgVgL\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Mois de la sensibilisation \\xe0 la cybers\\xe9curit\\xe9\"})})})});export const v30=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UpfzxsDV5\"},motionChild:true,nodeId:\"f0J8DoAwp\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"See Yourself in Cyber\"})})})});export const v31=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UuvQ490Ja\"},motionChild:true,nodeId:\"Rgc0mtRUW\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Tous les \\xe9v\\xe9nements\"})})})});export const v32=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"\\xc0 propos\"})});export const v33=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x5EYaq8Gh\"},motionChild:true,nodeId:\"xh0z06teu\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Faire un don\"})})})});export const v34=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ty32Z8sfz\"},motionChild:true,nodeId:\"JfU6QbFIZ\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Collaborer\"})})})});export const v35=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fQW5RCxNa\"},motionChild:true,nodeId:\"Kh7yYfZti\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Demander un orateur\"})})})});export const v36=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r9_Mv9gTz\"},motionChild:true,nodeId:\"wVAk6vh0z\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Sponsor\"})})})});export const v37=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"EVXpDZHBB\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Le NCA\"})})})});export const v38=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Contactez-nous\"})})})});export const v39=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Contactez-nous\"})})})});export const v40=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Campagnes sp\\xe9ciales\"})});export const v41=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mfDqfdYcC\"},motionChild:true,nodeId:\"G779xY3NY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Guide de survie\"})})})});export const v42=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rrPNaSvtO\"},motionChild:true,nodeId:\"JNPQzITzH\",openInNewTab:true,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kubikle\"})})})});export const v43=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Id4VOdDxC\"},motionChild:true,nodeId:\"VcNX1ulBy\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Mot de passe s\\xe9curis\\xe9\"})})})});export const v44=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g8af1gOCV\"},motionChild:true,nodeId:\"Tvv5niDl_\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Avant & Maintenant\"})})})});export const v45=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Adresse postale\\xa0: 717 Coliseum Drive NW, Winston-Salem, NC 27106\"})});export const v46=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"\\xa9\"})});export const v47=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Copyright. Restez en s\\xe9curit\\xe9 en ligne, NCA. Tous droits r\\xe9serv\\xe9s.\"})});export const v48=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Politique de confidentialit\\xe9\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Code de conduite\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ressources de la marque\"})})]})});export const v49=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Politique de confidentialit\\xe9\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Code de conduite\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Ressources de la marque\"})})]})});export const v50=\"Param\\xe8tres des cookies\";export const v51=\"Accepter\";export const v52=\"Rejeter\";export const v53=\"Tout accepter\";export const v54=\"Tout refuser\";export const v55=\"Personnaliser\";export const v56=\"Enregistrer les pr\\xe9f\\xe9rences\";export const v57=\"D'accord\";export const v58=\"Nous utilisons des cookies pour am\\xe9liorer votre exp\\xe9rience, analyser le trafic du site et fournir du contenu personnalis\\xe9, comme enregistrer vos articles favoris.\";export const v59=\"Lisez notre\";export const v60=\"Politique de confidentialit\\xe9\";export const v61=\"Politique de Cookies\";export const v62=\"N\\xc9CESSAIRE\";export const v63=\"Permet la s\\xe9curit\\xe9 et la fonctionnalit\\xe9 de base.\";export const v64=\"PR\\xc9F\\xc9RENCES\";export const v65=\"Permet un contenu et des param\\xe8tres personnalis\\xe9s.\";export const v66=\"ANALYSES\";export const v67=\"Permet le suivi des performances.\";export const v68=\"MARKETING\";export const v69=\"Active la personnalisation des annonces et le suivi.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v60\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v59\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v52\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v58\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v57\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v66\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v63\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v64\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v55\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v61\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v46\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v54\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v65\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v67\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v62\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v56\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v53\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v69\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v68\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (df12877)\nimport*as localizedValues from\"./Mv6_4rTth-0.js\";import*as localizedValues1 from\"./Mv6_4rTth-1.js\";import*as localizedValues2 from\"./Mv6_4rTth-2.js\";const valuesByLocaleId={bs3EH3LTi:localizedValues,J2GUZckMJ:localizedValues2,NrJvIVnaW:localizedValues1};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (df12877)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,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 LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/fW26mCIOTpHHBOBnf7GZ/LocaleSelector.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/LJki37UjB5KBVYI60fjt/Cookies.js\";import ThemeToggle from\"https://framerusercontent.com/modules/tWxPGoauEDGvb60hKQfR/P8RtFxHSB1jdYdF6Os86/ThemeToggle.js\";import{AutoCopyrightStatement}from\"https://framerusercontent.com/modules/pvzFeyc6vuEgzz7x545U/sfqC3gBF4aOLWjnFL03Y/CopyrightYear.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zbVipZ0mwlPBvBOPsXsF/cg6juxZKkla6Yj1KUWi4/JO7H48w_P.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4Q7om9jKETeHOC1tAtiE/clH4A9wAb0CyFk6Zva4p/SCUlvvE18.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/d3bubwf0y3mM94Y4l6XN/fhmaMDjFvRCpc9hA297f/SGs3ZEGv7.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/mCSJpBV2KF5MRgY6eYQ4/HZZ4vb3JX2ibO41elvG0/tCM22y3KC.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/XKT3lN1rkqsBMvQgRkH5/CSDzDQP0qoZnZaXhPcSm/Mv6_4rTth.js\";import BtnMain from\"https://framerusercontent.com/modules/uPQ8cIvtNICtGHL0hbTL/ym5t9wthUPh5UZalENtH/C2yugTBjc.js\";import BtnLink from\"https://framerusercontent.com/modules/6qQAkAJdMKcWlH1YHgGd/73I9EEM7fZ7kOyTkrMUA/OSy0LCYpn.js\";import FormTextField from\"https://framerusercontent.com/modules/nXgd7K4VTkVzCHDPGTrf/ESO400iVe1QnAoDx5TgS/tQ39aSBmI.js\";import FormSubmit from\"https://framerusercontent.com/modules/aoOh20GcfbXLatDToTAo/2s76udJUKCtmDaJ1PY0R/WizXRZseJ.js\";const LocaleSelectorFonts=getFonts(LocaleSelector);const BtnLinkFonts=getFonts(BtnLink);const FormTextFieldFonts=getFonts(FormTextField);const FormSubmitFonts=getFonts(FormSubmit);const BtnMainFonts=getFonts(BtnMain);const ThemeToggleFonts=getFonts(ThemeToggle);const RichTextAutoCopyrightStatement14wtuuc=withCodeBoundaryForOverrides(RichText,{nodeId:\"S7gHEcvGr\",override:AutoCopyrightStatement,scopeId:\"Mv6_4rTth\"});const CookieBannerFonts=getFonts(CookieBanner);const cycleOrder=[\"bVbbrfZVn\",\"qyVrTcrng\",\"FDtoFiVpc\"];const serializationHash=\"framer-Rdi3z\";const variantClassNames={bVbbrfZVn:\"framer-v-1aa9ubc\",FDtoFiVpc:\"framer-v-1a5vqk7\",qyVrTcrng:\"framer-v-1ne8njd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"bVbbrfZVn\",mobile:\"FDtoFiVpc\",tablet:\"qyVrTcrng\"};const getProps=({cursor,cursorField,height,id,uRL,width,...props})=>{return{...props,lioWgh8t9:uRL??props.lioWgh8t9??\"/\",NPnaD9jYB:cursorField??props.NPnaD9jYB,variant:humanReadableVariantMap[props.variant]??props.variant??\"bVbbrfZVn\",YAvefbCbz:cursor??props.YAvefbCbz};};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,YAvefbCbz,NPnaD9jYB,lioWgh8t9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bVbbrfZVn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.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-1aa9ubc\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"bVbbrfZVn\",ref:refBinding,style:{backgroundColor:\"var(--token-aaafd469-f144-47c0-a5cb-45b66c512e74, rgb(0, 10, 35))\",...style},...addPropertyOverrides({FDtoFiVpc:{\"data-framer-name\":\"mobile\"},qyVrTcrng:{\"data-framer-name\":\"tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-173boy\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"C_AykUVUJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gidcz8\",\"data-framer-name\":\"logo and social\",layoutDependency:layoutDependency,layoutId:\"gyNbI5INX\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HxxNQHUlv\"},motionChild:true,nodeId:\"ES0U9pyDX\",openInNewTab:false,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-10jrw6e framer-jcu7lk\",\"data-framer-name\":\"NCA_logo_horizontal\",fill:\"black\",intrinsicHeight:280,intrinsicWidth:900,layoutDependency:layoutDependency,layoutId:\"ES0U9pyDX\",svg:'<svg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" viewBox=\"0 0 900 280\"><defs><linearGradient id=\"linear-gradient\" x1=\"148.8\" y1=\"6.6\" x2=\"235.6\" y2=\"232.9\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".3\" stop-color=\"#05d6fc\"/><stop offset=\".4\" stop-color=\"#04cefc\"/><stop offset=\".4\" stop-color=\"#04bafc\"/><stop offset=\".5\" stop-color=\"#0299fc\"/><stop offset=\".6\" stop-color=\"#0280fd\"/><stop offset=\".6\" stop-color=\"#0173e4\"/><stop offset=\".8\" stop-color=\"#0153a5\"/><stop offset=\".9\" stop-color=\"#002041\"/><stop offset=\"1\"/></linearGradient><linearGradient id=\"linear-gradient-2\" x1=\"19.4\" y1=\"199.2\" x2=\"169.7\" y2=\"13.5\" xlink:href=\"#linear-gradient\"/><linearGradient id=\"linear-gradient-3\" x1=\"252.4\" y1=\"211.3\" x2=\"16.2\" y2=\"178.9\" xlink:href=\"#linear-gradient\"/><style>.cls-2{stroke-width:0;fill:#afafaf}</style></defs><g id=\"NCA_logo_color\" data-name=\"NCA logo color\"><g id=\"wordmark\"><path class=\"cls-2\" d=\"M635.9 195.8H670v9.7h-21.1v9.2h19.6v9h-19.6v9.4H670v9.7h-34.1v-47Zm-9.2 47h-12.2c-11.2 0-20.2-5.6-20.2-15.3 0-1.4-.1-2.9-.1-4.4v-7.4c0-1.5 0-2.9.1-4.4 0-10.1 9-15.7 20.1-15.7h12.3v10.5h-10.5c-5.1 0-9 2.9-9 7.6v11.2c0 4.6 3.8 7.2 9.4 7.2h10.1v10.5ZM554 214.6v28.2h-12.9v-47h12.7l16.5 28.2v-28.2h12.9v47h-12.7L554 214.6Zm-34.8 28.2-2.8-9.4h-15l-2.8 9.4h-13.2l14.2-47H518l14.2 47h-13.1Zm-16-18.3h11.4l-5.7-19.7-5.7 19.7Zm-26.5 18.3h-13.1v-47h13.1v47Zm-40.9-10.3h18.9v10.3h-31.9v-47h13.1v36.7Zm-41 0h18.9v10.3h-31.9v-47h13.1v36.7Zm-35 10.3-2.8-9.4h-15l-2.8 9.4H326l14.2-47h18.4l14.2 47h-13.1Zm-15.9-18.3h11.4l-5.7-19.7-5.7 19.7Z\" id=\"alliance\"/><path class=\"cls-2\" d=\"M900.1 116.9 885 148.1v15.8h-13.1v-15.8l-15.1-31.2h13.5l8.3 19.5 8.2-19.5h13.5Zm-76.3 10.2H811v-10.2h38.9v10.2H837v36.8h-13.2v-36.8Zm-21.7 36.8H789v-47h13.1v47Zm-31.8-16.7 9.4 16.6h-13.6l-7.3-14.3h-6.1v14.3h-12.6v-47h18.6c11.1 0 20.2 3.8 20.2 14.8v1.7c0 7.1-3.2 11.3-8.6 13.8ZM752.7 126v14.9h6.5c4.7 0 7.1-2.5 7.1-6.6v-1.7c0-3.9-2.3-6.5-7.1-6.5h-6.5Zm-24.5-9.1v27.2c0 2.3 0 4.5-.3 6.7-.9 8.9-8.4 14.1-20.2 14.1s-19.3-5.2-20.2-14.1c-.2-2.1-.4-4.4-.4-6.7v-27.2h13v31.5c0 3.5 2.9 5.9 7.5 5.9s7.5-2.4 7.5-5.9v-31.5h13Zm-49.7 47h-12.2c-11.2 0-20.2-5.6-20.2-15.3 0-1.4-.1-2.9-.1-4.4v-7.4c0-1.5 0-2.9.1-4.4 0-10.1 9-15.7 20.1-15.7h12.3v10.5H668c-5.1 0-9 2.9-9 7.6V146c0 4.6 3.8 7.2 9.4 7.2h10.1v10.5Zm-74.8-47h34.1v9.7h-21.1v9.2h19.6v9h-19.6v9.4h21.1v9.7h-34.1v-47Zm-28.4 47.9c-7.4 0-13.4-1.3-16.3-2.3l1.5-9.6c2.5.7 7.9 1.9 12.9 1.9s8.2-.7 8.2-4.4-4.5-4.7-12.9-7c-6.1-1.6-9.4-5.7-9.4-13.3s6.4-14.2 18-14.2 12.6 1.2 14.9 1.8l-1.3 9.7c-2.6-.7-7.4-1.6-11.7-1.6s-7.3 1.5-7.3 4.4 3.2 4.3 10.9 6.4c7.8 2.1 11.5 6 11.5 14.1s-6.7 14-19 14Zm-33.8-17.6 9.4 16.6h-13.6l-7.3-14.3h-6.1v14.3h-12.6v-47h18.6c11.1 0 20.2 3.8 20.2 14.8v1.7c0 7.1-3.2 11.3-8.6 13.8ZM523.8 126v14.9h6.5c4.7 0 7.1-2.5 7.1-6.6v-1.7c0-3.9-2.3-6.5-7.1-6.5h-6.5Zm-56.9-9.1H501v9.7h-21.1v9.2h19.6v9h-19.6v9.4H501v9.7h-34.1v-47Zm-48.8 47v-47h19.2c12.2 0 18.1 4.8 18.1 13s-2.8 8-7.2 9.7c5.1 1.8 9.1 5.6 9.1 10.9 0 8.7-6.4 13.4-19.2 13.4H418Zm25.5-33c0-3.2-2-5.3-6.4-5.3h-6.5v10.7h6.8c4.2 0 6.2-2.3 6.2-5.4Zm-6.6 12.7h-6.4v11.5h6.6c4.8 0 7.6-2.1 7.6-5.8s-3-5.7-7.8-5.7Zm-27.8-26.7-15.1 31.2v15.8H381v-15.8l-15.1-31.2h13.5l8.3 19.5 8.2-19.5h13.5Zm-50.3 47h-12.2c-11.2 0-20.2-5.6-20.2-15.3 0-1.4-.1-2.9-.1-4.4v-7.4c0-1.5 0-2.9.1-4.4 0-10.1 9-15.7 20.1-15.7h12.3v10.5h-10.5c-5.1 0-9 2.9-9 7.6V146c0 4.6 3.8 7.2 9.4 7.2h10.1v10.5Z\" id=\"cybersecurity\"/><path class=\"cls-2\" d=\"M670.1 74.7H689V85h-31.9V38h13.1v36.7Zm-35 10.3-2.8-9.4h-15l-2.8 9.4h-13.2l14.2-47h18.4l14.2 47H635Zm-16-18.3h11.4L624.8 47l-5.7 19.7Zm-55.7-9.9V85h-12.9V38h12.7l16.5 28.2V38h12.9v47h-12.7l-16.5-28.2Zm-66.2-2.2c0-11.4 8.2-17.5 21.2-17.5s21.2 6.1 21.2 17.5v13.8c0 11.5-8.2 17.5-21.2 17.5s-21.2-6-21.2-17.5V54.6Zm13.2 13.7c0 4.3 2.7 7.3 8 7.3s7.9-3 7.9-7.3V54.6c0-4.3-2.7-7.3-7.9-7.3s-8 2.6-8 6.7v14.3ZM486.2 85h-13.1V38h13.1v47Zm-48-36.8h-12.8V38h38.9v10.2h-12.9V85h-13.2V48.2ZM410.9 85l-2.8-9.4h-15l-2.8 9.4h-13.2l14.2-47h18.4l14.2 47h-13.1ZM395 66.7h11.4L400.7 47 395 66.7Zm-55.8-9.9V85h-12.9V38H339l16.5 28.2V38h12.9v47h-12.7l-16.5-28.2Z\" id=\"national\"/></g><path d=\"m183.4 186.7 12.5 65.2c-1.2 0-2.4 0-3.6-.2l-11.7-61.2c1-1.3 1.9-2.6 2.8-3.9Zm5.6-8.3 19 72.8c1.2-.2 2.3-.4 3.5-.6l-19.9-76.3c-.8 1.4-1.7 2.8-2.6 4.1Zm7.1-12.1L223 247c1.1-.5 2.2-.9 3.2-1.5L198.4 162c-.7 1.4-1.5 2.9-2.3 4.3Zm-25.6 36.5 5.6 46.1c1.2.3 2.4.6 3.7.9l-6.2-50.6c-1 1.2-2.1 2.4-3.1 3.6Zm47.7-135.6 55.4 32.9c-.9-3.1-1.9-6.1-3-9.1l-52.9-31.7L267 82.5c-1.4-3.2-2.9-6.3-4.6-9.4l-45.6-21.7 42 15.6c-1.9-3.1-3.9-6-6-9l-37.6-13.9 33.9 9c-2.4-3-4.9-5.9-7.5-8.7l-28-7.5 24.2 3.5c-3.9-3.8-8.1-7.4-12.4-10.8L209 27.2h13.3c-3.7-2.7-7.6-5.2-11.6-7.6-26.8-15.5-50.4-17.9-50.4-17.9 34.7 5.6 53.9 31.8 57.8 65.5Zm-16.5 87.9 34.1 84.5c1-.7 1.9-1.5 2.9-2.2l-35-86.7c-.6 1.5-1.3 3-2 4.5Zm-54.4 80.7c.7.5 1.4.9 2.2 1.4.4.3.9.5 1.3.8v-16.1c-1.1 1-2.2 1.9-3.4 2.9v11.1Zm12.1-21.6 1.6 29.1c1.2.6 2.4 1.1 3.6 1.6l-1.9-33.9c-1.1 1.1-2.2 2.2-3.3 3.2Zm53.9-92.4 52.4 78.5c.7-1.6 1.5-3.1 2.2-4.7l-53.1-79.7c-.4 2-.9 3.9-1.4 5.9Zm-6.7 21.6 41.2 85c.8-1 1.6-2 2.4-3.1l-42-86.6c-.5 1.5-1.1 3.1-1.7 4.6Zm12.3-60 60.3 49.6c-.1-2.6-.3-5.2-.6-7.8l-59.8-49.1c0 2.4.1 4.9 0 7.3Zm-.1-8.3 58.6 41.2c-.5-2.8-1.1-5.5-1.7-8.3l-57.5-40.4c.3 2.5.5 5 .6 7.5Zm0 10.4c0 2.3-.3 4.7-.5 7.1l60.7 58.3c.2-2.4.3-4.8.4-7.2l-60.5-58.2Zm-8.3 46.4 47.5 82.4c.8-1.3 1.6-2.6 2.4-4l-48.3-83.8c-.5 1.8-1 3.6-1.6 5.4Zm5.2-20.6 56.6 72.8 1.8-5.7-57.3-73.5c-.3 2.2-.7 4.4-1.2 6.5Zm2.5-16.6c-.2 2.3-.5 4.5-.9 6.8l59.4 65.8 1.2-6.6-59.7-66.1Z\" style=\"stroke-width:0;fill:url(#linear-gradient)\"/><path d=\"m210.2 38.6-47.1 40.7c-1.6-.2-3.2-.4-4.8-.5l50.2-43.4c.6 1.1 1.1 2.1 1.7 3.2Zm-10.7-16.1-56.1 55.4c1.6 0 3.2 0 4.8.2l53.5-52.8c-.7-.9-1.5-1.8-2.3-2.7Zm-11.8-10.2-58.4 65.9c1.6 0 3.2-.2 4.9-.2l56.4-63.6c-.9-.7-1.9-1.4-2.9-2.1Zm27 38L174 80.9c1.6.3 3.1.6 4.6.9l37.1-27.9c-.3-1.2-.7-2.4-1-3.6Zm-182.9.8-1.1 61.7-4.6-54.3c-2 2.8-4 5.7-5.8 8.7l4 50.3-7.5-44.2c-1.7 3.2-3.3 6.4-4.8 9.7l6.8 39.6-9.1-33.9C8.3 92.3 7 95.9 5.9 99.6l7.5 28-9-22.7C3 110.2 2 115.6 1.2 121.1l6.1 15.4-6.6-11.6c-.5 4.6-.8 9.2-.8 13.9 0 31 9.7 52.5 9.7 52.5-12.4-32.8.6-62.6 27.8-82.8l.8-64.4c-2.2 2.3-4.3 4.7-6.4 7.2ZM174.5 5.5l-57.6 73.7c1.6-.2 3.2-.4 4.9-.5l56.1-71.8c-1.1-.5-2.2-.9-3.4-1.4Zm30.4 83.8c1.4.5 2.9 1.1 4.3 1.6l9.6-5.5c0-.9.1-1.7.1-2.6v-1.6l-14 8ZM218 65.9l-28.4 18.6c1.5.4 3 .8 4.5 1.3l24.4-16c-.1-1.3-.3-2.6-.4-3.9ZM123.7 1.2 81.3 87.1c1.9-.6 3.8-1.2 5.8-1.7L128.8.7c-1.7.1-3.4.3-5.1.5Zm34.6.3-54 79.6 4.8-.9 53.1-78.1-3.9-.6ZM57.4 27l-12.7 76.3c2-1.3 4.2-2.5 6.3-3.7l12.8-77c-2.2 1.4-4.3 2.9-6.4 4.4ZM44 38.2l-6.3 70c2-1.5 4.1-2.9 6.2-4.3l6.4-71.3c-2.2 1.8-4.3 3.7-6.3 5.6Zm29-21.1L52.9 98.6c2.1-1.1 4.2-2.1 6.4-3.1l20.1-81.7c-2.2 1-4.3 2.1-6.4 3.3ZM140.3.3 91.8 84c1.8-.5 3.6-.9 5.4-1.3L144.9.4h-4.6Zm-34.7 4.1L70.5 90.8c2.1-.8 4.1-1.5 6.2-2.3l34.8-85.4c-2 .4-3.9.9-5.9 1.3ZM88.5 9.9 61.1 94.6l6.3-2.7L94.8 7.6c-2.1.7-4.2 1.5-6.3 2.3Z\" style=\"fill:url(#linear-gradient-2);stroke-width:0\"/><path d=\"m77.3 154.5-62.7-21.8c.6-1 1.3-2 2-3l58.8 20.5c.6 1.5 1.3 2.9 1.9 4.4Zm4.4 9L9.2 143.6 8 146.9l76 20.9c-.8-1.4-1.5-2.8-2.3-4.3Zm6.9 12.3L5.3 158.7c-.1 1.2-.3 2.3-.3 3.5l86.2 17.6c-.9-1.4-1.8-2.7-2.6-4.1Zm-18.8-40.5-42.7-18.2c-.9.9-1.8 1.8-2.6 2.7l46.9 19.9-1.5-4.5Zm93.6 109.1-56.2 31.5c3.1.7 6.3 1.4 9.4 1.9l53.9-29.9-44.7 31.1c3.5.3 6.9.6 10.4.7l41.5-28.6-34.5 28.6c3.6 0 7.2-.3 10.8-.7l30.9-25.6-24.8 24.9c3.8-.6 7.6-1.3 11.3-2.2l20.4-20.5-15.1 19.2c5.3-1.5 10.5-3.3 15.6-5.4l10.2-13-6.7 11.5c4.2-1.9 8.3-3.9 12.4-6.2 26.8-15.5 40.6-34.6 40.6-34.6-22.2 27.2-54.5 30.8-85.6 17.3Zm-67.9-58.2L5.2 173.5c.1 1.2.3 2.4.5 3.6l92.6 13c-1-1.3-1.9-2.6-2.9-4Zm-33.1-81.9-9.6-5.6c-.8.4-1.5.8-2.3 1.2-.5.3-.9.5-1.3.8l13.9 8.2c-.3-1.5-.5-3-.7-4.5Zm3.1 15.7-26-13.1c-1.1.8-2.1 1.5-3.2 2.3l30.3 15.3c-.4-1.5-.8-3-1.1-4.5Zm53.1 92.9L24.5 219l3 4.2 95.6-6.2c-1.5-1.3-2.9-2.7-4.4-4.1Zm-15.4-16.6-94.3-6.8 1.5 3.6 96 6.9c-1.1-1.2-2.1-2.5-3.2-3.8Zm45.8 40.6-73.1 27.4c2.3 1.2 4.7 2.3 7 3.4l72.4-27.2c-2.1-1.1-4.3-2.3-6.4-3.6Zm7.2 4.1-65 30.1c2.7 1 5.3 1.9 8 2.7l63.7-29.6c-2.3-1-4.5-2.1-6.8-3.2Zm-14.9-9.1-80.8 23.4c2 1.4 4 2.7 6.1 3.9l80.7-23.3c-2-1.3-4-2.6-5.9-4Zm-30.1-26.5H16.1c.7 1.3 1.5 2.6 2.2 3.9H115c-1.3-1.2-2.6-2.6-3.9-3.9Zm15.3 14.8-91.3 12.7c1.3 1.5 2.7 3 4.1 4.4l92.3-12.8c-1.7-1.4-3.4-2.8-5.1-4.3Zm13.1 10.5c-1.8-1.3-3.7-2.7-5.5-4.2l-86.7 18.6c1.7 1.5 3.4 2.9 5.1 4.3l87.1-18.6Z\" style=\"fill:url(#linear-gradient-3);stroke-width:0\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gzydl8\",layoutDependency:layoutDependency,layoutId:\"CVXu1VbvY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16mee5h-container\",\"data-framer-cursor\":YAvefbCbz,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"APowCfMrt-container\",nodeId:\"APowCfMrt\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",style:{scale:1},variants:{FDtoFiVpc:{scale:.8}},children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"rgb(184, 184, 184)\",size:12,type:\"default\"},fillColor:\"rgb(0, 10, 35)\",font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"rgb(184, 184, 184)\",size:18,type:\"default\"},id:\"APowCfMrt\",layoutId:\"APowCfMrt\",options:{border:{color:\"rgb(0, 22, 56)\",style:\"solid\",width:1,widthBottom:1,widthLeft:1,widthPerSide:false,widthRight:1,widthTop:1},focus:{color:\"var(--token-7623d2e7-3a1f-4cac-b7ed-868d5619d9da, rgb(45, 75, 100))\",offset:0,style:\"solid\",width:1},gap:5,title:true},padding:\"14px\",radius:\"12px\",textColor:\"rgb(184, 184, 184)\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gc68gi\",\"data-framer-name\":\"social\",layoutDependency:layoutDependency,layoutId:\"mkw_bhdGC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ltttth\",\"data-border\":true,\"data-framer-name\":\"FB\",layoutDependency:layoutDependency,layoutId:\"ck8XtdfVe\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(86, 10, 195)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(8, 8, 48)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"44px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+0+0+0+46+0+.4889,...addPropertyOverrides({FDtoFiVpc:{y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+0+0+111+0+0+0+.4889}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ceuu1v-container\",layoutDependency:layoutDependency,layoutId:\"KeLFku9we-container\",nodeId:\"KeLFku9we\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(BtnLink,{height:\"100%\",id:\"KeLFku9we\",iM7_IMMN_:\"rgb(255, 255, 255)\",jbX6V7bBg:true,layoutId:\"KeLFku9we\",pd2zKPznk:\"https://www.facebook.com/staysafeonline\",PYhyXgejv:YAvefbCbz,qjef3yYov:false,SFVaE_nWH:2,style:{height:\"100%\",width:\"100%\"},variant:\"zwWzUpE5E\",whWB7LTYP:getLocalizedValue(\"v1\",activeLocale)??'<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 8.2 14\">   <path d=\"M1.86,8.18v5.82h3.26v-5.82h2.43l.51-2.67h-2.94v-.95c0-1.41.57-1.96,2.04-1.96.46,0,.83.01,1.04.03V.22c-.4-.11-1.39-.22-1.95-.22C3.24,0,1.86,1.38,1.86,4.36v1.15H0v2.67h1.86Z\"/> </svg>',width:\"100%\",ZuHqx_H0i:getLocalizedValue(\"v0\",activeLocale)??\"Facebook\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ukzoy9\",\"data-border\":true,\"data-framer-name\":\"IN\",layoutDependency:layoutDependency,layoutId:\"ls5_fKh1M\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(86, 10, 195)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(8, 8, 48)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"44px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+0+0+0+46+0+-.4889,...addPropertyOverrides({FDtoFiVpc:{y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+0+0+111+0+0+0+-.4889}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w6sl5-container\",layoutDependency:layoutDependency,layoutId:\"EagZuEUVD-container\",nodeId:\"EagZuEUVD\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(BtnLink,{height:\"100%\",id:\"EagZuEUVD\",iM7_IMMN_:\"rgb(255, 255, 255)\",jbX6V7bBg:true,layoutId:\"EagZuEUVD\",pd2zKPznk:\"https://www.instagram.com/StaySafeOnlineNCA\",PYhyXgejv:YAvefbCbz,qjef3yYov:false,SFVaE_nWH:0,style:{height:\"100%\",width:\"100%\"},variant:\"zwWzUpE5E\",whWB7LTYP:getLocalizedValue(\"v3\",activeLocale)??'<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.01 12.25\">   <path d=\"M6,2.98c-1.7,0-3.08,1.4-3.08,3.14s1.37,3.14,3.08,3.14,3.08-1.4,3.08-3.14-1.37-3.14-3.08-3.14ZM6,8.17c-1.1,0-2-.92-2-2.04s.9-2.04,2-2.04,2,.92,2,2.04-.9,2.04-2,2.04ZM9.93,2.86c0,.41-.32.73-.72.73s-.72-.33-.72-.73.32-.73.72-.73.72.33.72.73ZM11.96,3.6c-.05-.98-.27-1.85-.97-2.57-.7-.72-1.55-.94-2.52-.99C7.49-.01,4.52-.01,3.53.04c-.96.05-1.81.27-2.52.99C.31,1.75.09,2.62.04,3.6-.01,4.61-.01,7.64.04,8.65c.05.98.27,1.85.97,2.57.7.72,1.55.94,2.52.99.99.06,3.96.06,4.95,0,.96-.05,1.81-.27,2.52-.99.7-.72.92-1.59.97-2.57.06-1.01.06-4.04,0-5.05ZM10.68,9.74c-.21.54-.61.95-1.14,1.16-.79.32-2.67.25-3.54.25s-2.75.07-3.54-.25c-.52-.21-.93-.63-1.14-1.16-.31-.81-.24-2.72-.24-3.61s-.07-2.81.24-3.61c.21-.54.61-.95,1.14-1.16.79-.32,2.67-.25,3.54-.25s2.75-.07,3.54.25c.52.21.93.63,1.14,1.16.31.81.24,2.72.24,3.61s.07,2.81-.24,3.61Z\"/> </svg>',width:\"100%\",ZuHqx_H0i:getLocalizedValue(\"v2\",activeLocale)??\"Instagram\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p9mljp\",\"data-border\":true,\"data-framer-name\":\"LI\",layoutDependency:layoutDependency,layoutId:\"V3VRTPUmP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(86, 10, 195)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(8, 8, 48)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"44px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+0+0+0+46+0+-.4889,...addPropertyOverrides({FDtoFiVpc:{y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+0+0+111+0+0+0+-.4889}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jyvska-container\",layoutDependency:layoutDependency,layoutId:\"jNXLVHIon-container\",nodeId:\"jNXLVHIon\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(BtnLink,{height:\"100%\",id:\"jNXLVHIon\",iM7_IMMN_:\"rgb(255, 255, 255)\",jbX6V7bBg:true,layoutId:\"jNXLVHIon\",pd2zKPznk:\"https://www.linkedin.com/company/national-cybersecurity-alliance/\",PYhyXgejv:YAvefbCbz,qjef3yYov:false,SFVaE_nWH:0,style:{height:\"100%\",width:\"100%\"},variant:\"zwWzUpE5E\",whWB7LTYP:getLocalizedValue(\"v5\",activeLocale)??'<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12 12\">   <path d=\"M2.69,12H.2V3.99h2.49v8.01ZM1.44,2.9c-.79,0-1.44-.66-1.44-1.45S.64,0,1.44,0s1.44.64,1.44,1.44-.64,1.45-1.44,1.45ZM12,12h-2.48v-3.9c0-.93-.02-2.12-1.29-2.12s-1.49,1.01-1.49,2.05v3.97h-2.49V3.99h2.39v1.09h.03c.33-.63,1.14-1.29,2.36-1.29,2.52,0,2.98,1.66,2.98,3.81v4.4h0Z\"/> </svg>',width:\"100%\",ZuHqx_H0i:getLocalizedValue(\"v4\",activeLocale)??\"LinkedIn\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ljwhxm\",\"data-border\":true,\"data-framer-name\":\"YT\",layoutDependency:layoutDependency,layoutId:\"k4JMAqojk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(86, 10, 195)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(8, 8, 48)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"44px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+0+0+0+46+0+-.4889,...addPropertyOverrides({FDtoFiVpc:{y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+0+0+111+0+0+0+-.4889}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-td7nnt-container\",layoutDependency:layoutDependency,layoutId:\"OWSvWlczB-container\",nodeId:\"OWSvWlczB\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(BtnLink,{height:\"100%\",id:\"OWSvWlczB\",iM7_IMMN_:\"rgb(255, 255, 255)\",jbX6V7bBg:true,layoutId:\"OWSvWlczB\",pd2zKPznk:\"https://www.youtube.com/@StaySafeOnlineNCA\",PYhyXgejv:YAvefbCbz,qjef3yYov:false,SFVaE_nWH:0,style:{height:\"100%\",width:\"100%\"},variant:\"zwWzUpE5E\",whWB7LTYP:getLocalizedValue(\"v7\",activeLocale)??'<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.8 9\">   <path d=\"M12.8,4.51s0,2.1-.27,3.1c-.15.55-.58.97-1.13,1.12-1,.27-5,.27-5,.27,0,0-4,0-5-.27-.55-.15-.98-.57-1.13-1.12-.27-1-.27-3.1-.27-3.1,0,0,0-2.1.27-3.1C.42.85.85.42,1.4.27c1-.27,5-.27,5-.27,0,0,4,0,5,.27.55.15.98.58,1.13,1.14.27,1,.27,3.1.27,3.1ZM8.44,4.51l-3.35-1.9v3.81l3.35-1.9Z\"/> </svg>',width:\"100%\",ZuHqx_H0i:getLocalizedValue(\"v6\",activeLocale)??\"YouTube\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fz7cyn\",\"data-border\":true,\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"xPvR0sbJb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(86, 10, 195)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(8, 8, 48)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"44px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+0+0+0+46+0+-.4889,...addPropertyOverrides({FDtoFiVpc:{y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+0+0+111+0+0+0+-.4889}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l6qudt-container\",layoutDependency:layoutDependency,layoutId:\"K7OERfsJ8-container\",nodeId:\"K7OERfsJ8\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(BtnLink,{height:\"100%\",id:\"K7OERfsJ8\",iM7_IMMN_:\"rgb(255, 255, 255)\",jbX6V7bBg:true,layoutId:\"K7OERfsJ8\",pd2zKPznk:\"https://x.com/staysafeonline\",PYhyXgejv:YAvefbCbz,qjef3yYov:false,SFVaE_nWH:0,style:{height:\"100%\",width:\"100%\"},variant:\"zwWzUpE5E\",whWB7LTYP:getLocalizedValue(\"v9\",activeLocale)??'<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 12.58 11.37\">   <path d=\"M9.91,0h1.93l-4.22,4.82,4.96,6.56h-3.88l-3.04-3.98-3.48,3.98H.25l4.51-5.15L0,0h3.98l2.75,3.63,3.18-3.63ZM9.23,10.22h1.07L3.4,1.09h-1.15l6.98,9.13Z\"/> </svg>',width:\"100%\",ZuHqx_H0i:getLocalizedValue(\"v8\",activeLocale)??\"X\"})})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w606ry\",\"data-framer-name\":\"form and store\",layoutDependency:layoutDependency,layoutId:\"atwCSEfDi\",children:[/*#__PURE__*/_jsxs(motion.div,{\"aria-label\":\"Subscribe to our newsletter\",className:\"framer-pcbgp0\",\"data-framer-name\":\"form\",layoutDependency:layoutDependency,layoutId:\"bTGXoPX_B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-eo96yc\",\"data-styles-preset\":\"SCUlvvE18\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 130, 169))\"},children:\"Subscribe to our newsletter\"})}),className:\"framer-1jbmxab\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WCsA9jGMh\",style:{\"--extracted-gdpscs\":\"rgb(0, 130, 169)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/31f0dcb9-d56c-4d9a-8932-8e1ba12e1df0/submit\",className:\"framer-1kck7vg\",layoutDependency:layoutDependency,layoutId:\"CgRHYWoDX\",nodeId:\"CgRHYWoDX\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"265px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+136+0+0+26.8+0,...addPropertyOverrides({FDtoFiVpc:{width:`max(min(${componentViewport?.width||\"100vw\"} - 50px, 1400px) - 160px, 1px)`,y:undefined},qyVrTcrng:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1400px) - 162px, 1px)`,y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+175+0+210+0+26.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e5awkq-container\",\"data-framer-cursor\":NPnaD9jYB,layoutDependency:layoutDependency,layoutId:\"Otmg3uChH-container\",nodeId:\"Otmg3uChH\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(FormTextField,{aSxN7CECe:\"\",CdQ0p6QUq:true,cgCN7LA0z:\"auto\",d4vz9GXtY:false,dCZMv66cD:false,h5pLtd27y:\"Email\",height:\"100%\",id:\"Otmg3uChH\",jybIDSRnC:\"\",K3a6eIb0z:\"\",layoutId:\"Otmg3uChH\",style:{height:\"100%\",width:\"100%\"},tDFGKPwjA:{borderColor:\"rgb(86, 10, 195)\",borderStyle:\"solid\",borderWidth:1},TMUlnfDzv:\"1px 1px 2px 0px var(--token-e414f0ac-74a3-4474-9896-8d592a8fc6c9, rgba(0, 10, 36, 0.1))\",variant:\"pszF3xDWJ\",width:\"100%\",wiwmOpvlj:\"rgb(255, 255, 255)\",X7t8IkjXo:getLocalizedValue(\"v11\",activeLocale)??\"name@email.com\",yEEKojFAY:\"email\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+136+0+0+26.8+0,...addPropertyOverrides({FDtoFiVpc:{width:`min(${componentViewport?.width||\"100vw\"} - 50px, 1400px)`,y:undefined},qyVrTcrng:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 1400px)`,y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+175+0+210+0+26.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-btj3au-container\",\"data-framer-name\":\"URL\",layoutDependency:layoutDependency,layoutId:\"lS3uIsXIh-container\",name:\"URL\",nodeId:\"lS3uIsXIh\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",style:{opacity:0},children:/*#__PURE__*/_jsx(FormTextField,{aSxN7CECe:\"\",CdQ0p6QUq:true,cgCN7LA0z:\"none\",d4vz9GXtY:false,dCZMv66cD:true,h5pLtd27y:\"FromURL\",height:\"100%\",id:\"lS3uIsXIh\",jybIDSRnC:lioWgh8t9,K3a6eIb0z:\"\",layoutId:\"lS3uIsXIh\",name:\"URL\",style:{height:\"100%\",width:\"100%\"},tDFGKPwjA:{borderColor:\"var(--token-6f5830f5-03af-4810-acf1-da0fd5d1efa6, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:1},TMUlnfDzv:\"1px 1px 2px 0px var(--token-e414f0ac-74a3-4474-9896-8d592a8fc6c9, rgba(0, 10, 36, 0.1))\",variant:\"pszF3xDWJ\",width:\"100%\",wiwmOpvlj:\"var(--token-84d51c6b-feb3-438c-8adc-a4f6ca79e386, rgba(255, 250, 246, 0.5))\",X7t8IkjXo:\"/\",yEEKojFAY:\"text\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"152px\",y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+136+0+0+26.8+3.5,...addPropertyOverrides({FDtoFiVpc:{width:\"150px\",y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+175+0+210+0+26.8+3.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dcjvit-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"iWnCx3E58-container\",name:\"Button\",nodeId:\"iWnCx3E58\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(FormSubmit,{csAuxqdiV:\"rgb(13, 13, 59)\",cU4JPQCXS:\"rgb(255, 255, 255)\",height:\"100%\",HUt2PhWC7:getLocalizedValue(\"v12\",activeLocale)??\"Sign Up\",id:\"iWnCx3E58\",layoutId:\"iWnCx3E58\",name:\"Button\",OaASkH8FO:\"rgb(0, 10, 35)\",QqV44uX_y:{borderColor:\"rgb(86, 10, 195)\",borderStyle:\"solid\",borderWidth:1},style:{height:\"100%\",width:\"100%\"},type:\"submit\",U0urEmSjV:YAvefbCbz,variant:formVariants(formState,{error:\"wPfxgZ6da\",incomplete:\"jsoNG74d8\",pending:\"gpexVdgpj\",success:\"LI1wFooRY\"},\"jsoNG74d8\"),width:\"100%\",zhkrOTGOf:\"0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.625px rgba(0, 0, 0, 0.13), 1.207253071552259px 1.207253071552259px 1.7073136670057811px -1.25px rgba(0, 0, 0, 0.13), 3.1913267607422307px 3.1913267607422307px 4.51321758700586px -1.875px rgba(0, 0, 0, 0.13), 10px 10px 14.142135623730951px -2.5px rgba(0, 0, 0, 0.13)\"})})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s3o8r1\",\"data-framer-name\":\"store\",layoutDependency:layoutDependency,layoutId:\"ttEhyPH0r\",children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-19wc1c3\",\"data-framer-name\":\"Buttons / btn_link\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"kw8ceoyGL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhrgg3\",layoutDependency:layoutDependency,layoutId:\"Txkrra1xc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+150+((componentViewport?.height||794.5)-175-1252.8+0+0)+0+136+0+0+77.5+0,...addPropertyOverrides({FDtoFiVpc:{y:undefined},qyVrTcrng:{y:(componentViewport?.y||0)+150+((componentViewport?.height||888.5)-175-1363.6+0+0)+0+175+0+0+0+77.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11q32u1-container\",layoutDependency:layoutDependency,layoutId:\"vxQ7NL81E-container\",nodeId:\"vxQ7NL81E\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(BtnMain,{dljOPmJc4:true,eB0wE2ydn:\"var(--token-0786f224-3b11-4690-8c8d-5373d947d513, rgb(0, 130, 255))\",height:\"100%\",id:\"vxQ7NL81E\",JCxSmKyws:\"var(--token-6f5830f5-03af-4810-acf1-da0fd5d1efa6, rgb(255, 255, 255))\",jmLNA2lPB:\"https://staysafeonline.dojiggyengage.com/\",Jpmo3NvX1:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"10\" height=\"10\"><path d=\"M 6.634 3.639 L 3.023 7.251 C 2.933 7.34 2.823 7.385 2.692 7.384 C 2.56 7.383 2.45 7.338 2.36 7.248 C 2.27 7.159 2.226 7.048 2.226 6.915 C 2.226 6.783 2.27 6.672 2.36 6.583 L 5.969 2.974 L 2.942 2.974 C 2.809 2.974 2.696 2.928 2.605 2.837 C 2.513 2.745 2.468 2.633 2.468 2.5 C 2.468 2.367 2.513 2.255 2.605 2.163 C 2.696 2.072 2.809 2.026 2.942 2.026 L 7.108 2.026 C 7.241 2.026 7.353 2.072 7.445 2.163 C 7.536 2.255 7.582 2.367 7.582 2.5 L 7.582 6.667 C 7.582 6.8 7.536 6.912 7.445 7.003 C 7.353 7.095 7.241 7.141 7.108 7.141 C 6.975 7.141 6.863 7.095 6.772 7.003 C 6.68 6.912 6.634 6.8 6.634 6.667 Z\" fill=\"rgb(85, 10, 195)\"></path></svg>',layoutId:\"vxQ7NL81E\",nTbpwY4Kp:false,oSo44Pfbb:YAvefbCbz,s9JYkVhh8:getLocalizedValue(\"v13\",activeLocale)??\"NCA Store\",variant:\"xMeHf_tK3\",width:\"100%\",ZM1mAU9FT:\"7px 8px 7px 8px\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-km9rnu\",layoutDependency:layoutDependency,layoutId:\"UgbVOz4S5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17tk2je-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Se3Kup03X-container\",nodeId:\"Se3Kup03X\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",children:/*#__PURE__*/_jsx(ThemeToggle,{componentStyle:\"toggle\",customDark:[],customLight:[],defaultTheme:\"light\",dropdown:{arrow:\"rgba(0, 0, 0, 0.5)\",fill:\"rgb(237, 237, 237)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(0, 0, 0)\",gap:8,padding:8,paddingBottomLeft:8,paddingBottomRight:8,paddingIsMixed:false,paddingTopLeft:8,paddingTopRight:8,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusIsMixed:false,radiusTopLeft:10,radiusTopRight:10},dropdownOptions:{darkText:getLocalizedValue(\"v16\",activeLocale)??\"Dark\",deviceThemeText:getLocalizedValue(\"v14\",activeLocale)??\"Device Theme\",lightText:getLocalizedValue(\"v15\",activeLocale)??\"Light\",showDeviceTheme:true},height:\"100%\",icons:{color:\"rgb(51, 51, 51)\",darkSvg:\"\",lightSvg:\"\",opacity:1,size:18,sizing:\"fill\",type:\"default\"},id:\"Se3Kup03X\",layoutId:\"Se3Kup03X\",resetToDeviceTheme:false,saveTheme:true,setColorScheme:false,toggle:{fill:\"rgb(237, 237, 237)\",height:32,padding:4,radius:16,shadow:{blur:4,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:2},switch:\"rgb(255, 255, 255)\"},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sd6db7\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"wE3vqN20q\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ll2o1w\",\"data-framer-name\":\"resources\",layoutDependency:layoutDependency,layoutId:\"vaodffZto\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Resources\"})}),className:\"framer-18baxrl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MpTkBwFrO\",style:{\"--extracted-1of0zx5\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7tyg83\",layoutDependency:layoutDependency,layoutId:\"uzpwgIlJR\",style:{backgroundColor:\"rgb(0, 22, 56)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogzi9f\",layoutDependency:layoutDependency,layoutId:\"lPu6HghOB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"ofjqhQqBT\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Online Safety and Privacy \"})})})}),className:\"framer-1pzfjei\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ofjqhQqBT\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BX4bb_lyI\"},motionChild:true,nodeId:\"LhfDnu1Lz\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Careers and Education \"})})})}),className:\"framer-1qr9wt9\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LhfDnu1Lz\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ao8GNqywE\"},motionChild:true,nodeId:\"fAps4uwSj\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cybersecurity for Business\"})})})}),className:\"framer-c75kh7\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fAps4uwSj\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E7o7lEW0h\",webPageId:\"jKLB8pqwn\"},motionChild:true,nodeId:\"p49Q7cDVI\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cyber Dictionary\"})})})}),className:\"framer-1w1f1we\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p49Q7cDVI\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":a5uR9W5i0\",webPageId:\"glMM1Sf0w\"},motionChild:true,nodeId:\"mpjAfdoPf\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Toolkits\"})})})}),className:\"framer-fyuyun\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mpjAfdoPf\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zMF0z1pDD\"},motionChild:true,nodeId:\"lgWXt1WD2\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"All Articles and Resources\"})})})}),className:\"framer-1qhhu2s\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lgWXt1WD2\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K2zLKiWnT\"},motionChild:true,nodeId:\"CNtNBsdnX\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"All Press Stories and Awards\"})})})}),className:\"framer-z33b07\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CNtNBsdnX\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iu2u82\",\"data-framer-name\":\"initiatives\",layoutDependency:layoutDependency,layoutId:\"sPSoWqLcu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Initiatives\"})}),className:\"framer-1h0s7in\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EA7HOfdYw\",style:{\"--extracted-1of0zx5\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mad1qu\",layoutDependency:layoutDependency,layoutId:\"OhrAL9ovK\",style:{backgroundColor:\"rgb(0, 22, 56)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14gp4ow\",layoutDependency:layoutDependency,layoutId:\"tQaRet9Ik\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yo5CuFpDO\"},motionChild:true,nodeId:\"ME9bOCtx5\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"AI Fools\"})})})}),className:\"framer-v8m73u\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ME9bOCtx5\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lwllYTr4U\"},motionChild:true,nodeId:\"GJsFoAV6t\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Data Privacy Week\"})})})}),className:\"framer-mdh8m7\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GJsFoAV6t\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"stLL9reWP\"},motionChild:true,nodeId:\"EV2gYPRIY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Convene\"})})})}),className:\"framer-israak\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EV2gYPRIY\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BVOZV9Mrs\"},motionChild:true,nodeId:\"oD36i5QuV\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"CyberSecure My Business\"})})})}),className:\"framer-1x6g13u\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oD36i5QuV\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ihXsHGkCF\"},motionChild:true,nodeId:\"vOMHcgVgL\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cybersecurity Awareness Month\"})})})}),className:\"framer-zcbldb\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vOMHcgVgL\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UpfzxsDV5\"},motionChild:true,nodeId:\"f0J8DoAwp\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"See Yourself in Cyber\"})})})}),className:\"framer-ifyd1c\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f0J8DoAwp\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UuvQ490Ja\"},motionChild:true,nodeId:\"Rgc0mtRUW\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"All Events\"})})})}),className:\"framer-14b1zt2\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rgc0mtRUW\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g6zrdk\",\"data-framer-name\":\"get involved\",layoutDependency:layoutDependency,layoutId:\"pF0caz7Eo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"About Us\"})}),className:\"framer-j9dec7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QLIJPj7uG\",style:{\"--extracted-1of0zx5\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrnxfv\",layoutDependency:layoutDependency,layoutId:\"PGMVG_E2x\",style:{backgroundColor:\"rgb(0, 22, 56)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pqx8fx\",layoutDependency:layoutDependency,layoutId:\"AO9J_4zu4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x5EYaq8Gh\"},motionChild:true,nodeId:\"xh0z06teu\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Donate\"})})})}),className:\"framer-1y2bqvk\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xh0z06teu\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ty32Z8sfz\"},motionChild:true,nodeId:\"JfU6QbFIZ\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Collaborate\"})})})}),className:\"framer-1ufkp1l\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JfU6QbFIZ\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fQW5RCxNa\"},motionChild:true,nodeId:\"Kh7yYfZti\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Request a Speaker\"})})})}),className:\"framer-1t25uxe\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kh7yYfZti\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r9_Mv9gTz\"},motionChild:true,nodeId:\"wVAk6vh0z\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Sponsor\"})})})}),className:\"framer-18upfpg\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wVAk6vh0z\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"EVXpDZHBB\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"The NCA\"})})})}),className:\"framer-1snu53z\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EVXpDZHBB\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Contact Us\"})})})}),className:\"framer-1x3p3vr\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cj9YgnEQi\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qyVrTcrng:{children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":h1aB9QJjN\",webPageId:\"UYwEbUu3Z\"},motionChild:true,nodeId:\"cj9YgnEQi\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Contact Us\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4w7z7j\",\"data-framer-name\":\"special campaigns\",layoutDependency:layoutDependency,layoutId:\"g07Pumdxk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-g70q8t\",\"data-styles-preset\":\"JO7H48w_P\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(184, 184, 184))\"},children:\"Special Campaigns\"})}),className:\"framer-1d1x175\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UoCfqjd1q\",style:{\"--extracted-1of0zx5\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xbfu9l\",layoutDependency:layoutDependency,layoutId:\"jSc6PFeZP\",style:{backgroundColor:\"rgb(0, 22, 56)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8tq5ds\",layoutDependency:layoutDependency,layoutId:\"R6mcrC4nl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mfDqfdYcC\"},motionChild:true,nodeId:\"G779xY3NY\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cyber Survival Guide\"})})})}),className:\"framer-kiv656\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G779xY3NY\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rrPNaSvtO\"},motionChild:true,nodeId:\"JNPQzITzH\",openInNewTab:true,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Kubikle\"})})})}),className:\"framer-lb66a2\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JNPQzITzH\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RxK6nOQn3\"},motionChild:true,nodeId:\"XqLgYawsV\",openInNewTab:true,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Phisher\"})})})}),className:\"framer-zafa08\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XqLgYawsV\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Id4VOdDxC\"},motionChild:true,nodeId:\"VcNX1ulBy\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Safe Word\"})})})}),className:\"framer-e12gkg\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VcNX1ulBy\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g8af1gOCV\"},motionChild:true,nodeId:\"Tvv5niDl_\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Then & Now\"})})})}),className:\"framer-oo7pn7\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tvv5niDl_\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fnm4fb\",\"data-framer-name\":\"copyright\",layoutDependency:layoutDependency,layoutId:\"hVI_T6DqS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16f0xs7\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"p1fgTzflo\",style:{backgroundColor:\"rgb(0, 22, 56)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qt9sbz\",layoutDependency:layoutDependency,layoutId:\"mYb_4iukU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-crg5r0\",\"data-framer-name\":\"copyright\",layoutDependency:layoutDependency,layoutId:\"BlOe7z4G1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Mailing Address: 717 Coliseum Drive NW,\\xa0Winston-Salem, NC 27106\"})}),className:\"framer-1d91tz2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AVhWcdhjv\",style:{\"--extracted-r6o4lv\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15dzqbf\",layoutDependency:layoutDependency,layoutId:\"us9enLBxe\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ilhcjq\",layoutDependency:layoutDependency,layoutId:\"FmXPsX_Qp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pb08vo\",layoutDependency:layoutDependency,layoutId:\"O0my0QAFD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"\\xa9\"})}),className:\"framer-1u6yjnh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RWrHoPvZ0\",style:{\"--extracted-r6o4lv\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextAutoCopyrightStatement14wtuuc,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"YYYY\"})}),className:\"framer-14wtuuc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7gHEcvGr\",style:{\"--extracted-r6o4lv\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(184, 184, 184))\"},children:\"Copyright. Stay Safe Online, NCA. All Rights Reserved.\"})}),className:\"framer-1qvatli\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aIrJSM0Uo\",style:{\"--extracted-r6o4lv\":\"rgb(184, 184, 184)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Privacy Policy\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Code of Conduct\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Brand Assets\"})})]})}),className:\"framer-6gg01\",\"data-framer-cursor\":YAvefbCbz,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FRLBXLkzR\",style:{\"--extracted-r6o4lv\":\"var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FDtoFiVpc:{children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mspc68\",\"data-styles-preset\":\"SGs3ZEGv7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e813d93c-9a9e-4117-b4dd-9645c70e0712, rgb(184, 184, 184)))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hyohElv9M\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Cy Pres\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xtKKw23pb\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Privacy Policy\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EkIeGYHE4\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Code of Conduct\"})}),\" | \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tgsDjrsJ_\"},motionChild:true,nodeId:\"FRLBXLkzR\",openInNewTab:false,relValues:[],scopeId:\"Mv6_4rTth\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l9waa3\",\"data-styles-preset\":\"tCM22y3KC\",children:\"Brand Assets\"})})]})})}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xtKKw23pb\"},implicitPathVariables:undefined},{href:{webPageId:\"xtKKw23pb\"},implicitPathVariables:undefined},{href:{webPageId:\"xtKKw23pb\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mtwrxj-container\",\"data-framer-cursor\":YAvefbCbz,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ulz3jYgUO-container\",nodeId:\"Ulz3jYgUO\",rendersWithMotion:true,scopeId:\"Mv6_4rTth\",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:50,insetBottom:50,insetLeft:50,insetPerSide:false,insetRight:50,insetTop:50,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"var(--token-6f5830f5-03af-4810-acf1-da0fd5d1efa6, rgb(255, 255, 255))\",radius:14,width:1},colorBody:\"var(--token-d6247bec-950b-488d-ab9e-e09eadedaf1b, rgb(71, 71, 71))\",colorTitle:\"var(--token-d6247bec-950b-488d-ab9e-e09eadedaf1b, rgb(71, 71, 71))\",fill:\"var(--token-e8f0b41e-1813-4a96-9114-9a963284d069, rgb(247, 245, 243))\",fontBody:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\"},fontTitle:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"var(--token-0786f224-3b11-4690-8c8d-5373d947d513, rgb(0, 130, 255))\",shadow:{shadowBlur:8,shadowColor:\"var(--token-e414f0ac-74a3-4474-9896-8d592a8fc6c9, rgba(0, 10, 36, 0.1))\",shadowX:2,shadowY:2}},width:360,zIndex:10},button:{borderRadius:50,direction:\"row\",fluid:true,font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},hoverOpacity:.5,labels:{accept:getLocalizedValue(\"v51\",activeLocale)??\"Accept\",acceptAll:getLocalizedValue(\"v53\",activeLocale)??\"Accept All\",confirm:getLocalizedValue(\"v57\",activeLocale)??\"Okay\",customize:getLocalizedValue(\"v55\",activeLocale)??\"Customize\",reject:getLocalizedValue(\"v52\",activeLocale)??\"Reject\",rejectAll:getLocalizedValue(\"v54\",activeLocale)??\"Reject All\",save:getLocalizedValue(\"v56\",activeLocale)??\"Save Preferences\"},padding:10,paddingBottom:12,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:12,primary:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-c08fff5b-c0a6-41dd-960f-4be87691ddef, rgb(85, 10, 195))\"},secondary:{color:\"var(--token-c08fff5b-c0a6-41dd-960f-4be87691ddef, rgb(85, 10, 195))\",fill:\"var(--token-6f5830f5-03af-4810-acf1-da0fd5d1efa6, rgb(255, 255, 255))\"},tapOpacity:.5},content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:getLocalizedValue(\"v58\",activeLocale)??\"We use cookies to enhance your experience, analyze site traffic, and deliver personalized content, like saving your favorite items.\",euPolicy:{label:getLocalizedValue(\"v60\",activeLocale)??\"Privacy Policy\",link:resolvedLinks[0],prefix:getLocalizedValue(\"v59\",activeLocale)??\"Read our\"},euShowReject:false,euTitle:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:getLocalizedValue(\"v58\",activeLocale)??\"We use cookies to enhance your experience, analyze site traffic, and deliver personalized content, like saving your favorite items.\",worldPolicy:{label:getLocalizedValue(\"v61\",activeLocale)??\"Cookie Policy\",prefix:getLocalizedValue(\"v59\",activeLocale)??\"Read our\"},worldShowReject:false,worldTitle:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",worldType:\"advanced\"},gtmId:\"GTM-KN6JPQQ\",height:\"100%\",id:\"Ulz3jYgUO\",layoutId:\"Ulz3jYgUO\",options:{analytics:{description:getLocalizedValue(\"v67\",activeLocale)??\"Enables tracking of performance.\",title:getLocalizedValue(\"v66\",activeLocale)??\"ANALYTICS\"},marketing:{description:getLocalizedValue(\"v69\",activeLocale)??\"Enables ads personalization and tracking.\",title:getLocalizedValue(\"v68\",activeLocale)??\"MARKETING\"},necessary:{description:getLocalizedValue(\"v63\",activeLocale)??\"Enables security and basic functionality.\",optional:true,title:getLocalizedValue(\"v62\",activeLocale)??\"NECESSARY\"},preferences:{description:getLocalizedValue(\"v65\",activeLocale)??\"Enables personalized content and settings.\",title:getLocalizedValue(\"v64\",activeLocale)??\"PREFERENCES\"},preview:false,style:{background:\"var(--token-7bde954e-b3c4-472b-bc9e-a146dc3f9e5c, rgba(255, 250, 246, 0.5))\",border:{color:\"var(--token-cb3601d0-784e-4fc2-8b00-3d15da9dfbc4, rgba(255, 250, 245, 0.7))\",radius:8,width:1},fontBody:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},fontTitle:{fontFamily:'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"var(--token-c08fff5b-c0a6-41dd-960f-4be87691ddef, rgb(85, 10, 195))\",toggleColorInactive:\"var(--token-c314d46d-4150-43b1-9a12-9c8728644f50, rgb(184, 184, 184))\"}},preview:false,trigger:{color:\"rgb(184, 184, 184)\",iconSize:24,iconType:\"default\",text:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",textFont:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},type:\"text\"},width:\"100%\",...addPropertyOverrides({FDtoFiVpc:{content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:getLocalizedValue(\"v58\",activeLocale)??\"We use cookies to enhance your experience, analyze site traffic, and deliver personalized content, like saving your favorite items.\",euPolicy:{label:getLocalizedValue(\"v60\",activeLocale)??\"Privacy Policy\",link:resolvedLinks[2],prefix:getLocalizedValue(\"v59\",activeLocale)??\"Read our\"},euShowReject:false,euTitle:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:getLocalizedValue(\"v58\",activeLocale)??\"We use cookies to enhance your experience, analyze site traffic, and deliver personalized content, like saving your favorite items.\",worldPolicy:{label:getLocalizedValue(\"v61\",activeLocale)??\"Cookie Policy\",prefix:getLocalizedValue(\"v59\",activeLocale)??\"Read our\"},worldShowReject:false,worldTitle:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",worldType:\"advanced\"}},qyVrTcrng:{content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:getLocalizedValue(\"v58\",activeLocale)??\"We use cookies to enhance your experience, analyze site traffic, and deliver personalized content, like saving your favorite items.\",euPolicy:{label:getLocalizedValue(\"v60\",activeLocale)??\"Privacy Policy\",link:resolvedLinks[1],prefix:getLocalizedValue(\"v59\",activeLocale)??\"Read our\"},euShowReject:false,euTitle:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:getLocalizedValue(\"v58\",activeLocale)??\"We use cookies to enhance your experience, analyze site traffic, and deliver personalized content, like saving your favorite items.\",worldPolicy:{label:getLocalizedValue(\"v61\",activeLocale)??\"Cookie Policy\",prefix:getLocalizedValue(\"v59\",activeLocale)??\"Read our\"},worldShowReject:false,worldTitle:getLocalizedValue(\"v50\",activeLocale)??\"Cookie Settings\",worldType:\"advanced\"}}},baseVariant,gestureVariant)})})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rdi3z.framer-jcu7lk, .framer-Rdi3z .framer-jcu7lk { display: block; }\",\".framer-Rdi3z.framer-1aa9ubc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 150px 50px 25px 50px; position: relative; width: 1200px; }\",\".framer-Rdi3z .framer-173boy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-gidcz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-10jrw6e { aspect-ratio: 3.2142857142857144 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); position: relative; text-decoration: none; width: 341px; }\",\".framer-Rdi3z .framer-1gzydl8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-16mee5h-container, .framer-Rdi3z .framer-11q32u1-container, .framer-Rdi3z .framer-17tk2je-container, .framer-Rdi3z .framer-mtwrxj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Rdi3z .framer-gc68gi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-1ltttth, .framer-Rdi3z .framer-1ukzoy9, .framer-Rdi3z .framer-1p9mljp, .framer-Rdi3z .framer-1ljwhxm, .framer-Rdi3z .framer-fz7cyn { flex: none; height: 44px; overflow: visible; position: relative; width: 44px; }\",\".framer-Rdi3z .framer-ceuu1v-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 50%; position: absolute; top: 51%; width: 44px; }\",\".framer-Rdi3z .framer-1w6sl5-container, .framer-Rdi3z .framer-1jyvska-container, .framer-Rdi3z .framer-td7nnt-container { flex: none; height: 44px; left: calc(50.00000000000002% - 44px / 2); position: absolute; top: calc(48.88888888888891% - 44px / 2); width: 44px; }\",\".framer-Rdi3z .framer-l6qudt-container { flex: none; height: 44px; left: calc(46.66666666666669% - 44px / 2); position: absolute; top: calc(48.88888888888891% - 44px / 2); width: 44px; }\",\".framer-Rdi3z .framer-1w606ry { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-pcbgp0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-1jbmxab, .framer-Rdi3z .framer-18baxrl, .framer-Rdi3z .framer-1h0s7in, .framer-Rdi3z .framer-j9dec7, .framer-Rdi3z .framer-1d1x175, .framer-Rdi3z .framer-1d91tz2, .framer-Rdi3z .framer-1u6yjnh, .framer-Rdi3z .framer-14wtuuc, .framer-Rdi3z .framer-1qvatli, .framer-Rdi3z .framer-6gg01 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rdi3z .framer-1kck7vg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-e5awkq-container { cursor: text; flex: none; height: 47px; position: relative; width: 265px; }\",\".framer-Rdi3z .framer-btj3au-container { flex: none; height: 1px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Rdi3z .framer-1dcjvit-container { flex: none; height: 40px; position: relative; width: 152px; }\",\".framer-Rdi3z .framer-1s3o8r1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-19wc1c3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-1fhrgg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-km9rnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z .framer-1sd6db7 { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-ll2o1w, .framer-Rdi3z .framer-1iu2u82, .framer-Rdi3z .framer-g6zrdk, .framer-Rdi3z .framer-4w7z7j { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-7tyg83, .framer-Rdi3z .framer-mad1qu, .framer-Rdi3z .framer-1mrnxfv, .framer-Rdi3z .framer-xbfu9l, .framer-Rdi3z .framer-16f0xs7 { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rdi3z .framer-ogzi9f, .framer-Rdi3z .framer-14gp4ow, .framer-Rdi3z .framer-1pqx8fx, .framer-Rdi3z .framer-8tq5ds { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-1pzfjei, .framer-Rdi3z .framer-1qr9wt9, .framer-Rdi3z .framer-c75kh7, .framer-Rdi3z .framer-1w1f1we, .framer-Rdi3z .framer-fyuyun, .framer-Rdi3z .framer-1qhhu2s, .framer-Rdi3z .framer-z33b07, .framer-Rdi3z .framer-v8m73u, .framer-Rdi3z .framer-mdh8m7, .framer-Rdi3z .framer-israak, .framer-Rdi3z .framer-1x6g13u, .framer-Rdi3z .framer-zcbldb, .framer-Rdi3z .framer-ifyd1c, .framer-Rdi3z .framer-14b1zt2, .framer-Rdi3z .framer-1y2bqvk, .framer-Rdi3z .framer-1ufkp1l, .framer-Rdi3z .framer-1t25uxe, .framer-Rdi3z .framer-18upfpg, .framer-Rdi3z .framer-1snu53z, .framer-Rdi3z .framer-1x3p3vr, .framer-Rdi3z .framer-kiv656, .framer-Rdi3z .framer-lb66a2, .framer-Rdi3z .framer-zafa08, .framer-Rdi3z .framer-e12gkg, .framer-Rdi3z .framer-oo7pn7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rdi3z .framer-1fnm4fb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-qt9sbz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-crg5r0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rdi3z .framer-15dzqbf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-1ilhcjq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rdi3z .framer-1pb08vo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rdi3z.framer-v-1ne8njd.framer-1aa9ubc { gap: 50px; min-width: 500px; width: 710px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-173boy { gap: 20px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-gidcz8 { flex-direction: column; gap: 32px; justify-content: flex-start; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-10jrw6e { height: var(--framer-aspect-ratio-supported, 79px); width: 254px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-1gzydl8 { flex-direction: row; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-16mee5h-container, .framer-Rdi3z.framer-v-1a5vqk7 .framer-16mee5h-container { order: 1; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-gc68gi { order: 0; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-1w606ry { flex-direction: column; gap: 10px; justify-content: flex-start; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-pcbgp0, .framer-Rdi3z.framer-v-1a5vqk7 .framer-pcbgp0 { order: 1; width: 100%; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-1kck7vg, .framer-Rdi3z.framer-v-1a5vqk7 .framer-1kck7vg { width: 100%; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-e5awkq-container, .framer-Rdi3z.framer-v-1a5vqk7 .framer-e5awkq-container { flex: 1 0 0px; width: 1px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-1s3o8r1, .framer-Rdi3z.framer-v-1a5vqk7 .framer-1s3o8r1 { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-19wc1c3, .framer-Rdi3z.framer-v-1a5vqk7 .framer-19wc1c3 { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-1sd6db7 { gap: 10px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-qt9sbz, .framer-Rdi3z.framer-v-1a5vqk7 .framer-qt9sbz { flex-direction: column; gap: 4px; }\",\".framer-Rdi3z.framer-v-1ne8njd .framer-crg5r0, .framer-Rdi3z.framer-v-1a5vqk7 .framer-crg5r0 { flex: none; width: 100%; }\",\".framer-Rdi3z.framer-v-1a5vqk7.framer-1aa9ubc { gap: 32px; padding: 150px 25px 25px 25px; width: 390px; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-173boy { gap: 20px; justify-content: flex-end; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-gidcz8 { flex-direction: column; gap: 20px; justify-content: flex-start; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-10jrw6e { height: var(--framer-aspect-ratio-supported, 56px); width: 180px; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1gzydl8 { align-content: center; align-items: center; flex-direction: row; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-gc68gi { gap: 6px; order: 0; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1ltttth, .framer-Rdi3z.framer-v-1a5vqk7 .framer-1ukzoy9, .framer-Rdi3z.framer-v-1a5vqk7 .framer-1p9mljp, .framer-Rdi3z.framer-v-1a5vqk7 .framer-1ljwhxm, .framer-Rdi3z.framer-v-1a5vqk7 .framer-fz7cyn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 42px); width: 42px; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1w606ry { flex-direction: column; gap: 0px; justify-content: flex-start; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1dcjvit-container { width: 150px; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1sd6db7 { grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1fnm4fb { justify-content: flex-end; }\",\".framer-Rdi3z.framer-v-1a5vqk7 .framer-1ilhcjq { flex-direction: column; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-Rdi3z[data-border=\"true\"]::after, .framer-Rdi3z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 794.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qyVrTcrng\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"500px\",null,null,null]},\"FDtoFiVpc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YAvefbCbz\":\"cursor\",\"NPnaD9jYB\":\"cursorField\",\"lioWgh8t9\":\"uRL\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMv6_4rTth=withCSS(Component,css,\"framer-Rdi3z\");export default FramerMv6_4rTth;FramerMv6_4rTth.displayName=\"Footer\";FramerMv6_4rTth.defaultProps={height:794.5,width:1200};addPropertyControls(FramerMv6_4rTth,{variant:{options:[\"bVbbrfZVn\",\"qyVrTcrng\",\"FDtoFiVpc\"],optionTitles:[\"desktop\",\"tablet\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},YAvefbCbz:{title:\"Cursor\",type:ControlType.CustomCursor},NPnaD9jYB:{title:\"Cursor Field\",type:ControlType.CustomCursor},lioWgh8t9:{defaultValue:\"/\",title:\"URL\",type:ControlType.String}});addFonts(FramerMv6_4rTth,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v12/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3U7D2WJULAFN5UCDE2DSKFPDTJNUSRPY/XTZGHUDFURQVBRVTOPX7XHP5YBIQJL2U/FVNNCZHGTHUOM3RCJDOO45QMBIJISVEG.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZLH2B3SFZRQ3US4ZUYG2367OYUMTVTGK/RSOPFK2EORTGBCOBZRY42GDLXFFB4IQW/JZ35FM4UJSKC7X2PM65RH75Q5KLE552S.woff2\",weight:\"600\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v23/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD6llzBaI5loa26g.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v23/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD2FlzBaI5loa26g.woff2\",weight:\"500\"}]},...LocaleSelectorFonts,...BtnLinkFonts,...FormTextFieldFonts,...FormSubmitFonts,...BtnMainFonts,...ThemeToggleFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMv6_4rTth\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"794.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qyVrTcrng\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"500px\\\",null,null,null]},\\\"FDtoFiVpc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YAvefbCbz\\\":\\\"cursor\\\",\\\"NPnaD9jYB\\\":\\\"cursorField\\\",\\\"lioWgh8t9\\\":\\\"uRL\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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AAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO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AC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,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AC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,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"}