{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/ZrPKNQfoNa5y1lXPDiQn/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/r9pzfnWLyWNjSAfssL28/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/A4ld94elrQNddtXvgzeQ/region.js", "ssg:https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js", "ssg:https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/1cScs1EQ61ocAaA6rJBr/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/UZwNJjzc8oCt2JJx3RmF/Cookies.js", "ssg:https://framerusercontent.com/modules/wHir01tEsmjAC9jQuCJj/xs4dugtF7Oc8XuO3icac/mGnH8xiIt.js", "ssg:https://framerusercontent.com/modules/n8g1itT6gHTQwHNDe62C/Mys3AKsuCix6ttRAe9TP/l8is1qt8W.js", "ssg:https://framerusercontent.com/modules/CwSp6HHpSTFwIsVgookD/tilXDAzLK4GhGPbnrZCj/rgU5O9hjg.js", "ssg:https://framerusercontent.com/modules/sD6EgA8uZgedxdc5aUbW/ch11jDHXjjdXMI1kX6vN/xnNRgngSQ.js", "ssg:https://framerusercontent.com/modules/oh1zrrQfCneoHtC7REkJ/Pk7QrxqOVER85jx4y9aK/D8wJhtkCw.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)})`:\"\");/**\n * Function to get the Iframe snippet\n * @param environment - The parameters to use a custom environment\n * @param customDomain - Custom domain for gtm\n * @param id - The id of the container\n */const getIframeSnippet=(id,environment,customDomain=DEFAULT_DOMAIN)=>{let params=``;if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`<iframe src=\"${customDomain}/ns.html?id=${id}${params}\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\" id=\"tag-manager\"></iframe>`;};/**\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`\n    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n      '${customDomain}/${customScriptName}?id='+i+dl${params};f.parentNode.insertBefore(j,f);\n    })(window,document,'script','${dataLayerName}','${id}');\n  `;};/**\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 getNoScript=()=>{const noScript=document.createElement(\"noscript\");noScript.innerHTML=getIframeSnippet(params.id,params.environment,params.customDomain);return noScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.innerHTML=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getNoScript,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();const noScript=gtm.getNoScript();document.head.insertBefore(dataLayerScript,document.head.childNodes[0]);document.head.insertBefore(script,document.head.childNodes[1]);document.body.insertBefore(noScript,document.body.childNodes[0]);};/**\n * Function to send the events to the GTM\n * I can't find how to type a function using the \"arguments\" keyword so I've setup\n * a wrapper function that mutes typescript.\n */function gtag(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}export function sendToGTM(...args){// @ts-ignore\ngtag(...args);}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"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 as e}from\"framer-motion\";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(e){let t,o;let r=e.split(\"-\");switch(r[0]){case\"top\":o=\"flex-start\";break;case\"bottom\":o=\"flex-end\";break;case\"center\":o=\"center\";break;default:o=\"initial\";}switch(r[1]){case\"left\":t=\"flex-start\";break;case\"right\":t=\"flex-end\";break;case\"center\":t=\"center\";break;default:t=\"initial\";}return{justifyContent:t,alignItems:o};}export function getMultipleShadows(...e){let t=[];return e.forEach(e=>e&&t.push(e)),t.join(\", \");}export function getShadow(e){return e?`${e.shadowX}px ${e.shadowY}px ${e.shadowBlur}px ${e.shadowColor}`:null;}export function safeJSONParse(e,t){try{return JSON.parse(e);}catch{t&&t();}}export const getCookie=(t,o)=>{var r;o=o||(e?document.cookie:\"\");let[,,a]=null!==(r=o.match(`(^|;) ?${t}=([^;]*)(;|$)`))&&void 0!==r?r:[null,null,null];return a;};\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useEffect,useReducer}from\"react\";import{isBrowser}from\"framer-motion\";import{useIsOnFramerCanvas}from\"framer\";import{sendToGTM,initGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/ZrPKNQfoNa5y1lXPDiQn/send.js\";import{safeJSONParse}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};export function useConsent({gtmId,defaultConsent}){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){const isFirstSync=!state.hasSynced;if(isFirstSync){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});}else{sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));}}}useEffect(()=>{getStateFromLocalStorage();},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{const shouldSync=state.sync&&isBrowser&&!isOnFramerCanvas&&state.modes!==null;if(!shouldSync){return;}syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\",];const isInEUTimezone=()=>{var ref,ref1,ref2;return(ref1=(ref=Intl===null||Intl===void 0?void 0:Intl.DateTimeFormat())===null||ref===void 0?void 0:ref.resolvedOptions())===null||ref1===void 0?void 0:(ref2=ref1.timeZone)===null||ref2===void 0?void 0:ref2.startsWith(\"Europe\");};const isEULocale=()=>{var ref;var _language;const locale=(_language=navigator.language)!==null&&_language!==void 0?_language:(ref=navigator.languages)===null||ref===void 0?void 0:ref[0];return countries.some(country=>{var ref;return(ref=locale===null||locale===void 0?void 0:locale.toUpperCase())===null||ref===void 0?void 0:ref.includes(country);});};export const inEU=()=>{return isInEUTimezone()||isEULocale();};\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/CCpUsPPKoqHrXP3zvE2C/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";export const IconCookie=props=>/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:props.width,height:props.height,style:{...props.style,color:props.color,fill:props.color},children:/*#__PURE__*/ _jsx(\"path\",{d:\"M164.49,163.51a12,12,0,1,1-17,0A12,12,0,0,1,164.49,163.51Zm-81-8a12,12,0,1,0,17,0A12,12,0,0,0,83.51,155.51Zm9-39a12,12,0,1,0-17,0A12,12,0,0,0,92.49,116.49Zm48-1a12,12,0,1,0,0,17A12,12,0,0,0,140.49,115.51ZM232,128A104,104,0,1,1,128,24a8,8,0,0,1,8,8,40,40,0,0,0,40,40,8,8,0,0,1,8,8,40,40,0,0,0,40,40A8,8,0,0,1,232,128Zm-16.31,7.39A56.13,56.13,0,0,1,168.5,87.5a56.13,56.13,0,0,1-47.89-47.19,88,88,0,1,0,95.08,95.08Z\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"IconCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Icons.map", "// Generated by Framer (1445756)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zReINw005\",\"n1Lxx4QSl\"];const variantClassNames={n1Lxx4QSl:\"framer-v-ydz03l\",zReINw005:\"framer-v-35610y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Off:\"zReINw005\",On:\"n1Lxx4QSl\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"zReINw005\",background:oep5aWG90=\"rgb(0, 153, 255)\",backgroundInactive:wdGQJh0F_=\"rgba(0, 0, 0, 0.1)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"zReINw005\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-4aJ9g\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-35610y\",className),\"data-framer-name\":\"Off\",layoutDependency:layoutDependency,layoutId:\"zReINw005\",ref:ref,style:{backgroundColor:wdGQJh0F_,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},transition:transition,variants:{n1Lxx4QSl:{backgroundColor:oep5aWG90}},...addPropertyOverrides({n1Lxx4QSl:{\"data-framer-name\":\"On\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-u7n9zz\",layoutDependency:layoutDependency,layoutId:\"O3uKgVodv\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},transition:transition})})})});});const css=['.framer-4aJ9g [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4aJ9g .framer-15sckd1 { display: block; }\",\".framer-4aJ9g .framer-35610y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: flex-start; overflow: hidden; padding: 2px 2px 2px 2px; position: relative; width: 24px; will-change: transform; }\",\".framer-4aJ9g .framer-u7n9zz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: visible; position: relative; width: 10px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4aJ9g .framer-35610y { gap: 0px; } .framer-4aJ9g .framer-35610y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4aJ9g .framer-35610y > :first-child { margin-left: 0px; } .framer-4aJ9g .framer-35610y > :last-child { margin-right: 0px; } }\",\".framer-4aJ9g.framer-v-ydz03l .framer-35610y { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"n1Lxx4QSl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"oep5aWG90\":\"background\",\"wdGQJh0F_\":\"backgroundInactive\"}\n */ const FramerBlf0sjosZ=withCSS(Component,css,\"framer-4aJ9g\");export default FramerBlf0sjosZ;FramerBlf0sjosZ.displayName=\"Toggle\";FramerBlf0sjosZ.defaultProps={height:14,width:24};addPropertyControls(FramerBlf0sjosZ,{variant:{options:[\"zReINw005\",\"n1Lxx4QSl\"],optionTitles:[\"Off\",\"On\"],title:\"Variant\",type:ControlType.Enum},oep5aWG90:{defaultValue:\"rgb(0, 153, 255)\",title:\"Background\",type:ControlType.Color},wdGQJh0F_:{defaultValue:\"rgba(0, 0, 0, 0.1)\",title:\"Background Inactive\",type:ControlType.Color}});addFonts(FramerBlf0sjosZ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBlf0sjosZ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n1Lxx4QSl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"oep5aWG90\\\":\\\"background\\\",\\\"wdGQJh0F_\\\":\\\"backgroundInactive\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"14\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Blf0sjosZ.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";import Toggle from\"https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP\";const SPACING=20;export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,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}))},\"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:[/*#__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,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}),/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})]}),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(\"h6\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);return shouldShow&&/*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[description,\" \",(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}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,{id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:.6},whileTap:{opacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",outline:\"none\",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}});}\nexport const __FramerMetadata__ = {\"exports\":{\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BannerComponentProps\":{\"type\":\"tsType\",\"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{createPortal}from\"react-dom\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,useIsOnFramerCanvas}from\"framer\";import{AnimatePresence,motion,isBrowser}from\"framer-motion\";import{useConsent,defaultConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/r9pzfnWLyWNjSAfssL28/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/A4ld94elrQNddtXvgzeQ/region.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";import{IconCookie}from\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/1cScs1EQ61ocAaA6rJBr/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.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,onShown,onConsentChange,onAccept,onDismiss,onReject}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});const consent=useConsent({gtmId,defaultConsent:region.defaults});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){onShown({isInEU});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){onAccept({isInEU});}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){onConsentChange({isInEU,consent:consent.modes});}},[consent.modes]);function handleDismiss(){consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){onDismiss({isInEU});}}function handleAcceptAll(){consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){onAccept({isInEU});}}function handleRejectAll(){consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){onReject({isInEU});}}function handleAcceptCurrent(){consent.acceptCurrent();setIsOpen(false);// Fire callback\nif(onAccept){onAccept({isInEU});}}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen&&/*#__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})})]});}function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);return /*#__PURE__*/createPortal(/*#__PURE__*/_jsxs(motion.div,{style:{top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:props.region.blocking?\"all\":\"none\"},children:[props.region.blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}),document.body);}function Trigger({trigger,style,onClick}){const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",outline:\"inherit\",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(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.\"})]});}}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},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},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}}},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\":{\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f55354)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-o9aax .framer-styles-preset-cduyd7:not(.rich-text-wrapper), .framer-o9aax .framer-styles-preset-cduyd7.rich-text-wrapper a { --framer-link-current-text-color: var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55)); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-e60ca3ff-8a56-4382-a497-05b096bc8a9e, #eeedec); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55)); --framer-link-text-decoration: none; }\"];export const className=\"framer-o9aax\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"IXH5y1FZf\",\"ZaaJw3tP8\",\"bWSYG8u79\",\"lMF1VWVOJ\",\"HTTmwfUWz\",\"nLfZml73D\",\"I0kZbp1rx\",\"RB5GbY_b8\",\"rkg5JSdqZ\"];const serializationHash=\"framer-e1P8s\";const variantClassNames={bWSYG8u79:\"framer-v-16x6b5v\",HTTmwfUWz:\"framer-v-1coshn6\",I0kZbp1rx:\"framer-v-17r0boo\",IXH5y1FZf:\"framer-v-122iri\",lMF1VWVOJ:\"framer-v-1w310e4\",nLfZml73D:\"framer-v-1cz1uda\",RB5GbY_b8:\"framer-v-jj210b\",rkg5JSdqZ:\"framer-v-1jsowwu\",ZaaJw3tP8:\"framer-v-c69jxr\"};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 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={\"Horizontal - color\":\"bWSYG8u79\",\"Horizontal - dark\":\"RB5GbY_b8\",\"Horizontal - white\":\"lMF1VWVOJ\",\"Monogram - color\":\"HTTmwfUWz\",\"Monogram - dark\":\"rkg5JSdqZ\",\"Monogram - white\":\"nLfZml73D\",\"Vertical - color\":\"ZaaJw3tP8\",\"Vertical - dark\":\"I0kZbp1rx\",\"Vertical - white\":\"IXH5y1FZf\"};const getProps=({height,id,link,width,...props})=>{return{...props,C3VRq5DEC:link??props.C3VRq5DEC,variant:humanReadableVariantMap[props.variant]??props.variant??\"IXH5y1FZf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,C3VRq5DEC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IXH5y1FZf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ZaaJw3tP8\",\"bWSYG8u79\",\"lMF1VWVOJ\",\"HTTmwfUWz\",\"nLfZml73D\",\"RB5GbY_b8\",\"rkg5JSdqZ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"lMF1VWVOJ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"nLfZml73D\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"HTTmwfUWz\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"ZaaJw3tP8\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"RB5GbY_b8\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"rkg5JSdqZ\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"bWSYG8u79\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:C3VRq5DEC,nodeId:\"IXH5y1FZf\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-122iri\",className,classNames)} framer-5i1bfd`,\"data-framer-name\":\"Vertical - white\",layoutDependency:layoutDependency,layoutId:\"IXH5y1FZf\",ref:ref??ref1,style:{...style},...addPropertyOverrides({bWSYG8u79:{\"data-framer-name\":\"Horizontal - color\"},HTTmwfUWz:{\"data-framer-name\":\"Monogram - color\"},I0kZbp1rx:{\"data-framer-name\":\"Vertical - dark\"},lMF1VWVOJ:{\"data-framer-name\":\"Horizontal - white\"},nLfZml73D:{\"data-framer-name\":\"Monogram - white\"},RB5GbY_b8:{\"data-framer-name\":\"Horizontal - dark\"},rkg5JSdqZ:{\"data-framer-name\":\"Monogram - dark\"},ZaaJw3tP8:{\"data-framer-name\":\"Vertical - color\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-142qdwl\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"v2N1spn9R\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 206 113\"><path d=\"M 103.005 0 C 85.885 0 72 13.878 72 31.002 C 72 48.126 85.885 62.004 103.005 62.004 C 120.125 62.004 134 48.126 134 31.002 C 134 13.878 120.125 0 103.005 0 Z M 88.238 42.264 C 85.307 42.264 82.934 39.89 82.934 36.959 C 82.934 34.028 85.307 31.664 88.238 31.664 C 91.168 31.664 93.531 34.028 93.531 36.959 C 93.531 39.89 91.168 42.264 88.238 42.264 Z M 105.326 42.264 L 98.552 42.264 L 90.212 24.531 C 89.162 22.303 90.78 19.74 93.248 19.74 L 100.022 19.74 L 108.372 37.473 C 109.412 39.701 107.795 42.264 105.326 42.264 Z M 119.716 42.264 L 112.941 42.264 L 104.602 24.531 C 103.551 22.303 105.179 19.74 107.648 19.74 L 114.412 19.74 L 122.762 37.473 C 123.812 39.701 122.184 42.264 119.716 42.264 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 8.356 86 L 14.668 104.563 L 14.739 104.563 L 20.718 86 L 29.074 86 L 29.074 113 L 23.52 113 L 23.52 93.86 L 23.449 93.86 L 16.833 113 L 12.261 113 L 5.645 94.052 L 5.574 94.052 L 5.574 113 L 0 113 L 0 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 46.616 86 L 56.712 113 L 50.541 113 L 48.498 106.991 L 38.402 106.991 L 36.288 113 L 30.309 113 L 40.526 86 Z M 46.95 102.56 L 43.541 92.656 L 43.47 92.656 L 39.95 102.56 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 69.569 86 C 71.308 86 72.927 86.273 74.424 86.829 C 75.932 87.386 77.216 88.215 78.319 89.328 C 79.412 90.441 80.271 91.827 80.899 93.486 C 81.516 95.145 81.819 97.097 81.819 99.353 C 81.819 101.316 81.566 103.137 81.06 104.796 C 80.555 106.455 79.786 107.891 78.774 109.105 C 77.752 110.309 76.488 111.27 74.96 111.958 C 73.433 112.656 71.642 113 69.569 113 L 57.925 113 L 57.925 86.01 L 69.569 86.01 Z M 69.154 108.013 C 70.014 108.013 70.843 107.871 71.652 107.588 C 72.462 107.315 73.18 106.849 73.807 106.212 C 74.434 105.575 74.94 104.735 75.325 103.703 C 75.699 102.671 75.891 101.407 75.891 99.92 C 75.891 98.554 75.75 97.33 75.497 96.227 C 75.234 95.135 74.788 94.184 74.192 93.415 C 73.585 92.636 72.785 92.039 71.784 91.614 C 70.782 91.19 69.558 90.997 68.092 90.997 L 63.853 90.997 L 63.853 108.013 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 93.14 86 L 99.452 104.563 L 99.523 104.563 L 105.502 86 L 113.858 86 L 113.858 113 L 108.304 113 L 108.304 93.86 L 108.233 93.86 L 101.617 113 L 97.044 113 L 90.429 94.052 L 90.358 94.052 L 90.358 113 L 84.794 113 L 84.794 86 L 93.15 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 138.084 86 L 138.084 90.987 L 123.821 90.987 L 123.821 96.774 L 136.901 96.774 L 136.901 101.387 L 123.821 101.387 L 123.821 108.003 L 138.378 108.003 L 138.378 112.99 L 117.893 112.99 L 117.893 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 147.271 86 L 158.53 104.118 L 158.601 104.118 L 158.601 86 L 164.155 86 L 164.155 113 L 158.217 113 L 146.988 94.922 L 146.917 94.922 L 146.917 113 L 141.363 113 L 141.363 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 190.02 86 L 200.611 113 L 197.85 113 L 194.562 104.604 L 182.281 104.604 L 179.034 113 L 176.312 113 L 187.167 86 L 190.04 86 Z M 193.692 102.419 L 188.472 88.58 L 183.06 102.419 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 205.822 86 L 205.822 113 L 203.253 113 L 203.253 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:8620829113,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-26ineh\",\"data-framer-name\":\"horizontal\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RwzyguIrP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 226 48\"><path d=\"M 24.035 0 C 10.781 0 0.031 10.743 0.031 24 C 0.031 37.257 10.781 48 24.035 48 C 37.29 48 48.031 37.257 48.031 24 C 48.031 10.743 37.29 0 24.035 0 Z M 12.603 32.718 C 10.334 32.718 8.496 30.88 8.496 28.611 C 8.496 26.342 10.334 24.512 12.603 24.512 C 14.871 24.512 16.701 26.342 16.701 28.611 C 16.701 30.88 14.871 32.718 12.603 32.718 Z M 25.832 32.718 L 20.588 32.718 L 14.131 18.99 C 13.318 17.266 14.57 15.282 16.481 15.282 L 21.726 15.282 L 28.19 29.01 C 28.995 30.734 27.743 32.718 25.832 32.718 Z M 36.972 32.718 L 31.728 32.718 L 25.271 18.99 C 24.458 17.266 25.718 15.282 27.629 15.282 L 32.866 15.282 L 39.331 29.01 C 40.144 30.734 38.883 32.718 36.972 32.718 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 71.53 13.5 L 76.44 27.938 L 76.495 27.938 L 81.145 13.5 L 87.644 13.5 L 87.644 34.5 L 83.325 34.5 L 83.325 19.613 L 83.269 19.613 L 78.124 34.5 L 74.567 34.5 L 69.422 19.763 L 69.367 19.763 L 69.367 34.5 L 65.031 34.5 L 65.031 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 101.288 13.5 L 109.141 34.5 L 104.341 34.5 L 102.752 29.826 L 94.899 29.826 L 93.255 34.5 L 88.605 34.5 L 96.552 13.5 Z M 101.548 26.38 L 98.896 18.677 L 98.841 18.677 L 96.103 26.38 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 119.14 13.5 C 120.493 13.5 121.752 13.712 122.917 14.145 C 124.089 14.578 125.088 15.223 125.946 16.089 C 126.796 16.954 127.465 18.032 127.952 19.322 C 128.432 20.613 128.668 22.131 128.668 23.886 C 128.668 25.412 128.472 26.829 128.078 28.119 C 127.685 29.409 127.087 30.527 126.3 31.471 C 125.505 32.407 124.522 33.155 123.334 33.69 C 122.146 34.233 120.753 34.5 119.14 34.5 L 110.084 34.5 L 110.084 13.508 L 119.14 13.508 Z M 118.818 30.621 C 119.486 30.621 120.131 30.511 120.761 30.291 C 121.39 30.078 121.949 29.716 122.437 29.22 C 122.925 28.725 123.318 28.072 123.617 27.269 C 123.908 26.467 124.058 25.483 124.058 24.326 C 124.058 23.264 123.948 22.312 123.751 21.455 C 123.546 20.605 123.2 19.865 122.736 19.267 C 122.264 18.661 121.642 18.197 120.863 17.867 C 120.084 17.536 119.132 17.387 117.991 17.387 L 114.695 17.387 L 114.695 30.621 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 137.473 13.5 L 142.383 27.938 L 142.438 27.938 L 147.088 13.5 L 153.587 13.5 L 153.587 34.5 L 149.268 34.5 L 149.268 19.613 L 149.212 19.613 L 144.067 34.5 L 140.51 34.5 L 135.365 19.763 L 135.309 19.763 L 135.309 34.5 L 130.982 34.5 L 130.982 13.5 L 137.481 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 172.43 13.5 L 172.43 17.379 L 161.336 17.379 L 161.336 21.88 L 171.51 21.88 L 171.51 25.467 L 161.336 25.467 L 161.336 30.613 L 172.658 30.613 L 172.658 34.492 L 156.726 34.492 L 156.726 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 179.575 13.5 L 188.333 27.592 L 188.388 27.592 L 188.388 13.5 L 192.707 13.5 L 192.707 34.5 L 188.089 34.5 L 179.355 20.44 L 179.3 20.44 L 179.3 34.5 L 174.98 34.5 L 174.98 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 212.825 13.5 L 221.063 34.5 L 218.915 34.5 L 216.358 27.97 L 206.806 27.97 L 204.281 34.5 L 202.164 34.5 L 210.607 13.5 L 212.841 13.5 Z M 215.681 26.27 L 211.622 15.506 L 207.412 26.27 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 225.116 13.5 L 225.116 34.5 L 223.118 34.5 L 223.118 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:12543078558,withExternalLayout:true,...addPropertyOverrides({lMF1VWVOJ:{svgContentId:10375780362}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1acuwp7\",\"data-framer-name\":\"monogram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"lS9lN3hyi\",svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.0041 0C10.7498 0 0 10.7435 0 24C0 37.2565 10.7498 48 24.0041 48C37.2583 48 48 37.2565 48 24C48 10.7435 37.2583 0 24.0041 0ZM12.5712 32.7184C10.3026 32.7184 8.46485 30.8804 8.46485 28.6113C8.46485 26.3423 10.3026 24.5124 12.5712 24.5124C14.8399 24.5124 16.6695 26.3423 16.6695 28.6113C16.6695 30.8804 14.8399 32.7184 12.5712 32.7184ZM25.8011 32.7184H20.5563L14.0999 18.9902C13.2868 17.266 14.539 15.2816 16.4499 15.2816H21.6947L28.1592 29.0098C28.9643 30.734 27.712 32.7184 25.8011 32.7184ZM36.9412 32.7184H31.6964L25.24 18.9902C24.4269 17.266 25.6873 15.2816 27.5982 15.2816H32.8348L39.2993 29.0098C40.1125 30.734 38.8521 32.7184 36.9412 32.7184Z\" fill=\"#EEEDEC\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-obv8x5\",\"data-framer-name\":\"monogram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"PFgjbJOH8\",svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.0041 0C10.7498 0 0 10.7435 0 24C0 37.2565 10.7498 48 24.0041 48C37.2583 48 48 37.2565 48 24C48 10.7435 37.2583 0 24.0041 0ZM12.5712 32.7184C10.3026 32.7184 8.46485 30.8804 8.46485 28.6113C8.46485 26.3423 10.3026 24.5124 12.5712 24.5124C14.8399 24.5124 16.6695 26.3423 16.6695 28.6113C16.6695 30.8804 14.8399 32.7184 12.5712 32.7184ZM25.8011 32.7184H20.5563L14.0999 18.9902C13.2868 17.266 14.539 15.2816 16.4499 15.2816H21.6947L28.1592 29.0098C28.9643 30.734 27.712 32.7184 25.8011 32.7184ZM36.9412 32.7184H31.6964L25.24 18.9902C24.4269 17.266 25.6873 15.2816 27.5982 15.2816H32.8348L39.2993 29.0098C40.1125 30.734 38.8521 32.7184 36.9412 32.7184Z\" fill=\"#F5C304\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kk07lg\",\"data-framer-name\":\"vert color\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"n1h5NcuZ1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 206 113\"><path d=\"M 103.005 0 C 85.885 0 72 13.878 72 31.002 C 72 48.126 85.885 62.004 103.005 62.004 C 120.125 62.004 134 48.126 134 31.002 C 134 13.878 120.125 0 103.005 0 Z M 88.238 42.264 C 85.307 42.264 82.934 39.89 82.934 36.959 C 82.934 34.028 85.307 31.664 88.238 31.664 C 91.168 31.664 93.531 34.028 93.531 36.959 C 93.531 39.89 91.168 42.264 88.238 42.264 Z M 105.326 42.264 L 98.552 42.264 L 90.212 24.531 C 89.162 22.303 90.78 19.74 93.248 19.74 L 100.022 19.74 L 108.372 37.473 C 109.412 39.701 107.795 42.264 105.326 42.264 Z M 119.716 42.264 L 112.941 42.264 L 104.602 24.531 C 103.551 22.303 105.179 19.74 107.648 19.74 L 114.412 19.74 L 122.762 37.473 C 123.812 39.701 122.184 42.264 119.716 42.264 Z\" fill=\"var(--token-7ce1073d-dc4e-4215-9748-7026703aaf67, rgb(245, 195, 4)) /* {&quot;name&quot;:&quot;yellow&quot;} */\"></path><path d=\"M 8.356 86 L 14.668 104.563 L 14.739 104.563 L 20.718 86 L 29.074 86 L 29.074 113 L 23.52 113 L 23.52 93.86 L 23.449 93.86 L 16.833 113 L 12.261 113 L 5.645 94.052 L 5.574 94.052 L 5.574 113 L 0 113 L 0 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 46.616 86 L 56.712 113 L 50.541 113 L 48.498 106.991 L 38.402 106.991 L 36.288 113 L 30.309 113 L 40.526 86 Z M 46.95 102.56 L 43.541 92.656 L 43.47 92.656 L 39.95 102.56 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 69.569 86 C 71.308 86 72.927 86.273 74.424 86.829 C 75.932 87.386 77.216 88.215 78.319 89.328 C 79.412 90.441 80.271 91.827 80.899 93.486 C 81.516 95.145 81.819 97.097 81.819 99.353 C 81.819 101.316 81.566 103.137 81.06 104.796 C 80.555 106.455 79.786 107.891 78.774 109.105 C 77.752 110.309 76.488 111.27 74.96 111.958 C 73.433 112.656 71.642 113 69.569 113 L 57.925 113 L 57.925 86.01 L 69.569 86.01 Z M 69.154 108.013 C 70.014 108.013 70.843 107.871 71.652 107.588 C 72.462 107.315 73.18 106.849 73.807 106.212 C 74.434 105.575 74.94 104.735 75.325 103.703 C 75.699 102.671 75.891 101.407 75.891 99.92 C 75.891 98.554 75.75 97.33 75.497 96.227 C 75.234 95.135 74.788 94.184 74.192 93.415 C 73.585 92.636 72.785 92.039 71.784 91.614 C 70.782 91.19 69.558 90.997 68.092 90.997 L 63.853 90.997 L 63.853 108.013 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 93.14 86 L 99.452 104.563 L 99.523 104.563 L 105.502 86 L 113.858 86 L 113.858 113 L 108.304 113 L 108.304 93.86 L 108.233 93.86 L 101.617 113 L 97.044 113 L 90.429 94.052 L 90.358 94.052 L 90.358 113 L 84.794 113 L 84.794 86 L 93.15 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 138.084 86 L 138.084 90.987 L 123.821 90.987 L 123.821 96.774 L 136.901 96.774 L 136.901 101.387 L 123.821 101.387 L 123.821 108.003 L 138.378 108.003 L 138.378 112.99 L 117.893 112.99 L 117.893 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 147.271 86 L 158.53 104.118 L 158.601 104.118 L 158.601 86 L 164.155 86 L 164.155 113 L 158.217 113 L 146.988 94.922 L 146.917 94.922 L 146.917 113 L 141.363 113 L 141.363 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 190.02 86 L 200.611 113 L 197.85 113 L 194.562 104.604 L 182.281 104.604 L 179.034 113 L 176.312 113 L 187.167 86 L 190.04 86 Z M 193.692 102.419 L 188.472 88.58 L 183.06 102.419 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 205.822 86 L 205.822 113 L 203.253 113 L 203.253 86 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:10036508928,withExternalLayout:true,...addPropertyOverrides({ZaaJw3tP8:{svgContentId:8911656011}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ukzorr\",\"data-framer-name\":\"horiz dark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pSD5zGOl0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 226 48\"><path d=\"M 24.035 0 C 10.781 0 0.031 10.743 0.031 24 C 0.031 37.257 10.781 48 24.035 48 C 37.29 48 48.031 37.257 48.031 24 C 48.031 10.743 37.29 0 24.035 0 Z M 12.603 32.718 C 10.334 32.718 8.496 30.88 8.496 28.611 C 8.496 26.342 10.334 24.512 12.603 24.512 C 14.871 24.512 16.701 26.342 16.701 28.611 C 16.701 30.88 14.871 32.718 12.603 32.718 Z M 25.832 32.718 L 20.588 32.718 L 14.131 18.99 C 13.318 17.266 14.57 15.282 16.481 15.282 L 21.726 15.282 L 28.19 29.01 C 28.995 30.734 27.743 32.718 25.832 32.718 Z M 36.972 32.718 L 31.728 32.718 L 25.271 18.99 C 24.458 17.266 25.718 15.282 27.629 15.282 L 32.866 15.282 L 39.331 29.01 C 40.144 30.734 38.883 32.718 36.972 32.718 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 71.53 13.5 L 76.44 27.938 L 76.495 27.938 L 81.145 13.5 L 87.644 13.5 L 87.644 34.5 L 83.325 34.5 L 83.325 19.613 L 83.269 19.613 L 78.124 34.5 L 74.567 34.5 L 69.422 19.763 L 69.367 19.763 L 69.367 34.5 L 65.031 34.5 L 65.031 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 101.288 13.5 L 109.141 34.5 L 104.341 34.5 L 102.752 29.826 L 94.899 29.826 L 93.255 34.5 L 88.605 34.5 L 96.552 13.5 Z M 101.548 26.38 L 98.896 18.677 L 98.841 18.677 L 96.103 26.38 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 119.14 13.5 C 120.493 13.5 121.752 13.712 122.917 14.145 C 124.089 14.578 125.088 15.223 125.946 16.089 C 126.796 16.954 127.465 18.032 127.952 19.322 C 128.432 20.613 128.668 22.131 128.668 23.886 C 128.668 25.412 128.472 26.829 128.078 28.119 C 127.685 29.409 127.087 30.527 126.3 31.471 C 125.505 32.407 124.522 33.155 123.334 33.69 C 122.146 34.233 120.753 34.5 119.14 34.5 L 110.084 34.5 L 110.084 13.508 L 119.14 13.508 Z M 118.818 30.621 C 119.486 30.621 120.131 30.511 120.761 30.291 C 121.39 30.078 121.949 29.716 122.437 29.22 C 122.925 28.725 123.318 28.072 123.617 27.269 C 123.908 26.467 124.058 25.483 124.058 24.326 C 124.058 23.264 123.948 22.312 123.751 21.455 C 123.546 20.605 123.2 19.865 122.736 19.267 C 122.264 18.661 121.642 18.197 120.863 17.867 C 120.084 17.536 119.132 17.387 117.991 17.387 L 114.695 17.387 L 114.695 30.621 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 137.473 13.5 L 142.383 27.938 L 142.438 27.938 L 147.088 13.5 L 153.587 13.5 L 153.587 34.5 L 149.268 34.5 L 149.268 19.613 L 149.212 19.613 L 144.067 34.5 L 140.51 34.5 L 135.365 19.763 L 135.309 19.763 L 135.309 34.5 L 130.982 34.5 L 130.982 13.5 L 137.481 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 172.43 13.5 L 172.43 17.379 L 161.336 17.379 L 161.336 21.88 L 171.51 21.88 L 171.51 25.467 L 161.336 25.467 L 161.336 30.613 L 172.658 30.613 L 172.658 34.492 L 156.726 34.492 L 156.726 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 179.575 13.5 L 188.333 27.592 L 188.388 27.592 L 188.388 13.5 L 192.707 13.5 L 192.707 34.5 L 188.089 34.5 L 179.355 20.44 L 179.3 20.44 L 179.3 34.5 L 174.98 34.5 L 174.98 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 212.825 13.5 L 221.063 34.5 L 218.915 34.5 L 216.358 27.97 L 206.806 27.97 L 204.281 34.5 L 202.164 34.5 L 210.607 13.5 L 212.841 13.5 Z M 215.681 26.27 L 211.622 15.506 L 207.412 26.27 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 225.116 13.5 L 225.116 34.5 L 223.118 34.5 L 223.118 13.5 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:12543078558,withExternalLayout:true,...addPropertyOverrides({RB5GbY_b8:{svgContentId:10375780362}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8hckgl\",\"data-framer-name\":\"monogram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YkFpDjllY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 24.004 0 C 10.75 0 0 10.743 0 24 C 0 37.257 10.75 48 24.004 48 C 37.258 48 48 37.257 48 24 C 48 10.743 37.258 0 24.004 0 Z M 12.571 32.718 C 10.303 32.718 8.465 30.88 8.465 28.611 C 8.465 26.342 10.303 24.512 12.571 24.512 C 14.84 24.512 16.67 26.342 16.67 28.611 C 16.67 30.88 14.84 32.718 12.571 32.718 Z M 25.801 32.718 L 20.556 32.718 L 14.1 18.99 C 13.287 17.266 14.539 15.282 16.45 15.282 L 21.695 15.282 L 28.159 29.01 C 28.964 30.734 27.712 32.718 25.801 32.718 Z M 36.941 32.718 L 31.696 32.718 L 25.24 18.99 C 24.427 17.266 25.687 15.282 27.598 15.282 L 32.835 15.282 L 39.299 29.01 C 40.112 30.734 38.852 32.718 36.941 32.718 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:10680345745,withExternalLayout:true,...addPropertyOverrides({rkg5JSdqZ:{svgContentId:12687895027}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tnbv9e\",\"data-framer-name\":\"horiz color\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hi_rOyC33\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 226 49\"><path d=\"M 71.502 13.6 L 76.412 28.04 L 76.472 28.04 L 81.122 13.6 L 87.622 13.6 L 87.622 34.59 L 83.302 34.59 L 83.302 19.71 L 83.242 19.71 L 78.092 34.59 L 74.542 34.59 L 69.392 19.86 L 69.332 19.86 L 69.332 34.59 L 65.012 34.59 L 65.012 13.6 L 71.512 13.6 Z M 101.252 13.6 L 109.102 34.59 L 104.302 34.59 L 102.712 29.92 L 94.862 29.92 L 93.222 34.59 L 88.572 34.59 L 96.512 13.6 Z M 101.512 26.48 L 98.862 18.77 L 98.802 18.77 L 96.062 26.48 Z M 119.102 13.6 C 120.462 13.6 121.712 13.81 122.882 14.25 C 124.052 14.68 125.052 15.33 125.912 16.19 C 126.762 17.06 127.432 18.13 127.912 19.43 C 128.392 20.72 128.632 22.24 128.632 23.99 C 128.632 25.52 128.432 26.93 128.042 28.22 C 127.652 29.51 127.052 30.63 126.262 31.57 C 125.472 32.51 124.482 33.25 123.292 33.79 C 122.112 34.33 120.712 34.6 119.102 34.6 L 110.052 34.6 L 110.052 13.61 L 119.102 13.61 Z M 118.782 30.72 C 119.452 30.72 120.102 30.61 120.722 30.39 C 121.352 30.18 121.902 29.82 122.402 29.32 C 122.892 28.82 123.282 28.17 123.582 27.37 C 123.872 26.57 124.022 25.59 124.022 24.43 C 124.022 23.37 123.912 22.42 123.712 21.56 C 123.512 20.71 123.162 19.97 122.702 19.37 C 122.232 18.77 121.612 18.3 120.832 17.97 C 120.052 17.64 119.102 17.49 117.962 17.49 L 114.672 17.49 L 114.672 30.72 L 118.792 30.72 Z M 137.431 13.6 L 142.341 28.04 L 142.401 28.04 L 147.051 13.6 L 153.551 13.6 L 153.551 34.59 L 149.231 34.59 L 149.231 19.71 L 149.171 19.71 L 144.021 34.59 L 140.471 34.59 L 135.321 19.86 L 135.261 19.86 L 135.261 34.59 L 130.941 34.59 L 130.941 13.6 L 137.441 13.6 Z M 172.381 13.6 L 172.381 17.48 L 161.291 17.48 L 161.291 21.98 L 171.461 21.98 L 171.461 25.57 L 161.291 25.57 L 161.291 30.72 L 172.611 30.72 L 172.611 34.6 L 156.681 34.6 L 156.681 13.61 L 172.381 13.61 Z M 179.531 13.6 L 188.291 27.69 L 188.351 27.69 L 188.351 13.6 L 192.671 13.6 L 192.671 34.59 L 188.051 34.59 L 179.311 20.54 L 179.251 20.54 L 179.251 34.59 L 174.931 34.59 L 174.931 13.6 Z M 212.771 13.6 L 221.01 34.59 L 218.861 34.59 L 216.301 28.06 L 206.751 28.06 L 204.221 34.59 L 202.101 34.59 L 210.541 13.6 Z M 215.621 26.36 L 211.561 15.6 L 207.351 26.36 Z M 225.061 13.6 L 225.061 34.59 L 223.061 34.59 L 223.061 13.6 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path><path d=\"M 20.553 32.82 L 14.092 19.09 C 13.282 17.37 14.532 15.38 16.442 15.38 L 21.683 15.38 L 28.145 29.11 C 28.955 30.83 27.695 32.82 25.785 32.82 L 20.543 32.82 Z M 8.461 28.71 C 8.461 30.98 10.301 32.82 12.571 32.82 C 13.66 32.82 14.704 32.386 15.474 31.615 C 16.243 30.844 16.674 29.799 16.672 28.71 C 16.672 26.44 14.842 24.61 12.572 24.61 C 11.483 24.608 10.438 25.038 9.666 25.808 C 8.895 26.577 8.462 27.621 8.461 28.71 Z M 36.946 32.82 C 38.856 32.82 40.116 30.84 39.306 29.11 L 32.846 15.38 L 27.605 15.38 C 25.695 15.38 24.434 17.36 25.244 19.09 L 31.705 32.82 Z\" fill=\"var(--token-0af3d89a-812d-4025-9a7c-3cd122ce3fd6, rgb(33, 33, 33)) /* {&quot;name&quot;:&quot;on-yellow&quot;} */\"></path><path d=\"M 24.005 0.1 C 10.752 0.1 0 10.84 0 24.1 C 0 37.36 10.752 48.1 24.005 48.1 C 37.257 48.1 47.999 37.36 47.999 24.1 C 47.999 10.84 37.267 0.1 24.004 0.1 Z M 12.572 32.82 C 10.302 32.82 8.462 30.98 8.462 28.71 C 8.462 26.44 10.302 24.61 12.572 24.61 C 14.842 24.61 16.673 26.44 16.673 28.71 C 16.673 30.98 14.843 32.82 12.573 32.82 Z M 25.805 32.82 L 20.564 32.82 L 14.103 19.09 C 13.293 17.37 14.543 15.38 16.453 15.38 L 21.694 15.38 L 28.155 29.11 C 28.965 30.83 27.705 32.82 25.795 32.82 Z M 36.947 32.82 L 31.706 32.82 L 25.245 19.09 C 24.435 17.37 25.695 15.38 27.605 15.38 L 32.846 15.38 L 39.307 29.11 C 40.117 30.83 38.857 32.82 36.947 32.82 Z\" fill=\"var(--token-7ce1073d-dc4e-4215-9748-7026703aaf67, rgb(245, 195, 4)) /* {&quot;name&quot;:&quot;yellow&quot;} */\"></path></svg>',svgContentId:12796504813,withExternalLayout:true,...addPropertyOverrides({bWSYG8u79:{svgContentId:12368989817}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e1P8s.framer-5i1bfd, .framer-e1P8s .framer-5i1bfd { display: block; }\",\".framer-e1P8s.framer-122iri { height: 113px; overflow: visible; position: relative; text-decoration: none; width: 206px; }\",\".framer-e1P8s .framer-142qdwl, .framer-e1P8s .framer-kk07lg { flex: none; height: 113px; left: 0px; position: absolute; top: 0px; width: 206px; }\",\".framer-e1P8s .framer-26ineh, .framer-e1P8s .framer-1ukzorr { flex: none; height: 48px; left: 0px; position: absolute; top: 0px; width: 226px; }\",\".framer-e1P8s .framer-1acuwp7, .framer-e1P8s .framer-obv8x5 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-e1P8s .framer-8hckgl { flex: none; height: 48px; left: 0px; position: absolute; top: 0px; width: 48px; }\",\".framer-e1P8s .framer-1tnbv9e { flex: none; height: 49px; left: calc(50.00000000000002% - 226px / 2); position: absolute; top: calc(50.00000000000002% - 49px / 2); width: 226px; }\",\".framer-e1P8s.framer-v-16x6b5v.framer-122iri, .framer-e1P8s.framer-v-1w310e4.framer-122iri, .framer-e1P8s.framer-v-jj210b.framer-122iri { height: 48px; width: 226px; }\",\".framer-e1P8s.framer-v-1coshn6.framer-122iri, .framer-e1P8s.framer-v-1cz1uda.framer-122iri, .framer-e1P8s.framer-v-1jsowwu.framer-122iri { height: 48px; width: 48px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 113\n * @framerIntrinsicWidth 206\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZaaJw3tP8\":{\"layout\":[\"fixed\",\"fixed\"]},\"bWSYG8u79\":{\"layout\":[\"fixed\",\"fixed\"]},\"lMF1VWVOJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"HTTmwfUWz\":{\"layout\":[\"fixed\",\"fixed\"]},\"nLfZml73D\":{\"layout\":[\"fixed\",\"fixed\"]},\"I0kZbp1rx\":{\"layout\":[\"fixed\",\"fixed\"]},\"RB5GbY_b8\":{\"layout\":[\"fixed\",\"fixed\"]},\"rkg5JSdqZ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"C3VRq5DEC\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerl8is1qt8W=withCSS(Component,css,\"framer-e1P8s\");export default Framerl8is1qt8W;Framerl8is1qt8W.displayName=\"Logo / MadMen AI\";Framerl8is1qt8W.defaultProps={height:113,width:206};addPropertyControls(Framerl8is1qt8W,{variant:{options:[\"IXH5y1FZf\",\"ZaaJw3tP8\",\"bWSYG8u79\",\"lMF1VWVOJ\",\"HTTmwfUWz\",\"nLfZml73D\",\"I0kZbp1rx\",\"RB5GbY_b8\",\"rkg5JSdqZ\"],optionTitles:[\"Vertical - white\",\"Vertical - color\",\"Horizontal - color\",\"Horizontal - white\",\"Monogram - color\",\"Monogram - white\",\"Vertical - dark\",\"Horizontal - dark\",\"Monogram - dark\"],title:\"Variant\",type:ControlType.Enum},C3VRq5DEC:{title:\"Link\",type:ControlType.Link}});addFonts(Framerl8is1qt8W,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl8is1qt8W\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"113\",\"framerVariables\":\"{\\\"C3VRq5DEC\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZaaJw3tP8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bWSYG8u79\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lMF1VWVOJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HTTmwfUWz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nLfZml73D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I0kZbp1rx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RB5GbY_b8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rkg5JSdqZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"206\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./l8is1qt8W.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"I214:2524;4313:10409\",\"RjM07pcSo\",\"JCLdPG0t6\",\"wWgG52ORJ\",\"f9yBAgs8l\",\"D7R5sI0d2\",\"skZId4tl4\",\"g3yE_qyLi\"];const serializationHash=\"framer-NGSrT\";const variantClassNames={\"I214:2524;4313:10409\":\"framer-v-1kh8av2\",D7R5sI0d2:\"framer-v-1pnelwo\",f9yBAgs8l:\"framer-v-f91tqy\",g3yE_qyLi:\"framer-v-6b0r43\",JCLdPG0t6:\"framer-v-1tdjwvw\",RjM07pcSo:\"framer-v-1on1ljp\",skZId4tl4:\"framer-v-9u5ffv\",wWgG52ORJ:\"framer-v-ps0q22\"};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 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={\"facebook-light\":\"wWgG52ORJ\",\"linkedin-light\":\"g3yE_qyLi\",\"Mail-light\":\"RjM07pcSo\",\"x-light\":\"D7R5sI0d2\",Facebook:\"JCLdPG0t6\",LinkedIn:\"skZId4tl4\",Mail:\"I214:2524;4313:10409\",X:\"f9yBAgs8l\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I214:2524;4313:10409\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I214:2524;4313:10409\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"skZId4tl4\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"JCLdPG0t6\")return true;return false;};const isDisplayed2=()=>{if([\"JCLdPG0t6\",\"wWgG52ORJ\",\"f9yBAgs8l\",\"D7R5sI0d2\",\"skZId4tl4\",\"g3yE_qyLi\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"wWgG52ORJ\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"g3yE_qyLi\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"D7R5sI0d2\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"f9yBAgs8l\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kh8av2\",className,classNames),\"data-framer-name\":\"Mail\",layoutDependency:layoutDependency,layoutId:\"I214:2524;4313:10409\",ref:ref??ref1,style:{...style},...addPropertyOverrides({D7R5sI0d2:{\"data-framer-name\":\"x-light\"},f9yBAgs8l:{\"data-framer-name\":\"X\"},g3yE_qyLi:{\"data-framer-name\":\"linkedin-light\"},JCLdPG0t6:{\"data-framer-name\":\"Facebook\"},RjM07pcSo:{\"data-framer-name\":\"Mail-light\"},skZId4tl4:{\"data-framer-name\":\"LinkedIn\"},wWgG52ORJ:{\"data-framer-name\":\"facebook-light\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-e0lqlp\",\"data-framer-name\":\"linkedin\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cR4zgkFnV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 11.906 14.667 L 14.667 14.667 L 14.667 9.768 C 14.667 7.373 14.151 5.533 11.353 5.533 C 10.283 5.493 9.278 6.045 8.737 6.969 L 8.701 6.969 L 8.701 5.753 L 6.051 5.753 L 6.051 14.667 L 8.811 14.667 L 8.811 10.245 C 8.811 9.085 9.032 7.961 10.47 7.961 C 11.887 7.961 11.906 9.289 11.906 10.32 Z M 2.046 4.268 C 2.522 4.602 3.141 4.652 3.664 4.399 C 4.188 4.145 4.533 3.629 4.566 3.048 C 4.6 2.468 4.317 1.915 3.826 1.603 C 3.091 1.136 2.117 1.341 1.634 2.066 C 1.15 2.79 1.333 3.768 2.046 4.268 Z M 1.553 14.667 L 4.316 14.667 L 4.317 5.753 L 1.553 5.753 L 1.553 14.667 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:9186287109,withExternalLayout:true,...addPropertyOverrides({skZId4tl4:{svgContentId:9554279554}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1je9zf1\",\"data-framer-name\":\"facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"I9ld2hDq2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 15.408 8 C 15.408 3.909 12.091 0.593 8 0.593 C 3.909 0.593 0.593 3.909 0.593 8 C 0.593 11.697 3.302 14.762 6.843 15.317 L 6.843 10.141 L 4.962 10.141 L 4.962 8 L 6.843 8 L 6.843 6.368 C 6.843 4.512 7.949 3.486 9.641 3.486 C 10.451 3.486 11.299 3.631 11.299 3.631 L 11.299 5.454 L 10.365 5.454 C 9.445 5.454 9.158 6.025 9.158 6.61 L 9.158 8 L 11.212 8 L 10.884 10.141 L 9.158 10.141 L 9.158 15.317 C 12.699 14.762 15.408 11.697 15.408 8 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:12305128127,withExternalLayout:true,...addPropertyOverrides({JCLdPG0t6:{svgContentId:10292300785}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qc2fk7\",\"data-framer-name\":\"mail\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"evn2fQxzZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 13\"><path d=\"M 13.5 0 C 14.881 0 16 1.119 16 2.5 L 16 10.5 C 16 11.881 14.881 13 13.5 13 L 2.5 13 C 1.119 13 0 11.881 0 10.5 L 0 2.5 C 0 1.119 1.119 0 2.5 0 Z M 15 3.961 L 8.254 7.931 C 8.123 8.008 7.967 8.02 7.828 7.969 L 7.746 7.931 L 1 3.963 L 1 10.5 C 1 11.328 1.672 12 2.5 12 L 13.5 12 C 14.328 12 15 11.328 15 10.5 Z M 13.5 1 L 2.5 1 C 1.672 1 1 1.672 1 2.5 L 1 2.802 L 8 6.92 L 15 2.801 L 15 2.5 C 15 1.672 14.328 1 13.5 1 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:9469473869,withExternalLayout:true,...addPropertyOverrides({RjM07pcSo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 13\"><path d=\"M 13.5 0 C 14.881 0 16 1.119 16 2.5 L 16 10.5 C 16 11.881 14.881 13 13.5 13 L 2.5 13 C 1.119 13 0 11.881 0 10.5 L 0 2.5 C 0 1.119 1.119 0 2.5 0 Z M 15 3.961 L 8.254 7.931 C 8.123 8.008 7.967 8.02 7.828 7.969 L 7.746 7.931 L 1 3.963 L 1 10.5 C 1 11.328 1.672 12 2.5 12 L 13.5 12 C 14.328 12 15 11.328 15 10.5 Z M 13.5 1 L 2.5 1 C 1.672 1 1 1.672 1 2.5 L 1 2.802 L 8 6.92 L 15 2.801 L 15 2.5 C 15 1.672 14.328 1 13.5 1 Z\" fill=\"var(--token-e60ca3ff-8a56-4382-a497-05b096bc8a9e, rgb(238, 237, 236))\"></path></svg>',svgContentId:9382060259}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-iqo47b\",\"data-framer-name\":\"Facebook-light\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"cFmfA_pjE\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20 10C20 4.47715 15.5229 0 10 0C4.47715 0 0 4.47715 0 10C0 14.9912 3.65684 19.1283 8.4375 19.8785V12.8906H5.89844V10H8.4375V7.79687C8.4375 5.29062 9.93047 3.90625 12.2146 3.90625C13.3088 3.90625 14.4531 4.10156 14.4531 4.10156V6.5625H13.1922C11.95 6.5625 11.5625 7.3334 11.5625 8.12422V10H14.3359L13.8926 12.8906H11.5625V19.8785C16.3432 19.1283 20 14.9914 20 10Z\" fill=\"#EEEDEC\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-19dp85z\",\"data-framer-name\":\"linkedin-light\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I3040:14208;224:36\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.8825 17.3327H17.3333V11.2088C17.3333 8.21594 16.6882 5.91509 13.1904 5.91509C12.5341 5.89069 11.8835 6.04475 11.3078 6.36086C10.7322 6.67698 10.253 7.14332 9.92142 7.7102H9.87675V6.19119H6.56397V17.3322H10.0148V11.8048C10.0148 10.3551 10.29 8.95087 12.0874 8.95087C13.8592 8.95087 13.8825 10.6106 13.8825 11.8995V17.3327Z\" fill=\"#EEEDEC\"/>\\n<path d=\"M1.5571 4.33441C1.88652 4.55444 2.2738 4.67183 2.66994 4.67174C3.20106 4.67162 3.71037 4.46055 4.08589 4.08495C4.46139 3.70936 4.67234 3.19999 4.67234 2.66888C4.67234 2.27273 4.55487 1.88548 4.33478 1.5561C4.11469 1.22673 3.80184 0.970015 3.43585 0.818434C3.06985 0.666854 2.66712 0.627216 2.27858 0.704534C1.89006 0.781851 1.53319 0.972649 1.25311 1.2528C0.973005 1.53295 0.7823 1.88987 0.705053 2.27841C0.627829 2.66696 0.667554 3.06968 0.81921 3.43565C0.970889 3.80162 1.22765 4.11439 1.5571 4.33441Z\" fill=\"#EEEDEC\"/>\\n<path d=\"M0.940937 17.3322H4.39536L4.39579 6.19119H0.940937V17.3322Z\" fill=\"#EEEDEC\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-19r0uws\",\"data-framer-name\":\"x-light\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I3040:14202;37:29\",svg:'<svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3134 0.208984H14.6135L9.58844 5.95228L15.5 13.7676H10.8713L7.24593 9.02765L3.09769 13.7676H0.796204L6.17098 7.62451L0.5 0.208984H5.24621L8.52322 4.54148L12.3134 0.208984ZM11.5061 12.3909H12.7806L4.55368 1.51339H3.186L11.5061 12.3909Z\" fill=\"#EEEDEC\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vmqrw6\",\"data-framer-name\":\"X\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AQRgO9oCr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 14\"><path d=\"M 11.544 0.208 L 13.7 0.208 L 8.989 5.952 L 14.531 13.767 L 10.192 13.767 L 6.793 9.027 L 2.904 13.767 L 0.746 13.767 L 5.785 7.624 L 0.469 0.208 L 4.918 0.208 L 7.991 4.541 Z M 10.787 12.39 L 11.982 12.39 L 4.269 1.513 L 2.987 1.513 Z\" fill=\"var(--token-29324adf-6673-40be-9842-6a41613deebb, rgb(22, 22, 22)) /* {&quot;name&quot;:&quot;on-background&quot;} */\"></path></svg>',svgContentId:8748906185,withExternalLayout:true,...addPropertyOverrides({f9yBAgs8l:{svgContentId:9848311447}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NGSrT.framer-m0ksrl, .framer-NGSrT .framer-m0ksrl { display: block; }\",\".framer-NGSrT.framer-1kh8av2 { height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-NGSrT .framer-e0lqlp, .framer-NGSrT .framer-1je9zf1, .framer-NGSrT .framer-iqo47b { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-NGSrT .framer-1qc2fk7 { flex: none; height: 13px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 16px; }\",\".framer-NGSrT .framer-19dp85z { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-NGSrT .framer-19r0uws, .framer-NGSrT .framer-1vmqrw6 { flex: none; height: 14px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 15px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RjM07pcSo\":{\"layout\":[\"fixed\",\"fixed\"]},\"JCLdPG0t6\":{\"layout\":[\"fixed\",\"fixed\"]},\"wWgG52ORJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"f9yBAgs8l\":{\"layout\":[\"fixed\",\"fixed\"]},\"D7R5sI0d2\":{\"layout\":[\"fixed\",\"fixed\"]},\"skZId4tl4\":{\"layout\":[\"fixed\",\"fixed\"]},\"g3yE_qyLi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrgU5O9hjg=withCSS(Component,css,\"framer-NGSrT\");export default FramerrgU5O9hjg;FramerrgU5O9hjg.displayName=\"Icon\";FramerrgU5O9hjg.defaultProps={height:20,width:20};addPropertyControls(FramerrgU5O9hjg,{variant:{options:[\"I214:2524;4313:10409\",\"RjM07pcSo\",\"JCLdPG0t6\",\"wWgG52ORJ\",\"f9yBAgs8l\",\"D7R5sI0d2\",\"skZId4tl4\",\"g3yE_qyLi\"],optionTitles:[\"Mail\",\"Mail-light\",\"Facebook\",\"facebook-light\",\"X\",\"x-light\",\"LinkedIn\",\"linkedin-light\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrgU5O9hjg,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrgU5O9hjg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RjM07pcSo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JCLdPG0t6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wWgG52ORJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f9yBAgs8l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D7R5sI0d2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"skZId4tl4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g3yE_qyLi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"20\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rgU5O9hjg.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Icon from\"https://framerusercontent.com/modules/CwSp6HHpSTFwIsVgookD/tilXDAzLK4GhGPbnrZCj/rgU5O9hjg.js\";const IconFonts=getFonts(Icon);const IconControls=getPropertyControls(Icon);const enabledGestures={CL0eS96yw:{hover:true},JtplKj8yH:{hover:true}};const cycleOrder=[\"CL0eS96yw\",\"JtplKj8yH\"];const serializationHash=\"framer-AzjCW\";const variantClassNames={CL0eS96yw:\"framer-v-1w4soi8\",JtplKj8yH:\"framer-v-1lkcbb3\"};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 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 humanReadableEnumMap={\"facebook-light\":\"wWgG52ORJ\",\"linkedin-light\":\"g3yE_qyLi\",\"Mail-light\":\"RjM07pcSo\",\"x-light\":\"D7R5sI0d2\",Facebook:\"JCLdPG0t6\",LinkedIn:\"skZId4tl4\",Mail:\"I214:2524;4313:10409\",X:\"f9yBAgs8l\"};const humanReadableVariantMap={\"40px ghost\":\"JtplKj8yH\",\"40px outlined\":\"CL0eS96yw\"};const getProps=({height,icon,id,link,width,...props})=>{return{...props,BmRpNg02J:humanReadableEnumMap[icon]??icon??props.BmRpNg02J??\"I214:2524;4313:10409\",Mpxm8gU8m:link??props.Mpxm8gU8m,variant:humanReadableVariantMap[props.variant]??props.variant??\"CL0eS96yw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BmRpNg02J,Mpxm8gU8m,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CL0eS96yw\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Mpxm8gU8m,nodeId:\"CL0eS96yw\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1w4soi8\",className,classNames)} framer-1jtmjyo`,\"data-border\":true,\"data-framer-name\":\"40px outlined\",layoutDependency:layoutDependency,layoutId:\"CL0eS96yw\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74014d76-9e24-489c-b938-8f60a605eee1, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:64,borderBottomRightRadius:64,borderTopLeftRadius:64,borderTopRightRadius:64,...style},variants:{\"CL0eS96yw-hover\":{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-cc8887f2-ed35-4fcf-9ea2-f7cb6f4b23dd, rgb(33, 33, 33))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-3a17b19c-34b0-4121-b156-51e776b577c6, rgb(241, 240, 239))\"},\"JtplKj8yH-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(238, 237, 236, 0.05)\"},JtplKj8yH:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"CL0eS96yw-hover\":{\"data-framer-name\":undefined},\"JtplKj8yH-hover\":{\"data-framer-name\":undefined,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74014d76-9e24-489c-b938-8f60a605eee1, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:64,borderBottomRightRadius:64,borderTopLeftRadius:64,borderTopRightRadius:64,...style}},JtplKj8yH:{\"data-framer-name\":\"40px ghost\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-20)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pfl2a5-container\",layoutDependency:layoutDependency,layoutId:\"wOt0Vwvxf-container\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"wOt0Vwvxf\",layoutId:\"wOt0Vwvxf\",style:{height:\"100%\",width:\"100%\"},variant:BmRpNg02J,width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AzjCW.framer-1jtmjyo, .framer-AzjCW .framer-1jtmjyo { display: block; }\",\".framer-AzjCW.framer-1w4soi8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 40px; }\",\".framer-AzjCW .framer-pfl2a5-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AzjCW.framer-1w4soi8 { gap: 0px; } .framer-AzjCW.framer-1w4soi8 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-AzjCW.framer-1w4soi8 > :first-child { margin-left: 0px; } .framer-AzjCW.framer-1w4soi8 > :last-child { margin-right: 0px; } }\",\".framer-AzjCW.framer-v-1lkcbb3 .framer-pfl2a5-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\",'.framer-AzjCW[data-border=\"true\"]::after, .framer-AzjCW [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 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JtplKj8yH\":{\"layout\":[\"fixed\",\"fixed\"]},\"eT9WA1B9t\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZEmTIaDJN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"BmRpNg02J\":\"icon\",\"Mpxm8gU8m\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxnNRgngSQ=withCSS(Component,css,\"framer-AzjCW\");export default FramerxnNRgngSQ;FramerxnNRgngSQ.displayName=\"Button / icon\";FramerxnNRgngSQ.defaultProps={height:40,width:40};addPropertyControls(FramerxnNRgngSQ,{variant:{options:[\"CL0eS96yw\",\"JtplKj8yH\"],optionTitles:[\"40px outlined\",\"40px ghost\"],title:\"Variant\",type:ControlType.Enum},BmRpNg02J:IconControls?.[\"variant\"]&&{...IconControls[\"variant\"],defaultValue:\"I214:2524;4313:10409\",description:undefined,hidden:undefined,title:\"Icon\"},Mpxm8gU8m:{title:\"Link\",type:ControlType.Link}});addFonts(FramerxnNRgngSQ,[{explicitInter:true,fonts:[]},...IconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxnNRgngSQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"BmRpNg02J\\\":\\\"icon\\\",\\\"Mpxm8gU8m\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JtplKj8yH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eT9WA1B9t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZEmTIaDJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/UZwNJjzc8oCt2JJx3RmF/Cookies.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wHir01tEsmjAC9jQuCJj/xs4dugtF7Oc8XuO3icac/mGnH8xiIt.js\";import LogoMadMenAI from\"https://framerusercontent.com/modules/n8g1itT6gHTQwHNDe62C/Mys3AKsuCix6ttRAe9TP/l8is1qt8W.js\";import ButtonIcon from\"https://framerusercontent.com/modules/sD6EgA8uZgedxdc5aUbW/ch11jDHXjjdXMI1kX6vN/xnNRgngSQ.js\";const LogoMadMenAIFonts=getFonts(LogoMadMenAI);const ButtonIconFonts=getFonts(ButtonIcon);const CookieBannerFonts=getFonts(CookieBanner);const cycleOrder=[\"e7dKRovwK\",\"Mt2b1u3OX\"];const serializationHash=\"framer-tnbKI\";const variantClassNames={e7dKRovwK:\"framer-v-ooi5tn\",Mt2b1u3OX:\"framer-v-3zsig3\"};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 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 humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={Desktop:\"e7dKRovwK\",Mobile:\"Mt2b1u3OX\"};const getProps=({height,id,stackDirection,width,...props})=>{return{...props,v5K6ks1PK:humanReadableEnumMap[stackDirection]??stackDirection??props.v5K6ks1PK??\"row\",variant:humanReadableVariantMap[props.variant]??props.variant??\"e7dKRovwK\"};};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,v5K6ks1PK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e7dKRovwK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ooi5tn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"e7dKRovwK\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-74014d76-9e24-489c-b938-8f60a605eee1, rgb(217, 217, 217))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-36426927-7a82-4001-8b25-330ba8a092fb, rgb(238, 237, 236))\",...style},...addPropertyOverrides({Mt2b1u3OX:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6afp5p\",\"data-framer-name\":\"footer content\",layoutDependency:layoutDependency,layoutId:\"Xz_IWrnev\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:113,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18eca56-container\",layoutDependency:layoutDependency,layoutId:\"PDTjxqFrW-container\",nodeId:\"PDTjxqFrW\",rendersWithMotion:true,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsx(LogoMadMenAI,{height:\"100%\",id:\"PDTjxqFrW\",layoutId:\"PDTjxqFrW\",variant:\"rkg5JSdqZ\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3igts6\",\"data-framer-name\":\"social links\",layoutDependency:layoutDependency,layoutId:\"hHgqAmNwt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fqz9eb-container\",layoutDependency:layoutDependency,layoutId:\"Mrqld4uRf-container\",nodeId:\"Mrqld4uRf\",rendersWithMotion:true,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsx(ButtonIcon,{BmRpNg02J:\"I214:2524;4313:10409\",height:\"100%\",id:\"Mrqld4uRf\",layoutId:\"Mrqld4uRf\",Mpxm8gU8m:\"mailto:team@usemadmen.ai\",style:{height:\"100%\",width:\"100%\"},variant:\"CL0eS96yw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xfbrfg-container\",layoutDependency:layoutDependency,layoutId:\"KEtRXgLhi-container\",nodeId:\"KEtRXgLhi\",rendersWithMotion:true,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsx(ButtonIcon,{BmRpNg02J:\"JCLdPG0t6\",height:\"100%\",id:\"KEtRXgLhi\",layoutId:\"KEtRXgLhi\",Mpxm8gU8m:\"https://www.facebook.com/MadMenAI/\",style:{height:\"100%\",width:\"100%\"},variant:\"CL0eS96yw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pmyy0f-container\",layoutDependency:layoutDependency,layoutId:\"BRIjC0kpW-container\",nodeId:\"BRIjC0kpW\",rendersWithMotion:true,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsx(ButtonIcon,{BmRpNg02J:\"f9yBAgs8l\",height:\"100%\",id:\"BRIjC0kpW\",layoutId:\"BRIjC0kpW\",Mpxm8gU8m:\"https://x.com/usemadmenai\",style:{height:\"100%\",width:\"100%\"},variant:\"CL0eS96yw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oygu-container\",layoutDependency:layoutDependency,layoutId:\"YNqNsVPvQ-container\",nodeId:\"YNqNsVPvQ\",rendersWithMotion:true,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsx(ButtonIcon,{BmRpNg02J:\"skZId4tl4\",height:\"100%\",id:\"YNqNsVPvQ\",layoutId:\"YNqNsVPvQ\",Mpxm8gU8m:\"https://www.linkedin.com/company/madmenai/\",style:{height:\"100%\",width:\"100%\"},variant:\"CL0eS96yw\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dp3y12\",\"data-framer-name\":\"legal links\",layoutDependency:layoutDependency,layoutId:\"hSlq9gpSn\",style:{\"--1qlllwa\":v5K6ks1PK,\"--3uc7pw\":v5K6ks1PK===\"column\"?0:\"calc(24px / 2)\",\"--ppvx6j\":v5K6ks1PK===\"row\"?0:\"calc(24px / 2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PtiG_YNsK\"},motionChild:true,nodeId:\"ix9pFu3nL\",openInNewTab:false,scopeId:\"D8wJhtkCw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cduyd7\",\"data-styles-preset\":\"mGnH8xiIt\",children:\"Blog\"})})})}),className:\"framer-qjyny0\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"ix9pFu3nL\",style:{\"--extracted-r6o4lv\":\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(0, 0, 0, 0.55)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tUaOysLss\"},motionChild:true,nodeId:\"Ju8Jm6Qyl\",openInNewTab:false,scopeId:\"D8wJhtkCw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cduyd7\",\"data-styles-preset\":\"mGnH8xiIt\",children:\"Privacy Policy\"})})})}),className:\"framer-zrocmg\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"Ju8Jm6Qyl\",style:{\"--extracted-r6o4lv\":\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(0, 0, 0, 0.55))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(0, 0, 0, 0.55)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hNWCkEw5Q\"},motionChild:true,nodeId:\"Pn7nbs_G0\",openInNewTab:true,scopeId:\"D8wJhtkCw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cduyd7\",\"data-styles-preset\":\"mGnH8xiIt\",children:\"Terms of Service\"})})})}),className:\"framer-w2xwhs\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"Pn7nbs_G0\",style:{\"--extracted-r6o4lv\":\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(0, 0, 0, 0.55))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tUaOysLss\"},implicitPathVariables:undefined},{href:{webPageId:\"tUaOysLss\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wyp4k-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VeBvyREMq-container\",nodeId:\"VeBvyREMq\",rendersWithMotion:true,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},fontTitle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"}},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euTitle:\"Cookie Settings\",euType:\"medium\",isEU:false,worldBlocking:false,worldDefaults:{analytics:false,marketing:true,necessary:true,preferences:false},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks[0],prefix:\"Read our\"},worldTitle:\"Cookie Settings\",worldType:\"advanced\"},gtmId:\" GTM-MQ2CM4DL\",height:\"100%\",id:\"VeBvyREMq\",layoutId:\"VeBvyREMq\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:14,paddingBottom:14,paddingLeft:14,paddingPerSide:false,paddingRight:14,paddingTop:14,toggleColor:\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(0, 0, 0, 0.55))\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55))\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},type:\"text\"},width:\"100%\",...addPropertyOverrides({Mt2b1u3OX:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:false,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euTitle:\"Cookie Settings\",euType:\"medium\",isEU:false,worldBlocking:false,worldDefaults:{analytics:false,marketing:true,necessary:true,preferences:false},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",link:resolvedLinks[1],prefix:\"Read our\"},worldTitle:\"Cookie Settings\",worldType:\"advanced\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tyECVPV9k\"},motionChild:true,nodeId:\"HG_yKjuYJ\",openInNewTab:false,scopeId:\"D8wJhtkCw\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5sw4ln framer-hubkwx\",\"data-framer-name\":\"sesame tag\",layoutDependency:layoutDependency,layoutId:\"HG_yKjuYJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-36r1jb\",layoutDependency:layoutDependency,layoutId:\"nZh_mrSHV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55)))\"},children:\"Made with\"})}),className:\"framer-1a7eln8\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"zsoIg6poK\",style:{\"--extracted-r6o4lv\":\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lqsqe4\",\"data-framer-name\":\"Heart\",layoutDependency:layoutDependency,layoutId:\"X3zjN2X7p\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12yvrxk\",\"data-framer-name\":\"Shape\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qRauDcbRB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 5.541 1.947 C 4.269 0.676 2.212 0.67 0.946 1.936 C -0.32 3.202 -0.314 5.259 0.958 6.531 L 5.665 11.239 C 5.86 11.434 6.177 11.434 6.372 11.239 L 11.055 6.558 C 12.318 5.288 12.314 3.236 11.043 1.964 C 9.769 0.69 7.71 0.684 6.442 1.953 L 5.995 2.401 Z\" fill=\"rgb(213,65,35)\"></path></svg>',svgContentId:906111e4,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55)))\"},children:\"by the MadMen AI team in San Francisco, CA.\"})}),className:\"framer-jzpw6a\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"PVWdFMuIx\",style:{\"--extracted-r6o4lv\":\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55)))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://sesamelabs.io\",motionChild:true,nodeId:\"TiV0Zk9Df\",openInNewTab:true,scopeId:\"D8wJhtkCw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cduyd7\",\"data-styles-preset\":\"mGnH8xiIt\",children:\"\\xa92025 \"})}),\"MadMen AI\"]})}),className:\"framer-2abs7j\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"TiV0Zk9Df\",style:{\"--extracted-r6o4lv\":\"var(--token-84f4531b-23c0-4d9a-a510-f7f33fa464ab, rgba(238, 237, 236, 0.55))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tnbKI.framer-hubkwx, .framer-tnbKI .framer-hubkwx { display: block; }\",\".framer-tnbKI.framer-ooi5tn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 1440px; }\",\".framer-tnbKI .framer-6afp5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1232px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tnbKI .framer-18eca56-container, .framer-tnbKI .framer-wyp4k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tnbKI .framer-3igts6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tnbKI .framer-1fqz9eb-container, .framer-tnbKI .framer-xfbrfg-container, .framer-tnbKI .framer-1pmyy0f-container, .framer-tnbKI .framer-oygu-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-tnbKI .framer-dp3y12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: var(--1qlllwa); flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tnbKI .framer-qjyny0, .framer-tnbKI .framer-zrocmg, .framer-tnbKI .framer-w2xwhs, .framer-tnbKI .framer-1a7eln8, .framer-tnbKI .framer-jzpw6a, .framer-tnbKI .framer-2abs7j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tnbKI .framer-5sw4ln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-tnbKI .framer-36r1jb { 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-tnbKI .framer-1lqsqe4 { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-tnbKI .framer-12yvrxk { flex: none; height: 12px; left: calc(49.99862313270569% - 12px / 2); position: absolute; top: calc(51.17124915122986% - 12px / 2); width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tnbKI.framer-ooi5tn, .framer-tnbKI .framer-6afp5p, .framer-tnbKI .framer-3igts6, .framer-tnbKI .framer-dp3y12, .framer-tnbKI .framer-5sw4ln, .framer-tnbKI .framer-36r1jb { gap: 0px; } .framer-tnbKI.framer-ooi5tn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tnbKI.framer-ooi5tn > :first-child, .framer-tnbKI .framer-6afp5p > :first-child { margin-top: 0px; } .framer-tnbKI.framer-ooi5tn > :last-child, .framer-tnbKI .framer-6afp5p > :last-child { margin-bottom: 0px; } .framer-tnbKI .framer-6afp5p > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-tnbKI .framer-3igts6 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-tnbKI .framer-3igts6 > :first-child, .framer-tnbKI .framer-5sw4ln > :first-child, .framer-tnbKI .framer-36r1jb > :first-child { margin-left: 0px; } .framer-tnbKI .framer-3igts6 > :last-child, .framer-tnbKI .framer-5sw4ln > :last-child, .framer-tnbKI .framer-36r1jb > :last-child { margin-right: 0px; } .framer-tnbKI .framer-dp3y12 > * { margin-bottom: var(--ppvx6j); margin-left: var(--3uc7pw); margin-right: var(--3uc7pw); margin-top: var(--ppvx6j); } .framer-tnbKI .framer-dp3y12 > :first-child { margin-left: 0px; margin-top: 0px; } .framer-tnbKI .framer-dp3y12 > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-tnbKI .framer-5sw4ln > *, .framer-tnbKI .framer-36r1jb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-tnbKI.framer-v-3zsig3.framer-ooi5tn { padding: 80px 16px 80px 16px; width: 390px; }\",\".framer-tnbKI.framer-v-3zsig3 .framer-5sw4ln { flex-direction: column; }\",\".framer-tnbKI.framer-v-3zsig3 .framer-36r1jb { height: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tnbKI.framer-v-3zsig3 .framer-5sw4ln { gap: 0px; } .framer-tnbKI.framer-v-3zsig3 .framer-5sw4ln > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-tnbKI.framer-v-3zsig3 .framer-5sw4ln > :first-child { margin-top: 0px; } .framer-tnbKI.framer-v-3zsig3 .framer-5sw4ln > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-tnbKI[data-border=\"true\"]::after, .framer-tnbKI [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 421\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mt2b1u3OX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"v5K6ks1PK\":\"stackDirection\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerD8wJhtkCw=withCSS(Component,css,\"framer-tnbKI\");export default FramerD8wJhtkCw;FramerD8wJhtkCw.displayName=\"Footer\";FramerD8wJhtkCw.defaultProps={height:421,width:1440};addPropertyControls(FramerD8wJhtkCw,{variant:{options:[\"e7dKRovwK\",\"Mt2b1u3OX\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},v5K6ks1PK:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Stack direction\",type:ControlType.Enum}});addFonts(FramerD8wJhtkCw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LogoMadMenAIFonts,...ButtonIconFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD8wJhtkCw\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"421\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mt2b1u3OX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"v5K6ks1PK\\\":\\\"stackDirection\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./D8wJhtkCw.map"],
  "mappings": "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",
  "names": ["DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getIframeSnippet", "id", "environment", "customDomain", "params", "gtm_auth", "gtm_preview", "getGTMScript", "customScriptName", "setupGTM", "dataLayerScript", "noScript", "script", "initGTM", "nonce", "gtm", "gtag", "isBrowser", "window", "sendToGTM", "args", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "r", "getMultipleShadows", "e", "getShadow", "safeJSONParse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "useConsent", "gtmId", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "ue", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "ref", "ref1", "ref2", "isEULocale", "_language", "locale", "navigator", "country", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "IconCookie", "props", "p", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "oep5aWG90", "wdGQJh0F_", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "css", "FramerBlf0sjosZ", "withCSS", "Toggle_zGbN_default", "addPropertyControls", "ControlType", "addFonts", "SPACING", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "onClick", "theme", "Toggle_zGbN_default", "children", "style", "direction", "id", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "AnimatePresence", "Overlay", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "Ga", "motion", "Backdrop", "onClick", "IconCookie", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "C3VRq5DEC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "SVG", "css", "Framerl8is1qt8W", "withCSS", "l8is1qt8W_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "css", "FramerrgU5O9hjg", "withCSS", "rgU5O9hjg_default", "addPropertyControls", "ControlType", "addFonts", "IconFonts", "getFonts", "rgU5O9hjg_default", "IconControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BmRpNg02J", "Mpxm8gU8m", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "ComponentViewportProvider", "css", "FramerxnNRgngSQ", "withCSS", "xnNRgngSQ_default", "addPropertyControls", "ControlType", "addFonts", "LogoMadMenAIFonts", "getFonts", "l8is1qt8W_default", "ButtonIconFonts", "xnNRgngSQ_default", "CookieBannerFonts", "CookieBanner", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "stackDirection", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "v5K6ks1PK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "SVG", "css", "FramerD8wJhtkCw", "withCSS", "D8wJhtkCw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
