{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/g46SbqOSBOGIULlND7xM/gtm.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/HMvbWm8DYGjaZ8u68pI6/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/V4Q7HrNs7yipqQfhEhc9/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/zCKXKufS1PpbGVlIDuPE/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/MkSJT6jOyPQYljBpRuaa/Cookies.js", "ssg:https://framerusercontent.com/modules/yAbhYs3Wpah7whkoBjKz/AGqKYFrq8GfHhbe0QmiA/s5jEHuQrl.js"],
  "sourcesContent": ["import { isBrowser } from \"framer-motion\";\nexport const DEFAULT_DOMAIN = \"https://www.googletagmanager.com\";\nexport 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                                             */\nconst 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                                                                                                                                                                                                                      */\nconst getIframeSnippet = (id, environment, customDomain = DEFAULT_DOMAIN) => {\n  let params = ``;\n  if (environment) {\n    const {\n      gtm_auth,\n      gtm_preview\n    } = environment;\n    params = `&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;\n  }\n  return `<iframe src=\"${customDomain}/ns.html?id=${id}${params}\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\" id=\"tag-manager\"></iframe>`;\n}; /**\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   */\nconst getGTMScript = (dataLayerName, id, environment, customDomain = DEFAULT_DOMAIN, customScriptName = DEFAULT_SCRIPT_NAME) => {\n  let params = ``;\n  if (environment) {\n    const {\n      gtm_auth,\n      gtm_preview\n    } = environment;\n    params = `+\"&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x\"`;\n  }\n  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}; /**\n   * Function to setup the Google Tag Manager\n   * @param params - The snippets params\n   */\nconst setupGTM = params => {\n  const getDataLayerScript = () => {\n    const dataLayerScript = document.createElement(\"script\");\n    if (params.nonce) {\n      dataLayerScript.setAttribute(\"nonce\", params.nonce);\n    }\n    dataLayerScript.innerHTML = getDataLayerSnippet(params.dataLayer, params.dataLayerName);\n    return dataLayerScript;\n  };\n  const getNoScript = () => {\n    const noScript = document.createElement(\"noscript\");\n    noScript.innerHTML = getIframeSnippet(params.id, params.environment, params.customDomain);\n    return noScript;\n  };\n  const getScript = () => {\n    const script = document.createElement(\"script\");\n    if (params.nonce) {\n      script.setAttribute(\"nonce\", params.nonce);\n    }\n    script.innerHTML = getGTMScript(params.dataLayerName, params.id, params.environment, params.customDomain, params.customScriptName);\n    return script;\n  };\n  return {\n    getDataLayerScript,\n    getNoScript,\n    getScript\n  };\n}; /**\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   */\nexport const initGTM = ({\n  dataLayer,\n  dataLayerName,\n  environment,\n  nonce,\n  id,\n  customDomain,\n  customScriptName\n}) => {\n  const gtm = setupGTM({\n    dataLayer,\n    dataLayerName,\n    environment,\n    nonce,\n    id,\n    customDomain,\n    customScriptName\n  });\n  const dataLayerScript = gtm.getDataLayerScript();\n  const script = gtm.getScript();\n  const noScript = gtm.getNoScript();\n  document.head.insertBefore(dataLayerScript, document.head.childNodes[0]);\n  document.head.insertBefore(script, document.head.childNodes[1]);\n  document.body.insertBefore(noScript, document.body.childNodes[0]);\n}; /**\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   */\nfunction gtag() {\n  if (isBrowser) {\n    window[\"dataLayer\"] = window[\"dataLayer\"] || [];\n    window[\"dataLayer\"].push(arguments);\n  }\n}\nexport function sendToGTM(...args) {\n  // @ts-ignore\n  gtag(...args);\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"DEFAULT_SCRIPT_NAME\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"sendToGTM\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"initGTM\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"DEFAULT_DOMAIN\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./gtm.map", "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\"`;\nexport function getFlexboxValues(position) {\n  const positionParts = position.split(\"-\");\n  let justifyContent, alignItems;\n  switch (positionParts[0]) {\n    case \"top\":\n      alignItems = \"flex-start\";\n      break;\n    case \"bottom\":\n      alignItems = \"flex-end\";\n      break;\n    case \"center\":\n      alignItems = \"center\";\n      break;\n    default:\n      alignItems = \"initial\";\n      break;\n  }\n  switch (positionParts[1]) {\n    case \"left\":\n      justifyContent = \"flex-start\";\n      break;\n    case \"right\":\n      justifyContent = \"flex-end\";\n      break;\n    case \"center\":\n      justifyContent = \"center\";\n      break;\n    default:\n      justifyContent = \"initial\";\n      break;\n  }\n  return {\n    justifyContent,\n    alignItems\n  };\n}\nexport function getMultipleShadows(...shadows) {\n  const output = [];\n  shadows.forEach(shadow => {\n    return shadow && output.push(shadow);\n  });\n  return output.join(\", \");\n}\nexport function getShadow(shadow) {\n  if (shadow) {\n    return `${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;\n  } else return null;\n}\nexport function safeJSONParse(jsonString, onError) {\n  try {\n    return JSON.parse(jsonString);\n  } catch {\n    if (onError) onError();\n  }\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"getFlexboxValues\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"safeJSONParse\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"DEFAULT_FONT_FAMILY\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getMultipleShadows\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getShadow\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"FlexboxPosition\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./utils.map", "import { useEffect, useReducer } from \"react\";\nimport { isBrowser } from \"framer-motion\";\nimport { useIsOnFramerCanvas } from \"framer\";\nimport { sendToGTM, initGTM } from \"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/g46SbqOSBOGIULlND7xM/gtm.js\";\nimport { safeJSONParse } from \"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/HMvbWm8DYGjaZ8u68pI6/utils.js\";\nfunction toGTMConsent(consent) {\n  return {\n    functionality_storage: consent.necessary ? \"granted\" : \"denied\",\n    security_storage: consent.necessary ? \"granted\" : \"denied\",\n    ad_storage: consent.marketing ? \"granted\" : \"denied\",\n    analytics_storage: consent.analytics ? \"granted\" : \"denied\",\n    personalization_storage: consent.preferences ? \"granted\" : \"denied\"\n  };\n}\nfunction reducer(state, action) {\n  switch (action.type) {\n    case \"autoAccept\":\n      return {\n        ...state,\n        sync: true,\n        modes: {\n          analytics: true,\n          marketing: true,\n          necessary: true,\n          preferences: true\n        }\n      };\n    case \"acceptAll\":\n      return {\n        ...state,\n        sync: true,\n        dismissed: true,\n        modes: {\n          analytics: true,\n          marketing: true,\n          necessary: true,\n          preferences: true\n        }\n      };\n    case \"rejectAll\":\n      return {\n        ...state,\n        sync: true,\n        dismissed: true,\n        modes: {\n          analytics: false,\n          marketing: false,\n          necessary: false,\n          preferences: false\n        }\n      };\n    case \"acceptCurrent\":\n      return {\n        ...state,\n        dismissed: true,\n        sync: true\n      };\n    case \"update\":\n      return {\n        ...state,\n        modes: {\n          ...state.modes,\n          ...action.modes\n        },\n        sync: action.sync\n      };\n    case \"toggle\":\n      return {\n        ...state,\n        modes: {\n          ...state.modes,\n          [action.mode]: !state.modes[action.mode]\n        }\n      };\n    case \"initFromLocalStorage\":\n      return {\n        ...state,\n        modes: action.modes,\n        dismissed: action.dismissed,\n        initializedFromLocalStorage: true,\n        sync: true\n      };\n    case \"dismiss\":\n      return {\n        ...state,\n        dismissed: true\n      };\n    case \"synced\":\n      return {\n        ...state,\n        sync: false,\n        hasSynced: true\n      };\n    default:\n      return state;\n  }\n}\nconst initialState = {\n  dismissed: false,\n  modes: null,\n  sync: false,\n  initializedFromLocalStorage: false,\n  hasSynced: false\n};\nexport const defaultConsent = {\n  necessary: false,\n  analytics: false,\n  marketing: false,\n  preferences: false\n};\nexport function useConsent({\n  gtmId,\n  defaultConsent\n}) {\n  const [state, dispatch] = useReducer(reducer, initialState);\n  const isOnFramerCanvas = useIsOnFramerCanvas();\n  const consentModeLocalStorageKey = \"framerCookiesConsentMode\";\n  const dismissedLocalStorageKey = \"framerCookiesDismissed\";\n  function getStateFromLocalStorage() {\n    const consentFromLocalStorage = localStorage.getItem(consentModeLocalStorageKey);\n    const dismissedFromLocalStorage = localStorage.getItem(dismissedLocalStorageKey);\n    const hasDismissed = dismissedFromLocalStorage !== null;\n    dispatch({\n      type: \"initFromLocalStorage\",\n      dismissed: hasDismissed,\n      modes: consentFromLocalStorage !== null && hasDismissed ? safeJSONParse(consentFromLocalStorage, () => localStorage.removeItem(consentModeLocalStorageKey)) : defaultConsent\n    });\n  }\n  function syncToGTM() {\n    if (gtmId) {\n      const isFirstSync = !state.hasSynced;\n      if (isFirstSync) {\n        // This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n        // This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n        // https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n        sendToGTM(\"consent\", \"default\", toGTMConsent(state.modes));\n        initGTM({\n          dataLayer: undefined,\n          dataLayerName: \"dataLayer\",\n          environment: undefined,\n          nonce: undefined,\n          injectScript: true,\n          id: gtmId\n        });\n      } else {\n        sendToGTM(\"consent\", \"update\", toGTMConsent(state.modes));\n      }\n    }\n  }\n  useEffect(() => {\n    getStateFromLocalStorage();\n  }, []); // Anytime the dismissed value is updated, we need to persist it in local storage.\n  useEffect(() => {\n    if (state.dismissed) {\n      localStorage.setItem(dismissedLocalStorageKey, \"true\");\n    }\n  }, [state.dismissed]); // Sync data to dataLayer and localStorage.\n  useEffect(() => {\n    const shouldSync = state.sync && isBrowser && !isOnFramerCanvas && state.modes !== null;\n    if (!shouldSync) {\n      return;\n    }\n    syncToGTM(); // Save locally\n    localStorage.setItem(consentModeLocalStorageKey, JSON.stringify(state.modes));\n    dispatch({\n      type: \"synced\"\n    });\n  }, [state.sync]);\n  function dismiss() {\n    dispatch({\n      type: \"dismiss\"\n    });\n    localStorage.setItem(dismissedLocalStorageKey, \"true\");\n  }\n  function autoAccept() {\n    dispatch({\n      type: \"autoAccept\"\n    });\n  }\n  function acceptAll() {\n    dispatch({\n      type: \"acceptAll\"\n    });\n  }\n  function rejectAll() {\n    dispatch({\n      type: \"rejectAll\"\n    });\n  }\n  function acceptCurrent() {\n    dispatch({\n      type: \"acceptCurrent\"\n    });\n  }\n  function toggleMode(mode) {\n    dispatch({\n      type: \"toggle\",\n      mode\n    });\n  }\n  return {\n    modes: state.modes,\n    isInitialized: state.hasSynced,\n    isDismissed: state.dismissed,\n    dismiss,\n    autoAccept,\n    acceptAll,\n    rejectAll,\n    acceptCurrent,\n    toggleMode\n  };\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"ConsentModeName\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"defaultConsent\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useConsent\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ConsentModes\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./consent.map", "// Check if visitor is in EU\nconst countries = [\"BE\", \"EL\", \"LT\", \"PT\", \"BG\", \"ES\", \"LU\", \"RO\", \"CZ\", \"FR\", \"RE\", \"GP\", \"MQ\", \"GF\", \"YT\", \"BL\", \"MF\", \"PM\", \"WF\", \"PF\", \"NC\", \"HU\", \"SI\", \"DK\", \"FO\", \"GL\", \"HR\", \"MT\", \"SK\", \"DE\", \"IT\", \"NL\", \"AW\", \"CW\", \"SX\", \"FI\", \"AX\", \"EE\", \"CY\", \"AT\", \"SE\", \"IE\", \"LV\", \"PL\", \"UK\", \"GB\", \"AI\", \"BM\", \"IO\", \"VG\", \"KY\", \"FK\", \"GI\", \"MS\", \"PN\", \"SH\", \"TC\", \"GG\", \"JE\", \"IM\"];\nconst isInEUTimezone = () => {\n  var ref, ref1, ref2;\n  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\");\n};\nconst isEULocale = () => {\n  var ref;\n  var _language;\n  const locale = (_language = navigator.language) !== null && _language !== void 0 ? _language : (ref = navigator.languages) === null || ref === void 0 ? void 0 : ref[0];\n  return countries.some(country => {\n    var ref;\n    return (ref = locale === null || locale === void 0 ? void 0 : locale.toUpperCase()) === null || ref === void 0 ? void 0 : ref.includes(country);\n  });\n};\nexport const inEU = () => {\n  return isInEUTimezone() || isEULocale();\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"inEU\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./inEU.map", "import { isBrowser } from \"framer-motion\";\nimport { inEU } from \"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js\";\nexport function useRegion({\n  content,\n  useRegionFromProps\n}) {\n  const isInEUBasedOnLocation = isBrowser ? inEU() : false;\n  const regionBasedOnLocation = isInEUBasedOnLocation ? \"EU\" : \"World\";\n  const regionFromProps = content.isEU ? \"EU\" : \"World\";\n  const regionContent = {\n    EU: {\n      title: content.euTitle,\n      description: content.euDescription,\n      type: content.euType,\n      defaults: content.euDefaults,\n      policy: content.euPolicy,\n      blocking: content.euBlocking\n    },\n    World: {\n      title: content.worldTitle,\n      description: content.worldDescription,\n      type: content.worldType,\n      defaults: content.worldDefaults,\n      policy: content.worldPolicy,\n      blocking: content.worldBlocking\n    }\n  };\n  return regionContent[useRegionFromProps ? regionFromProps : regionBasedOnLocation];\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"RegionType\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"RegionContent\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useRegion\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { jsx as _jsx } from \"react/jsx-runtime\";\nexport const IconCookie = props => /*#__PURE__*/_jsx(\"svg\", {\n  xmlns: \"http://www.w3.org/2000/svg\",\n  viewBox: \"0 0 256 256\",\n  width: props.width,\n  height: props.height,\n  style: {\n    ...props.style,\n    color: props.color,\n    fill: props.color\n  },\n  children: /*#__PURE__*/_jsx(\"path\", {\n    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\"\n  })\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"IconCookie\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\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\";\nimport { useState } from \"react\";\nimport { AnimatePresence, motion } from \"framer-motion\";\nimport { DEFAULT_FONT_FAMILY, getMultipleShadows, getShadow } from \"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/HMvbWm8DYGjaZ8u68pI6/utils.js\";\nimport Toggle from \"https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP\";\nconst SPACING = 20;\nexport function Banner({\n  banner,\n  button,\n  region,\n  options,\n  previewOptions,\n  consentModes,\n  onDismiss,\n  onAcceptAll,\n  onRejectAll,\n  onAcceptCurrent,\n  onToggleConsent,\n  animateOnMount\n}) {\n  var ref;\n  const maxHeightReduction = banner.insetPerSide ? banner.insetTop + banner.insetBottom : banner.inset * 2;\n  const linkColor = banner.style.link || button.primary.fill;\n  const paddingValue = banner.paddingPerSide ? `${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px` : `${banner.padding}px`;\n  const bannerShadow = getShadow(banner.style.shadow);\n  const borderShadow = ((ref = banner.style.border) === null || ref === void 0 ? void 0 : ref.width) ? `inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}` : null;\n  const bannerStyle = {\n    background: banner.style.fill,\n    boxShadow: getMultipleShadows(bannerShadow, borderShadow),\n    overflow: \"hidden\",\n    borderRadius: banner.style.border.radius\n  };\n  return /*#__PURE__*/_jsx(motion.div, {\n    initial: animateOnMount && {\n      x: banner.animation.x,\n      y: banner.animation.y,\n      scale: banner.animation.scale,\n      opacity: 0\n    },\n    animate: {\n      y: 0,\n      x: 0,\n      scale: 1,\n      opacity: 1\n    },\n    exit: {\n      x: banner.animation.x,\n      y: banner.animation.y,\n      scale: banner.animation.scale,\n      opacity: 0\n    },\n    transition: animateOnMount ? banner.animation.transition : {\n      duration: 0\n    },\n    style: {\n      fontFamily: DEFAULT_FONT_FAMILY,\n      maxHeight: `calc(100vh - ${maxHeightReduction}px)`,\n      flexDirection: \"column\",\n      gap: 12,\n      position: \"relative\",\n      display: \"flex\",\n      zIndex: 100,\n      pointerEvents: \"auto\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: {\n        ...bannerStyle,\n        overflow: \"scroll\",\n        width: \"100%\",\n        maxWidth: banner.width\n      },\n      children: region.type === \"simple\" ? /*#__PURE__*/_jsx(SimpleBanner, {\n        banner: banner,\n        button: button,\n        linkColor: linkColor,\n        description: region.description,\n        policy: region.policy,\n        onDismiss: onDismiss\n      }) : region.type === \"medium\" ? /*#__PURE__*/_jsx(AcceptRejectBanner, {\n        banner: banner,\n        button: button,\n        linkColor: linkColor,\n        title: region.title,\n        description: region.description,\n        policy: region.policy,\n        onAccept: onAcceptAll,\n        onReject: onRejectAll\n      }) : /*#__PURE__*/_jsx(OptionsBanner, {\n        banner: banner,\n        button: button,\n        options: options,\n        previewOptions: previewOptions,\n        linkColor: linkColor,\n        title: region.title,\n        description: region.description,\n        policy: region.policy,\n        onOptionToggle: onToggleConsent,\n        consent: consentModes,\n        onAcceptAll: onAcceptAll,\n        onRejectAll: onRejectAll,\n        onAcceptCurrent: onAcceptCurrent\n      })\n    })\n  });\n}\nfunction SimpleBanner({\n  banner,\n  button,\n  description,\n  policy,\n  onDismiss,\n  linkColor\n}) {\n  const padding = banner.paddingPerSide ? `${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px` : `${banner.padding}px`;\n  return /*#__PURE__*/_jsxs(\"div\", {\n    style: {\n      display: \"flex\",\n      flexDirection: \"row\",\n      padding,\n      gap: SPACING\n    },\n    children: [/*#__PURE__*/_jsx(Description, {\n      style: {\n        ...banner.style.fontBody,\n        flex: 1,\n        alignItems: \"center\",\n        color: banner.style.colorBody\n      },\n      linkColor: linkColor,\n      description: description,\n      policy: policy\n    }), /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        display: \"flex\",\n        justifyContent: \"center\",\n        alignItems: \"center\"\n      },\n      children: /*#__PURE__*/_jsx(Button, {\n        onClick: onDismiss,\n        settings: {\n          ...button,\n          fluid: false\n        },\n        children: button.labels.confirm\n      })\n    })]\n  });\n}\nfunction AcceptRejectBanner({\n  banner,\n  button,\n  title,\n  linkColor,\n  description,\n  policy,\n  onAccept,\n  onReject\n}) {\n  const padding = banner.paddingPerSide ? `${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px` : `${banner.padding}px`;\n  return /*#__PURE__*/_jsxs(\"div\", {\n    style: {\n      padding\n    },\n    children: [/*#__PURE__*/_jsxs(\"div\", {\n      children: [title && /*#__PURE__*/_jsx(Headline, {\n        style: {\n          ...banner.style.fontTitle,\n          color: banner.style.colorTitle\n        },\n        children: title\n      }), /*#__PURE__*/_jsx(Description, {\n        style: {\n          ...banner.style.fontBody,\n          color: banner.style.colorBody\n        },\n        linkColor: linkColor,\n        description: description,\n        policy: policy\n      })]\n    }), /*#__PURE__*/_jsxs(Buttons, {\n      direction: button.direction,\n      children: [/*#__PURE__*/_jsx(Button, {\n        settings: button,\n        onClick: onReject,\n        children: button.labels.reject\n      }), /*#__PURE__*/_jsx(Button, {\n        settings: button,\n        primary: true,\n        onClick: onAccept,\n        children: button.labels.accept\n      })]\n    })]\n  });\n}\nfunction OptionsBanner({\n  banner,\n  button,\n  options,\n  previewOptions,\n  title,\n  description,\n  policy,\n  linkColor,\n  consent,\n  onAcceptCurrent,\n  onAcceptAll,\n  onRejectAll,\n  onOptionToggle\n}) {\n  const [showOptions, setShowOptions] = useState(false);\n  const optionTheme = {\n    ...options.style,\n    color: banner.style.colorBody\n  };\n  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)\n  const optionNames = [\"necessary\", \"preferences\", \"analytics\", \"marketing\"];\n  const shouldShowOptions = showOptions || previewOptions;\n  return /*#__PURE__*/_jsxs(\"div\", {\n    style: {\n      padding\n    },\n    children: [/*#__PURE__*/_jsxs(\"div\", {\n      children: [title && /*#__PURE__*/_jsx(Headline, {\n        style: {\n          ...banner.style.fontTitle,\n          color: banner.style.colorTitle\n        },\n        children: title\n      }), /*#__PURE__*/_jsx(Description, {\n        style: {\n          ...banner.style.fontBody,\n          color: banner.style.colorBody\n        },\n        linkColor: linkColor,\n        description: description,\n        policy: policy\n      }), /*#__PURE__*/_jsx(AnimatePresence, {\n        children: shouldShowOptions && /*#__PURE__*/_jsx(motion.div, {\n          initial: previewOptions ? null : {\n            opacity: 0,\n            height: 0\n          },\n          animate: {\n            opacity: 1,\n            height: \"auto\"\n          },\n          exit: {\n            opacity: 0,\n            height: 0\n          },\n          style: {\n            display: \"flex\",\n            flexDirection: \"column\",\n            gap: 10,\n            marginTop: SPACING,\n            overflow: \"hidden\"\n          },\n          children: optionNames && optionNames.map(option => /*#__PURE__*/_jsx(Option, {\n            title: options[option].title,\n            description: options[option].description,\n            titleColor: banner.style.colorTitle,\n            descriptionColor: banner.style.colorBody,\n            showDescription: options.descriptions,\n            enabled: consent[option],\n            onClick: () => onOptionToggle(option),\n            theme: optionTheme\n          }))\n        }, \"modal\")\n      })]\n    }), /*#__PURE__*/_jsx(Buttons, {\n      direction: button.direction,\n      children: shouldShowOptions ? /*#__PURE__*/_jsx(Button, {\n        settings: button,\n        primary: true,\n        onClick: onAcceptCurrent,\n        children: button.labels.save\n      }) : /*#__PURE__*/_jsxs(_Fragment, {\n        children: [/*#__PURE__*/_jsx(Button, {\n          settings: button,\n          onClick: onRejectAll,\n          children: button.labels.rejectAll\n        }), /*#__PURE__*/_jsx(Button, {\n          settings: button,\n          onClick: () => {\n            setShowOptions(true);\n          },\n          children: button.labels.customize\n        }), /*#__PURE__*/_jsx(Button, {\n          settings: button,\n          primary: true,\n          onClick: onAcceptAll,\n          children: button.labels.acceptAll\n        })]\n      })\n    })]\n  });\n}\nfunction Option({\n  title,\n  titleColor,\n  description,\n  descriptionColor,\n  showDescription,\n  enabled,\n  onClick,\n  theme\n}) {\n  const paddingValue = theme.paddingPerSide ? `${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px` : `${theme.padding}px`;\n  const borderShadow = theme.border ? `inset 0 0 0 ${theme.border.width}px ${theme.border.color}` : null;\n  return /*#__PURE__*/_jsxs(motion.div, {\n    style: {\n      boxShadow: borderShadow,\n      background: theme.background,\n      borderRadius: theme.border.radius,\n      padding: paddingValue,\n      cursor: \"pointer\",\n      userSelect: \"none\",\n      pointerEvents: \"all\"\n    },\n    onClick: onClick,\n    whileHover: {\n      opacity: .5\n    },\n    children: [/*#__PURE__*/_jsxs(\"div\", {\n      style: {\n        display: \"flex\",\n        justifyContent: \"space-between\"\n      },\n      children: [/*#__PURE__*/_jsx(\"p\", {\n        style: {\n          margin: 0,\n          fontWeight: 600,\n          fontSize: 12,\n          color: titleColor,\n          ...theme.fontTitle\n        },\n        children: title\n      }), /*#__PURE__*/_jsx(Toggle, {\n        variant: enabled ? \"On\" : \"Off\",\n        background: theme.toggleColor,\n        backgroundInactive: theme.toggleColorInactive\n      })]\n    }), description && /*#__PURE__*/_jsx(\"p\", {\n      style: {\n        margin: 0,\n        marginTop: 10,\n        fontSize: 12,\n        lineHeight: 1.5,\n        color: descriptionColor,\n        ...theme.fontBody\n      },\n      children: description\n    })]\n  });\n}\nfunction Headline({\n  children,\n  style\n}) {\n  return /*#__PURE__*/_jsx(\"h6\", {\n    style: {\n      fontSize: 14,\n      margin: \"0px 0px 10px 0px\",\n      padding: 0,\n      ...style\n    },\n    children: children\n  });\n}\nfunction Description({\n  style,\n  description,\n  policy,\n  linkColor\n}) {\n  const shouldShow = description || (policy === null || policy === void 0 ? void 0 : policy.link);\n  return shouldShow && /*#__PURE__*/_jsxs(\"p\", {\n    style: {\n      lineHeight: 1.5,\n      margin: 0,\n      padding: 0,\n      fontSize: 14,\n      ...style\n    },\n    children: [description, \" \", (policy === null || policy === void 0 ? void 0 : policy.link) && /*#__PURE__*/_jsxs(\"span\", {\n      children: [policy === null || policy === void 0 ? void 0 : policy.prefix, \" \", /*#__PURE__*/_jsx(\"a\", {\n        href: policy === null || policy === void 0 ? void 0 : policy.link,\n        target: \"_blank\",\n        style: {\n          color: linkColor,\n          textDecoration: \"none\"\n        },\n        children: policy === null || policy === void 0 ? void 0 : policy.label\n      }), \".\"]\n    })]\n  });\n}\nfunction Buttons({\n  children,\n  direction\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      display: \"flex\",\n      flexDirection: direction,\n      gap: 10,\n      marginTop: 16\n    },\n    children: children\n  });\n}\nfunction Button({\n  children,\n  primary,\n  settings,\n  onClick\n}) {\n  const paddingValue = settings.paddingPerSide ? `${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px` : `${settings.padding}px`;\n  const theme = primary ? settings.primary : settings.secondary;\n  return /*#__PURE__*/_jsx(motion.input, {\n    onClick: onClick,\n    type: \"button\",\n    value: `${children}`,\n    whileHover: {\n      opacity: .6\n    },\n    whileTap: {\n      opacity: .4\n    },\n    style: {\n      WebkitAppearance: \"none\",\n      appearance: \"none\",\n      width: settings.fluid ? \"100%\" : \"auto\",\n      height: \"auto\",\n      outline: \"none\",\n      border: \"none\",\n      padding: paddingValue,\n      borderRadius: settings.borderRadius,\n      boxShadow: getShadow(theme.shadow),\n      background: theme.fill,\n      color: theme.color,\n      fontSize: 14,\n      fontWeight: 600,\n      lineHeight: 1,\n      cursor: \"pointer\",\n      ...settings.font\n    }\n  });\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"BannerComponentProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Banner\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Banner\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Banner.map", "import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { createPortal } from \"react-dom\";\nimport { useEffect, useState } from \"react\";\nimport { addPropertyControls, ControlType, useIsOnFramerCanvas } from \"framer\";\nimport { AnimatePresence, motion } from \"framer-motion\";\nimport { useConsent, defaultConsent } from \"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/V4Q7HrNs7yipqQfhEhc9/consent.js\";\nimport { useRegion } from \"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/A4ld94elrQNddtXvgzeQ/region.js\";\nimport { DEFAULT_FONT_FAMILY, getFlexboxValues } from \"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/HMvbWm8DYGjaZ8u68pI6/utils.js\";\nimport { IconCookie } from \"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js\";\nimport { Banner } from \"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/zCKXKufS1PpbGVlIDuPE/Banner.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                           */\nexport default function CookieBanner({\n  gtmId,\n  preview,\n  trigger,\n  banner,\n  button,\n  content,\n  options,\n  style\n}) {\n  const isOnFramerCanvas = useIsOnFramerCanvas();\n  const isPreview = preview && isOnFramerCanvas;\n  const region = useRegion({\n    content,\n    useRegionFromProps: isPreview\n  });\n  const consent = useConsent({\n    gtmId,\n    defaultConsent: region.defaults\n  });\n  const [isOpen, setIsOpen] = useState(initiallyOpen); // On page switch, disable all transitions so the banner shows up as fast as possible.\n  const [instantlyShowOnMount, setInstantlyShowOnMount] = useState(initiallyOpen);\n  useEffect(() => {\n    // Save open state between page switches\n    initiallyOpen = isOpen; // Disable instantly show on mount after first open\n    if (isOpen) {\n      setInstantlyShowOnMount(false);\n    }\n  }, [isOpen]); // Check if user should be prompted\n  useEffect(() => {\n    const noConsentGiven = consent.isInitialized && !consent.isDismissed;\n    const autoConsentAllowed = region.type === \"simple\";\n    if (noConsentGiven) {\n      setIsOpen(true); /** Automatically accept all cookies for simple banner. */\n      if (autoConsentAllowed) {\n        consent.autoAccept();\n      }\n    }\n    if (consent.isDismissed) {\n      setIsOpen(false);\n    }\n  }, [consent.isInitialized, consent.isDismissed]);\n  function handleDismiss() {\n    consent.dismiss();\n    setIsOpen(false);\n  }\n  function handleAcceptAll() {\n    consent.acceptAll();\n    setIsOpen(false);\n  }\n  function handleRejectAll() {\n    consent.rejectAll();\n    setIsOpen(false);\n  }\n  function handleAcceptCurrent() {\n    consent.acceptCurrent();\n    setIsOpen(false);\n  }\n  if (isPreview) {\n    return /*#__PURE__*/_jsx(\"div\", {\n      style: {\n        ...style,\n        width: banner.width\n      },\n      children: /*#__PURE__*/_jsx(Banner, {\n        banner: banner,\n        button: button,\n        region: region,\n        options: options,\n        previewOptions: isPreview && options.preview,\n        consentModes: {\n          ...defaultConsent,\n          necessary: true\n        },\n        animateOnMount: false\n      })\n    });\n  }\n  return /*#__PURE__*/_jsxs(_Fragment, {\n    children: [/*#__PURE__*/_jsx(Trigger, {\n      style: style,\n      trigger: trigger,\n      onClick: () => setIsOpen(true)\n    }), /*#__PURE__*/_jsx(AnimatePresence, {\n      children: isOpen && /*#__PURE__*/_jsx(Overlay, {\n        banner: banner,\n        button: button,\n        region: region,\n        options: options,\n        consentModes: consent.modes,\n        animateOnMount: !instantlyShowOnMount,\n        onAcceptAll: handleAcceptAll,\n        onAcceptCurrent: handleAcceptCurrent,\n        onRejectAll: handleRejectAll,\n        onDismiss: handleDismiss,\n        onToggleConsent: consent.toggleMode\n      })\n    })]\n  });\n}\n;\nfunction Overlay(props) {\n  var ref;\n  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`;\n  const {\n    justifyContent,\n    alignItems\n  } = getFlexboxValues(props.banner.position);\n  return /*#__PURE__*/createPortal( /*#__PURE__*/_jsxs(motion.div, {\n    style: {\n      top: 0,\n      left: 0,\n      right: 0,\n      bottom: 0,\n      width: \"100%\",\n      height: \"100%\",\n      boxSizing: \"border-box\",\n      position: \"fixed\",\n      touchAction: \"none\",\n      padding: insetValue,\n      zIndex: props.banner.zIndex,\n      display: \"flex\",\n      flexDirection: \"row\",\n      gap: 20,\n      justifyContent,\n      alignItems,\n      pointerEvents: props.region.blocking ? \"all\" : \"none\"\n    },\n    children: [props.region.blocking && /*#__PURE__*/_jsx(Backdrop, {\n      color: (ref = props.banner.style) === null || ref === void 0 ? void 0 : ref.backdrop\n    }), /*#__PURE__*/_jsx(Banner, {\n      ...props\n    })]\n  }), document.body);\n}\nfunction Trigger({\n  trigger,\n  style,\n  onClick\n}) {\n  const isOnFramerCanvas = useIsOnFramerCanvas();\n  if (trigger.type !== \"none\") {\n    return /*#__PURE__*/_jsx(\"button\", {\n      \"aria-label\": \"Cookie Trigger\",\n      style: {\n        width: \"100%\",\n        height: \"100%\",\n        background: \"none\",\n        display: \"flex\",\n        border: \"none\",\n        outline: \"inherit\",\n        padding: 0,\n        color: trigger.color,\n        fontSize: 16,\n        cursor: \"pointer\",\n        ...trigger.textFont\n      },\n      onClick: onClick,\n      children: trigger.type === \"icon\" ? /*#__PURE__*/_jsx(_Fragment, {\n        children: trigger.iconType === \"custom\" && trigger.iconImage ? /*#__PURE__*/_jsx(\"img\", {\n          alt: \"icon entry point for Site Search\",\n          src: trigger.iconImage.src,\n          width: trigger.iconSize,\n          height: trigger.iconSize\n        }) : /*#__PURE__*/_jsx(IconCookie, {\n          width: trigger.iconSize,\n          height: trigger.iconSize,\n          color: trigger.color\n        })\n      }) : /*#__PURE__*/_jsx(\"span\", {\n        style: {\n          whiteSpace: \"nowrap\"\n        },\n        children: trigger.text\n      })\n    });\n  }\n  if (isOnFramerCanvas) {\n    return /*#__PURE__*/_jsxs(\"div\", {\n      style: {\n        borderRadius: 8,\n        color: \"#09F\",\n        border: \"1px dashed #09F\",\n        background: \"rgba(0, 153, 255, 0.1)\",\n        padding: 20,\n        display: \"flex\",\n        flexDirection: \"column\",\n        gap: 5,\n        fontFamily: DEFAULT_FONT_FAMILY,\n        textAlign: \"center\",\n        justifyContent: \"center\",\n        width: 164,\n        ...style\n      },\n      children: [/*#__PURE__*/_jsx(\"p\", {\n        style: {\n          fontSize: 12,\n          fontWeight: 600,\n          lineHeight: 1,\n          margin: 0\n        },\n        children: \"Cookie Banner\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: {\n          fontSize: 12,\n          lineHeight: 1.5,\n          margin: 0\n        },\n        children: \"Put on a page to add a Cookie Banner.\"\n      })]\n    });\n  }\n}\nfunction Backdrop({\n  color\n}) {\n  return /*#__PURE__*/_jsx(motion.div, {\n    initial: {\n      opacity: 0\n    },\n    animate: {\n      opacity: 1\n    },\n    exit: {\n      opacity: 0\n    },\n    style: {\n      position: \"absolute\",\n      top: 0,\n      left: 0,\n      right: 0,\n      bottom: 0,\n      width: \"100%\",\n      height: \"100%\",\n      backgroundColor: color,\n      pointerEvents: \"none\"\n    }\n  });\n}\naddPropertyControls(CookieBanner, {\n  gtmId: {\n    title: \"GTM ID\",\n    type: ControlType.String,\n    placeholder: \"GTM-AAAAAAA\",\n    description: \"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"\n  },\n  preview: {\n    type: ControlType.Boolean,\n    defaultValue: true,\n    description: \"Lets you preview the banner on the Canvas.\"\n  },\n  trigger: {\n    type: ControlType.Object,\n    buttonTitle: \"Icon, Text\",\n    controls: {\n      type: {\n        title: \"Type\",\n        type: ControlType.Enum,\n        options: [\"text\", \"icon\", \"none\"],\n        optionTitles: [\"Text\", \"Icon\", \"None\"],\n        defaultValue: \"text\",\n        displaySegmentedControl: true\n      },\n      iconType: {\n        title: \"Icon\",\n        type: ControlType.Enum,\n        options: [\"default\", \"custom\"],\n        optionTitles: [\"Default\", \"Custom\"],\n        displaySegmentedControl: true,\n        hidden: props => props.type !== \"icon\"\n      },\n      text: {\n        title: \"Label\",\n        type: ControlType.String,\n        defaultValue: \"Cookie Settings\",\n        hidden: props => props.type !== \"text\"\n      },\n      textFont: {\n        // @ts-ignore - internal\n        type: ControlType.Font,\n        title: \" \",\n        controls: \"extended\",\n        hidden: props => props.type !== \"text\"\n      },\n      iconSize: {\n        title: \"Size\",\n        type: ControlType.Number,\n        displayStepper: true,\n        defaultValue: 24,\n        hidden: props => props.type !== \"icon\"\n      },\n      color: {\n        title: \"Color\",\n        type: ControlType.Color,\n        defaultValue: \"#333\",\n        hidden: props => props.type === \"none\" || props.type === \"icon\" && props.iconType === \"custom\"\n      },\n      iconImage: {\n        title: \"File\",\n        type: ControlType.ResponsiveImage,\n        allowedFileTypes: [\"jpg\", \"png\", \"svg\"],\n        hidden: props => props.iconType === \"default\"\n      }\n    }\n  },\n  banner: {\n    title: \"Banner\",\n    type: ControlType.Object,\n    buttonTitle: \"Font, Styles\",\n    controls: {\n      position: {\n        type: ControlType.Enum,\n        title: \"Position\",\n        options: [\"top-left\", \"top-center\", \"top-right\", \"bottom-right\", \"bottom-center\", \"bottom-left\"],\n        optionTitles: [\"Top Left\", \"Top Center\", \"Top Right\", \"Bottom Right\", \"Bottom Center\", \"Bottom Left\"],\n        defaultValue: \"bottom-right\"\n      },\n      zIndex: {\n        title: \"Z Index\",\n        type: ControlType.Number,\n        defaultValue: 10,\n        displayStepper: true,\n        min: 0,\n        max: 10\n      },\n      width: {\n        title: \"Width\",\n        type: ControlType.Number,\n        defaultValue: 360,\n        min: 200,\n        max: 1e3,\n        displayStepper: true,\n        step: 5\n      },\n      padding: {\n        title: \"Padding\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\"Padding\", \"Padding per side\"],\n        defaultValue: 20,\n        valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n        valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n        min: 0\n      },\n      inset: {\n        title: \"Inset\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"insetPerSide\",\n        toggleTitles: [\"Inset\", \"Inset per side\"],\n        defaultValue: 20,\n        valueKeys: [\"insetTop\", \"insetRight\", \"insetBottom\", \"insetLeft\"],\n        valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n        min: 0\n      },\n      style: {\n        type: ControlType.Object,\n        title: \"Style\",\n        buttonTitle: \"Fonts, Colors, Shadow\",\n        controls: {\n          fontTitle: {\n            // @ts-ignore - internal\n            type: ControlType.Font,\n            title: \"Title\",\n            controls: \"extended\"\n          },\n          colorTitle: {\n            title: \" \",\n            type: ControlType.Color,\n            defaultValue: \"#000\"\n          },\n          fontBody: {\n            // @ts-ignore - internal\n            type: ControlType.Font,\n            title: \"Body\",\n            controls: \"extended\"\n          },\n          colorBody: {\n            title: \" \",\n            type: ControlType.Color,\n            defaultValue: \"#444\"\n          },\n          fill: {\n            title: \"Fill\",\n            type: ControlType.Color,\n            defaultValue: \"#FFF\"\n          },\n          link: {\n            title: \"Link\",\n            type: ControlType.Color,\n            optional: true,\n            defaultValue: \"#999\"\n          },\n          border: {\n            type: ControlType.Object,\n            title: \"Border\",\n            buttonTitle: \"Radius, Width\",\n            controls: {\n              radius: {\n                title: \"Radius\",\n                type: ControlType.Number,\n                displayStepper: true,\n                min: 0,\n                defaultValue: 14\n              },\n              width: {\n                title: \"Width\",\n                type: ControlType.Number,\n                displayStepper: true,\n                min: 0,\n                defaultValue: 1\n              },\n              color: {\n                title: \"Color\",\n                type: ControlType.Color,\n                defaultValue: \"rgba(0,0,0,0.05)\"\n              }\n            }\n          },\n          shadow: {\n            type: ControlType.Object,\n            title: \"Shadow\",\n            optional: true,\n            controls: {\n              shadowColor: {\n                title: \"Color\",\n                type: ControlType.Color,\n                defaultValue: \"rgba(0,0,0,0.25)\"\n              },\n              shadowX: {\n                title: \"X\",\n                type: ControlType.Number,\n                min: -100,\n                max: 100,\n                defaultValue: 0\n              },\n              shadowY: {\n                title: \"Y\",\n                type: ControlType.Number,\n                min: -100,\n                max: 100,\n                defaultValue: 2\n              },\n              shadowBlur: {\n                title: \"Blur\",\n                type: ControlType.Number,\n                min: 0,\n                max: 100,\n                defaultValue: 4\n              }\n            }\n          },\n          backdrop: {\n            title: \"Backdrop\",\n            type: ControlType.Color,\n            defaultValue: \"rgba(0,0,0,0.1)\",\n            hidden: (_, props) => !props.content.euBlocking && !props.content.worldBlocking\n          }\n        }\n      },\n      animation: {\n        icon: \"effect\",\n        buttonTitle: \"Options\",\n        type: ControlType.Object,\n        controls: {\n          x: {\n            type: ControlType.Number,\n            displayStepper: true,\n            defaultValue: 0\n          },\n          y: {\n            type: ControlType.Number,\n            displayStepper: true,\n            defaultValue: 10\n          },\n          scale: {\n            type: ControlType.Number,\n            min: 0,\n            step: .1,\n            defaultValue: 1\n          },\n          transition: {\n            type: ControlType.Transition\n          }\n        }\n      }\n    }\n  },\n  button: {\n    title: \"Buttons\",\n    type: ControlType.Object,\n    buttonTitle: \"Variants, Style\",\n    controls: {\n      primary: {\n        title: \"Primary\",\n        type: ControlType.Object,\n        buttonTitle: \"Colors, Shadow\",\n        controls: {\n          fill: {\n            title: \"Fill\",\n            type: ControlType.Color,\n            defaultValue: \"#000\"\n          },\n          color: {\n            title: \"Color\",\n            type: ControlType.Color,\n            defaultValue: \"#FFF\"\n          },\n          shadow: {\n            type: ControlType.Object,\n            title: \"Shadow\",\n            optional: true,\n            controls: {\n              shadowColor: {\n                title: \"Color\",\n                type: ControlType.Color,\n                defaultValue: \"rgba(0,0,0,0.25)\"\n              },\n              shadowX: {\n                title: \"X\",\n                type: ControlType.Number,\n                min: -100,\n                max: 100\n              },\n              shadowY: {\n                title: \"Y\",\n                type: ControlType.Number,\n                min: -100,\n                max: 100\n              },\n              shadowBlur: {\n                title: \"Blur\",\n                type: ControlType.Number,\n                min: 0,\n                max: 100\n              }\n            }\n          }\n        }\n      },\n      secondary: {\n        title: \"Secondary\",\n        type: ControlType.Object,\n        buttonTitle: \"Colors, Shadow\",\n        controls: {\n          fill: {\n            title: \"Fill\",\n            type: ControlType.Color,\n            defaultValue: \"#EEE\"\n          },\n          color: {\n            title: \"Color\",\n            type: ControlType.Color,\n            defaultValue: \"#444\"\n          },\n          shadow: {\n            type: ControlType.Object,\n            title: \"Shadow\",\n            optional: true,\n            controls: {\n              shadowColor: {\n                title: \"Color\",\n                type: ControlType.Color,\n                defaultValue: \"rgba(0,0,0,0.25)\"\n              },\n              shadowX: {\n                title: \"X\",\n                type: ControlType.Number,\n                min: -100,\n                max: 100\n              },\n              shadowY: {\n                title: \"Y\",\n                type: ControlType.Number,\n                min: -100,\n                max: 100\n              },\n              shadowBlur: {\n                title: \"Blur\",\n                type: ControlType.Number,\n                min: 0,\n                max: 100\n              }\n            }\n          }\n        }\n      },\n      labels: {\n        type: ControlType.Object,\n        controls: {\n          accept: {\n            type: ControlType.String,\n            defaultValue: \"Accept\"\n          },\n          reject: {\n            type: ControlType.String,\n            defaultValue: \"Reject\"\n          },\n          acceptAll: {\n            type: ControlType.String,\n            defaultValue: \"Accept all\"\n          },\n          rejectAll: {\n            type: ControlType.String,\n            defaultValue: \"Reject all\"\n          },\n          customize: {\n            type: ControlType.String,\n            defaultValue: \"Customize\"\n          },\n          save: {\n            type: ControlType.String,\n            defaultValue: \"Save Preferences\"\n          },\n          confirm: {\n            type: ControlType.String,\n            defaultValue: \"Okay\"\n          }\n        }\n      },\n      font: {\n        // @ts-ignore - internal\n        type: ControlType.Font,\n        title: \"Font\",\n        controls: \"extended\"\n      },\n      padding: {\n        title: \"Padding\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\"Padding\", \"Padding per side\"],\n        defaultValue: 10,\n        valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n        valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n        min: 0\n      },\n      borderRadius: {\n        title: \"Radius\",\n        type: ControlType.Number,\n        displayStepper: true,\n        min: 0,\n        defaultValue: 8\n      },\n      direction: {\n        type: ControlType.Enum,\n        title: \"Direction\",\n        options: [\"row\", \"column\"],\n        // @ts-ignore - internal\n        optionIcons: [\"direction-horizontal\", \"direction-vertical\"],\n        defaultValue: \"row\",\n        displaySegmentedControl: true\n      },\n      fluid: {\n        title: \"Fluid\",\n        type: ControlType.Boolean,\n        defaultValue: true\n      }\n    }\n  },\n  content: {\n    title: \"Regions\",\n    type: ControlType.Object,\n    buttonTitle: \"World, EU\",\n    controls: {\n      isEU: {\n        title: \" \",\n        type: ControlType.Boolean,\n        defaultValue: true,\n        enabledTitle: \"EU\",\n        disabledTitle: \"World\"\n      },\n      euType: {\n        title: \"Choices\",\n        type: ControlType.Enum,\n        options: [\"simple\", \"medium\", \"advanced\"],\n        optionTitles: [\"None\", \"Accept/Reject\", \"Customizable\"],\n        defaultValue: \"medium\",\n        hidden: props => !props.isEU\n      },\n      euTitle: {\n        title: \"Title\",\n        type: ControlType.String,\n        defaultValue: \"Cookie Settings\",\n        hidden: props => props.euType === \"simple\" || !props.isEU\n      },\n      euDescription: {\n        title: \"Description\",\n        type: ControlType.String,\n        defaultValue: \"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",\n        displayTextArea: true,\n        hidden: props => !props.isEU\n      },\n      euPolicy: {\n        title: \"Policy\",\n        type: ControlType.Object,\n        buttonTitle: \"Link, Prefix\",\n        controls: {\n          link: {\n            title: \"Link\",\n            type: ControlType.Link,\n            defaultValue: \"https://www.framer.com/legal/policy/\"\n          },\n          prefix: {\n            title: \"Prefix\",\n            type: ControlType.String,\n            defaultValue: \"Read our\",\n            hidden: props => !props.link\n          },\n          label: {\n            title: \"Label\",\n            type: ControlType.String,\n            defaultValue: \"Cookie Policy\",\n            hidden: props => !props.link\n          }\n        },\n        hidden: props => !props.isEU\n      },\n      euDefaults: {\n        title: \"Defaults\",\n        buttonTitle: \"Options\",\n        type: ControlType.Object,\n        controls: {\n          necessary: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: false\n          },\n          preferences: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: false\n          },\n          analytics: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: false\n          },\n          marketing: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: false,\n            description: \"The default consent when the user hasn\u2019t provided any yet.\"\n          }\n        },\n        hidden: props => !props.isEU\n      },\n      euBlocking: {\n        title: \"Blocking\",\n        type: ControlType.Boolean,\n        defaultValue: false,\n        description: \"Renders a content blocking backdrop.\",\n        hidden: props => !props.isEU\n      },\n      worldType: {\n        title: \"Choices\",\n        type: ControlType.Enum,\n        options: [\"simple\", \"medium\", \"advanced\"],\n        optionTitles: [\"None\", \"Accept/Reject\", \"Customizable\"],\n        defaultValue: \"simple\",\n        hidden: props => props.isEU\n      },\n      worldTitle: {\n        title: \"Title\",\n        type: ControlType.String,\n        defaultValue: \"Cookie Settings\",\n        hidden: props => props.worldType === \"simple\" || props.isEU\n      },\n      worldDescription: {\n        title: \"Description\",\n        type: ControlType.String,\n        defaultValue: \"We use cookies to personalize content, run ads, and analyze traffic.\",\n        displayTextArea: true,\n        hidden: props => props.isEU\n      },\n      worldPolicy: {\n        title: \"Policy\",\n        type: ControlType.Object,\n        buttonTitle: \"Link, Prefix\",\n        controls: {\n          link: {\n            title: \"Link\",\n            type: ControlType.Link\n          },\n          prefix: {\n            title: \"Prefix\",\n            type: ControlType.String,\n            defaultValue: \"Read our\",\n            hidden: props => !props.link\n          },\n          label: {\n            title: \"Label\",\n            type: ControlType.String,\n            defaultValue: \"Cookie Policy\",\n            hidden: props => !props.link\n          }\n        },\n        hidden: props => props.isEU\n      },\n      worldDefaults: {\n        title: \"Defaults\",\n        buttonTitle: \"Options\",\n        type: ControlType.Object,\n        controls: {\n          necessary: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: true\n          },\n          preferences: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: true\n          },\n          analytics: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: true\n          },\n          marketing: {\n            type: ControlType.Boolean,\n            enabledTitle: \"Granted\",\n            disabledTitle: \"Denied\",\n            defaultValue: true,\n            description: \"The default consent when the user hasn\u2019t provided any yet.\"\n          }\n        },\n        hidden: props => props.isEU\n      },\n      worldBlocking: {\n        title: \"Blocking\",\n        type: ControlType.Boolean,\n        defaultValue: false,\n        description: \"Renders a content blocking backdrop.\",\n        hidden: props => props.isEU\n      }\n    }\n  },\n  options: {\n    type: ControlType.Object,\n    buttonTitle: \"Content, Styles\",\n    hidden: (_, props) => props.content.euType !== \"advanced\" && props.content.worldType !== \"advanced\",\n    controls: {\n      preview: {\n        type: ControlType.Boolean,\n        defaultValue: false,\n        description: \"Open when previewing banner on the canvas.\",\n        hidden: (_, props) => !props.preview\n      },\n      necessary: {\n        title: \"Necessary\",\n        type: ControlType.Object,\n        buttonTitle: \"Content\",\n        controls: {\n          title: {\n            title: \"Title\",\n            type: ControlType.String,\n            defaultValue: \"Necessary\"\n          },\n          description: {\n            title: \"Description\",\n            type: ControlType.String,\n            defaultValue: \"Enables security and basic functionality.\",\n            displayTextArea: true\n          }\n        }\n      },\n      preferences: {\n        title: \"Preferences\",\n        type: ControlType.Object,\n        buttonTitle: \"Content\",\n        controls: {\n          title: {\n            title: \"Title\",\n            type: ControlType.String,\n            defaultValue: \"Preferences\"\n          },\n          description: {\n            title: \"Description\",\n            type: ControlType.String,\n            defaultValue: \"Enables personalized content and settings.\",\n            displayTextArea: true,\n            optional: true\n          }\n        }\n      },\n      analytics: {\n        title: \"Analytics\",\n        type: ControlType.Object,\n        buttonTitle: \"Content\",\n        controls: {\n          title: {\n            title: \"Title\",\n            type: ControlType.String,\n            defaultValue: \"Analytics\"\n          },\n          description: {\n            title: \"Description\",\n            type: ControlType.String,\n            defaultValue: \"Enables tracking of performance.\",\n            displayTextArea: true\n          }\n        }\n      },\n      marketing: {\n        title: \"Marketing\",\n        type: ControlType.Object,\n        buttonTitle: \"Content\",\n        controls: {\n          title: {\n            title: \"Title\",\n            type: ControlType.String,\n            defaultValue: \"Marketing\"\n          },\n          description: {\n            title: \"Description\",\n            type: ControlType.String,\n            defaultValue: \"Enables ads personalization and tracking.\",\n            displayTextArea: true\n          }\n        }\n      },\n      style: {\n        type: ControlType.Object,\n        title: \"Style\",\n        buttonTitle: \"Fonts, Colors\",\n        controls: {\n          fontTitle: {\n            // @ts-ignore - internal\n            type: ControlType.Font,\n            title: \"Title\",\n            controls: \"basic\"\n          },\n          fontBody: {\n            // @ts-ignore - internal\n            type: ControlType.Font,\n            title: \"Body\",\n            controls: \"basic\"\n          },\n          background: {\n            title: \"Background\",\n            type: ControlType.Color,\n            defaultValue: \"rgba(0,0,0,0.02)\"\n          },\n          border: {\n            type: ControlType.Object,\n            title: \"Border\",\n            buttonTitle: \"Radius, Width\",\n            controls: {\n              radius: {\n                title: \"Radius\",\n                type: ControlType.Number,\n                displayStepper: true,\n                min: 0,\n                defaultValue: 8\n              },\n              width: {\n                title: \"Width\",\n                type: ControlType.Number,\n                displayStepper: true\n              },\n              color: {\n                title: \"Color\",\n                type: ControlType.Color,\n                defaultValue: \"rgba(0,0,0,0.02)\"\n              }\n            }\n          },\n          toggleColor: {\n            title: \"On\",\n            type: ControlType.Color,\n            defaultValue: \"#000\"\n          },\n          toggleColorInactive: {\n            title: \"Off\",\n            type: ControlType.Color,\n            defaultValue: \"rgba(0,0,0,0.1)\"\n          },\n          padding: {\n            title: \"Padding\",\n            type: ControlType.FusedNumber,\n            toggleKey: \"paddingPerSide\",\n            toggleTitles: [\"Padding\", \"Padding per side\"],\n            defaultValue: 12,\n            valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n            valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n            min: 0\n          }\n        }\n      }\n    }\n  }\n});\nCookieBanner.displayName = \"Cookie Banner\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"OptionsStyle\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"PolicyProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ButtonsProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"CookieBanner\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerDisableUnlink\": \"*\",\n        \"framerSupportedLayoutWidth\": \"auto\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutHeight\": \"auto\"\n      }\n    },\n    \"ContentProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"CookieBannerProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"ContentType\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (89417f6)\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useActiveVariantCallback, useHydratedBreakpointVariants, useLocaleInfo, useOverlayState, useRouter, withCSS, withFX } from \"framer\";\nimport { AnimatePresence, LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport CookieBanner from \"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/MkSJT6jOyPQYljBpRuaa/Cookies.js\";\nimport List from \"https://framerusercontent.com/modules/xViEuno9SrtwQrSlt01h/JCR5QzHcU6UUzUsXGlWj/bkf_3iqYh.js\";\nimport FeatureCard from \"https://framerusercontent.com/modules/lDFDA7iRVuUlbhXk95K3/Pu6nPGBNg3pbiSsHb9Ow/Kym4ifyAB.js\";\nimport Footer from \"https://framerusercontent.com/modules/nIloXykD1F2ukAwvmStI/oi8EFUUG5ZBHCNOQgIRB/M82dauGNX.js\";\nimport CTA from \"https://framerusercontent.com/modules/x7XNCLUYyCqON1k2Ln7g/G5KQ13T9aWrTmGNAp2zs/OlTWqYMo3.js\";\nimport Button from \"https://framerusercontent.com/modules/tgJ7HHdOVf6DySSdMC0j/SLI9kzePNuMtcwgNgGO0/Tnz4seCKc.js\";\nimport QuoteLarge from \"https://framerusercontent.com/modules/eD4TVSO1XGx2d1XxUp8k/5aCqVGbSwOnyaIVpyfw7/VFC_cHzrC.js\";\nimport TopbarDropdown from \"https://framerusercontent.com/modules/ix25Y1p4iTH0AxbtQFbj/Ch78eZGcg7YXN49hRHBc/XRawQCEcm.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/b3kEQnC896kI6bhdp73Y/F966ejzF6cuscPQuT8yb/pbkah0okA.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/hI46SDoupymP5APHGvGH/vwaqLGnAtcJtYyMWeKJp/pzgAh97sX.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/4uzdxdo5wMkShsETAkff/JL8lymjuBZ0is9CqLeNN/xZndidUCt.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/2604vX1bo79aSuJN8Nk3/zU1jHxndANBh5Cpgs7SU/YAP816Y5n.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/3QIfmtf4OCyEmnbqVPaR/KR1oQyiD0V1e4Za1zPpV/s5jEHuQrl.js\";\nconst TopbarDropdownFonts = getFonts(TopbarDropdown);\nconst ButtonFonts = getFonts(Button);\nconst ListFonts = getFonts(List);\nconst CTAFonts = getFonts(CTA);\nconst MotionDivWithFX = withFX(motion.div);\nconst QuoteLargeFonts = getFonts(QuoteLarge);\nconst FeatureCardFonts = getFonts(FeatureCard);\nconst FooterFonts = getFonts(Footer);\nconst CookieBannerFonts = getFonts(CookieBanner);\nconst cycleOrder = [\"DTVl1RYzD\", \"VexpqrpuI\", \"fR_YgwQ2F\"];\nconst breakpoints = {\n  DTVl1RYzD: \"(min-width: 1200px)\",\n  fR_YgwQ2F: \"(max-width: 809px)\",\n  VexpqrpuI: \"(min-width: 810px) and (max-width: 1199px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  DTVl1RYzD: \"framer-v-1kr5ptl\",\n  fR_YgwQ2F: \"framer-v-1eqsa5r\",\n  VexpqrpuI: \"framer-v-1qyv4lk\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"DTVl1RYzD\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nfunction Overlay({\n  children,\n  blockDocumentScrolling\n}) {\n  const [visible, setVisible] = useOverlayState({\n    blockDocumentScrolling\n  });\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible\n  });\n}\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transition1 = {\n  damping: 80,\n  delay: .1,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation1 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 100\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"DTVl1RYzD\",\n  Phone: \"fR_YgwQ2F\",\n  Tablet: \"VexpqrpuI\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"DTVl1RYzD\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n      return () => {\n        document.body.classList.remove(metadata1.bodyClassName);\n      };\n    }\n  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const onTap42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const router = useRouter();\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"DTVl1RYzD\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-0AM69\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1kr5ptl\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-1iewvze-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                fR_YgwQ2F: {\n                  variant: \"WCGYxwX1s\"\n                },\n                VexpqrpuI: {\n                  variant: \"wJw0tesku\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(TopbarDropdown, {\n                height: \"100%\",\n                id: \"nQ2JAvBTO\",\n                layoutId: \"nQ2JAvBTO\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                variant: \"ikNNkLpzc\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-14fi32s\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1034ely\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsxs(\"h1\", {\n                    className: \"framer-styles-preset-3nqyhf\",\n                    \"data-styles-preset\": \"YAP816Y5n\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                    },\n                    children: [\"Unlock Your \", /*#__PURE__*/_jsx(\"br\", {}), \"Team's Productivity\"]\n                  })\n                }),\n                className: \"framer-9eqgas\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  fR_YgwQ2F: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"p\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS01MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", sans-serif',\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-line-height\": \"1.7em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                        },\n                        children: [\"Enable employees to prioritize tasks, eliminate repetitive work, streamline workflows and scale manual processes. \", /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--framer-font-size\": \"18px\",\n                            \"--framer-letter-spacing\": \"0.2px\"\n                          },\n                          children: \"Responsum enables organizations to rapidly prototype, test, deploy, and scale generative AI solutions.\"\n                        })]\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"p\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7TWFucm9wZS01MDA=\",\n                        \"--framer-font-family\": '\"Manrope\", sans-serif',\n                        \"--framer-font-size\": \"18px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-line-height\": \"1.7em\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                      },\n                      children: [\"Enable employees to prioritize tasks, eliminate repetitive work, streamline workflows and scale manual processes. \", /*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--framer-letter-spacing\": \"0.2px\"\n                        },\n                        children: \"Responsum enables organizations to rapidly prototype, test, deploy, and scale generative AI solutions.\"\n                      })]\n                    })\n                  }),\n                  className: \"framer-1ytsrm4\",\n                  fonts: [\"GF;Manrope-500\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-14wtv10\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1kdg2rx-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"cbHub8ghp\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Button, {\n                      gHeOvXgAq: resolveLink({\n                        webPageId: \"n7RBEwJwh\"\n                      }, router),\n                      Goeh0UlpU: \"Play\",\n                      height: \"100%\",\n                      hyoIEBZCr: \"See it in Action\",\n                      id: \"i3ra_gSxU\",\n                      layoutId: \"i3ra_gSxU\",\n                      Uwhubicpx: true,\n                      variant: \"XnvSsUXgR\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-107jnuq-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"XUlKhVBv0\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Button, {\n                      gHeOvXgAq: \"https://calendly.com/steve-responsum/platform-intro\",\n                      Goeh0UlpU: \"PlayCircle\",\n                      height: \"100%\",\n                      hyoIEBZCr: \"Book a Demo\",\n                      id: \"BeSbax49k\",\n                      layoutId: \"BeSbax49k\",\n                      Uwhubicpx: false,\n                      variant: \"DaKMOSQtn\",\n                      width: \"100%\"\n                    })\n                  })\n                })]\n              })]\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                fR_YgwQ2F: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 750,\n                    intrinsicWidth: 1200,\n                    pixelHeight: 750,\n                    pixelWidth: 1200,\n                    sizes: \"calc(100vw - 40px)\",\n                    src: \"https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png\",\n                    srcSet: \"https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png?scale-down-to=512 512w, https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png 1200w\"\n                  }\n                }\n              },\n              children: /*#__PURE__*/_jsx(Image, {\n                background: {\n                  alt: \"\",\n                  fit: \"fill\",\n                  intrinsicHeight: 750,\n                  intrinsicWidth: 1200,\n                  pixelHeight: 750,\n                  pixelWidth: 1200,\n                  sizes: \"800px\",\n                  src: \"https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png\",\n                  srcSet: \"https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png?scale-down-to=512 512w, https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/s6bOg9XsTqq6554FVRvzYDoUPQ4.png 1200w\"\n                },\n                className: \"framer-c1jy3q\"\n              })\n            })]\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-11lz4w3\",\n            children: /*#__PURE__*/_jsx(Overlay, {\n              children: overlaynju8zw => /*#__PURE__*/_jsx(_Fragment, {\n                children: /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation,\n                  __framer__exit: animation1,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-kxowx2\",\n                  onTap: onTap42m929(overlaynju8zw),\n                  transformTemplate: transformTemplate,\n                  children: [/*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-fenoy1\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-1b74ta\",\n                          \"data-styles-preset\": \"pzgAh97sX\",\n                          style: {\n                            \"--framer-text-color\": \"rgb(46, 137, 254)\"\n                          },\n                          children: \"Chatgpt for sales\"\n                        })\n                      }),\n                      className: \"framer-1mxfkhg\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1tif1bq\",\n                          \"data-styles-preset\": \"pbkah0okA\",\n                          children: \"Boost sales team performance\"\n                        })\n                      }),\n                      className: \"framer-1s2eig3\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-21ogod\",\n                          \"data-styles-preset\": \"xZndidUCt\",\n                          children: \"Scaling enterprises turn to the Responsum Sales Assistant to transform how their team works. Available for teams and AEs who want to:\"\n                        })\n                      }),\n                      className: \"framer-1npwmxf\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-eerlr5\",\n                      children: [/*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1ntbjbt-container\",\n                        children: /*#__PURE__*/_jsx(List, {\n                          badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                          height: \"100%\",\n                          icon: true,\n                          icon1: \"CheckCircle\",\n                          icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                          id: \"yHuW7Ye_1\",\n                          layoutId: \"yHuW7Ye_1\",\n                          style: {\n                            width: \"100%\"\n                          },\n                          title: \"Eliminate dirty data and admin work\",\n                          title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                          variant: \"W3DPXulSo\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-g6mgju-container\",\n                        children: /*#__PURE__*/_jsx(List, {\n                          badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                          height: \"100%\",\n                          icon: true,\n                          icon1: \"CheckCircle\",\n                          icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                          id: \"mBm6MKRI8\",\n                          layoutId: \"mBm6MKRI8\",\n                          style: {\n                            width: \"100%\"\n                          },\n                          title: \"Build winning habits and consistency\",\n                          title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                          variant: \"W3DPXulSo\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-16z9lcc-container\",\n                        children: /*#__PURE__*/_jsx(List, {\n                          badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                          height: \"100%\",\n                          icon: true,\n                          icon1: \"CheckCircle\",\n                          icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                          id: \"m8xFRb5iK\",\n                          layoutId: \"m8xFRb5iK\",\n                          style: {\n                            width: \"100%\"\n                          },\n                          title: \"Turn hidden insights into revenue\",\n                          title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                          variant: \"W3DPXulSo\",\n                          width: \"100%\"\n                        })\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-1fgtio0-container\",\n                        children: /*#__PURE__*/_jsx(CTA, {\n                          color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                          height: \"100%\",\n                          id: \"UyrOXVCNl\",\n                          layoutId: \"UyrOXVCNl\",\n                          link: resolveLink({\n                            webPageId: \"D6zS_MtK3\"\n                          }, router),\n                          title: \"Learn how\",\n                          variant: \"DT5wJl0k7\",\n                          width: \"100%\"\n                        })\n                      })]\n                    })]\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        background: {\n                          alt: \"People in the office\",\n                          fit: \"fit\",\n                          intrinsicHeight: 630,\n                          intrinsicWidth: 675,\n                          loading: \"lazy\",\n                          pixelHeight: 630,\n                          pixelWidth: 675,\n                          sizes: \"min(100vw - 40px, 1200px)\",\n                          src: \"https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png\",\n                          srcSet: \"https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png?scale-down-to=512 512w, https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png 675w\"\n                        }\n                      },\n                      VexpqrpuI: {\n                        background: {\n                          alt: \"People in the office\",\n                          fit: \"fit\",\n                          intrinsicHeight: 630,\n                          intrinsicWidth: 675,\n                          loading: \"lazy\",\n                          pixelHeight: 630,\n                          pixelWidth: 675,\n                          sizes: \"min(100vw - 100px, 1200px)\",\n                          src: \"https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png\",\n                          srcSet: \"https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png?scale-down-to=512 512w, https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png 675w\"\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"People in the office\",\n                        fit: \"fit\",\n                        intrinsicHeight: 630,\n                        intrinsicWidth: 675,\n                        loading: \"lazy\",\n                        pixelHeight: 630,\n                        pixelWidth: 675,\n                        src: \"https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png\",\n                        srcSet: \"https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png?scale-down-to=512 512w, https://framerusercontent.com/images/2olC8gNmlvEVNvY0Pe7pOGX5MY.png 675w\"\n                      },\n                      className: \"framer-1g6g1vz\"\n                    })\n                  }), /*#__PURE__*/_jsx(AnimatePresence, {\n                    children: overlaynju8zw.visible && /*#__PURE__*/_jsx(_Fragment, {\n                      children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(motion.div, {\n                          animate: {\n                            opacity: 1,\n                            transition: {\n                              delay: 0,\n                              duration: 0,\n                              ease: [.5, 0, .88, .77],\n                              type: \"tween\"\n                            }\n                          },\n                          className: \"framer-nju8zw\",\n                          exit: {\n                            opacity: 0,\n                            transition: {\n                              delay: 0,\n                              duration: 0,\n                              ease: [.12, .23, .5, 1],\n                              type: \"tween\"\n                            }\n                          },\n                          initial: {\n                            opacity: 0\n                          },\n                          onTap: () => overlaynju8zw.hide()\n                        }, \"FUsbokaIo\")\n                      }), document.querySelector(\"#overlay\"))\n                    })\n                  })]\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1e9ba4a\",\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-cc8bl4-container\",\n              children: /*#__PURE__*/_jsx(QuoteLarge, {\n                height: \"100%\",\n                id: \"lEGODAsHW\",\n                layoutId: \"lEGODAsHW\",\n                name: \"Gabe B, Vice President of Sales\",\n                quote: '\"Partnering with Responsum and their platform has taken my team\\'s performance to the next level. I have the data I need to make decisions and guide my AEs before deals get off track.\"',\n                style: {\n                  width: \"100%\"\n                },\n                subline: true,\n                subline1: \"Security & Identity Management\",\n                variant: \"UlFDLn4wB\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-kehr7d\",\n            children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-zqwtio\",\n              transformTemplate: transformTemplate,\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-1b74ta\",\n                    \"data-styles-preset\": \"pzgAh97sX\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"Explore\"\n                  })\n                }),\n                className: \"framer-e1f09g\",\n                \"data-framer-name\": \"Sections\",\n                name: \"Sections\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    className: \"framer-styles-preset-1tif1bq\",\n                    \"data-styles-preset\": \"pbkah0okA\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"Get Sh*t Done\"\n                  })\n                }),\n                className: \"framer-kdevio\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-21ogod\",\n                    \"data-styles-preset\": \"xZndidUCt\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"The Responsum platform is customized to meet your specific outcomes. Explore the most popular ways enterprises choose to use the platform.\"\n                  })\n                }),\n                className: \"framer-12cij6o\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })]\n            }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-xk7f5d\",\n              transformTemplate: transformTemplate,\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  fR_YgwQ2F: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1220,\n                      intrinsicWidth: 1150,\n                      loading: \"lazy\",\n                      pixelHeight: 1220,\n                      pixelWidth: 1150,\n                      sizes: \"min(100vw - 40px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png\",\n                      srcSet: \"https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png?scale-down-to=512 482w, https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png?scale-down-to=1024 965w, https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png 1150w\"\n                    }\n                  },\n                  VexpqrpuI: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1220,\n                      intrinsicWidth: 1150,\n                      loading: \"lazy\",\n                      pixelHeight: 1220,\n                      pixelWidth: 1150,\n                      sizes: \"min(100vw - 200px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png\",\n                      srcSet: \"https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png?scale-down-to=512 482w, https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png?scale-down-to=1024 965w, https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png 1150w\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"People in the office\",\n                    fit: \"fit\",\n                    intrinsicHeight: 1220,\n                    intrinsicWidth: 1150,\n                    loading: \"lazy\",\n                    pixelHeight: 1220,\n                    pixelWidth: 1150,\n                    sizes: \"max((min(100vw - 200px, 1200px) - 113px) / 2, 0px)\",\n                    src: \"https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png\",\n                    srcSet: \"https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png?scale-down-to=512 482w, https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png?scale-down-to=1024 965w, https://framerusercontent.com/images/RBnPuKZ9vukaLIiFnG7iJhI.png 1150w\"\n                  },\n                  className: \"framer-9v3oph\"\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-njnz3o\",\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-d4lmm1\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-1tif1bq\",\n                        \"data-styles-preset\": \"pbkah0okA\",\n                        children: \"Eliminate repetitive and manual work\"\n                      })\n                    }),\n                    className: \"framer-1idtmiw\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"\n                        },\n                        children: \"Save time and money by combining automation with the right AI techniques to improve end-to-end workflows like:\"\n                      })\n                    }),\n                    className: \"framer-1epomc3\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-kh2zhm\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-23t85m-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"jGNddfPYB\",\n                      layoutId: \"jGNddfPYB\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Identify and surface insights\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1togwo0-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"wOl5SvFjy\",\n                      layoutId: \"wOl5SvFjy\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Streamline analysis\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-df4cvu-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"A1TQwJXuk\",\n                      layoutId: \"A1TQwJXuk\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Automate repetitive tasks\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-z424vd-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"CqfpIZSN9\",\n                      layoutId: \"CqfpIZSN9\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Simplify knowledge and file management\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-ou6720-container\",\n                    children: /*#__PURE__*/_jsx(CTA, {\n                      color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                      height: \"100%\",\n                      id: \"AVUpno3bV\",\n                      layoutId: \"AVUpno3bV\",\n                      link: resolveLink({\n                        webPageId: \"mGn5y8s0t\"\n                      }, router),\n                      title: \"Learn what else you can unlock\",\n                      variant: \"DT5wJl0k7\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-qer6l5\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1i9ifb1\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1kmxgbp\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      children: \"Improve handoffs and collaboration\"\n                    })\n                  }),\n                  className: \"framer-maii2g\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      children: \"Boost your team's ability to collaborate by embracing the latest AI models and approaches so that you can:\"\n                    })\n                  }),\n                  className: \"framer-11i0xw6\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-jfyglo\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1gcvd6c-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"O7j_rDXng\",\n                      layoutId: \"O7j_rDXng\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Always follow up on-time\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1n6v0to-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"jMjpnsItZ\",\n                      layoutId: \"jMjpnsItZ\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Hit your SLAs\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-6wcxbw-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"rHpmdbjzB\",\n                      layoutId: \"rHpmdbjzB\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Increase efficiency of approvals\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-p5is7q-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"iVZeGH0PL\",\n                      layoutId: \"iVZeGH0PL\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Build cross-functional alignment\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-21eq3g-container\",\n                    children: /*#__PURE__*/_jsx(CTA, {\n                      color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                      height: \"100%\",\n                      id: \"y6KOZw3TK\",\n                      layoutId: \"y6KOZw3TK\",\n                      link: resolveLink({\n                        webPageId: \"mGn5y8s0t\"\n                      }, router),\n                      title: \"Learn what else you can unlock\",\n                      variant: \"DT5wJl0k7\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  fR_YgwQ2F: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1644,\n                      intrinsicWidth: 1654,\n                      loading: \"lazy\",\n                      pixelHeight: 1644,\n                      pixelWidth: 1654,\n                      sizes: \"min(100vw - 40px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png\",\n                      srcSet: \"https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png?scale-down-to=512 512w, https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png 1654w\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"People in the office\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1644,\n                    intrinsicWidth: 1654,\n                    loading: \"lazy\",\n                    pixelHeight: 1644,\n                    pixelWidth: 1654,\n                    sizes: \"469px\",\n                    src: \"https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png\",\n                    srcSet: \"https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png?scale-down-to=512 512w, https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/N2NR2rFZz5HJYeVGG3BGyHYJv1k.png 1654w\"\n                  },\n                  className: \"framer-1i9kng5\"\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-11gfmyb\",\n            children: /*#__PURE__*/_jsxs(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition1\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation,\n              __framer__exit: animation1,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: .5,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-1glu9b0\",\n              transformTemplate: transformTemplate,\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  fR_YgwQ2F: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1270,\n                      intrinsicWidth: 1558,\n                      loading: \"lazy\",\n                      pixelHeight: 1270,\n                      pixelWidth: 1558,\n                      sizes: \"min(100vw - 40px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png\",\n                      srcSet: \"https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png?scale-down-to=512 512w, https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png 1558w\"\n                    }\n                  },\n                  VexpqrpuI: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1270,\n                      intrinsicWidth: 1558,\n                      loading: \"lazy\",\n                      pixelHeight: 1270,\n                      pixelWidth: 1558,\n                      sizes: \"min(100vw - 200px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png\",\n                      srcSet: \"https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png?scale-down-to=512 512w, https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png 1558w\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"People in the office\",\n                    fit: \"fit\",\n                    intrinsicHeight: 1270,\n                    intrinsicWidth: 1558,\n                    loading: \"lazy\",\n                    pixelHeight: 1270,\n                    pixelWidth: 1558,\n                    sizes: \"max((min(100vw - 200px, 1200px) - 100px) / 2, 0px)\",\n                    src: \"https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png\",\n                    srcSet: \"https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png?scale-down-to=512 512w, https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/DAlC5l3QJIIs0TTwLq6zl0PS44.png 1558w\"\n                  },\n                  className: \"framer-1xajjm4\"\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-5ndc69\",\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1g4l0go\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-1tif1bq\",\n                        \"data-styles-preset\": \"pbkah0okA\",\n                        children: \"Extract and analyze unstructured data\"\n                      })\n                    }),\n                    className: \"framer-1cwjsb1\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"\n                        },\n                        children: \"You have spreadsheets, documents, images, and other data tucked away in places you can't reach. We help you unlock the power of this data by:\"\n                      })\n                    }),\n                    className: \"framer-126fkq8\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-2eu1vs\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1dvny92-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"SndmcdgDG\",\n                      layoutId: \"SndmcdgDG\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Automatically extracting insights\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-4fjapd-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"ZaVIoT8WD\",\n                      layoutId: \"ZaVIoT8WD\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Analyzing to assess risk\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-kmrwvb-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"M1ifTRZ_8\",\n                      layoutId: \"M1ifTRZ_8\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Improving accessibility\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-lhf1g1-container\",\n                    children: /*#__PURE__*/_jsx(CTA, {\n                      color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                      height: \"100%\",\n                      id: \"WLUI66006\",\n                      layoutId: \"WLUI66006\",\n                      link: resolveLink({\n                        webPageId: \"n7RBEwJwh\"\n                      }, router),\n                      title: \"Learn how\",\n                      variant: \"DT5wJl0k7\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1wtyte8\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-6g5kq4\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-4x25gw\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      children: \"Manage team knowledge\"\n                    })\n                  }),\n                  className: \"framer-l9hmhu\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      children: \"Your team has information stored in their head, documents, and applications. Responsum makes it easy to organize, find, and update so you can:\"\n                    })\n                  }),\n                  className: \"framer-r37d5t\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1t79dci\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1b9oanm-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"Ijb6FsMZi\",\n                      layoutId: \"Ijb6FsMZi\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Onboard new team members faster\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1r3jkw9-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"Yy2xCyXMM\",\n                      layoutId: \"Yy2xCyXMM\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Spend less time searching for information\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-13a2skw-container\",\n                    children: /*#__PURE__*/_jsx(List, {\n                      badgeBackground: \"rgba(25, 21, 78, 0.03)\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"CheckCircle\",\n                      icon2: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(255, 39, 156)) /* {\"name\":\"Pink\"} */',\n                      id: \"F7wDUpIcI\",\n                      layoutId: \"F7wDUpIcI\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Scale best-practices\",\n                      title1: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                      variant: \"W3DPXulSo\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1g8olfa-container\",\n                    children: /*#__PURE__*/_jsx(CTA, {\n                      color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                      height: \"100%\",\n                      id: \"b7ZaX4G5o\",\n                      layoutId: \"b7ZaX4G5o\",\n                      link: resolveLink({\n                        webPageId: \"n7RBEwJwh\"\n                      }, router),\n                      title: \"Learn how\",\n                      variant: \"DT5wJl0k7\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  fR_YgwQ2F: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1172,\n                      intrinsicWidth: 1524,\n                      loading: \"lazy\",\n                      pixelHeight: 1172,\n                      pixelWidth: 1524,\n                      sizes: \"min(100vw - 40px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png\",\n                      srcSet: \"https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png?scale-down-to=512 512w, https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png 1524w\"\n                    }\n                  },\n                  VexpqrpuI: {\n                    background: {\n                      alt: \"People in the office\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1172,\n                      intrinsicWidth: 1524,\n                      loading: \"lazy\",\n                      pixelHeight: 1172,\n                      pixelWidth: 1524,\n                      sizes: \"min(100vw - 100px, 1200px)\",\n                      src: \"https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png\",\n                      srcSet: \"https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png?scale-down-to=512 512w, https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png 1524w\"\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"People in the office\",\n                    fit: \"fit\",\n                    intrinsicHeight: 1172,\n                    intrinsicWidth: 1524,\n                    loading: \"lazy\",\n                    pixelHeight: 1172,\n                    pixelWidth: 1524,\n                    sizes: \"max((min(100vw - 200px, 1200px) - 100px) / 2, 0px)\",\n                    src: \"https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png\",\n                    srcSet: \"https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png?scale-down-to=512 512w, https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/TtnjLxl5zld1h1FogayH2o5c.png 1524w\"\n                  },\n                  className: \"framer-tdh5r5\"\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-xmgb8r\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-4d6ej8\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-ceak2x\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1b74ta\",\n                      \"data-styles-preset\": \"pzgAh97sX\",\n                      style: {\n                        \"--framer-text-color\": \"var(--token-131da9d7-6baf-41c3-84d6-4689cded15e8, rgb(46, 137, 254))\"\n                      },\n                      children: \"The Productivity Acceleration Platform\"\n                    })\n                  }),\n                  className: \"framer-6bqqk1\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"The building blocks of enterprise productivity\"\n                    })\n                  }),\n                  className: \"framer-1ckky54\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      children: \"Responsum combines the latest AI-driven technologies into one platform allowing companies to quickly deploy a bespoke solution to their specific data and challenges.\"\n                    })\n                  }),\n                  className: \"framer-luydke\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-wbgaq9-container\",\n                  children: /*#__PURE__*/_jsx(CTA, {\n                    color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                    height: \"100%\",\n                    id: \"Sm0SZ3icy\",\n                    layoutId: \"Sm0SZ3icy\",\n                    link: resolveLink({\n                      webPageId: \"mGn5y8s0t\"\n                    }, router),\n                    title: \"Learn about our technology\",\n                    variant: \"DT5wJl0k7\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-c33omk-container\",\n                  children: /*#__PURE__*/_jsx(CTA, {\n                    color: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",\n                    height: \"100%\",\n                    id: \"BpaX_cQvm\",\n                    layoutId: \"BpaX_cQvm\",\n                    link: resolveLink({\n                      webPageId: \"JcXv9KbKb\"\n                    }, router),\n                    title: \"Learn about our services\",\n                    variant: \"DT5wJl0k7\",\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-e51gxl\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-zw70ek-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Robot\",\n                      id: \"vbb_G4Cv5\",\n                      layoutId: \"vbb_G4Cv5\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"Get more work done by offloading common tasks. Create a custom digital assistant by integrating to applications and datasets, setting up workflows and automations, and training it to answer common questions. \",\n                      title: \"Digital Assistants\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-150dlo6-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Gear\",\n                      id: \"BcSvjUdHv\",\n                      layoutId: \"BcSvjUdHv\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"Connect data and apps to streamline any process, reduce manual effort and enable users to quickly access the features and functions they need.\",\n                      title: \"Automation Engine\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-b1mjdw-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Sparkle\",\n                      id: \"zBgwuwqwm\",\n                      layoutId: \"zBgwuwqwm\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"Our patent-pending technology queues up tasks based on importance, urgency, and availability, creating micro-tasks that get delivered at the right time for the work to get done.\",\n                      title: \"Intelligent WorkQ\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-10au63b-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"MagicWand\",\n                      id: \"lDiKgDUEM\",\n                      layoutId: \"lDiKgDUEM\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"A very compelling description of what exactly this is, does, and why someone should care about and be excited.\",\n                      title: \"Generative AI\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-i9k1sz-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Book\",\n                      id: \"X_aqbyN1_\",\n                      layoutId: \"X_aqbyN1_\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"A very compelling description of what exactly this is, does, and why someone should care about and be excited.\",\n                      title: \"AI Model Library\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-vxrelv-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Brain\",\n                      id: \"TxDKjDIir\",\n                      layoutId: \"TxDKjDIir\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"A very compelling description of what exactly this is, does, and why someone should care about and be excited.\",\n                      title: \"Knowledge Base\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-xf0mp5-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"MagnifyingGlass\",\n                      id: \"AKLP5NW_3\",\n                      layoutId: \"AKLP5NW_3\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"A very compelling description of what exactly this is, does, and why someone should care about and be excited.\",\n                      title: \"Conversational Search\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-10htvro-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Polygon\",\n                      id: \"xYfJbb40P\",\n                      layoutId: \"xYfJbb40P\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"A very compelling description of what exactly this is, does, and why someone should care about and be excited.\",\n                      title: \"Text & Document Analysis\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-tse7b0-container\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      fR_YgwQ2F: {\n                        variant: \"py9NAOc0f\"\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(FeatureCard, {\n                      cTA: false,\n                      cTA1: \"Explore styleguide\",\n                      height: \"100%\",\n                      icon: true,\n                      icon1: \"Plugs\",\n                      id: \"FNH6xlzxQ\",\n                      layoutId: \"FNH6xlzxQ\",\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      text: false,\n                      text1: \"A very compelling description of what exactly this is, does, and why someone should care about and be excited.\",\n                      title: \"API Integrations\",\n                      variant: \"WrMoZDxiv\",\n                      width: \"100%\"\n                    })\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-twiyfp\",\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-mluav7-container\",\n              children: /*#__PURE__*/_jsx(QuoteLarge, {\n                height: \"100%\",\n                id: \"jAHqwdsOL\",\n                layoutId: \"jAHqwdsOL\",\n                name: \"Diego Parra, Director of IT\",\n                quote: '\u201COne of our main goals is to improve the customer experience. We want to get to know our customer better \u2014 what their wants and needs are and how we can make them happy. We\u2019re constantly exploring how we can leverage technology to ensure they\u2019re successful in traveling through the airport.\"',\n                style: {\n                  width: \"100%\"\n                },\n                subline: true,\n                subline1: \"Houston Airports\",\n                variant: \"oahVojq_G\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-751umm\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-e0irgh\",\n              children: [/*#__PURE__*/_jsxs(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-smqlcu\",\n                transformTemplate: transformTemplate,\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1b74ta\",\n                      \"data-styles-preset\": \"pzgAh97sX\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: \"Insights\"\n                    })\n                  }),\n                  className: \"framer-1re0mw8\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"How to leverage ChatGPT and large language models\"\n                    })\n                  }),\n                  className: \"framer-15gw6oi\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1tjcfkn-container\",\n                  children: /*#__PURE__*/_jsx(Button, {\n                    gHeOvXgAq: resolveLink({\n                      pathVariables: {\n                        Tu_Pd0zTZ: \"enterprise-chatgpt-llm\"\n                      },\n                      webPageId: \"bcUIOegNe\"\n                    }, router),\n                    Goeh0UlpU: \"PlayCircle\",\n                    height: \"100%\",\n                    hyoIEBZCr: \"Read more\",\n                    id: \"ShclP72JY\",\n                    layoutId: \"ShclP72JY\",\n                    Uwhubicpx: false,\n                    variant: \"zMIqz4YH_\",\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation,\n                __framer__exit: animation1,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1g8x4rv\",\n                \"data-border\": true,\n                transformTemplate: transformTemplate,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    fR_YgwQ2F: {\n                      background: {\n                        alt: \"Website examples\",\n                        fit: \"fill\",\n                        intrinsicHeight: 2250,\n                        intrinsicWidth: 4e3,\n                        loading: \"lazy\",\n                        pixelHeight: 2250,\n                        pixelWidth: 4e3,\n                        sizes: \"calc(max(min(100vw - 40px, 1200px), 200px) * 1.1)\",\n                        src: \"https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg 4000w\"\n                      }\n                    },\n                    VexpqrpuI: {\n                      background: {\n                        alt: \"Website examples\",\n                        fit: \"fill\",\n                        intrinsicHeight: 2250,\n                        intrinsicWidth: 4e3,\n                        loading: \"lazy\",\n                        pixelHeight: 2250,\n                        pixelWidth: 4e3,\n                        sizes: \"calc(max(min(100vw - 100px, 1200px), 200px) * 1.1)\",\n                        src: \"https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg\",\n                        srcSet: \"https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg 4000w\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"Website examples\",\n                      fit: \"fill\",\n                      intrinsicHeight: 2250,\n                      intrinsicWidth: 4e3,\n                      loading: \"lazy\",\n                      pixelHeight: 2250,\n                      pixelWidth: 4e3,\n                      sizes: \"calc(max(min(100vw - 200px, 1200px), 200px) * 1.1)\",\n                      src: \"https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg\",\n                      srcSet: \"https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/YUt0pLBCbfeJXOIvc3c8OIdVPjs.jpg 4000w\"\n                    },\n                    className: \"framer-151mx1i\",\n                    \"data-framer-name\": \"Preview_2x\",\n                    name: \"Preview_2x\"\n                  })\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1dcgxg8-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                fR_YgwQ2F: {\n                  variant: \"OgQgawm_L\"\n                },\n                VexpqrpuI: {\n                  variant: \"OgQgawm_L\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Footer, {\n                height: \"100%\",\n                id: \"No3cb4Sx2\",\n                layoutId: \"No3cb4Sx2\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"NWDLXXgiF\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1fn9wo1-container\",\n            layoutScroll: true,\n            children: /*#__PURE__*/_jsx(CookieBanner, {\n              banner: {\n                animation: {\n                  scale: 1,\n                  transition: {\n                    damping: 60,\n                    delay: 0,\n                    duration: .3,\n                    ease: [.44, 0, .56, 1],\n                    mass: 1,\n                    stiffness: 500,\n                    type: \"spring\"\n                  },\n                  x: 0,\n                  y: 10\n                },\n                inset: 20,\n                insetBottom: 20,\n                insetLeft: 20,\n                insetPerSide: false,\n                insetRight: 20,\n                insetTop: 20,\n                padding: 20,\n                paddingBottom: 20,\n                paddingLeft: 20,\n                paddingPerSide: false,\n                paddingRight: 20,\n                paddingTop: 20,\n                position: \"bottom-right\",\n                style: {\n                  backdrop: \"rgba(0, 0, 0, 0.1)\",\n                  border: {\n                    color: \"rgba(0, 0, 0, 0.05)\",\n                    radius: 14,\n                    width: 1\n                  },\n                  colorBody: \"rgb(68, 68, 68)\",\n                  colorTitle: \"rgb(0, 0, 0)\",\n                  fill: \"rgb(255, 255, 255)\",\n                  fontBody: {},\n                  fontTitle: {},\n                  link: \"rgb(153, 153, 153)\"\n                },\n                width: 360,\n                zIndex: 10\n              },\n              button: {\n                borderRadius: 8,\n                direction: \"row\",\n                fluid: true,\n                font: {},\n                labels: {\n                  accept: \"Accept\",\n                  acceptAll: \"Accept all\",\n                  confirm: \"Okay\",\n                  customize: \"Customize\",\n                  reject: \"Reject\",\n                  rejectAll: \"Reject all\",\n                  save: \"Save Preferences\"\n                },\n                padding: 10,\n                paddingBottom: 10,\n                paddingLeft: 10,\n                paddingPerSide: false,\n                paddingRight: 10,\n                paddingTop: 10,\n                primary: {\n                  color: \"rgb(255, 255, 255)\",\n                  fill: \"rgb(0, 0, 0)\"\n                },\n                secondary: {\n                  color: \"rgb(68, 68, 68)\",\n                  fill: \"rgb(238, 238, 238)\"\n                }\n              },\n              content: {\n                euBlocking: false,\n                euDefaults: {\n                  analytics: false,\n                  marketing: false,\n                  necessary: false,\n                  preferences: false\n                },\n                euDescription: \"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",\n                euPolicy: {\n                  label: \"Privacy Policy\",\n                  link: \"https://www.responsum.ai/legal/privacy-policy\",\n                  prefix: \"Read our\"\n                },\n                euTitle: \"Cookie Settings\",\n                euType: \"medium\",\n                isEU: true,\n                worldBlocking: false,\n                worldDefaults: {\n                  analytics: true,\n                  marketing: true,\n                  necessary: true,\n                  preferences: true\n                },\n                worldDescription: \"We use cookies to personalize content, run ads, and analyze traffic.\",\n                worldPolicy: {\n                  label: \"Cookie Policy\",\n                  prefix: \"Read our\"\n                },\n                worldTitle: \"Cookie Settings\",\n                worldType: \"simple\"\n              },\n              gtmId: \"GTM-WFW62KZD\",\n              height: \"100%\",\n              id: \"z0eWpTKYf\",\n              layoutId: \"z0eWpTKYf\",\n              options: {\n                analytics: {\n                  description: \"Enables tracking of performance.\",\n                  title: \"Analytics\"\n                },\n                marketing: {\n                  description: \"Enables ads personalization and tracking.\",\n                  title: \"Marketing\"\n                },\n                necessary: {\n                  description: \"Enables security and basic functionality.\",\n                  title: \"Necessary\"\n                },\n                preferences: {\n                  description: \"Enables personalized content and settings.\",\n                  title: \"Preferences\"\n                },\n                preview: false,\n                style: {\n                  background: \"rgba(0, 0, 0, 0.02)\",\n                  border: {\n                    color: \"rgba(0, 0, 0, 0.02)\",\n                    radius: 8,\n                    width: 0\n                  },\n                  fontBody: {},\n                  fontTitle: {},\n                  padding: 12,\n                  paddingBottom: 12,\n                  paddingLeft: 12,\n                  paddingPerSide: false,\n                  paddingRight: 12,\n                  paddingTop: 12,\n                  toggleColor: \"rgb(0, 0, 0)\",\n                  toggleColorInactive: \"rgba(0, 0, 0, 0.1)\"\n                }\n              },\n              preview: true,\n              trigger: {\n                color: \"rgb(51, 51, 51)\",\n                iconSize: 24,\n                iconType: \"default\",\n                text: \"Cookie Settings\",\n                textFont: {},\n                type: \"text\"\n              },\n              width: \"100%\"\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-0AM69 [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; } }\", `.${metadata.bodyClassName} { background: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)); }`, \".framer-0AM69 .framer-1q9n3ra { display: block; }\", \".framer-0AM69 .framer-1kr5ptl { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-0AM69 .framer-1iewvze-container { flex: none; height: 72px; position: relative; width: 100%; z-index: 10; }\", '.framer-0AM69 .framer-14fi32s { align-content: center; align-items: center; background: radial-gradient(53.6% 44.6% at 50% 109.89999999999999%, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #30e4c9) /* {\"name\":\"Green\"} */ 0%, var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(0, 17, 39)) /* {\"name\":\"Navy\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 134px 100px 0px 100px; position: relative; width: 100%; z-index: 1; }', \".framer-0AM69 .framer-1034ely { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-9eqgas, .framer-0AM69 .framer-1ytsrm4, .framer-0AM69 .framer-1s2eig3, .framer-0AM69 .framer-1npwmxf, .framer-0AM69 .framer-kdevio, .framer-0AM69 .framer-12cij6o, .framer-0AM69 .framer-1idtmiw, .framer-0AM69 .framer-1epomc3, .framer-0AM69 .framer-maii2g, .framer-0AM69 .framer-11i0xw6, .framer-0AM69 .framer-1cwjsb1, .framer-0AM69 .framer-126fkq8, .framer-0AM69 .framer-l9hmhu, .framer-0AM69 .framer-r37d5t, .framer-0AM69 .framer-1ckky54, .framer-0AM69 .framer-luydke, .framer-0AM69 .framer-15gw6oi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-0AM69 .framer-14wtv10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 364px; }\", \".framer-0AM69 .framer-1kdg2rx-container, .framer-0AM69 .framer-107jnuq-container, .framer-0AM69 .framer-1fgtio0-container, .framer-0AM69 .framer-ou6720-container, .framer-0AM69 .framer-21eq3g-container, .framer-0AM69 .framer-lhf1g1-container, .framer-0AM69 .framer-1g8olfa-container, .framer-0AM69 .framer-wbgaq9-container, .framer-0AM69 .framer-c33omk-container, .framer-0AM69 .framer-1tjcfkn-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-0AM69 .framer-c1jy3q { flex: none; height: 500px; overflow: hidden; position: relative; width: 800px; }\", \".framer-0AM69 .framer-11lz4w3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-kxowx2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 113px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-0AM69 .framer-fenoy1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 0px 0px 0px 0px; position: sticky; top: 120px; width: 1px; will-change: transform; z-index: 1; }\", \".framer-0AM69 .framer-1mxfkhg, .framer-0AM69 .framer-e1f09g, .framer-0AM69 .framer-6bqqk1, .framer-0AM69 .framer-1re0mw8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-0AM69 .framer-eerlr5, .framer-0AM69 .framer-kh2zhm, .framer-0AM69 .framer-jfyglo, .framer-0AM69 .framer-2eu1vs, .framer-0AM69 .framer-1t79dci { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-1ntbjbt-container, .framer-0AM69 .framer-g6mgju-container, .framer-0AM69 .framer-16z9lcc-container, .framer-0AM69 .framer-23t85m-container, .framer-0AM69 .framer-1togwo0-container, .framer-0AM69 .framer-df4cvu-container, .framer-0AM69 .framer-z424vd-container, .framer-0AM69 .framer-1gcvd6c-container, .framer-0AM69 .framer-1n6v0to-container, .framer-0AM69 .framer-6wcxbw-container, .framer-0AM69 .framer-p5is7q-container, .framer-0AM69 .framer-1dvny92-container, .framer-0AM69 .framer-4fjapd-container, .framer-0AM69 .framer-kmrwvb-container, .framer-0AM69 .framer-1b9oanm-container, .framer-0AM69 .framer-1r3jkw9-container, .framer-0AM69 .framer-13a2skw-container, .framer-0AM69 .framer-1dcgxg8-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-0AM69 .framer-1g6g1vz, .framer-0AM69 .framer-tdh5r5 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 417px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-0AM69 .framer-nju8zw { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\", \".framer-0AM69 .framer-1e9ba4a { align-content: center; align-items: center; background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f5f9ff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 504px; justify-content: center; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-cc8bl4-container { flex: none; height: auto; position: relative; width: 801px; }\", \".framer-0AM69 .framer-kehr7d, .framer-0AM69 .framer-11gfmyb { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 75px 100px 75px 100px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-zqwtio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: visible; padding: 0px 0px 69px 0px; position: relative; transform: perspective(1200px); width: 100%; z-index: 1; }\", \".framer-0AM69 .framer-xk7f5d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 113px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-0AM69 .framer-9v3oph, .framer-0AM69 .framer-1xajjm4 { align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-0AM69 .framer-njnz3o, .framer-0AM69 .framer-5ndc69 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-0AM69 .framer-d4lmm1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 111%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-qer6l5, .framer-0AM69 .framer-1wtyte8, .framer-0AM69 .framer-751umm { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-1i9ifb1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-1kmxgbp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: sticky; top: 120px; transform: perspective(1200px); width: 1px; will-change: transform; z-index: 1; }\", \".framer-0AM69 .framer-1i9kng5 { align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: auto; overflow: hidden; position: relative; width: 469px; will-change: var(--framer-will-change-override, transform); }\", \".framer-0AM69 .framer-1glu9b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-0AM69 .framer-1g4l0go { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 500px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-6g5kq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-4x25gw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 500px; overflow: visible; padding: 0px 0px 0px 0px; position: sticky; top: 120px; transform: perspective(1200px); width: 1px; will-change: transform; z-index: 1; }\", \".framer-0AM69 .framer-xmgb8r { align-content: center; align-items: center; background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f5f9ff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-4d6ej8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-0AM69 .framer-ceak2x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: visible; padding: 0px 0px 0px 0px; position: sticky; top: 120px; transform: perspective(1200px); width: 1px; will-change: transform; z-index: 1; }\", \".framer-0AM69 .framer-e51gxl { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-0AM69 .framer-zw70ek-container, .framer-0AM69 .framer-150dlo6-container, .framer-0AM69 .framer-b1mjdw-container, .framer-0AM69 .framer-10au63b-container, .framer-0AM69 .framer-i9k1sz-container, .framer-0AM69 .framer-vxrelv-container, .framer-0AM69 .framer-xf0mp5-container, .framer-0AM69 .framer-10htvro-container, .framer-0AM69 .framer-tse7b0-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\", \".framer-0AM69 .framer-twiyfp { align-content: center; align-items: center; background-color: var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, #001127); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 543px; justify-content: center; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-mluav7-container { flex: none; height: auto; position: relative; width: 971px; }\", \".framer-0AM69 .framer-e0irgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-0AM69 .framer-smqlcu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; min-width: 200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-0AM69 .framer-1g8x4rv { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.3848396501457727 / 1; background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 343px); justify-content: center; min-width: 200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-0AM69 .framer-151mx1i { aspect-ratio: 1.2302158273381294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 424px); overflow: visible; position: relative; width: 110%; }\", \".framer-0AM69 .framer-1fn9wo1-container { bottom: 10px; flex: none; height: auto; position: fixed; right: 10px; width: auto; z-index: 5; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0AM69 .framer-1kr5ptl, .framer-0AM69 .framer-14fi32s, .framer-0AM69 .framer-1034ely, .framer-0AM69 .framer-14wtv10, .framer-0AM69 .framer-11lz4w3, .framer-0AM69 .framer-kxowx2, .framer-0AM69 .framer-fenoy1, .framer-0AM69 .framer-eerlr5, .framer-0AM69 .framer-1e9ba4a, .framer-0AM69 .framer-kehr7d, .framer-0AM69 .framer-zqwtio, .framer-0AM69 .framer-xk7f5d, .framer-0AM69 .framer-njnz3o, .framer-0AM69 .framer-d4lmm1, .framer-0AM69 .framer-kh2zhm, .framer-0AM69 .framer-qer6l5, .framer-0AM69 .framer-1i9ifb1, .framer-0AM69 .framer-1kmxgbp, .framer-0AM69 .framer-jfyglo, .framer-0AM69 .framer-11gfmyb, .framer-0AM69 .framer-1glu9b0, .framer-0AM69 .framer-5ndc69, .framer-0AM69 .framer-1g4l0go, .framer-0AM69 .framer-2eu1vs, .framer-0AM69 .framer-1wtyte8, .framer-0AM69 .framer-6g5kq4, .framer-0AM69 .framer-4x25gw, .framer-0AM69 .framer-1t79dci, .framer-0AM69 .framer-xmgb8r, .framer-0AM69 .framer-4d6ej8, .framer-0AM69 .framer-ceak2x, .framer-0AM69 .framer-twiyfp, .framer-0AM69 .framer-751umm, .framer-0AM69 .framer-e0irgh, .framer-0AM69 .framer-smqlcu, .framer-0AM69 .framer-1g8x4rv { gap: 0px; } .framer-0AM69 .framer-1kr5ptl > *, .framer-0AM69 .framer-11lz4w3 > *, .framer-0AM69 .framer-kehr7d > *, .framer-0AM69 .framer-qer6l5 > *, .framer-0AM69 .framer-11gfmyb > *, .framer-0AM69 .framer-1wtyte8 > *, .framer-0AM69 .framer-751umm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0AM69 .framer-1kr5ptl > :first-child, .framer-0AM69 .framer-14fi32s > :first-child, .framer-0AM69 .framer-1034ely > :first-child, .framer-0AM69 .framer-11lz4w3 > :first-child, .framer-0AM69 .framer-fenoy1 > :first-child, .framer-0AM69 .framer-eerlr5 > :first-child, .framer-0AM69 .framer-kehr7d > :first-child, .framer-0AM69 .framer-zqwtio > :first-child, .framer-0AM69 .framer-njnz3o > :first-child, .framer-0AM69 .framer-d4lmm1 > :first-child, .framer-0AM69 .framer-kh2zhm > :first-child, .framer-0AM69 .framer-qer6l5 > :first-child, .framer-0AM69 .framer-1kmxgbp > :first-child, .framer-0AM69 .framer-jfyglo > :first-child, .framer-0AM69 .framer-11gfmyb > :first-child, .framer-0AM69 .framer-5ndc69 > :first-child, .framer-0AM69 .framer-1g4l0go > :first-child, .framer-0AM69 .framer-2eu1vs > :first-child, .framer-0AM69 .framer-1wtyte8 > :first-child, .framer-0AM69 .framer-4x25gw > :first-child, .framer-0AM69 .framer-1t79dci > :first-child, .framer-0AM69 .framer-ceak2x > :first-child, .framer-0AM69 .framer-751umm > :first-child, .framer-0AM69 .framer-smqlcu > :first-child { margin-top: 0px; } .framer-0AM69 .framer-1kr5ptl > :last-child, .framer-0AM69 .framer-14fi32s > :last-child, .framer-0AM69 .framer-1034ely > :last-child, .framer-0AM69 .framer-11lz4w3 > :last-child, .framer-0AM69 .framer-fenoy1 > :last-child, .framer-0AM69 .framer-eerlr5 > :last-child, .framer-0AM69 .framer-kehr7d > :last-child, .framer-0AM69 .framer-zqwtio > :last-child, .framer-0AM69 .framer-njnz3o > :last-child, .framer-0AM69 .framer-d4lmm1 > :last-child, .framer-0AM69 .framer-kh2zhm > :last-child, .framer-0AM69 .framer-qer6l5 > :last-child, .framer-0AM69 .framer-1kmxgbp > :last-child, .framer-0AM69 .framer-jfyglo > :last-child, .framer-0AM69 .framer-11gfmyb > :last-child, .framer-0AM69 .framer-5ndc69 > :last-child, .framer-0AM69 .framer-1g4l0go > :last-child, .framer-0AM69 .framer-2eu1vs > :last-child, .framer-0AM69 .framer-1wtyte8 > :last-child, .framer-0AM69 .framer-4x25gw > :last-child, .framer-0AM69 .framer-1t79dci > :last-child, .framer-0AM69 .framer-ceak2x > :last-child, .framer-0AM69 .framer-751umm > :last-child, .framer-0AM69 .framer-smqlcu > :last-child { margin-bottom: 0px; } .framer-0AM69 .framer-14fi32s > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-0AM69 .framer-1034ely > *, .framer-0AM69 .framer-fenoy1 > *, .framer-0AM69 .framer-d4lmm1 > *, .framer-0AM69 .framer-1kmxgbp > *, .framer-0AM69 .framer-1g4l0go > *, .framer-0AM69 .framer-4x25gw > *, .framer-0AM69 .framer-smqlcu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0AM69 .framer-14wtv10 > *, .framer-0AM69 .framer-1e9ba4a > *, .framer-0AM69 .framer-twiyfp > *, .framer-0AM69 .framer-1g8x4rv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0AM69 .framer-14wtv10 > :first-child, .framer-0AM69 .framer-kxowx2 > :first-child, .framer-0AM69 .framer-1e9ba4a > :first-child, .framer-0AM69 .framer-xk7f5d > :first-child, .framer-0AM69 .framer-1i9ifb1 > :first-child, .framer-0AM69 .framer-1glu9b0 > :first-child, .framer-0AM69 .framer-6g5kq4 > :first-child, .framer-0AM69 .framer-xmgb8r > :first-child, .framer-0AM69 .framer-4d6ej8 > :first-child, .framer-0AM69 .framer-twiyfp > :first-child, .framer-0AM69 .framer-e0irgh > :first-child, .framer-0AM69 .framer-1g8x4rv > :first-child { margin-left: 0px; } .framer-0AM69 .framer-14wtv10 > :last-child, .framer-0AM69 .framer-kxowx2 > :last-child, .framer-0AM69 .framer-1e9ba4a > :last-child, .framer-0AM69 .framer-xk7f5d > :last-child, .framer-0AM69 .framer-1i9ifb1 > :last-child, .framer-0AM69 .framer-1glu9b0 > :last-child, .framer-0AM69 .framer-6g5kq4 > :last-child, .framer-0AM69 .framer-xmgb8r > :last-child, .framer-0AM69 .framer-4d6ej8 > :last-child, .framer-0AM69 .framer-twiyfp > :last-child, .framer-0AM69 .framer-e0irgh > :last-child, .framer-0AM69 .framer-1g8x4rv > :last-child { margin-right: 0px; } .framer-0AM69 .framer-kxowx2 > *, .framer-0AM69 .framer-xk7f5d > * { margin: 0px; margin-left: calc(113px / 2); margin-right: calc(113px / 2); } .framer-0AM69 .framer-eerlr5 > *, .framer-0AM69 .framer-zqwtio > *, .framer-0AM69 .framer-kh2zhm > *, .framer-0AM69 .framer-jfyglo > *, .framer-0AM69 .framer-2eu1vs > *, .framer-0AM69 .framer-1t79dci > *, .framer-0AM69 .framer-ceak2x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0AM69 .framer-njnz3o > *, .framer-0AM69 .framer-5ndc69 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0AM69 .framer-1i9ifb1 > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-0AM69 .framer-1glu9b0 > *, .framer-0AM69 .framer-6g5kq4 > *, .framer-0AM69 .framer-xmgb8r > *, .framer-0AM69 .framer-4d6ej8 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-0AM69 .framer-e0irgh > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\", \"@media (min-width: 1200px) { .framer-0AM69 .hidden-1kr5ptl { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-0AM69 .hidden-1qyv4lk { display: none !important; } .${metadata.bodyClassName} { background: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(71, 205, 167)); } .framer-0AM69 .framer-1kr5ptl { background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #47cda7); width: 810px; } .framer-0AM69 .framer-1iewvze-container { width: 100%; } .framer-0AM69 .framer-11lz4w3 { background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); padding: 100px 50px 100px 50px; } .framer-0AM69 .framer-kxowx2, .framer-0AM69 .framer-xk7f5d, .framer-0AM69 .framer-1glu9b0 { flex-direction: column; gap: 50px; } .framer-0AM69 .framer-fenoy1, .framer-0AM69 .framer-njnz3o { flex: none; order: 0; width: 100%; } .framer-0AM69 .framer-1g6g1vz { aspect-ratio: 1.4549180327868851 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 488px); order: 1; width: 100%; } .framer-0AM69 .framer-1e9ba4a, .framer-0AM69 .framer-xmgb8r { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); padding: 100px 50px 100px 50px; } .framer-0AM69 .framer-cc8bl4-container { width: 709px; } .framer-0AM69 .framer-9v3oph { align-self: unset; aspect-ratio: 1.4549180327868851 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 419px); order: 2; width: 100%; } .framer-0AM69 .framer-qer6l5, .framer-0AM69 .framer-1wtyte8, .framer-0AM69 .framer-751umm { padding: 100px 50px 100px 50px; } .framer-0AM69 .framer-1i9ifb1, .framer-0AM69 .framer-6g5kq4 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-0AM69 .framer-1kmxgbp, .framer-0AM69 .framer-5ndc69, .framer-0AM69 .framer-4x25gw, .framer-0AM69 .framer-e51gxl, .framer-0AM69 .framer-smqlcu { flex: none; width: 100%; } .framer-0AM69 .framer-1i9kng5 { align-self: unset; aspect-ratio: 1.4549180327868851 / 1; flex: 1 0 0px; height: 1px; width: var(--framer-aspect-ratio-supported, 0px); } .framer-0AM69 .framer-1xajjm4 { align-self: unset; aspect-ratio: 1.4549180327868851 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); width: 100%; } .framer-0AM69 .framer-tdh5r5 { aspect-ratio: 1.4549180327868851 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 488px); width: 100%; } .framer-0AM69 .framer-4d6ej8 { flex-direction: column; gap: 80px; } .framer-0AM69 .framer-ceak2x { flex: none; max-width: 540px; width: 100%; } .framer-0AM69 .framer-twiyfp { height: 464px; padding: 100px 50px 100px 50px; } .framer-0AM69 .framer-mluav7-container { width: 722px; } .framer-0AM69 .framer-1g8x4rv { height: var(--framer-aspect-ratio-supported, 513px); } .framer-0AM69 .framer-151mx1i { height: var(--framer-aspect-ratio-supported, 635px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0AM69 .framer-kxowx2, .framer-0AM69 .framer-xk7f5d, .framer-0AM69 .framer-1i9ifb1, .framer-0AM69 .framer-1glu9b0, .framer-0AM69 .framer-6g5kq4, .framer-0AM69 .framer-4d6ej8 { gap: 0px; } .framer-0AM69 .framer-kxowx2 > *, .framer-0AM69 .framer-xk7f5d > *, .framer-0AM69 .framer-1glu9b0 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-0AM69 .framer-kxowx2 > :first-child, .framer-0AM69 .framer-xk7f5d > :first-child, .framer-0AM69 .framer-1i9ifb1 > :first-child, .framer-0AM69 .framer-1glu9b0 > :first-child, .framer-0AM69 .framer-6g5kq4 > :first-child, .framer-0AM69 .framer-4d6ej8 > :first-child { margin-top: 0px; } .framer-0AM69 .framer-kxowx2 > :last-child, .framer-0AM69 .framer-xk7f5d > :last-child, .framer-0AM69 .framer-1i9ifb1 > :last-child, .framer-0AM69 .framer-1glu9b0 > :last-child, .framer-0AM69 .framer-6g5kq4 > :last-child, .framer-0AM69 .framer-4d6ej8 > :last-child { margin-bottom: 0px; } .framer-0AM69 .framer-1i9ifb1 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-0AM69 .framer-6g5kq4 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-0AM69 .framer-4d6ej8 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`, `@media (max-width: 809px) { .framer-0AM69 .hidden-1eqsa5r { display: none !important; } .${metadata.bodyClassName} { background: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(71, 205, 167)); } .framer-0AM69 .framer-1kr5ptl { background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #47cda7); width: 390px; } .framer-0AM69 .framer-14fi32s { padding: 150px 20px 0px 20px; } .framer-0AM69 .framer-1034ely { order: 0; } .framer-0AM69 .framer-14wtv10 { flex-direction: column; gap: 18px; height: 108px; } .framer-0AM69 .framer-c1jy3q { height: 225px; order: 1; width: 100%; } .framer-0AM69 .framer-11lz4w3 { background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); padding: 30px 20px 30px 20px; } .framer-0AM69 .framer-kxowx2 { flex-direction: column; gap: 60px; } .framer-0AM69 .framer-fenoy1 { flex: none; gap: 36px; order: 0; padding: 0px 0px 80px 0px; width: 100%; } .framer-0AM69 .framer-1g6g1vz { flex: none; height: 284px; order: 1; width: 100%; } .framer-0AM69 .framer-1e9ba4a { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); flex-direction: column; height: min-content; padding: 50px 20px 50px 20px; } .framer-0AM69 .framer-cc8bl4-container { width: 355px; } .framer-0AM69 .framer-kehr7d, .framer-0AM69 .framer-qer6l5, .framer-0AM69 .framer-11gfmyb, .framer-0AM69 .framer-1wtyte8, .framer-0AM69 .framer-751umm { padding: 50px 20px 50px 20px; } .framer-0AM69 .framer-xk7f5d, .framer-0AM69 .framer-1glu9b0 { flex-direction: column; gap: 50px; } .framer-0AM69 .framer-9v3oph, .framer-0AM69 .framer-1xajjm4 { align-self: unset; flex: none; height: 277px; width: 100%; } .framer-0AM69 .framer-njnz3o, .framer-0AM69 .framer-5ndc69, .framer-0AM69 .framer-4x25gw, .framer-0AM69 .framer-e51gxl { flex: none; width: 100%; } .framer-0AM69 .framer-1i9ifb1 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 131px; } .framer-0AM69 .framer-1kmxgbp { flex: none; max-width: 100%; width: 100%; } .framer-0AM69 .framer-1i9kng5 { align-self: unset; height: 259px; width: 350px; } .framer-0AM69 .framer-6g5kq4 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 137px; } .framer-0AM69 .framer-tdh5r5 { flex: none; height: 277px; width: 100%; } .framer-0AM69 .framer-xmgb8r { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); flex-direction: column; padding: 50px 20px 50px 20px; } .framer-0AM69 .framer-4d6ej8 { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-0AM69 .framer-ceak2x { flex: none; max-width: 540px; position: relative; top: unset; width: 100%; } .framer-0AM69 .framer-6bqqk1 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-0AM69 .framer-twiyfp { flex-direction: column; height: min-content; padding: 50px 20px 50px 20px; } .framer-0AM69 .framer-mluav7-container { width: 354px; } .framer-0AM69 .framer-1g8x4rv { height: var(--framer-aspect-ratio-supported, 252px); } .framer-0AM69 .framer-151mx1i { height: var(--framer-aspect-ratio-supported, 313px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0AM69 .framer-14wtv10, .framer-0AM69 .framer-kxowx2, .framer-0AM69 .framer-fenoy1, .framer-0AM69 .framer-1e9ba4a, .framer-0AM69 .framer-xk7f5d, .framer-0AM69 .framer-1i9ifb1, .framer-0AM69 .framer-1glu9b0, .framer-0AM69 .framer-6g5kq4, .framer-0AM69 .framer-xmgb8r, .framer-0AM69 .framer-4d6ej8, .framer-0AM69 .framer-twiyfp { gap: 0px; } .framer-0AM69 .framer-14wtv10 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-0AM69 .framer-14wtv10 > :first-child, .framer-0AM69 .framer-kxowx2 > :first-child, .framer-0AM69 .framer-fenoy1 > :first-child, .framer-0AM69 .framer-1e9ba4a > :first-child, .framer-0AM69 .framer-xk7f5d > :first-child, .framer-0AM69 .framer-1i9ifb1 > :first-child, .framer-0AM69 .framer-1glu9b0 > :first-child, .framer-0AM69 .framer-6g5kq4 > :first-child, .framer-0AM69 .framer-xmgb8r > :first-child, .framer-0AM69 .framer-4d6ej8 > :first-child, .framer-0AM69 .framer-twiyfp > :first-child { margin-top: 0px; } .framer-0AM69 .framer-14wtv10 > :last-child, .framer-0AM69 .framer-kxowx2 > :last-child, .framer-0AM69 .framer-fenoy1 > :last-child, .framer-0AM69 .framer-1e9ba4a > :last-child, .framer-0AM69 .framer-xk7f5d > :last-child, .framer-0AM69 .framer-1i9ifb1 > :last-child, .framer-0AM69 .framer-1glu9b0 > :last-child, .framer-0AM69 .framer-6g5kq4 > :last-child, .framer-0AM69 .framer-xmgb8r > :last-child, .framer-0AM69 .framer-4d6ej8 > :last-child, .framer-0AM69 .framer-twiyfp > :last-child { margin-bottom: 0px; } .framer-0AM69 .framer-kxowx2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-0AM69 .framer-fenoy1 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-0AM69 .framer-1e9ba4a > *, .framer-0AM69 .framer-twiyfp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0AM69 .framer-xk7f5d > *, .framer-0AM69 .framer-1glu9b0 > *, .framer-0AM69 .framer-4d6ej8 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-0AM69 .framer-1i9ifb1 > * { margin: 0px; margin-bottom: calc(131px / 2); margin-top: calc(131px / 2); } .framer-0AM69 .framer-6g5kq4 > * { margin: 0px; margin-bottom: calc(137px / 2); margin-top: calc(137px / 2); } .framer-0AM69 .framer-xmgb8r > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   * @framerIntrinsicHeight 8060\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VexpqrpuI\":{\"layout\":[\"fixed\",\"auto\"]},\"fR_YgwQ2F\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   * @framerImmutableVariables false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   */\nconst Framers5jEHuQrl = withCSS(Component, css, \"framer-0AM69\");\nexport default Framers5jEHuQrl;\nFramers5jEHuQrl.displayName = \"Home\";\nFramers5jEHuQrl.defaultProps = {\n  height: 8060,\n  width: 1200\n};\naddFonts(Framers5jEHuQrl, [{\n  family: \"Manrope\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/s5jEHuQrl:default\",\n    url: \"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\",\n  weight: \"500\"\n}, ...TopbarDropdownFonts, ...ButtonFonts, ...ListFonts, ...CTAFonts, ...QuoteLargeFonts, ...FeatureCardFonts, ...FooterFonts, ...CookieBannerFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Framers5jEHuQrl\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VexpqrpuI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fR_YgwQ2F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerImmutableVariables\": \"false\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"8060\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "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", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "useConsent", "gtmId", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "hasDismissed", "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", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "ref", "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", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "noConsentGiven", "autoConsentAllowed", "handleDismiss", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "AnimatePresence", "Overlay", "props", "ref", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "qa", "motion", "Backdrop", "onClick", "IconCookie", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "TopbarDropdownFonts", "getFonts", "XRawQCEcm_default", "ButtonFonts", "Tnz4seCKc_default", "ListFonts", "bkf_3iqYh_default", "CTAFonts", "OlTWqYMo3_default", "MotionDivWithFX", "withFX", "motion", "QuoteLargeFonts", "VFC_cHzrC_default", "FeatureCardFonts", "Kym4ifyAB_default", "FooterFonts", "M82dauGNX_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "Overlay", "children", "blockDocumentScrolling", "visible", "setVisible", "useOverlayState", "animation", "transition1", "animation1", "transformTemplate", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap42m929", "overlay", "args", "router", "useRouter", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "XRawQCEcm_default", "RichText", "x", "Tnz4seCKc_default", "resolveLink", "Image2", "overlaynju8zw", "l", "MotionDivWithFX", "bkf_3iqYh_default", "OlTWqYMo3_default", "AnimatePresence", "qa", "VFC_cHzrC_default", "Kym4ifyAB_default", "M82dauGNX_default", "CookieBanner", "css", "Framers5jEHuQrl", "withCSS", "s5jEHuQrl_default", "addFonts", "TopbarDropdownFonts", "ButtonFonts", "ListFonts", "CTAFonts", "QuoteLargeFonts", "FeatureCardFonts", "FooterFonts", "CookieBannerFonts", "fonts", "__FramerMetadata__"]
}
