{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/react-use-intercom.js@0.0.3", "ssg:https://framer.com/m/framer/integrations-styles.js@^0.2.0", "ssg:https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js", "ssg:https://framerusercontent.com/modules/KFs6DfYlgsn5vlmG1n5j/QvEUAXemxzF4sIdMZpLQ/HE1QGHJti.js"],
  "sourcesContent": ["import { createContext, useRef, useCallback, useMemo, createElement, useContext } from 'react';\n\nfunction _extends() {\n  _extends = Object.assign || function (target) {\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n\n      for (var key in source) {\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\n          target[key] = source[key];\n        }\n      }\n    }\n\n    return target;\n  };\n\n  return _extends.apply(this, arguments);\n}\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n  if (source == null) return {};\n  var target = {};\n  var sourceKeys = Object.keys(source);\n  var key, i;\n\n  for (i = 0; i < sourceKeys.length; i++) {\n    key = sourceKeys[i];\n    if (excluded.indexOf(key) >= 0) continue;\n    target[key] = source[key];\n  }\n\n  return target;\n}\n\n/**\r\n * Logs messages in the console with a corresponding urgency\r\n *\r\n * @param level the urgency of the message\r\n * @param message the message to log in the console\r\n */\nvar log = function log(level, message) {\n  if (process.env.NODE_ENV !== \"production\") {\n    var packageName = '[react-use-intercom]';\n\n    switch (level) {\n      case 'info':\n        console.log(packageName + \" \" + message);\n        break;\n\n      case 'warn':\n        console.warn(packageName + \" \" + message);\n        break;\n\n      case 'error':\n        console.error(packageName + \" \" + message);\n        break;\n\n      default:\n        console.log(packageName + \" \" + message);\n    }\n  }\n};\n\nvar isEmptyObject = function isEmptyObject(obj) {\n  return Object.keys(obj).length === 0 && obj.constructor === Object;\n};\nvar isSSR = typeof window === 'undefined';\n/**\r\n * Removes object entries where the value equals to `undefined`\r\n *\r\n * @param obj\r\n */\n\nvar removeUndefined = function removeUndefined(obj) {\n  Object.keys(obj).forEach(function (key) {\n    if (obj[key] && typeof obj[key] === 'object') removeUndefined(obj[key]);else if (obj[key] === undefined) delete obj[key];\n  });\n  return obj;\n};\n\n/**\r\n * Safely exposes `window.Intercom` and passes the arguments to the instance\r\n *\r\n * @param method method passed to the `window.Intercom` instance\r\n * @param args arguments passed to the `window.Intercom` instance\r\n *\r\n * @see {@link https://developers.intercom.com/installing-intercom/docs/intercom-javascript}\r\n */\n\nvar IntercomAPI = function IntercomAPI(method) {\n  if (!isSSR && window.Intercom) {\n    for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n      args[_key - 1] = arguments[_key];\n    }\n\n    return window.Intercom.apply(null, [method].concat(args));\n  } else {\n    log('error', method + \" Intercom instance is not initalized yet\");\n  }\n};\n\nvar NO_INTERCOM_PROVIDER_MESSAGE = 'Please wrap your component with `IntercomProvider`.';\nvar IntercomContext = /*#__PURE__*/createContext({\n  boot: function boot() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  shutdown: function shutdown() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  hardShutdown: function hardShutdown() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  update: function update() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  hide: function hide() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  show: function show() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  showMessages: function showMessages() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  showNewMessages: function showNewMessages() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  getVisitorId: function getVisitorId() {\n    log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n    return '';\n  },\n  startTour: function startTour() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  },\n  trackEvent: function trackEvent() {\n    return log('error', NO_INTERCOM_PROVIDER_MESSAGE);\n  }\n});\n\n// @ts-nocheck\n\n/**\r\n * Snippet to initialize the Intercom instance\r\n *\r\n * @param appId - Intercom app id\r\n * @param [timeout=0] - Amount of milliseconds that the initialization should be delayed, defaults to 0\r\n *\r\n * @see {@link https://developers.intercom.com/installing-intercom/docs/basic-javascript}\r\n */\nvar initialize = function initialize(appId, timeout) {\n  if (timeout === void 0) {\n    timeout = 0;\n  }\n\n  var w = window;\n  var ic = w.Intercom;\n\n  if (typeof ic === 'function') {\n    ic('reattach_activator');\n    ic('update', w.intercomSettings);\n  } else {\n    var d = document;\n\n    var i = function i() {\n      i.c(arguments);\n    };\n\n    i.q = [];\n\n    i.c = function (args) {\n      i.q.push(args);\n    };\n\n    w.Intercom = i;\n\n    var l = function l() {\n      setTimeout(function () {\n        var s = d.createElement('script');\n        s.type = 'text/javascript';\n        s.async = true;\n        s.src = 'https://widget.intercom.io/widget/' + appId;\n        var x = d.getElementsByTagName('script')[0];\n        x.parentNode.insertBefore(s, x);\n      }, timeout);\n    };\n\n    if (document.readyState === 'complete') {\n      l();\n    } else if (w.attachEvent) {\n      w.attachEvent('onload', l);\n    } else {\n      w.addEventListener('load', l, false);\n    }\n  }\n};\n\nvar mapMessengerAttributesToRawMessengerAttributes = function mapMessengerAttributesToRawMessengerAttributes(attributes) {\n  return {\n    custom_launcher_selector: attributes.customLauncherSelector,\n    alignment: attributes.alignment,\n    vertical_padding: attributes.verticalPadding,\n    horizontal_padding: attributes.horizontalPadding,\n    hide_default_launcher: attributes.hideDefaultLauncher,\n    session_duration: attributes.sessionDuration,\n    action_color: attributes.actionColor,\n    background_color: attributes.backgroundColor\n  };\n};\n\nvar mapDataAttributesCompanyToRawDataAttributesCompany = function mapDataAttributesCompanyToRawDataAttributesCompany(attributes) {\n  return _extends({\n    company_id: attributes.companyId,\n    name: attributes.name,\n    created_at: attributes.createdAt,\n    plan: attributes.plan,\n    monthly_spend: attributes.monthlySpend,\n    user_count: attributes.userCount,\n    size: attributes.size,\n    website: attributes.website,\n    industry: attributes.industry\n  }, attributes.customAttributes);\n};\n\nvar mapDataAttributesAvatarToRawDataAttributesAvatar = function mapDataAttributesAvatarToRawDataAttributesAvatar(attributes) {\n  return {\n    type: attributes.type,\n    image_url: attributes.imageUrl\n  };\n};\n\nvar mapDataAttributesToRawDataAttributes = function mapDataAttributesToRawDataAttributes(attributes) {\n  var _attributes$companies;\n\n  return _extends({\n    email: attributes.email,\n    user_id: attributes.userId,\n    created_at: attributes.createdAt,\n    name: attributes.name,\n    phone: attributes.phone,\n    last_request_at: attributes.lastRequestAt,\n    unsubscribed_from_emails: attributes.unsubscribedFromEmails,\n    language_override: attributes.languageOverride,\n    utm_campaign: attributes.utmCampaign,\n    utm_content: attributes.utmContent,\n    utm_medium: attributes.utmMedium,\n    utm_source: attributes.utmSource,\n    utm_term: attributes.utmTerm,\n    avatar: attributes.avatar && mapDataAttributesAvatarToRawDataAttributesAvatar(attributes.avatar),\n    user_hash: attributes.userHash,\n    company: attributes.company && mapDataAttributesCompanyToRawDataAttributesCompany(attributes.company),\n    companies: (_attributes$companies = attributes.companies) == null ? void 0 : _attributes$companies.map(mapDataAttributesCompanyToRawDataAttributesCompany)\n  }, attributes.customAttributes);\n};\nvar mapIntercomPropsToRawIntercomProps = function mapIntercomPropsToRawIntercomProps(props) {\n  return removeUndefined(_extends({}, mapMessengerAttributesToRawMessengerAttributes(props), mapDataAttributesToRawDataAttributes(props)));\n};\n\nvar IntercomProvider = function IntercomProvider(_ref) {\n  var appId = _ref.appId,\n      _ref$autoBoot = _ref.autoBoot,\n      autoBoot = _ref$autoBoot === void 0 ? false : _ref$autoBoot,\n      autoBootProps = _ref.autoBootProps,\n      children = _ref.children,\n      onHide = _ref.onHide,\n      onShow = _ref.onShow,\n      onUnreadCountChange = _ref.onUnreadCountChange,\n      _ref$shouldInitialize = _ref.shouldInitialize,\n      shouldInitialize = _ref$shouldInitialize === void 0 ? !isSSR : _ref$shouldInitialize,\n      apiBase = _ref.apiBase,\n      initializeDelay = _ref.initializeDelay,\n      rest = _objectWithoutPropertiesLoose(_ref, [\"appId\", \"autoBoot\", \"autoBootProps\", \"children\", \"onHide\", \"onShow\", \"onUnreadCountChange\", \"shouldInitialize\", \"apiBase\", \"initializeDelay\"]);\n\n  var isBooted = useRef(false);\n  var isInitialized = useRef(false);\n  if (!isEmptyObject(rest) && process.env.NODE_ENV !== \"production\") log('error', ['some invalid props were passed to IntercomProvider. ', \"Please check following props: \" + Object.keys(rest).join(', ') + \".\"].join(''));\n  var boot = useCallback(function (props) {\n    if (!window.Intercom && !shouldInitialize) {\n      log('warn', 'Intercom instance is not initialized because `shouldInitialize` is set to `false` in `IntercomProvider`');\n      return;\n    }\n\n    if (isBooted.current) {\n      return;\n    }\n\n    var metaData = _extends({\n      app_id: appId\n    }, apiBase && {\n      api_base: apiBase\n    }, props && mapIntercomPropsToRawIntercomProps(props));\n\n    window.intercomSettings = metaData;\n    IntercomAPI('boot', metaData);\n    isBooted.current = true;\n  }, [apiBase, appId, shouldInitialize]);\n\n  if (!isSSR && shouldInitialize && !isInitialized.current) {\n    initialize(appId, initializeDelay); // attach listeners\n\n    if (onHide) IntercomAPI('onHide', onHide);\n    if (onShow) IntercomAPI('onShow', onShow);\n    if (onUnreadCountChange) IntercomAPI('onUnreadCountChange', onUnreadCountChange);\n\n    if (autoBoot) {\n      boot(autoBootProps);\n    }\n\n    isInitialized.current = true;\n  }\n\n  var ensureIntercom = useCallback(function (functionName, callback) {\n    if (functionName === void 0) {\n      functionName = 'A function';\n    }\n\n    if (!window.Intercom && !shouldInitialize) {\n      log('warn', 'Intercom instance is not initialized because `shouldInitialize` is set to `false` in `IntercomProvider`');\n      return;\n    }\n\n    if (!isBooted.current) {\n      log('warn', [\"'\" + functionName + \"' was called but Intercom has not booted yet. \", \"Please call 'boot' before calling '\" + functionName + \"' or \", \"set 'autoBoot' to true in the IntercomProvider.\"].join(''));\n      return;\n    }\n\n    return callback();\n  }, [shouldInitialize]);\n  var shutdown = useCallback(function () {\n    if (!isBooted.current) return;\n    IntercomAPI('shutdown');\n    isBooted.current = false;\n  }, []);\n  var hardShutdown = useCallback(function () {\n    if (!isBooted.current) return;\n    IntercomAPI('shutdown');\n    delete window.Intercom;\n    delete window.intercomSettings;\n    isBooted.current = false;\n  }, []);\n  var refresh = useCallback(function () {\n    ensureIntercom('update', function () {\n      var lastRequestedAt = new Date().getTime();\n      IntercomAPI('update', {\n        last_requested_at: lastRequestedAt\n      });\n    });\n  }, [ensureIntercom]);\n  var update = useCallback(function (props) {\n    ensureIntercom('update', function () {\n      if (!props) {\n        refresh();\n        return;\n      }\n\n      var rawProps = mapIntercomPropsToRawIntercomProps(props);\n      window.intercomSettings = _extends({}, window.intercomSettings, rawProps);\n      IntercomAPI('update', rawProps);\n    });\n  }, [ensureIntercom, refresh]);\n  var hide = useCallback(function () {\n    ensureIntercom('hide', function () {\n      IntercomAPI('hide');\n    });\n  }, [ensureIntercom]);\n  var show = useCallback(function () {\n    ensureIntercom('show', function () {\n      return IntercomAPI('show');\n    });\n  }, [ensureIntercom]);\n  var showMessages = useCallback(function () {\n    ensureIntercom('showMessages', function () {\n      IntercomAPI('showMessages');\n    });\n  }, [ensureIntercom]);\n  var showNewMessages = useCallback(function (message) {\n    ensureIntercom('showNewMessage', function () {\n      if (!message) {\n        IntercomAPI('showNewMessage');\n      } else {\n        IntercomAPI('showNewMessage', message);\n      }\n    });\n  }, [ensureIntercom]);\n  var getVisitorId = useCallback(function () {\n    return ensureIntercom('getVisitorId', function () {\n      return IntercomAPI('getVisitorId');\n    });\n  }, [ensureIntercom]);\n  var startTour = useCallback(function (tourId) {\n    ensureIntercom('startTour', function () {\n      IntercomAPI('startTour', tourId);\n    });\n  }, [ensureIntercom]);\n  var trackEvent = useCallback(function (event, metaData) {\n    ensureIntercom('trackEvent', function () {\n      if (metaData) {\n        IntercomAPI('trackEvent', event, metaData);\n      } else {\n        IntercomAPI('trackEvent', event);\n      }\n    });\n  }, [ensureIntercom]);\n  var providerValue = useMemo(function () {\n    return {\n      boot: boot,\n      shutdown: shutdown,\n      hardShutdown: hardShutdown,\n      update: update,\n      hide: hide,\n      show: show,\n      showMessages: showMessages,\n      showNewMessages: showNewMessages,\n      getVisitorId: getVisitorId,\n      startTour: startTour,\n      trackEvent: trackEvent\n    };\n  }, [boot, shutdown, hardShutdown, update, hide, show, showMessages, showNewMessages, getVisitorId, startTour, trackEvent]);\n  var content = useMemo(function () {\n    return children;\n  }, [children]);\n  return createElement(IntercomContext.Provider, {\n    value: providerValue\n  }, content);\n};\nvar useIntercomContext = function useIntercomContext() {\n  return useContext(IntercomContext);\n};\n\nvar useIntercom = function useIntercom() {\n  return useIntercomContext();\n};\n\nexport { IntercomProvider, useIntercom };\n//# sourceMappingURL=react-use-intercom.esm.js.map\n", "import{containerStyles,emptyStateStyle as defaultEmptyStateStyle}from\"https://framer.com/m/framer/default-utils.js@^0.43.0\";export const emptyStateStyle={...containerStyles,...defaultEmptyStateStyle,textAlign:\"center\",padding:15,width:200,height:100,overflow:\"hidden\"};export const neutralStateStyle={...emptyStateStyle,color:\"#09f\",background:\"rgb(0, 153, 255, 0.1)\",borderColor:\"#09f\"};export const stateTitleStyle={fontSize:12,fontWeight:600,margin:0};export const stateParagraphStyle={fontSize:12,maxWidth:200,lineHeight:1.4,margin:\"5px 0 0 0\"};\nexport const __FramerMetadata__ = {\"exports\":{\"neutralStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateTitleStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateParagraphStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./styles.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{IntercomProvider}from\"https://framer.com/m/framer/react-use-intercom.js@0.0.3\";import{neutralStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@^0.2.0\";/**\n * INTERCOM\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Intercom({appId,style,...props}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;return isCanvas?/*#__PURE__*/ _jsxs(motion.div,{style:{...neutralStateStyle,...style},children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Intercom\"}),/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Drop this component into a Screen to add Intercom.\"})]}):/*#__PURE__*/ _jsx(IntercomProvider,{autoBoot:true,appId:appId});};addPropertyControls(Intercom,{appId:{title:\"ID\",type:ControlType.String,description:\"Create an [Intercom](https://www.intercom.com/) account and copy your workspace ID. [Learn more\u2026](https://www.framer.com/sites/integrations/intercom/)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Intercom\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"100\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Intercom.map", "// Generated by Framer (99d1409)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,useSiteRefs,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVGPathShimmer from\"https://framerusercontent.com/modules/IT2yoWfYkMOUw1y7WouH/isISNFDBgUSYCbGGymyI/SVGPathShimmer_Prod.js\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import CardsSLAs from\"#framer/local/canvasComponent/ExLmdaf0s/ExLmdaf0s.js\";import FeatureTabs from\"#framer/local/canvasComponent/JlorPR0lz/JlorPR0lz.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/kOibTklIm/kOibTklIm.js\";import CardsTickets from\"#framer/local/canvasComponent/L3YNK2VpO/L3YNK2VpO.js\";import CardsAITimeSavings from\"#framer/local/canvasComponent/uEheNtPIe/uEheNtPIe.js\";import Banner from\"#framer/local/canvasComponent/VpbSN7w4R/VpbSN7w4R.js\";import CardsCSAT from\"#framer/local/canvasComponent/y45WZeBBg/y45WZeBBg.js\";import{withScheduleDemoButton}from\"#framer/local/codeFile/FEcGp0P/TrackCTA.js\";import metadataProvider from\"#framer/local/webPageMetadata/HE1QGHJti/HE1QGHJti.js\";const IntercomFonts=getFonts(Intercom);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const BannerFonts=getFonts(Banner);const ButtonFonts=getFonts(Button);const ButtonWithScheduleDemoButton1p3retkWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"PzocqNy7T\",override:withScheduleDemoButton,scopeId:\"HE1QGHJti\"}),ButtonInfo);const MotionDivWithFX=withFX(motion.div);const FeatureTabsFonts=getFonts(FeatureTabs);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const SVGPathShimmerFonts=getFonts(SVGPathShimmer);const CardsTicketsFonts=getFonts(CardsTickets);const CardsSLAsFonts=getFonts(CardsSLAs);const CardsCSATFonts=getFonts(CardsCSAT);const CardsAITimeSavingsFonts=getFonts(CardsAITimeSavings);const breakpoints={EfRmhtV8Z:\"(min-width: 1200px) and (max-width: 1439px)\",lvL8Y52sf:\"(min-width: 1440px)\",ObbmVml1t:\"(min-width: 810px) and (max-width: 1199px)\",oDFjJKDFf:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-a2fzY\";const variantClassNames={EfRmhtV8Z:\"framer-v-nw8odj\",lvL8Y52sf:\"framer-v-1rq73gh\",ObbmVml1t:\"framer-v-1falpcb\",oDFjJKDFf:\"framer-v-1ep3ugu\"};const transition1={bounce:.2,delay:0,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:.1,delay:.3,duration:.8,type:\"spring\"};const transition3={delay:0,duration:7,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.1,delay:.2,duration:.8,type:\"spring\"};const transition5={bounce:.1,delay:.4,duration:.8,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition6={bounce:.1,delay:.5,duration:.8,type:\"spring\"};const transition7={bounce:.1,delay:.6,duration:.8,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"lvL8Y52sf\",Desktop:\"EfRmhtV8Z\",Phone:\"oDFjJKDFf\",Tablet:\"ObbmVml1t\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lvL8Y52sf\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"WbZqU9mqH\");const dynamicRef=useSiteRefs();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"oDFjJKDFf\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"oDFjJKDFf\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ObbmVml1t\",\"oDFjJKDFf\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"lvL8Y52sf\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1rq73gh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ltofoy\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-118ouyy\",\"data-framer-name\":\"Trigger-Nav-Background\",id:elementId,ref:dynamicRef(elementId)}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dw7nlv\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4200,intrinsicWidth:5511,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+800-777),pixelHeight:4200,pixelWidth:5511,sizes:\"1407px\",src:\"https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg\",srcSet:\"https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg 5511w\"}},ObbmVml1t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4200,intrinsicWidth:5511,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+770-692),pixelHeight:4200,pixelWidth:5511,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 770px) + 591px)`,src:\"https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg\",srcSet:\"https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg 5511w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4200,intrinsicWidth:5511,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+800-828),pixelHeight:4200,pixelWidth:5511,sizes:\"1526px\",src:\"https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg\",srcSet:\"https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NDcqUAXOT7uCDi55m8YoLHREVo.jpg 5511w\"},className:\"framer-wrmudd hidden-1ep3ugu\",\"data-framer-appear-id\":\"wrmudd\",\"data-framer-name\":\"Hi there\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x22hs6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LgwqJUcFP\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"vrnacjn6\",height:\"100%\",id:\"LgwqJUcFP\",layoutId:\"LgwqJUcFP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dngupm\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oCerLHImx\"},implicitPathVariables:undefined},{href:{webPageId:\"oCerLHImx\"},implicitPathVariables:undefined},{href:{webPageId:\"oCerLHImx\"},implicitPathVariables:undefined},{href:{webPageId:\"oCerLHImx\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{y:(componentViewport?.y||0)+0+0+80+0+147+0+0},ObbmVml1t:{y:(componentViewport?.y||0)+0+0+80+0+137+0+0},oDFjJKDFf:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+0+0+80+0+32+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+80+0+167+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11cu9g6-container\",nodeId:\"Z1dds1Hot\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{Ib9kZVudJ:resolvedLinks[1]},ObbmVml1t:{Ib9kZVudJ:resolvedLinks[2]},oDFjJKDFf:{Ib9kZVudJ:resolvedLinks[3],style:{height:\"100%\",width:\"100%\"},variant:\"BbXx6OjPB\"}},children:/*#__PURE__*/_jsx(Banner,{height:\"100%\",Ib9kZVudJ:resolvedLinks[0],id:\"Z1dds1Hot\",layoutId:\"Z1dds1Hot\",style:{height:\"100%\"},variant:\"veecEjgV5\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Smarter support,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"happier employees\"})]})},oDFjJKDFf:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Smarter support,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"happier employees\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Smarter support,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"happier employees\"})]}),className:\"framer-ie7ysz\",\"data-framer-name\":\"for internal operations\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Internal support that starts in Slack, and resolves with AI and intelligent workflows. No portal required.\"})})},oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"Internal support that starts in Slack, and resolves with AI and intelligent workflows.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"No portal required.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"155%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:[\"Internal support that starts in Slack, and resolves with AI and intelligent workflows.\",/*#__PURE__*/_jsx(\"br\",{}),\"No portal required.\"]})}),className:\"framer-173d6s1\",\"data-framer-name\":\"Meet your colleagues where they work, let AI do the heavy lifting, and get incredible out-of-the-box analytics while delivering incredible service to your company.\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194ocnk\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined},{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined},{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined},{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{y:(componentViewport?.y||0)+0+0+80+0+147+0+268.8+0},ObbmVml1t:{y:(componentViewport?.y||0)+0+0+80+0+137+0+358+0},oDFjJKDFf:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+0+0+80+0+32+0+556+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+80+0+167+0+268.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dfnc91-container\",nodeId:\"bxaLxvf78\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{OD2WUCgVP:resolvedLinks1[1]},ObbmVml1t:{OD2WUCgVP:resolvedLinks1[2]},oDFjJKDFf:{OD2WUCgVP:resolvedLinks1[3],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{a46J9a7Sp:\"Request Free Trial\",height:\"100%\",id:\"bxaLxvf78\",iMtZrtjub:false,layoutId:\"bxaLxvf78\",nHcvdBhJH:false,OD2WUCgVP:resolvedLinks1[0],QKoXvH4nx:\"request-free-trial\",style:{height:\"100%\"},variant:\"bLarPLFaQ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{y:(componentViewport?.y||0)+0+0+80+0+147+0+268.8+0},ObbmVml1t:{y:(componentViewport?.y||0)+0+0+80+0+137+0+358+0},oDFjJKDFf:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+0+0+80+0+32+0+556+0+56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+80+0+167+0+268.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p3retk-container\",nodeId:\"PzocqNy7T\",rendersWithMotion:true,scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonWithScheduleDemoButton1p3retkWithMappedReactProps1v1ipky,{a46J9a7Sp:\"Schedule Demo\",height:\"100%\",id:\"PzocqNy7T\",iMtZrtjub:false,layoutId:\"PzocqNy7T\",nHcvdBhJH:true,QKoXvH4nx:\"schedule-demo\",style:{height:\"100%\"},variant:\"RUKgmvIfr\",width:\"100%\"})})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2180,intrinsicWidth:3652,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+708-482),pixelHeight:2180,pixelWidth:3652,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1082px)`,src:\"https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg\",srcSet:\"https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg 3652w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2180,intrinsicWidth:3652,pixelHeight:2180,pixelWidth:3652,src:\"https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg\",srcSet:\"https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y8WXhnR4502ManEdkQuzY6cgk.jpg 3652w\"},className:\"framer-1d5j3po hidden-1rq73gh hidden-nw8odj hidden-1falpcb\",\"data-framer-name\":\"Mobile\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1io16cv\",\"data-framer-name\":\"Slack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16cyywq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkakqk\",\"data-framer-name\":\"Pill\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ogk50x\",\"data-framer-name\":\"Slack\",fill:\"black\",intrinsicHeight:21,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.151 12.464a1.58 1.58 0 0 1-1.575 1.576A1.58 1.58 0 0 1 3 12.464a1.58 1.58 0 0 1 1.576-1.575H6.15v1.575Zm.794 0a1.58 1.58 0 0 1 1.576-1.575 1.58 1.58 0 0 1 1.576 1.575v3.946a1.58 1.58 0 0 1-1.576 1.575 1.58 1.58 0 0 1-1.576-1.575v-3.946Z\" fill=\"#E01E5A\"/><path d=\"M8.521 6.137A1.58 1.58 0 0 1 6.945 4.56a1.58 1.58 0 0 1 1.576-1.576 1.58 1.58 0 0 1 1.576 1.576v1.576H8.52Zm0 .793a1.58 1.58 0 0 1 1.576 1.576 1.58 1.58 0 0 1-1.576 1.576H4.576A1.58 1.58 0 0 1 3 8.506a1.58 1.58 0 0 1 1.576-1.575H8.52Z\" fill=\"#36C5F0\"/><path d=\"M14.848 8.506a1.58 1.58 0 0 1 1.576-1.575A1.58 1.58 0 0 1 18 8.506a1.58 1.58 0 0 1-1.576 1.576h-1.576V8.506Zm-.794.001a1.58 1.58 0 0 1-1.575 1.575 1.58 1.58 0 0 1-1.576-1.575V4.56a1.58 1.58 0 0 1 1.576-1.576 1.58 1.58 0 0 1 1.575 1.576v3.946Z\" fill=\"#2EB67D\"/><path d=\"M12.479 14.834a1.58 1.58 0 0 1 1.575 1.576 1.58 1.58 0 0 1-1.575 1.575 1.58 1.58 0 0 1-1.576-1.575v-1.576h1.576Zm0-.794a1.58 1.58 0 0 1-1.576-1.576 1.58 1.58 0 0 1 1.576-1.575h3.945A1.58 1.58 0 0 1 18 12.463a1.58 1.58 0 0 1-1.576 1.576h-3.945Z\" fill=\"#ECB22E\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"Slack Integration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"Slack Integration\"})}),className:\"framer-jki1bl\",\"data-framer-name\":\"Slack Integration\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 24, 22)\"},children:\"Meet your colleagues\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 24, 22)\"},children:\"where they already work\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 24, 22)\"},children:\"Meet your colleagues\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 24, 22)\"},children:\"where they already work\"})]}),className:\"framer-11z7o1y\",\"data-framer-name\":\"Meet your colleagues where they already work\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{width:`min(${componentViewport?.width||\"100vw\"}, 770px)`,y:(componentViewport?.y||0)+0+850+100+680}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:\"899px\",y:(componentViewport?.y||0)+0+880+100+680,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nbhyxn-container hidden-1ep3ugu\",nodeId:\"KTEeklueG\",rendersWithMotion:true,scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(FeatureTabs,{height:\"100%\",id:\"KTEeklueG\",layoutId:\"KTEeklueG\",style:{width:\"100%\"},variant:\"x26lNJF73\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1aogd62 hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 226\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:930,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"930\" viewBox=\"-1 -1 4 930\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 927.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-peyd45 hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 227\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:939,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"939\" viewBox=\"-1 -1 4 939\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 936.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gi65x9 hidden-1rq73gh hidden-nw8odj hidden-1falpcb\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8l0m9 hidden-1rq73gh\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14b10uo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d3fo41\",\"data-framer-name\":\"Frame 2121453030\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-199xq7f\",\"data-framer-name\":\"bubble-text-6, message, chat\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cwpgzo\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.5 4.75C0.5 2.26472 2.51472 0.25 5 0.25H11C13.4853 0.25 15.5 2.26472 15.5 4.75V9.25C15.5 11.7353 13.4853 13.75 11 13.75H1.25C0.835786 13.75 0.5 13.4142 0.5 13V4.75ZM5.75 4.75C5.33579 4.75 5 5.08579 5 5.5C5 5.91421 5.33579 6.25 5.75 6.25H10.25C10.6642 6.25 11 5.91421 11 5.5C11 5.08579 10.6642 4.75 10.25 4.75H5.75ZM5.75 7.75C5.33579 7.75 5 8.08579 5 8.5C5 8.91421 5.33579 9.25 5.75 9.25H8C8.41421 9.25 8.75 8.91421 8.75 8.5C8.75 8.08579 8.41421 7.75 8 7.75H5.75Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2tbeli\",\"data-framer-name\":\"Frame 2121453018\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Turn DMs into Tickets\"})}),className:\"framer-1loc8vc\",\"data-framer-name\":\"Turn DMs into Tickets\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+788+100+488+0+560+0+146),pixelHeight:716,pixelWidth:716,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,src:\"https://framerusercontent.com/images/wlO8Grj4TRY3DGgS1ttwATBLSIU.png\",srcSet:\"https://framerusercontent.com/images/wlO8Grj4TRY3DGgS1ttwATBLSIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/wlO8Grj4TRY3DGgS1ttwATBLSIU.png 716w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:716,pixelWidth:716,src:\"https://framerusercontent.com/images/wlO8Grj4TRY3DGgS1ttwATBLSIU.png\",srcSet:\"https://framerusercontent.com/images/wlO8Grj4TRY3DGgS1ttwATBLSIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/wlO8Grj4TRY3DGgS1ttwATBLSIU.png 716w\"},className:\"framer-1y64fom\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14jnq7k hidden-1rq73gh\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqmsu3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gg693w\",\"data-framer-name\":\"Frame 2121453030\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qfxddw\",\"data-framer-name\":\"people-add, user-add\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13bnnfs\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"18\" viewBox=\"-1 -1 17 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.99976 0.5C5.13579 0.5 3.62476 2.01104 3.62476 3.875C3.62476 5.73896 5.13579 7.25 6.99976 7.25C8.86372 7.25 10.3748 5.73896 10.3748 3.875C10.3748 2.01104 8.86372 0.5 6.99976 0.5Z\" fill=\"white\"/>\\n<path d=\"M3.25201 9.17829C2.24179 9.90976 1.47627 10.938 1.03283 12.137C1.02636 12.1545 1.02017 12.172 1.01425 12.1895C0.916891 12.4592 0.835761 12.7373 0.771704 13.0223C0.554372 13.9894 1.34724 14.75 2.1986 14.75H9.24976C8.00711 14.75 6.99976 13.7426 6.99976 12.5C6.99976 11.2574 8.00711 10.25 9.24976 10.25C9.24976 9.63194 9.49896 9.07209 9.90237 8.66544C9.05165 8.23986 8.07359 8 6.99979 8C6.87499 8 6.75149 8.00324 6.62933 8.00963\" fill=\"white\"/>\\n<path d=\"M11.4998 9.5C11.914 9.5 12.2498 9.83579 12.2498 10.25V11.75H13.7498C14.164 11.75 14.4998 12.0858 14.4998 12.5C14.4998 12.9142 14.164 13.25 13.7498 13.25H12.2498V14.75C12.2498 15.1642 11.914 15.5 11.4998 15.5C11.0855 15.5 10.7498 15.1642 10.7498 14.75V13.25H9.24976C8.83554 13.25 8.49976 12.9142 8.49976 12.5C8.49976 12.0858 8.83554 11.75 9.24976 11.75H10.7498V10.25C10.7498 9.83579 11.0855 9.5 11.4998 9.5Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ohj7k1\",\"data-framer-name\":\"Frame 2121453018\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Add followers to keep everyone in sync\"})}),className:\"framer-923wle\",\"data-framer-name\":\"Add followers to keep everyone in sync\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+788+100+488+0+1680+0+146),pixelHeight:716,pixelWidth:716,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,src:\"https://framerusercontent.com/images/QbXvCukpb8yUlhU6CPufYyujTKE.png\",srcSet:\"https://framerusercontent.com/images/QbXvCukpb8yUlhU6CPufYyujTKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QbXvCukpb8yUlhU6CPufYyujTKE.png 716w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:716,pixelWidth:716,src:\"https://framerusercontent.com/images/QbXvCukpb8yUlhU6CPufYyujTKE.png\",srcSet:\"https://framerusercontent.com/images/QbXvCukpb8yUlhU6CPufYyujTKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QbXvCukpb8yUlhU6CPufYyujTKE.png 716w\"},className:\"framer-1gj3o7d\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlppxs hidden-1rq73gh\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u548zg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v8y2n2\",\"data-framer-name\":\"Frame 2121453030\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1marfob\",\"data-framer-name\":\"ticket, admit, vip\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6h4f8n\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"14\" viewBox=\"-1 -1 18 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.5 2.25C0.5 1.00736 1.50736 0 2.75 0H13.25C14.4926 0 15.5 1.00736 15.5 2.25V3.9375C15.5 4.24418 15.3133 4.51996 15.0285 4.63386C13.7822 5.13241 13.7822 6.86759 15.0285 7.36614C15.3133 7.48004 15.5 7.75582 15.5 8.0625V9.75C15.5 10.9926 14.4926 12 13.25 12H2.75C1.50736 12 0.5 10.9926 0.5 9.75V8.0625C0.5 7.75582 0.686713 7.48004 0.971457 7.36614C2.21785 6.86759 2.21785 5.13241 0.971457 4.63386C0.686713 4.51996 0.5 4.24418 0.5 3.9375V2.25ZM10.25 2.25C10.6642 2.25 11 2.58579 11 3V3.0075C11 3.42171 10.6642 3.7575 10.25 3.7575C9.83579 3.7575 9.5 3.42171 9.5 3.0075V3C9.5 2.58579 9.83579 2.25 10.25 2.25ZM10.25 5.25C10.6642 5.25 11 5.58579 11 6V6.0075C11 6.42171 10.6642 6.7575 10.25 6.7575C9.83579 6.7575 9.5 6.42171 9.5 6.0075V6C9.5 5.58579 9.83579 5.25 10.25 5.25ZM10.25 8.25C10.6642 8.25 11 8.58579 11 9V9.0075C11 9.42171 10.6642 9.7575 10.25 9.7575C9.83579 9.7575 9.5 9.42171 9.5 9.0075V9C9.5 8.58579 9.83579 8.25 10.25 8.25Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lyw1h4\",\"data-framer-name\":\"Frame 2121453018\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"View and manage your tickets\"})}),className:\"framer-xd9qo4\",\"data-framer-name\":\"View and manage your tickets\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+788+100+488+0+1120+0+146),pixelHeight:716,pixelWidth:716,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,src:\"https://framerusercontent.com/images/cdBcZvBYseKxy05CjCSI6JZYMOw.png\",srcSet:\"https://framerusercontent.com/images/cdBcZvBYseKxy05CjCSI6JZYMOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/cdBcZvBYseKxy05CjCSI6JZYMOw.png 716w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:716,pixelWidth:716,src:\"https://framerusercontent.com/images/cdBcZvBYseKxy05CjCSI6JZYMOw.png\",srcSet:\"https://framerusercontent.com/images/cdBcZvBYseKxy05CjCSI6JZYMOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/cdBcZvBYseKxy05CjCSI6JZYMOw.png 716w\"},className:\"framer-jgms4m\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvn0al hidden-1rq73gh\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6lj8s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qh7g61\",\"data-framer-name\":\"Frame 2121453030\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yrvwy0\",\"data-framer-name\":\"sparkle-2, star, magic, ai\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vlwk75\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.71837 1.03449C8.6232 0.717251 8.33121 0.5 8 0.5C7.66879 0.5 7.3768 0.717251 7.28163 1.03449C6.74212 2.83284 6.04277 4.11532 5.07905 5.07905C4.11532 6.04277 2.83284 6.74212 1.03449 7.28163C0.717251 7.3768 0.5 7.66879 0.5 8C0.5 8.33121 0.717251 8.6232 1.03449 8.71837C2.83284 9.25788 4.11532 9.95723 5.07905 10.921C6.04277 11.8847 6.74212 13.1672 7.28163 14.9655C7.3768 15.2827 7.66879 15.5 8 15.5C8.33121 15.5 8.6232 15.2827 8.71837 14.9655C9.25788 13.1672 9.95723 11.8847 10.921 10.921C11.8847 9.95723 13.1672 9.25788 14.9655 8.71837C15.2827 8.6232 15.5 8.33121 15.5 8C15.5 7.66879 15.2827 7.3768 14.9655 7.28163C13.1672 6.74212 11.8847 6.04277 10.921 5.07905C9.95723 4.11532 9.25788 2.83284 8.71837 1.03449Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17w8y6j\",\"data-framer-name\":\"Frame 2121453018\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Bring clarity to Slack chaos\"})}),className:\"framer-1iqil8n\",\"data-framer-name\":\"Bring clarity to Slack chaos\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+788+100+488+0+0+0+146),pixelHeight:716,pixelWidth:716,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,src:\"https://framerusercontent.com/images/hYe4Gz3wauMsoXhG4i4qc6Cn1y4.png\",srcSet:\"https://framerusercontent.com/images/hYe4Gz3wauMsoXhG4i4qc6Cn1y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/hYe4Gz3wauMsoXhG4i4qc6Cn1y4.png 716w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:716,pixelWidth:716,src:\"https://framerusercontent.com/images/hYe4Gz3wauMsoXhG4i4qc6Cn1y4.png\",srcSet:\"https://framerusercontent.com/images/hYe4Gz3wauMsoXhG4i4qc6Cn1y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/hYe4Gz3wauMsoXhG4i4qc6Cn1y4.png 716w\"},className:\"framer-1m9cyoz\"})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7zzqp\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnipyx\",\"data-framer-name\":\"Slack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pa2apw\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fqc15c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsgv7q\",\"data-framer-name\":\"Pill\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:.5,className:\"framer-4sg6mv\",\"data-framer-name\":\"Border - Animate\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uknytp\",\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"AI Automation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"AI Automation\"})}),className:\"framer-1veiy6g\",\"data-framer-name\":\"Slack Integration\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Improve helpdesk operation with Ravenna\u2019s powerful AI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Improve helpdesk operation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"with Ravenna\u2019s powerful AI\"})]}),className:\"framer-188dl2i\",\"data-framer-name\":\"Improve helpdesk operation with Ravenna\u2019s powerful AI\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r5vvma\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nny2k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kn6vo6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nr1esq\",\"data-framer-name\":\"Frame 2121452974\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"AI Responses\"})}),className:\"framer-17xqpfe\",\"data-framer-name\":\"AI Responses\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Get solutions to issues faster with answers based on existing knowledge base content.\"})}),className:\"framer-mrzq99\",\"data-framer-name\":\"Get solutions to issues faster with answers based on existing knowledge base content.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3608+0+0+40+0+16+286+0+0+0+0+24+224),pixelHeight:432,pixelWidth:682,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px) - 48px)`,src:\"https://framerusercontent.com/images/Q8XJIh9OjgatfVZE06yZsX3TztE.png\",srcSet:\"https://framerusercontent.com/images/Q8XJIh9OjgatfVZE06yZsX3TztE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q8XJIh9OjgatfVZE06yZsX3TztE.png 682w\"}}},children:/*#__PURE__*/_jsxs(Image,{className:\"framer-zq1k07\",\"data-framer-name\":\"Frame 2121453031\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-v72b7v hidden-1ep3ugu\",\"data-border\":true,\"data-framer-name\":\"Rectangle 3467390\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3htbq hidden-1ep3ugu\",\"data-border\":true,\"data-framer-name\":\"Rectangle 3467389\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ra2nsn hidden-1ep3ugu\",\"data-framer-name\":\"Ellipse 776\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r00b8n hidden-1ep3ugu\",\"data-framer-name\":\"Frame 2121453032\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lay1t5\",\"data-border\":true,\"data-framer-name\":\"answer\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2242+0+0+100+0+0+670+0+0+0+24+224+-94.1694+0+0+12),pixelHeight:1024,pixelWidth:1024,sizes:\"24px\",src:\"https://framerusercontent.com/images/D8tbqZfZKr4PtiALOdO0MjVn1w.jpg\",srcSet:\"https://framerusercontent.com/images/D8tbqZfZKr4PtiALOdO0MjVn1w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D8tbqZfZKr4PtiALOdO0MjVn1w.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2272+0+0+100+0+0+670+0+0+0+24+224+-94.1694+0+0+12),pixelHeight:1024,pixelWidth:1024,sizes:\"24px\",src:\"https://framerusercontent.com/images/D8tbqZfZKr4PtiALOdO0MjVn1w.jpg\",srcSet:\"https://framerusercontent.com/images/D8tbqZfZKr4PtiALOdO0MjVn1w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D8tbqZfZKr4PtiALOdO0MjVn1w.jpg 1024w\"},className:\"framer-17gvuo4\",\"data-framer-name\":\"Frame 50\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14ekh8w\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5jza6\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\"},children:\"Jacob Keane\"})}),className:\"framer-1u2543s\",\"data-framer-name\":\"Jacob Keane\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gw6v1k\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(133, 133, 133)\"},children:\"APP\"})}),className:\"framer-z2hhev\",\"data-framer-name\":\"APP\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(133, 133, 133)\"},children:\"7:57 AM\"})}),className:\"framer-spl9tk\",\"data-framer-name\":\"7:57 AM\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"How do I reimburse the company for a personal charge on my company card?\"})}),className:\"framer-18z7puz\",\"data-framer-name\":\"How do I.. (question goes here)\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1njf09f\",\"data-framer-name\":\"answer\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fcgil2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b4v33r\",\"data-framer-name\":\"1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.485352\" width=\"24\" height=\"24\" rx=\"6.39535\" fill=\"white\"/>\\n<rect x=\"0.5\" y=\"0.985352\" width=\"23\" height=\"23\" rx=\"5.89535\" stroke=\"black\" stroke-opacity=\"0.1\"/>\\n<path d=\"M5.23975 6.09H9.55317C10.0784 6.09 10.5682 6.35491 10.8556 6.79447L18.7599 18.8807H14.4465C13.9213 18.8807 13.4315 18.6158 13.144 18.1762L5.23975 6.09Z\" fill=\"#17181C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.9524 6.09H12.729L14.8497 9.21521C15.2096 9.84671 15.889 10.2725 16.6679 10.2725C17.8228 10.2725 18.7591 9.33622 18.7591 8.18125C18.7591 7.69308 18.5919 7.24398 18.3115 6.88813C18.037 6.396 17.5173 6.09 16.9524 6.09Z\" fill=\"#17181C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wxxrue\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x2vh3z\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\"},children:\"Ravenna\"})}),className:\"framer-2nkfxo\",\"data-framer-name\":\"Ravenna\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q0cgg5\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(133, 133, 133)\"},children:\"APP\"})}),className:\"framer-1xqwx6s\",\"data-framer-name\":\"APP\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(133, 133, 133)\"},children:\"7:57 AM\"})}),className:\"framer-1tbsp8v\",\"data-framer-name\":\"7:57 AM\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Hi Jacob! You can flag a purchase as personal in our expense management tool. You can find instructions on how to do so here\"})}),className:\"framer-p06y7i\",\"data-framer-name\":\"(Answer goes here) Hi Jacob! Cursus scelerisque commodo placerat auctor amet viverra elementum commodo. Leo elit tellus at lacus elit odio tristique.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xzcevl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8627g9\",\"data-framer-name\":\"Frame 2121452974\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Create Knowledge\"})}),className:\"framer-1jv4yrj\",\"data-framer-name\":\"Create Knowledge\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Spend your time solving problems instead of writing help articles. Let Ravenna generate knowledge base content for you.\"})})},oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Spend your time solving problems instead of writing help articles. Let Ravenna generate knowledge base content for you.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Spend your time solving problems instead of writing help articles.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Let Ravenna generate knowledge base content for you.\"})]}),className:\"framer-wdmqy4\",\"data-framer-name\":\"Spend your time solving problems instead of writing help articles. Let Ravenna generate knowledge base content for you.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3608+0+0+40+0+16+286+0+0+0+501+24+224),pixelHeight:434,pixelWidth:668,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px) - 24px)`,src:\"https://framerusercontent.com/images/gqLQ6LnE5K6pg75yvVAZ7Gk5RPU.png\",srcSet:\"https://framerusercontent.com/images/gqLQ6LnE5K6pg75yvVAZ7Gk5RPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gqLQ6LnE5K6pg75yvVAZ7Gk5RPU.png 668w\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-1qg1vmr\",\"data-framer-name\":\"Frame 2121453031\",children:isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d5azts hidden-1ep3ugu\",\"data-framer-name\":\"Frame 2121453033\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-scat52\",\"data-border\":true,\"data-framer-name\":\"div.sc-exYOut\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s98ait\",\"data-framer-name\":\"Frame 2121452871\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ypfdrl\",\"data-framer-name\":\"Frame 2121452948\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:\"Knowledge\"})}),className:\"framer-6g9mq4\",\"data-framer-name\":\"Knowledge\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bwqgkj\",\"data-framer-name\":\"chevron-bottom\",style:{rotate:-90},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fx0yda\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:7,style:{rotate:90},svg:'<svg width=\"7\" height=\"11\" viewBox=\"-1 -1 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 0.485352L4.14645 4.13179C4.34171 4.32705 4.34171 4.64363 4.14645 4.8389L0.5 8.48535\" stroke=\"#737373\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"KB-3023\"})}),className:\"framer-hsxwq\",\"data-framer-name\":\"KB-3023\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131tqzj\",\"data-framer-name\":\"Frame 2121453034\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-luu8wb\",\"data-framer-name\":\"Frame 2121452909\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aozfzr\",\"data-framer-name\":\"Frame 2121452971\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1398mt2\",\"data-framer-name\":\"Component 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pyw78y\",\"data-framer-name\":\"Component 2\",fill:\"black\",intrinsicHeight:15,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.125 7.485c0 .443-.408.754-.847.697l-.37-.049c-.315-.04-.533-.33-.533-.648 0-.317.218-.607.533-.648l.37-.048c.44-.057.847.253.847.696ZM11.92 5.448c.409-.17.606-.645.384-1.028-.222-.383-.73-.445-1.08-.175l-.298.23c-.25.192-.295.548-.136.822.158.274.49.416.783.295l.347-.144ZM10.065 2.18c.384.222.445.73.175 1.08l-.229.298c-.192.251-.55.295-.823.137-.273-.159-.416-.491-.294-.783l.143-.347c.17-.41.645-.607 1.028-.385ZM7 1.361c.443 0 .754.407.696.847l-.048.369c-.041.315-.33.533-.648.533s-.607-.218-.648-.533l-.048-.37c-.058-.439.253-.847.696-.847Zm-3.065.82c.383-.222.858-.024 1.028.385l.143.347c.122.292-.02.624-.294.783-.274.158-.63.114-.823-.137l-.23-.297c-.27-.352-.208-.859.176-1.08ZM1.696 4.42c.222-.383.73-.445 1.08-.175l.298.229c.25.193.295.55.136.823-.158.274-.49.416-.783.295l-.347-.144c-.409-.17-.606-.645-.384-1.028Zm.026 2.37c-.44-.058-.847.252-.847.695 0 .443.408.754.847.697l.37-.049c.315-.04.533-.33.533-.648 0-.317-.218-.607-.533-.648l-.37-.048Zm-.026 3.76c-.222-.383-.025-.858.384-1.027l.347-.144c.293-.121.625.021.783.295.159.273.115.63-.136.823l-.298.229c-.35.27-.858.208-1.08-.175Zm2.239 2.24c-.384-.223-.445-.73-.175-1.08l.229-.299c.192-.25.55-.294.823-.136.273.158.416.49.294.783l-.143.347c-.17.409-.645.606-1.028.384ZM7 13.61c-.443 0-.754-.408-.696-.847l.048-.37c.041-.314.33-.533.648-.533s.607.219.648.534l.048.37c.058.438-.253.846-.696.846Zm3.065-.82c-.383.221-.858.024-1.028-.385l-.143-.347c-.122-.292.02-.625.294-.783.274-.159.63-.114.823.136l.23.298c.269.351.207.858-.176 1.08Zm2.239-2.24c-.222.384-.73.445-1.08.176l-.298-.23c-.25-.192-.295-.549-.136-.822.158-.274.49-.416.783-.295l.346.144c.41.17.607.645.385 1.028Z\" fill=\"#737373\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:\"Draft\"})}),className:\"framer-4gyi15\",\"data-framer-name\":\"Draft\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(153, 163, 178)\"},children:\"\\xb7\"})}),className:\"framer-4k85eg\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-104z035\",\"data-framer-name\":\"Frame 2121452970\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(115, 115, 115)\",\"--framer-text-decoration\":\"underline\"},children:\"100 linked tickets\"})}),className:\"framer-1gfw2i0\",\"data-framer-name\":\"100 linked tickets\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l86ol\",\"data-framer-name\":\"Frame 2121453035\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Company card reimbursement for personal charge\"})}),className:\"framer-cxdt5j\",\"data-framer-name\":\"Company card reimbursement for personal charge\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Accidentally using your company card for a personal expense happens occasionally. This guide will outline the process for reimbursing t...\"})}),className:\"framer-1amj6d5\",\"data-framer-name\":\"Accidentally using your company card for a personal expense happens occasionally. This guide will outline the process for reimbursing t...\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1df2icd\",\"data-framer-name\":\"Rectangle 3467392\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7clah\",\"data-framer-name\":\"Rectangle 3467393\"})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.3,className:\"framer-11358wn\",\"data-framer-name\":\"Rectangle 3467392\"})]})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nnzenq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3nyfz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3608+0+0+40+0+16+286+0+1002+0+0+24+81),pixelHeight:270,pixelWidth:340,src:\"https://framerusercontent.com/images/8M7OEjaGYPHtVP9nPLXYeIXVi5U.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kupc9g\",children:isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ko7yyc hidden-1ep3ugu\",\"data-framer-name\":\"mask\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7he2kp-container\",\"data-framer-name\":\"bottom\",isAuthoredByUser:true,isModuleExternal:true,name:\"bottom\",nodeId:\"K34MHc1WQ\",rendersWithMotion:true,scopeId:\"HE1QGHJti\",style:{rotate:180},children:/*#__PURE__*/_jsx(SVGPathShimmer,{direction:\"default\",height:\"100%\",id:\"K34MHc1WQ\",layer:[],layoutId:\"K34MHc1WQ\",length:18,loopDelay:.2,loopMode:\"loop\",mode:\"svg\",name:\"bottom\",replay:true,shimmerColor:\"rgba(54, 149, 214, 0.6)\",style:{height:\"100%\",width:\"100%\"},svgImage:addImageAlt({pixelHeight:2,pixelWidth:96,src:\"https://framerusercontent.com/images/BhvzcynTd6cQaKWWcmuyDfwhv4.svg\"},\"\"),svgType:\"image\",transition:{bounce:.2,delay:.2,duration:2,type:\"spring\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jn7869-container\",\"data-framer-name\":\"top\",isAuthoredByUser:true,isModuleExternal:true,name:\"top\",nodeId:\"oSmeGdWIC\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{direction:\"default\",height:\"100%\",id:\"oSmeGdWIC\",layer:[],layoutId:\"oSmeGdWIC\",length:18,loopDelay:0,loopMode:\"loop\",mode:\"svg\",name:\"top\",replay:true,shimmerColor:\"rgb(54, 149, 214)\",style:{height:\"100%\",width:\"100%\"},svgImage:addImageAlt({pixelHeight:2,pixelWidth:96,src:\"https://framerusercontent.com/images/BhvzcynTd6cQaKWWcmuyDfwhv4.svg\"},\"\"),svgType:\"image\",transition:{bounce:.2,delay:0,duration:2,type:\"spring\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:420,intrinsicWidth:501,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2242+0+0+100+0+0+670+0+358+0+24+81+-2+255-182.1875),pixelHeight:252,pixelWidth:376,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UcYMHJdpE0O0JiEz5gndBdK2U.png\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:420,intrinsicWidth:501,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2272+0+0+100+0+0+670+0+358+0+24+0+-40+51.5),pixelHeight:252,pixelWidth:376,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UcYMHJdpE0O0JiEz5gndBdK2U.png\"},className:\"framer-1vv9hmo\",\"data-framer-name\":\"Image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5aapya\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qoa8yl\",\"data-border\":true,\"data-framer-name\":\"answer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zgaj9e\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Response\"})}),className:\"framer-1bprvp0\",\"data-framer-name\":\"Response\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"This ticket contains a request for help to reimburse a credit card expense that was put on a personal card. The ticket status has been updated to resolved and the requester has confirmed the ticket can be closed.\"})}),className:\"framer-pstpxc\",\"data-framer-name\":\"Hi {{name}}! You can flag a purchase as personal in our expense management tool. You can find instructions on how to do so here\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogly98\",\"data-framer-name\":\"Group 1073714037\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rgsva2\",\"data-framer-name\":\"Row 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s60gj4\",\"data-framer-name\":\"Frame 2121452814\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q9id49\",\"data-framer-name\":\"Frame 2121452993\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6fvjt\",\"data-framer-name\":\"Frame 2121452961\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vraj3o\",\"data-framer-name\":\"Component 7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tnsnne\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:5,svg:'<svg width=\"5\" height=\"16\" viewBox=\"0 0 5 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.25 0.170452H2C1.30964 0.170452 0.75 0.730096 0.75 1.42045V13.9205C0.75 14.6108 1.30964 15.1705 2 15.1705H3.25C3.94036 15.1705 4.5 14.6108 4.5 13.9205V1.42045C4.5 0.730096 3.94036 0.170452 3.25 0.170452Z\" fill=\"#E5E5E5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18o6m9f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"9\" viewBox=\"0 0 4 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.75 0.670452H1.5C0.809644 0.670452 0.25 1.2301 0.25 1.92045V6.92045C0.25 7.61081 0.809644 8.17045 1.5 8.17045H2.75C3.44036 8.17045 4 7.61081 4 6.92045V1.92045C4 1.2301 3.44036 0.670452 2.75 0.670452Z\" fill=\"#22C55E\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u4q7on\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:5,svg:'<svg width=\"5\" height=\"13\" viewBox=\"0 0 5 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3 0.920452H1.75C1.05964 0.920452 0.5 1.4801 0.5 2.17045V10.9205C0.5 11.6108 1.05964 12.1705 1.75 12.1705H3C3.69036 12.1705 4.25 11.6108 4.25 10.9205V2.17045C4.25 1.4801 3.69036 0.920452 3 0.920452Z\" fill=\"#E5E5E5\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18.35px\",\"--framer-text-color\":\"rgb(115, 115, 115)\"},children:\"VID-14\"})}),className:\"framer-cgpq2t\",\"data-framer-name\":\"VID-14\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oolbuu\",\"data-border\":true,\"data-framer-name\":\"bd c\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(22, 163, 74)\"},children:\"Feature\"})}),className:\"framer-1elwc5d\",\"data-framer-name\":\"Feature\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"22.92px\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Company Card Reimbursement\"})}),className:\"framer-6ja8ai\",\"data-framer-name\":\"Company Card Reimbursement\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iflvzn\",\"data-border\":true,\"data-framer-name\":\"Ellipse 774\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6j5j7v\",\"data-border\":true,\"data-framer-name\":\"Ellipse 774\"})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dg31xd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Summaries\"})}),className:\"framer-17x6qpa\",\"data-framer-name\":\"CoPilot\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Human-controlled, AI-enhanced responses give your team superpowers.\"})}),className:\"framer-gxpr4n\",\"data-framer-name\":\"Human-controlled, AI-enhanced responses give your team superpowers.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nonsr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwq3p6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Integrations\"})}),className:\"framer-1c8zk9f\",\"data-framer-name\":\"Integrations\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Integrates with knowledge from your existing stack to get you up and running even faster.\"})}),className:\"framer-16dq6wk\",\"data-framer-name\":\"Integrates with knowledge from your existing stack to get you up and running even faster.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3608+0+0+40+0+16+286+0+1002+0+363+24+81),pixelHeight:492,pixelWidth:1010,positionX:\"left\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px) - 24px)`,src:\"https://framerusercontent.com/images/0ZUGB9rf57uVUxSHl6OYfV4MZyY.png\",srcSet:\"https://framerusercontent.com/images/0ZUGB9rf57uVUxSHl6OYfV4MZyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/0ZUGB9rf57uVUxSHl6OYfV4MZyY.png 1010w\"}}},children:/*#__PURE__*/_jsxs(Image,{className:\"framer-1l8om81\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jrhqkw hidden-1ep3ugu\",\"data-framer-name\":\"Ellipse 776\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqpx5t hidden-1ep3ugu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gz6tqf\",\"data-border\":true,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f7nq8\",\"data-framer-name\":\"checkbox\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15u6zbr\",\"data-border\":true,\"data-framer-name\":\"checkbox\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dvn0x5\",\"data-framer-name\":\"Frame 2121452955\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Application\"})}),className:\"framer-1yefzms\",\"data-framer-name\":\"Application\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tf0ezl\",\"data-framer-name\":\"chevron-grabber-vertical\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-m3wr3z\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"11\" viewBox=\"-1 -1 8 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.666748 2.73535L2.69072 0.711377C2.86158 0.540523 3.13859 0.540523 3.30944 0.711378L5.33341 2.73535M5.33341 6.23535L3.30944 8.25933C3.13859 8.43018 2.86158 8.43018 2.69072 8.25933L0.666748 6.23535\" stroke=\"#697586\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dm255q\",\"data-framer-name\":\"Frame 2121452956\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Name\"})}),className:\"framer-73kmsp\",\"data-framer-name\":\"Name\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-djo4u8\",\"data-framer-name\":\"chevron-grabber-vertical\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e5n7uf\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"11\" viewBox=\"-1 -1 8 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.666748 2.73535L2.69072 0.711377C2.86158 0.540523 3.13859 0.540523 3.30944 0.711378L5.33341 2.73535M5.33341 6.23535L3.30944 8.25933C3.13859 8.43018 2.86158 8.43018 2.69072 8.25933L0.666748 6.23535\" stroke=\"#697586\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u68j7m\",\"data-framer-name\":\"Frame 2121452950\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mp98r2\",\"data-framer-name\":\"Frame 2121452957\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Documents\"})}),className:\"framer-1qe4nsg\",\"data-framer-name\":\"Documents\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8xpuw\",\"data-framer-name\":\"chevron-grabber-vertical\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ydcw9l\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"11\" viewBox=\"-1 -1 8 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.666748 2.73535L2.69072 0.711377C2.86158 0.540523 3.13859 0.540523 3.30944 0.711378L5.33341 2.73535M5.33341 6.23535L3.30944 8.25933C3.13859 8.43018 2.86158 8.43018 2.69072 8.25933L0.666748 6.23535\" stroke=\"#697586\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12xecy8\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ligkf4\",\"data-border\":true,\"data-framer-name\":\"Row 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8pnkec\",\"data-framer-name\":\"Frame 2121452813\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-myluvg\",\"data-framer-name\":\"checkbox\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mc73xh\",\"data-border\":true,\"data-framer-name\":\"checkbox\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0m7ol\",\"data-framer-name\":\"Frame 2121452814\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cabtm7\",\"data-framer-name\":\"Frame 2121452953\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pmgmqg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.7106 12.1736C9.65872 12.1291 8.03093 10.4452 8.07572 8.40822C8.11784 6.43141 9.72195 4.84163 11.7106 4.79979C12.5798 4.79979 13.42 5.11097 14.0759 5.67836C14.3419 5.90061 14.7396 5.86926 14.9635 5.60513C15.0609 5.49273 15.1136 5.34888 15.111 5.19984V1.73523C15.111 1.04492 14.5473 0.485352 13.852 0.485352H1.25903C0.563668 0.485352 0 1.04492 0 1.73523V15.2355C0 15.9258 0.563668 16.4854 1.25903 16.4854H13.852C14.5473 16.4854 15.111 15.9258 15.111 15.2355V11.7761C15.111 11.431 14.8318 11.1511 14.4842 11.1485C14.334 11.1485 14.1891 11.2008 14.0759 11.295C13.42 11.8598 12.5798 12.1709 11.7106 12.1709V12.1736Z\" fill=\"#EE5A29\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"Coda\"})}),className:\"framer-1jse08u\",\"data-framer-name\":\"Coda\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"GitLab People Ops\"})}),className:\"framer-zbpq7d\",\"data-framer-name\":\"GitLab People Ops\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"10\"})}),className:\"framer-1azwqi5\",\"data-framer-name\":\"10\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-udx9i5\",\"data-framer-name\":\"dots-horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9997 8.486H12.0063M7.99967 8.486H8.00634M3.99967 8.486H4.00634M8.66634 8.486C8.66634 8.85419 8.36786 9.15267 7.99967 9.15267C7.63148 9.15267 7.33301 8.85419 7.33301 8.486C7.33301 8.11781 7.63148 7.81934 7.99967 7.81934C8.36786 7.81934 8.66634 8.11781 8.66634 8.486ZM12.6663 8.486C12.6663 8.85419 12.3679 9.15267 11.9997 9.15267C11.6315 9.15267 11.333 8.85419 11.333 8.486C11.333 8.11781 11.6315 7.81934 11.9997 7.81934C12.3679 7.81934 12.6663 8.11781 12.6663 8.486ZM4.66634 8.486C4.66634 8.85419 4.36786 9.15267 3.99967 9.15267C3.63148 9.15267 3.33301 8.85419 3.33301 8.486C3.33301 8.11781 3.63148 7.81934 3.99967 7.81934C4.36786 7.81934 4.66634 8.11781 4.66634 8.486Z\" stroke=\"#8F8F8F\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11jatn2\",\"data-border\":true,\"data-framer-name\":\"Row 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17myp3f\",\"data-framer-name\":\"Frame 2121452813\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vyvevb\",\"data-framer-name\":\"checkbox\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11smi0f\",\"data-border\":true,\"data-framer-name\":\"checkbox\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10hn6y7\",\"data-framer-name\":\"Frame 2121452814\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6k9iah\",\"data-framer-name\":\"Frame 2121452953\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1p2knxt\",\"data-framer-name\":\"notion-logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.47504 3.81076C3.92294 4.17462 4.09096 4.14686 4.93198 4.09075L12.861 3.61466C13.0291 3.61466 12.8892 3.44689 12.8332 3.41901L11.5163 2.46705C11.264 2.27117 10.9278 2.04683 10.2836 2.10294L2.606 2.66292C2.32601 2.69069 2.27007 2.83068 2.38159 2.9429L3.47504 3.81076ZM3.95109 5.65858V14.0012C3.95109 14.4495 4.17514 14.6173 4.67944 14.5896L13.3933 14.0854C13.8979 14.0577 13.9541 13.7492 13.9541 13.385V5.09837C13.9541 4.73473 13.8142 4.53862 13.5053 4.56661L4.39921 5.09837C4.06317 5.1266 3.95109 5.2947 3.95109 5.65858ZM12.5534 6.1061C12.6093 6.35832 12.5534 6.61031 12.3007 6.63866L11.8809 6.7223V12.8813C11.5163 13.0773 11.1802 13.1893 10.9001 13.1893C10.4516 13.1893 10.3393 13.0492 10.0034 12.6295L7.25706 8.31812V12.4895L8.12608 12.6856C8.12608 12.6856 8.12608 13.1893 7.42496 13.1893L5.49209 13.3014C5.43594 13.1893 5.49209 12.9096 5.68814 12.8535L6.19254 12.7138V7.19841L5.49221 7.14229C5.43605 6.89007 5.57593 6.52643 5.96847 6.4982L8.04202 6.35843L10.9001 10.7259V6.86229L10.1714 6.77866C10.1155 6.47032 10.3393 6.24643 10.6195 6.21867L12.5534 6.1061ZM1.96137 1.90706L9.94732 1.31897C10.928 1.23486 11.1803 1.2912 11.7967 1.73895L14.3459 3.53066C14.7666 3.83876 14.9067 3.92264 14.9067 4.25852V14.0854C14.9067 14.7012 14.6824 15.0654 13.898 15.1211L4.62396 15.6812C4.03515 15.7093 3.75492 15.6253 3.44656 15.2331L1.56928 12.7975C1.2329 12.3492 1.09302 12.0137 1.09302 11.6213V2.88657C1.09302 2.38293 1.31742 1.96284 1.96137 1.90706Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"Notion\"})}),className:\"framer-8yv25n\",\"data-framer-name\":\"Notion\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"FinOps\"})}),className:\"framer-1oxe09e\",\"data-framer-name\":\"FinOps\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"5\"})}),className:\"framer-ani0zr\",\"data-framer-name\":\"5\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gyi8zd\",\"data-framer-name\":\"dots-horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9997 8.486H12.0063M7.99967 8.486H8.00634M3.99967 8.486H4.00634M8.66634 8.486C8.66634 8.85419 8.36786 9.15267 7.99967 9.15267C7.63148 9.15267 7.33301 8.85419 7.33301 8.486C7.33301 8.11781 7.63148 7.81934 7.99967 7.81934C8.36786 7.81934 8.66634 8.11781 8.66634 8.486ZM12.6663 8.486C12.6663 8.85419 12.3679 9.15267 11.9997 9.15267C11.6315 9.15267 11.333 8.85419 11.333 8.486C11.333 8.11781 11.6315 7.81934 11.9997 7.81934C12.3679 7.81934 12.6663 8.11781 12.6663 8.486ZM4.66634 8.486C4.66634 8.85419 4.36786 9.15267 3.99967 9.15267C3.63148 9.15267 3.33301 8.85419 3.33301 8.486C3.33301 8.11781 3.63148 7.81934 3.99967 7.81934C4.36786 7.81934 4.66634 8.11781 4.66634 8.486Z\" stroke=\"#8F8F8F\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w7ndhu\",\"data-border\":true,\"data-framer-name\":\"Row 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o9zrpd\",\"data-framer-name\":\"Frame 2121452813\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fjizop\",\"data-framer-name\":\"checkbox\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kli7ro\",\"data-border\":true,\"data-framer-name\":\"checkbox\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ayblmm\",\"data-framer-name\":\"Frame 2121452814\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-udkuwl\",\"data-framer-name\":\"Frame 2121452953\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2242+0+0+100+0+0+670+0+358+0+24+81+9+0+36+0+80+8+2+-40+40+2),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/iKSYC5SBAvxOVn6yfyIrLPQMZLQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2272+0+0+100+0+0+670+0+358+0+24+81+9+0+36+0+80+8+2+-40+40+2),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/iKSYC5SBAvxOVn6yfyIrLPQMZLQ.png\"},className:\"framer-1446itb\",\"data-framer-name\":\"306_Slack_logo-512 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"Slack\"})}),className:\"framer-2wr4wq\",\"data-framer-name\":\"Slack\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"Support\"})}),className:\"framer-q8jrnc\",\"data-framer-name\":\"Support\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"3\"})}),className:\"framer-1behms6\",\"data-framer-name\":\"3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rwirf2\",\"data-framer-name\":\"dots-horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9997 8.486H12.0063M7.99967 8.486H8.00634M3.99967 8.486H4.00634M8.66634 8.486C8.66634 8.85419 8.36786 9.15267 7.99967 9.15267C7.63148 9.15267 7.33301 8.85419 7.33301 8.486C7.33301 8.11781 7.63148 7.81934 7.99967 7.81934C8.36786 7.81934 8.66634 8.11781 8.66634 8.486ZM12.6663 8.486C12.6663 8.85419 12.3679 9.15267 11.9997 9.15267C11.6315 9.15267 11.333 8.85419 11.333 8.486C11.333 8.11781 11.6315 7.81934 11.9997 7.81934C12.3679 7.81934 12.6663 8.11781 12.6663 8.486ZM4.66634 8.486C4.66634 8.85419 4.36786 9.15267 3.99967 9.15267C3.63148 9.15267 3.33301 8.85419 3.33301 8.486C3.33301 8.11781 3.63148 7.81934 3.99967 7.81934C4.36786 7.81934 4.66634 8.11781 4.66634 8.486Z\" stroke=\"#8F8F8F\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mvn95t\",\"data-border\":true,\"data-framer-name\":\"Row 4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqnk3y\",\"data-framer-name\":\"Frame 2121452813\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tv1faz\",\"data-framer-name\":\"checkbox\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c3lden\",\"data-border\":true,\"data-framer-name\":\"checkbox\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hc7y3\",\"data-framer-name\":\"Frame 2121452814\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gb7cwk\",\"data-framer-name\":\"Frame 2121452953\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2242+0+0+100+0+0+670+0+358+0+24+81+9+0+36+0+120+8+2+-40+40+2),pixelHeight:784,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"16px\",src:\"https://framerusercontent.com/images/d3xtHQlPeRRLsd5msK6m7RC4fCo.png\",srcSet:\"https://framerusercontent.com/images/d3xtHQlPeRRLsd5msK6m7RC4fCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d3xtHQlPeRRLsd5msK6m7RC4fCo.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2272+0+0+100+0+0+670+0+358+0+24+81+9+0+36+0+120+8+2+-40+40+2),pixelHeight:784,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"16px\",src:\"https://framerusercontent.com/images/d3xtHQlPeRRLsd5msK6m7RC4fCo.png\",srcSet:\"https://framerusercontent.com/images/d3xtHQlPeRRLsd5msK6m7RC4fCo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d3xtHQlPeRRLsd5msK6m7RC4fCo.png 800w\"},className:\"framer-5vicev\",\"data-framer-name\":\"Symbol.png\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"GitHub\"})}),className:\"framer-2qoxaz\",\"data-framer-name\":\"GitHub\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"Dev\"})}),className:\"framer-1axfg1f\",\"data-framer-name\":\"Dev\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"3\"})}),className:\"framer-4mbdj5\",\"data-framer-name\":\"3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ir6ml8\",\"data-framer-name\":\"dots-horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.9997 8.486H12.0063M7.99967 8.486H8.00634M3.99967 8.486H4.00634M8.66634 8.486C8.66634 8.85419 8.36786 9.15267 7.99967 9.15267C7.63148 9.15267 7.33301 8.85419 7.33301 8.486C7.33301 8.11781 7.63148 7.81934 7.99967 7.81934C8.36786 7.81934 8.66634 8.11781 8.66634 8.486ZM12.6663 8.486C12.6663 8.85419 12.3679 9.15267 11.9997 9.15267C11.6315 9.15267 11.333 8.85419 11.333 8.486C11.333 8.11781 11.6315 7.81934 11.9997 7.81934C12.3679 7.81934 12.6663 8.11781 12.6663 8.486ZM4.66634 8.486C4.66634 8.85419 4.36786 9.15267 3.99967 9.15267C3.63148 9.15267 3.33301 8.85419 3.33301 8.486C3.33301 8.11781 3.63148 7.81934 3.99967 7.81934C4.36786 7.81934 4.66634 8.11781 4.66634 8.486Z\" stroke=\"#8F8F8F\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]})]})})]})]})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-108h4oh hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 226\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:930,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"930\" viewBox=\"-1 -1 4 930\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 927.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-t1fhyv hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 227\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:939,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"939\" viewBox=\"-1 -1 4 939\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 936.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-150otnv\",\"data-framer-name\":\"Reporting\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nxz9zh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9njk9s\",\"data-framer-name\":\"Frame 2121452903\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"Reporting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"Reporting\"})}),className:\"framer-96h8et\",\"data-framer-name\":\"Slack Integration\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 24, 22)\"},children:\"Powerful insights to elevate help desk performance.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 24, 22)\"},children:[\"Powerful insights to elevate \",/*#__PURE__*/_jsx(\"br\",{}),\"help desk performance.\"]})}),className:\"framer-1ip752t\",\"data-framer-name\":\"Meet your colleagues where they already work\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bzhbco\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bj6wsu\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{width:`max((min(${componentViewport?.width||\"100vw\"}, 770px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3809+100+392+0+0+0},oDFjJKDFf:{height:416,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,y:(componentViewport?.y||0)+0+5741+190+296+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"431px\",y:(componentViewport?.y||0)+0+3839+100+392+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j5nr0a-container\",nodeId:\"AS4Y20RGn\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"XudMTaLJv\"}},children:/*#__PURE__*/_jsx(CardsTickets,{height:\"100%\",id:\"AS4Y20RGn\",layoutId:\"AS4Y20RGn\",style:{width:\"100%\"},variant:\"jJKQe4Xj1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{width:`max((min(${componentViewport?.width||\"100vw\"}, 770px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3809+100+392+0+0+0},oDFjJKDFf:{height:416,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,y:(componentViewport?.y||0)+0+5741+190+296+0+0+0+440}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"431px\",y:(componentViewport?.y||0)+0+3839+100+392+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6r4ffj-container\",nodeId:\"V4vDOLEjb\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"sKzy9Mj1t\"}},children:/*#__PURE__*/_jsx(CardsSLAs,{height:\"100%\",id:\"V4vDOLEjb\",layoutId:\"V4vDOLEjb\",style:{height:\"100%\",width:\"100%\"},variant:\"C8HioLjEA\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n1x83s\",\"data-framer-name\":\"Row 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{width:`max((min(${componentViewport?.width||\"100vw\"}, 770px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3809+100+392+0+453+0},oDFjJKDFf:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,y:(componentViewport?.y||0)+0+5741+190+296+0+880+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"431px\",y:(componentViewport?.y||0)+0+3839+100+392+0+493+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g710tq-container\",nodeId:\"eMoL9zZOk\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"ViR4Y1kZw\"}},children:/*#__PURE__*/_jsx(CardsCSAT,{height:\"100%\",id:\"eMoL9zZOk\",layoutId:\"eMoL9zZOk\",style:{height:\"100%\",width:\"100%\"},variant:\"ofp9i4_SR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{width:`max((min(${componentViewport?.width||\"100vw\"}, 770px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3809+100+392+0+453+0},oDFjJKDFf:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 400px)`,y:(componentViewport?.y||0)+0+5741+190+296+0+880+0+437}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:413,width:\"431px\",y:(componentViewport?.y||0)+0+3839+100+392+0+493+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-386ck2-container\",nodeId:\"nS3VDBO6T\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"vxCfp4_Yv\"}},children:/*#__PURE__*/_jsx(CardsAITimeSavings,{height:\"100%\",id:\"nS3VDBO6T\",layoutId:\"nS3VDBO6T\",style:{height:\"100%\",width:\"100%\"},variant:\"AUJpv3e3w\",width:\"100%\"})})})})})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-121zkch hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 226\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:930,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"930\" viewBox=\"-1 -1 4 930\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 927.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1v2qyij hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 227\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:939,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"939\" viewBox=\"-1 -1 4 939\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 936.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10axsby\",\"data-framer-name\":\"Platform\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wohney\",\"data-framer-name\":\"Slack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8lrs28\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bs264d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f61jmj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0wq3z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"Platform\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(40, 48, 86)\"},children:\"Platform\"})}),className:\"framer-1628r9o\",\"data-framer-name\":\"Platform\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"A robust platform to help you deliver exceptional internal support\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"A robust platform to help you deliver exceptional internal support\"})}),className:\"framer-ezkwb0\",\"data-framer-name\":\"A robust platform to help you deliver exceptional internal support\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vp9dro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eytq86\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vqsy9j\",\"data-framer-name\":\"Frame 2121452988\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vntjf4\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d57zmm\",\"data-framer-name\":\"file-text, document\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5ul41f\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"19\" viewBox=\"-1 -1 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.00016 0.1521H2.8335C1.45278 0.1521 0.333496 1.27139 0.333496 2.6521V14.3188C0.333496 15.6995 1.45278 16.8188 2.8335 16.8188H11.1668C12.5475 16.8188 13.6668 15.6995 13.6668 14.3188V6.81877H9.50016C8.11945 6.81877 7.00016 5.69948 7.00016 4.31877V0.1521ZM3.66683 10.1521C3.66683 9.69186 4.03993 9.31877 4.50016 9.31877H7.00016C7.4604 9.31877 7.8335 9.69186 7.8335 10.1521C7.8335 10.6123 7.4604 10.9854 7.00016 10.9854H4.50016C4.03993 10.9854 3.66683 10.6123 3.66683 10.1521ZM4.50016 12.6521C4.03993 12.6521 3.66683 13.0252 3.66683 13.4854C3.66683 13.9457 4.03993 14.3188 4.50016 14.3188H9.91683C10.3771 14.3188 10.7502 13.9457 10.7502 13.4854C10.7502 13.0252 10.3771 12.6521 9.91683 12.6521H4.50016Z\" fill=\"#697586\"/>\\n<path d=\"M13.1787 5.1521L8.66683 0.640255V4.31877C8.66683 4.779 9.03993 5.1521 9.50016 5.1521H13.1787Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dla3yl\",\"data-framer-name\":\"Frame 2121453007\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"SLAs\"})}),className:\"framer-675qzl\",\"data-framer-name\":\"SLAs\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Get solutions to issues faster with answers based on existing knowledge base content.\"})}),className:\"framer-1i45ae1\",\"data-framer-name\":\"Get solutions to issues faster with answers based on existing knowledge base content.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sgeenq\",\"data-framer-name\":\"Frame 2121452995\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v3ew1m\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ijzhh9\",\"data-framer-name\":\"pull-request\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-stls0m\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.6726 0.396177C10.998 0.721614 10.998 1.24925 10.6726 1.57469L10.0118 2.23543H10.9167C12.2974 2.23543 13.4167 3.35472 13.4167 4.73543V11.1062C14.6215 11.4648 15.5 12.5808 15.5 13.9021C15.5 15.5129 14.1942 16.8188 12.5833 16.8188C10.9725 16.8188 9.66667 15.5129 9.66667 13.9021C9.66667 12.5808 10.5452 11.4648 11.75 11.1062V4.73543C11.75 4.2752 11.3769 3.9021 10.9167 3.9021H10.0118L10.6726 4.56284C10.998 4.88828 10.998 5.41592 10.6726 5.74136C10.3472 6.06679 9.81951 6.06679 9.49408 5.74136L7.41074 3.65802C7.08531 3.33259 7.08531 2.80495 7.41074 2.47951L9.49408 0.396177C9.81951 0.0707404 10.3472 0.0707404 10.6726 0.396177Z\" fill=\"#697586\"/>\\n<path d=\"M0.5 3.06877C0.5 1.45794 1.80584 0.1521 3.41667 0.1521C5.0275 0.1521 6.33333 1.45794 6.33333 3.06877C6.33333 4.39003 5.45479 5.50609 4.25 5.86465V11.1062C5.45479 11.4648 6.33333 12.5808 6.33333 13.9021C6.33333 15.5129 5.0275 16.8188 3.41667 16.8188C1.80584 16.8188 0.5 15.5129 0.5 13.9021C0.5 12.5808 1.37855 11.4648 2.58333 11.1062V5.86465C1.37855 5.50609 0.5 4.39003 0.5 3.06877Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zdacr\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Request Types\"})}),className:\"framer-1fxx0x4\",\"data-framer-name\":\"Request Types\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Create custom forms and statuses for common requests.\"})}),className:\"framer-1f8x3hz\",\"data-framer-name\":\"Create custom forms and statuses for common requests.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xyf51j\",\"data-framer-name\":\"Frame 2121452996\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gwx4jz\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wzv2cb\",\"data-framer-name\":\"square-placeholder-dashed\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17w6evr\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.5 3.48535C0.5 2.10464 1.61929 0.985352 3 0.985352C3.46024 0.985352 3.83333 1.35845 3.83333 1.81868C3.83333 2.27892 3.46024 2.65202 3 2.65202C2.53976 2.65202 2.16667 3.02511 2.16667 3.48535C2.16667 3.94559 1.79357 4.31868 1.33333 4.31868C0.873096 4.31868 0.5 3.94559 0.5 3.48535ZM5.91667 1.81868C5.91667 1.35845 6.28976 0.985352 6.75 0.985352H9.25C9.71024 0.985352 10.0833 1.35845 10.0833 1.81868C10.0833 2.27892 9.71024 2.65202 9.25 2.65202H6.75C6.28976 2.65202 5.91667 2.27892 5.91667 1.81868ZM12.1667 1.81868C12.1667 1.35845 12.5398 0.985352 13 0.985352C14.3807 0.985352 15.5 2.10464 15.5 3.48535C15.5 3.94559 15.1269 4.31868 14.6667 4.31868C14.2064 4.31868 13.8333 3.94559 13.8333 3.48535C13.8333 3.02511 13.4602 2.65202 13 2.65202C12.5398 2.65202 12.1667 2.27892 12.1667 1.81868ZM1.33333 6.40202C1.79357 6.40202 2.16667 6.77511 2.16667 7.23535V9.73535C2.16667 10.1956 1.79357 10.5687 1.33333 10.5687C0.873096 10.5687 0.5 10.1956 0.5 9.73535V7.23535C0.5 6.77511 0.873096 6.40202 1.33333 6.40202ZM14.6667 6.40202C15.1269 6.40202 15.5 6.77511 15.5 7.23535V9.73535C15.5 10.1956 15.1269 10.5687 14.6667 10.5687C14.2064 10.5687 13.8333 10.1956 13.8333 9.73535V7.23535C13.8333 6.77511 14.2064 6.40202 14.6667 6.40202ZM1.33333 12.652C1.79357 12.652 2.16667 13.0251 2.16667 13.4854C2.16667 13.9456 2.53976 14.3187 3 14.3187C3.46024 14.3187 3.83333 14.6918 3.83333 15.152C3.83333 15.6123 3.46024 15.9854 3 15.9854C1.61929 15.9854 0.5 14.8661 0.5 13.4854C0.5 13.0251 0.873096 12.652 1.33333 12.652ZM14.6667 12.652C15.1269 12.652 15.5 13.0251 15.5 13.4854C15.5 14.8661 14.3807 15.9854 13 15.9854C12.5398 15.9854 12.1667 15.6123 12.1667 15.152C12.1667 14.6918 12.5398 14.3187 13 14.3187C13.4602 14.3187 13.8333 13.9456 13.8333 13.4854C13.8333 13.0251 14.2064 12.652 14.6667 12.652ZM5.91667 15.152C5.91667 14.6918 6.28976 14.3187 6.75 14.3187H9.25C9.71024 14.3187 10.0833 14.6918 10.0833 15.152C10.0833 15.6123 9.71024 15.9854 9.25 15.9854H6.75C6.28976 15.9854 5.91667 15.6123 5.91667 15.152Z\" fill=\"#697586\"/>\\n<path d=\"M3.83333 5.15202C3.83333 4.69178 4.20643 4.31868 4.66667 4.31868H11.3333C11.7936 4.31868 12.1667 4.69178 12.1667 5.15202V11.8187C12.1667 12.2789 11.7936 12.652 11.3333 12.652H4.66667C4.20643 12.652 3.83333 12.2789 3.83333 11.8187V5.15202Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lawdug\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Custom Views\"})}),className:\"framer-71zxf4\",\"data-framer-name\":\"Custom Views\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Create personalized dashboard layouts and filtered views of tickets based on specific criteria.\"})}),className:\"framer-4a1pg8\",\"data-framer-name\":\"Create personalized dashboard layouts and filtered views of tickets based on specific criteria.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1848aor\",\"data-framer-name\":\"Frame 2121452997\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15tbkoe\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dvz8dv\",\"data-framer-name\":\"hashtag, #\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x8ouhd\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.60336 0.991874C6.06005 1.04896 6.38398 1.46545 6.3269 1.92213L6.02732 4.31877H11.0143L11.3398 1.71541C11.3969 1.25873 11.8133 0.934789 12.27 0.991874C12.7267 1.04896 13.0507 1.46545 12.9936 1.92213L12.694 4.31877H14.6667C15.1269 4.31877 15.5 4.69187 15.5 5.15211C15.5 5.61234 15.1269 5.98544 14.6667 5.98544H12.4857L11.8607 10.9854H14.6667C15.1269 10.9854 15.5 11.3585 15.5 11.8188C15.5 12.279 15.1269 12.6521 14.6667 12.6521H11.6523L11.3269 15.2555C11.2698 15.7122 10.8533 16.0361 10.3966 15.979C9.93995 15.9219 9.61602 15.5054 9.6731 15.0487L9.97268 12.6521H4.98565L4.66023 15.2555C4.60315 15.7122 4.18665 16.0361 3.72997 15.979C3.27329 15.9219 2.94935 15.5054 3.00644 15.0487L3.30601 12.6521H1.33333C0.873096 12.6521 0.5 12.279 0.5 11.8188C0.5 11.3585 0.873096 10.9854 1.33333 10.9854H3.51435L4.13935 5.98544H1.33333C0.873096 5.98544 0.5 5.61234 0.5 5.15211C0.5 4.69187 0.873096 4.31877 1.33333 4.31877H4.34768L4.6731 1.71541C4.73019 1.25873 5.14668 0.934789 5.60336 0.991874ZM5.81899 5.98544L5.19399 10.9854H10.181L10.806 5.98544H5.81899Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fkkqjf\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Tags\"})}),className:\"framer-z4trt2\",\"data-framer-name\":\"Tags\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Label and organize tickets with searchable keywords for easy categorization and filtering.\"})}),className:\"framer-10kj00f\",\"data-framer-name\":\"Label and organize tickets with searchable keywords for easy categorization and filtering.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-losqfs\",\"data-framer-name\":\"Frame 2121452998\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1firn1p\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ksep0s\",\"data-framer-name\":\"email-1, envelope\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sibp6p\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"17\" viewBox=\"-1 -1 20 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.766877 2.65906C0.727758 2.82337 0.705836 2.9895 0.692225 3.15608C0.666723 3.46821 0.666735 3.84716 0.666749 4.28642V10.6841C0.666735 11.1233 0.666723 11.5023 0.692225 11.8145C0.719143 12.1439 0.778573 12.4716 0.939235 12.7869C1.17892 13.2573 1.56137 13.6398 2.03177 13.8795C2.34709 14.0401 2.67477 14.0995 3.00423 14.1265C3.31634 14.152 3.69526 14.1519 4.13449 14.1519H13.8655C14.3047 14.1519 14.6838 14.152 14.9959 14.1265C15.3254 14.0995 15.6531 14.0401 15.9684 13.8795C16.4388 13.6398 16.8212 13.2573 17.0609 12.7869C17.2216 12.4716 17.281 12.1439 17.3079 11.8145C17.3334 11.5023 17.3334 11.1234 17.3334 10.6841V4.28647C17.3334 3.84718 17.3334 3.46822 17.3079 3.15608C17.2943 2.9895 17.2724 2.82337 17.2333 2.65906L10.5832 8.10006C9.66226 8.85354 8.3379 8.85354 7.41699 8.10006L0.766877 2.65906Z\" fill=\"#697586\"/>\\n<path d=\"M16.2839 1.2824C16.184 1.21126 16.0786 1.14726 15.9684 1.09109C15.6531 0.930428 15.3254 0.870998 14.9959 0.844081C14.6838 0.818579 14.3048 0.81859 13.8656 0.818604H4.13463C3.69536 0.81859 3.31636 0.818579 3.00423 0.844081C2.67477 0.870998 2.34709 0.930428 2.03177 1.09109C1.92154 1.14726 1.81614 1.21126 1.71627 1.2824L8.47238 6.81013C8.77936 7.06129 9.22081 7.06129 9.52778 6.81013L16.2839 1.2824Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6fp0e\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Email Inbox\"})}),className:\"framer-eddafn\",\"data-framer-name\":\"Email Inbox\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Turn incoming emails into trackable tickets.\"})}),className:\"framer-ibm9g7\",\"data-framer-name\":\"Turn incoming emails into trackable tickets.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kl19pa\",\"data-framer-name\":\"Frame 2121452999\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-28k51w\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m7ef38\",\"data-framer-name\":\"people-add, user-add\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rev65i\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"19\" viewBox=\"-1 -1 18 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7 0.1521C4.92893 0.1521 3.25 1.83103 3.25 3.9021C3.25 5.97317 4.92893 7.6521 7 7.6521C9.07107 7.6521 10.75 5.97317 10.75 3.9021C10.75 1.83103 9.07107 0.1521 7 0.1521Z\" fill=\"#697586\"/>\\n<path d=\"M2.83584 9.79465C1.71337 10.6074 0.862795 11.7499 0.37008 13.0821C0.362893 13.1015 0.356012 13.121 0.349435 13.1404C0.241262 13.4401 0.151117 13.7491 0.0799421 14.0658C-0.161538 15.1403 0.719425 15.9854 1.66538 15.9854H9.5C8.11929 15.9854 7 14.8661 7 13.4854C7 12.1047 8.11929 10.9854 9.5 10.9854C9.5 10.2987 9.77689 9.67664 10.2251 9.22481C9.27988 8.75194 8.19315 8.48543 7.00004 8.48543C6.86137 8.48543 6.72415 8.48903 6.58841 8.49614\" fill=\"#697586\"/>\\n<path d=\"M12 10.1521C12.4602 10.1521 12.8333 10.5252 12.8333 10.9854V12.6521H14.5C14.9602 12.6521 15.3333 13.0252 15.3333 13.4854C15.3333 13.9457 14.9602 14.3188 14.5 14.3188H12.8333V15.9854C12.8333 16.4457 12.4602 16.8188 12 16.8188C11.5398 16.8188 11.1667 16.4457 11.1667 15.9854V14.3188H9.5C9.03976 14.3188 8.66667 13.9457 8.66667 13.4854C8.66667 13.0252 9.03976 12.6521 9.5 12.6521H11.1667V10.9854C11.1667 10.5252 11.5398 10.1521 12 10.1521Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8q88h\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Followers\"})}),className:\"framer-1sifdlw\",\"data-framer-name\":\"Followers\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Keep team members by allowing them to subscribe to specific tickets for updates.\"})}),className:\"framer-afchx7\",\"data-framer-name\":\"Keep team members by allowing them to subscribe to specific tickets for updates.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8i51h5\",\"data-framer-name\":\"Frame 2121453000\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jin16i\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lp22ms\",\"data-framer-name\":\"bubble-wide-notification, badge, message, chat\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p6gl2p\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"19\" viewBox=\"-1 -1 21 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8335 0.1521C12.9925 0.1521 11.5002 1.64448 11.5002 3.48543C11.5002 5.32638 12.9925 6.81877 14.8335 6.81877C16.6744 6.81877 18.1668 5.32638 18.1668 3.48543C18.1668 1.64448 16.6744 0.1521 14.8335 0.1521ZM13.1668 3.48543C13.1668 2.56496 13.913 1.81877 14.8335 1.81877C15.754 1.81877 16.5002 2.56496 16.5002 3.48543C16.5002 4.40591 15.754 5.1521 14.8335 5.1521C13.913 5.1521 13.1668 4.40591 13.1668 3.48543Z\" fill=\"#697586\"/>\\n<path d=\"M9.8335 3.48543C9.8335 2.57471 10.077 1.72086 10.5024 0.985433L3.16845 0.985444C1.78774 0.985446 0.668457 2.10474 0.668457 3.48544V11.8486C0.668457 13.2293 1.78775 14.3486 3.16846 14.3486H6.20981L8.46289 16.2372C8.77119 16.4956 9.22009 16.4969 9.52988 16.2403L11.8132 14.3486L14.8351 14.3486C16.2158 14.3485 17.3351 13.2293 17.3351 11.8486V7.81557C16.5993 8.24158 15.7449 8.48543 14.8335 8.48543C12.0721 8.48543 9.8335 6.24685 9.8335 3.48543Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xxj7zz\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Notifications\"})}),className:\"framer-1d7jksv\",\"data-framer-name\":\"Notifications\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Keep teams informed with customizable alerts for ticket updates, assignments, and due dates.\"})}),className:\"framer-11uqdwx\",\"data-framer-name\":\"Keep teams informed with customizable alerts for ticket updates, assignments, and due dates.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g3vll\",\"data-framer-name\":\"Frame 2121453001\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dw7qn6\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spmzgr\",\"data-framer-name\":\"settings-gear-2, preferences\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v87xf3\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"17\" viewBox=\"0 0 18 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.15443 1.13986C7.56583 0.522762 8.25842 0.1521 9.00008 0.1521C9.74174 0.1521 10.4343 0.522762 10.8457 1.13986L11.3092 1.83509C11.4968 2.11646 11.839 2.25234 12.1685 2.1763L12.7402 2.04435C13.4969 1.86974 14.2901 2.09724 14.8392 2.64632C15.3883 3.19541 15.6158 3.98863 15.4412 4.74527L15.3092 5.31703C15.2332 5.64654 15.3691 5.98872 15.6504 6.1763L16.3457 6.63978C16.9628 7.05118 17.3334 7.74377 17.3334 8.48543C17.3334 9.22709 16.9628 9.91968 16.3457 10.3311L15.6504 10.7946C15.3691 10.9822 15.2332 11.3243 15.3092 11.6538L15.4412 12.2256C15.6158 12.9822 15.3883 13.7755 14.8392 14.3245C14.2901 14.8736 13.4969 15.1011 12.7402 14.9265L12.1685 14.7946C11.839 14.7185 11.4968 14.8544 11.3092 15.1358L10.8457 15.831C10.4343 16.4481 9.74174 16.8188 9.00008 16.8188C8.25842 16.8188 7.56583 16.4481 7.15443 15.831L6.69095 15.1358C6.50336 14.8544 6.16119 14.7185 5.83167 14.7946L5.25991 14.9265C4.50328 15.1011 3.71006 14.8736 3.16097 14.3245C2.61188 13.7755 2.38439 12.9822 2.559 12.2256L2.69095 11.6538C2.76699 11.3243 2.63111 10.9822 2.34973 10.7946L1.65451 10.3311C1.03741 9.91968 0.666748 9.22709 0.666748 8.48543C0.666748 7.74377 1.03741 7.05118 1.65451 6.63978L2.34973 6.1763C2.63111 5.98872 2.76699 5.64654 2.69095 5.31703L2.559 4.74527C2.38439 3.98863 2.61188 3.19541 3.16097 2.64632C3.71006 2.09724 4.50328 1.86974 5.25992 2.04435L5.83167 2.1763C6.16119 2.25234 6.50337 2.11646 6.69095 1.83508L7.15443 1.13986ZM6.08342 8.48543C6.08342 6.8746 7.38925 5.56877 9.00008 5.56877C10.6109 5.56877 11.9167 6.8746 11.9167 8.48543C11.9167 10.0963 10.6109 11.4021 9.00008 11.4021C7.38925 11.4021 6.08342 10.0963 6.08342 8.48543Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lpek2j\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"API\"})}),className:\"framer-16q2idv\",\"data-framer-name\":\"API\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Connect and extend platform functionality with the Ravenna REST API.\"})}),className:\"framer-o0z702\",\"data-framer-name\":\"Connect and extend platform functionality with the Ravenna REST API.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dh72r0\",\"data-framer-name\":\"Frame 2121453003\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hhtgfu\",\"data-framer-name\":\"Frame 2121452973\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ahghmc\",\"data-framer-name\":\"circle-check, check radio, circle, checkbox, check, checkmark, confirm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9vd5eb\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"19\" viewBox=\"-1 -1 20 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.00008 0.1521C4.39771 0.1521 0.666748 3.88306 0.666748 8.48543C0.666748 13.0878 4.39771 16.8188 9.00008 16.8188C13.6025 16.8188 17.3334 13.0878 17.3334 8.48543C17.3334 3.88306 13.6025 0.1521 9.00008 0.1521ZM12.145 6.92982C12.4365 6.57362 12.384 6.0486 12.0278 5.75716C11.6716 5.46572 11.1466 5.51822 10.8551 5.87443L7.68822 9.74508L6.67267 8.72954C6.34723 8.4041 5.8196 8.4041 5.49416 8.72954C5.16872 9.05497 5.16872 9.58261 5.49416 9.90805L7.16083 11.5747C7.32731 11.7412 7.55644 11.8295 7.79159 11.8178C8.02674 11.806 8.24596 11.6954 8.39505 11.5132L12.145 6.92982Z\" fill=\"#697586\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ps1wx\",\"data-framer-name\":\"Frame 2121453008\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Add approvers to tickets\"})}),className:\"framer-v5pfh8\",\"data-framer-name\":\"Approvals\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Approve tickets directly from Slack.\"})}),className:\"framer-1rkybtp\",\"data-framer-name\":\"Description goes here\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5,intrinsicWidth:3640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5337+0+0+100+0+0+0+0+378+120),pixelHeight:2,pixelWidth:910,src:\"https://framerusercontent.com/images/NAx5mn4Cj4u65lkFPkO86ogNU.png\",srcSet:\"https://framerusercontent.com/images/NAx5mn4Cj4u65lkFPkO86ogNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NAx5mn4Cj4u65lkFPkO86ogNU.png 910w\"},className:\"framer-ps72hv hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Horizontal\",transformTemplate:transformTemplate2}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5,intrinsicWidth:3640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5337+0+0+100+0+0+0+0+378+712-135),pixelHeight:2,pixelWidth:910,src:\"https://framerusercontent.com/images/NAx5mn4Cj4u65lkFPkO86ogNU.png\",srcSet:\"https://framerusercontent.com/images/NAx5mn4Cj4u65lkFPkO86ogNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NAx5mn4Cj4u65lkFPkO86ogNU.png 910w\"},className:\"framer-ur7mpb hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Horizontal\"}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:398,intrinsicWidth:2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5337+0+0+100+0+0+0+0+378+-1),pixelHeight:398,pixelWidth:2,src:\"https://framerusercontent.com/images/Zahh5M3u7e0RHIj8K4N056dgIg.png\"},className:\"framer-14vbqn0 hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vertical\"}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:398,intrinsicWidth:2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5337+0+0+100+0+0+0+0+378+-1),pixelHeight:398,pixelWidth:2,src:\"https://framerusercontent.com/images/Zahh5M3u7e0RHIj8K4N056dgIg.png\"},className:\"framer-9ac6ed hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vertical\"})]})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d5yp3h hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 226\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:930,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"930\" viewBox=\"-1 -1 4 930\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 927.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-chzd6u hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 227\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:939,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"939\" viewBox=\"-1 -1 4 939\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 936.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pue3if\",\"data-framer-name\":\"Manifesto\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n1skxs\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-839di0\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-126h67g\",\"data-framer-name\":\"Frame 2121453051\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Ravenna Manifesto\"})}),className:\"framer-1wgv11t\",\"data-framer-name\":\"Manifesto title goes here\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mtufqg\",\"data-framer-name\":\"Frame 2121453055\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"The way we work has fundamentally changed.\"})}),className:\"framer-3xbdma\",\"data-framer-name\":\"Magna eget dui varius fermentum scelerisque nibh. Tristique ipsum maecenas et sit. Cursus odio id at diam tincidunt. Eget vitae in aliquam sem erat enim ipsum vitae feugiat. Facilisis neque ultrices eget leo habitant amet. Lectus posuere vestibulum mattis ornare commodo. In nulla nam sollicitudin aliquet congue aliquet tortor.ida risus sit aliquam et. Quis hac iaculis praesent vitae.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"Today, employees connect and collaborate in real time through messaging tools like Slack and Teams. They expect instant answers and seamless support in the very channels where work gets done. While our ways of working have evolved, enterprise service management has not. It remains fragmented and clunky\u2014tethered to outdated portals, slow processes, and tickets that seem to vanish. IT, HR, finance, and operations teams are drowning in repetitive tasks, struggling to keep up with the demands of a workforce that wants everything to be as simple as sending a quick message.\"})}),className:\"framer-y4wzw\",\"data-framer-name\":\"Magna eget dui varius fermentum scelerisque nibh. Tristique ipsum maecenas et sit. Cursus odio id at diam tincidunt. Eget vitae in aliquam sem erat enim ipsum vitae feugiat. Facilisis neque ultrices eget leo habitant amet. Lectus posuere vestibulum mattis ornare commodo. In nulla nam sollicitudin aliquet congue aliquet tortor.ida risus sit aliquam et. Quis hac iaculis praesent vitae.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"This gap isn\u2019t just inconvenient; it\u2019s wasteful and frustrating. Employees lose valuable time searching for information, while operations teams battle tedious workflows and mounting backlogs. Burnout ensues. AI is supposed to help, but bolting automation onto legacy systems just adds complexity\u2014keeping everyone stuck in the past.\"})}),className:\"framer-bvqplp\",\"data-framer-name\":\"Magna eget dui varius fermentum scelerisque nibh. Tristique ipsum maecenas et sit. Cursus odio id at diam tincidunt. Eget vitae in aliquam sem erat enim ipsum vitae feugiat. Facilisis neque ultrices eget leo habitant amet. Lectus posuere vestibulum mattis ornare commodo. In nulla nam sollicitudin aliquet congue aliquet tortor.ida risus sit aliquam et. Quis hac iaculis praesent vitae.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"At Ravenna, we believe there\u2019s a better way. If modern internal service and support were being invented from scratch today, it wouldn\u2019t look anything like the bloated ticketing systems of old. It would live where people already collaborate, harness AI to automate repetitive requests, and free teams to focus on higher-level problem-solving. That\u2019s exactly what we\u2019re building: a modern help desk that meets employees on Slack and Teams, learns from every interaction, and empowers IT, HR, finance, or any other function to deliver instant, effortless experiences.\"})}),className:\"framer-rd1hgm\",\"data-framer-name\":\"Feugiat eu rutrum tincidunt nullam amet bibendum. Iaculis ac enim egestas dictum neque. In est in commodo risus eget. Vehicula sed ut eget nunc pellentesque. Lobortis ac vitae quis eget felis montes at tempus. Eu ut leo morbi sed adipiscing diam. Consectetur hac tortor odio sed.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"It\u2019s time to stop accepting inefficiency as the norm. AI can unlock a new era of enterprise service management\u2014one where support is effortless, intelligent, and built for the way we work today.\"})}),className:\"framer-1enduh3\",\"data-framer-name\":\"Et quis quam vitae aliquam lobortis diam varius. Elementum tincidunt facilisi eget feugiat tellus lobortis justo. Sit lobortis orci fermentum dolor luctus at amet lectus. Nisi nisl ut eget tellus nullam morbi enim semper rutrum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(53, 65, 82)\"},children:\"The future of enterprise service management is here. Welcome to Ravenna.\"})}),className:\"framer-1jb1ole\",\"data-framer-name\":\"Et quis quam vitae aliquam lobortis diam varius. Elementum tincidunt facilisi eget feugiat tellus lobortis justo. Sit lobortis orci fermentum dolor luctus at amet lectus. Nisi nisl ut eget tellus nullam morbi enim semper rutrum.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sltbtv\",\"data-framer-name\":\"Kevin & Taylor\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:226,svg:'<svg width=\"226\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.123 69.199c-.413 0-.62-.24-.62-.719 0-.784.348-2.536 1.045-5.258.87-3.374 2.297-7.891 4.278-13.552.479-1.415.718-2.155.718-2.22 0-.131-.098-.196-.293-.196-.632 0-2.352.827-5.16 2.482-3.614 2.177-5.944 3.44-6.989 3.788a6.164 6.164 0 0 1-1.959.326c-.37 0-.653-.043-.85-.13-.195-.066-.293-.207-.293-.425 0-.523.5-1.176 1.502-1.96.98-.783 2.253-1.567 3.821-2.35a25.559 25.559 0 0 1 4.768-1.83c1.48-.348 3.07-1.088 4.768-2.22l2.481-1.633 2.678-5.584a206.71 206.71 0 0 1 9.373-17.439c.98-1.61 2.22-3.592 3.722-5.943 3.57-5.66 5.737-8.948 6.499-9.862.327-.327.751-.49 1.274-.49.326 0 .544.044.653.13.109.088.163.262.163.523 0 .827-.424 2.166-1.274 4.017-.849 1.85-1.73 3.342-2.645 4.474-.283.348-.533.577-.75.686-.197.087-.425.13-.687.13l-.359-.032a.98.98 0 0 0-.522.163c-.262.13-.97 1.1-2.123 2.906-4.485 7.076-8.621 14.608-12.41 22.598-.544 1.133-.816 1.731-.816 1.797.13 0 1.48-.74 4.05-2.221 1.524-.893 3.635-2.047 6.335-3.462 6.727-3.527 11.223-5.747 13.487-6.662 1.371-.544 2.45-.816 3.233-.816.522 0 .784.152.784.457 0 .414-.458.697-1.372.85-1.306.304-6.117 2.612-14.434 6.922-4.267 2.221-7.99 4.311-11.168 6.27-1.372.85-2.156 1.426-2.352 1.731-.108.174-.272.61-.49 1.306 2.003-.174 3.342-.26 4.017-.26 3.527 0 7.12.456 10.777 1.37 1.088.284 2.547.74 4.376 1.372 4.506 1.611 7.173 2.7 8 3.266.153.13.23.228.23.294-.023.087-.12.185-.295.294l-.13.032c-.566 0-2.504-.598-5.813-1.796-2.896-1.066-5.258-1.85-7.087-2.351-3.352-.914-6.705-1.372-10.058-1.372-2.525 0-4.017.164-4.474.49-.217.174-.435.555-.653 1.143-1.088 2.591-2.242 5.911-3.461 9.96-1.241 4.072-2.134 7.511-2.678 10.32-.13.457-.403.686-.817.686ZM3.821 51.564l.424-.163c.566-.261 1.307-.664 2.22-1.208.545-.327.817-.512.817-.555l-.032-.033-.425.163c-.805.327-1.6.73-2.384 1.208-.435.283-.653.468-.653.556 0 .021.011.032.033.032Z\" fill=\"#121926\"/><path d=\"M45.09 44.02c-1.132 0-1.807-.359-2.024-1.077-.087-.283-.13-.751-.13-1.404.086-3.397 1.382-5.824 3.885-7.283.893-.522 1.72-.783 2.482-.783.414 0 .817.087 1.208.26.501.24.752.621.752 1.144 0 .174-.077.522-.23 1.045-.151.5-.707 1.1-1.665 1.796-1.371.936-2.688 1.426-3.951 1.47-.327 0-.544.076-.653.228-.109.153-.196.523-.261 1.11a4.07 4.07 0 0 0-.098.85c0 .98.402 1.469 1.208 1.469.936 0 2.634-.86 5.094-2.58 2.482-1.72 4.148-2.688 4.997-2.906a10.59 10.59 0 0 1 2.645-.327c.914 0 1.371.076 1.371.229v.163c-.021.13-.74.316-2.155.555-1.393.218-3.353 1.285-5.878 3.2-2.504 1.895-4.703 2.842-6.597 2.842Zm.523-6.106c.087 0 .261-.044.522-.13 1.372-.458 2.33-1.035 2.874-1.731.349-.458.523-.839.523-1.143 0-.153-.098-.23-.294-.23-.37 0-1.013.36-1.927 1.079-1.197.958-1.796 1.654-1.796 2.09 0 .043.033.065.098.065Z\" fill=\"#121926\"/><path d=\"M57.819 48.788c-.305 0-.501-.054-.588-.163-.087-.109-.13-.36-.13-.75 0-.567.206-2.015.62-4.344.304-1.785.457-3.331.457-4.637 0-.414-.011-.806-.033-1.176a34.7 34.7 0 0 1-.065-1.666c0-.326.043-.522.13-.587.087-.087.25-.13.49-.13.523 0 .828.26.915.783.108.5.163 1.175.163 2.024 0 2.243-.294 4.638-.882 7.185l-.065.326c0 .11.033.164.098.164.196 0 1.034-.85 2.514-2.547 1.176-1.285 1.764-2.036 1.764-2.254 0-.13-.12-.207-.36-.228-.239-.044-.424-.12-.555-.229-.108-.13-.163-.631-.163-1.502 0-.61.055-1.1.163-1.47.11-.392.338-.816.686-1.273 1.089-1.59 2.286-2.384 3.592-2.384.719 0 1.078.272 1.078.816 0 1.089-.218 2.253-.653 3.494l-.033.164c0 .087.055.13.164.13.217 0 .762-.12 1.632-.359a16.894 16.894 0 0 1 4.05-.49c1.741 0 2.612.218 2.612.653-.043.196-.936.36-2.677.49-1.72.11-3.299.381-4.736.817-.87.283-1.513.555-1.926.816-.392.261-.784.653-1.176 1.176-.653.892-1.883 2.307-3.69 4.245-1.807 1.938-2.94 2.906-3.396 2.906Zm5.878-9.143c.37 0 .707-.24 1.012-.719.24-.348.479-.805.718-1.371.436-1.089.654-1.796.654-2.123 0-.065-.022-.098-.066-.098-.217 0-.533.272-.947.816-.413.523-.794 1.11-1.143 1.764-.348.631-.522 1.11-.522 1.437 0 .196.098.294.294.294Z\" fill=\"#121926\"/><path d=\"M71.788 46.796c-.283 0-.545-.043-.784-.13-.327-.13-.49-.447-.49-.947 0-.523.196-1.263.588-2.22.74-1.851 1.96-3.92 3.657-6.206 1.285-1.741 2.188-2.634 2.71-2.677l.262-.033c.348 0 .523.12.523.36 0 .239-.675 1.262-2.025 3.069-1.11 1.502-2.047 2.928-2.809 4.278-.74 1.35-1.11 2.253-1.11 2.71 0 .11.033.164.098.164.327 0 1.306-.893 2.94-2.678 1.632-1.807 3.036-3.015 4.212-3.625 1.437-.762 2.754-1.143 3.951-1.143.37 0 .555.12.555.36 0 .282-.359.554-1.077.816-.915.26-1.84.664-2.776 1.208-.914.544-2.08 1.633-3.494 3.266-1.394 1.632-2.45 2.612-3.168 2.939-.697.326-1.285.49-1.763.49Zm6.89-12.834c-.326 0-.5-.087-.522-.26 0-.327.239-1.013.718-2.058.5-1.045.893-1.644 1.176-1.796.152-.087.413-.13.783-.13.327 0 .49.097.49.293 0 .087-.022.207-.065.36a10.83 10.83 0 0 1-1.11 2.318c-.545.849-1.034 1.273-1.47 1.273Z\" fill=\"#121926\"/><path d=\"M82.001 42.518c-.218 0-.37-.021-.457-.065-.109-.043-.163-.163-.163-.36 0-.173.032-.456.098-.848.043-.37.185-.936.424-1.698.24-.762.512-1.546.817-2.351a37.6 37.6 0 0 1 .718-1.797c.196-.392.37-.631.522-.718.153-.109.349-.163.588-.163.523 0 .784.108.784.326 0 .196-.228.795-.686 1.796l-.718 1.633 1.404-1.012c1.85-1.263 3.396-1.894 4.637-1.894.632 0 1.002.163 1.11.49.131.326.197.63.197.914 0 .435-.066.98-.196 1.633-.131.762-.196 1.35-.196 1.763 0 .218.054.327.163.327.327 0 1.088-.218 2.286-.653 2.983-1.089 5.029-1.764 6.14-2.025 1.697-.392 3.319-.588 4.865-.588.958 0 1.491.13 1.6.392 0 .196-.457.37-1.371.523-3.484.544-6.336 1.262-8.556 2.155-2.22.892-3.92 1.339-5.095 1.339-.783 0-1.251-.153-1.404-.458-.087-.174-.13-.522-.13-1.044 0-.349.021-.73.065-1.143.065-.436.13-.806.196-1.11.065-.305.109-.578.13-.817 0-.218-.021-.338-.065-.36a.222.222 0 0 0-.163-.065c-.327 0-.882.262-1.666.784a24.288 24.288 0 0 0-2.84 2.188c-.937.827-1.58 1.546-1.927 2.155-.262.501-.632.751-1.11.751Zm38.062 4.736h-.588c-1.089 0-1.894-.077-2.417-.229-.261-.087-.566-.25-.914-.49a5.71 5.71 0 0 1-.914-.849 5.928 5.928 0 0 1-.588-.784 1.257 1.257 0 0 1-.196-.653v-.555c0-1.785.283-3.276.849-4.474.435-.849 1.208-1.894 2.318-3.135 1.133-1.24 2.178-2.199 3.135-2.874l1.176-.816a7.137 7.137 0 0 0-.784-.555c-.283-.196-.479-.425-.587-.686-.088-.283-.131-.73-.131-1.339.065-1.894.751-3.472 2.057-4.735 1.306-1.284 2.939-1.96 4.899-2.025.696 0 1.208.044 1.535.13.544.175 1.055.632 1.534 1.373.175.282.262 1.099.262 2.449 0 2.7-.447 4.05-1.339 4.05-.414 0-.621-.099-.621-.295 0-.13.033-.337.098-.62.283-1.764.425-2.95.425-3.56 0-.653-.185-1.186-.555-1.6-.436-.479-.969-.718-1.601-.718-.391 0-.816.087-1.273.26-1.198.48-2.232 1.438-3.103 2.875-.609 1.023-.914 1.828-.914 2.416 0 .784.577 1.176 1.731 1.176.305 0 .642-.022 1.012-.066l1.241-.098c.261 0 .425.033.49.098.087.044.131.12.131.23 0 .413-.447.805-1.339 1.175-1.045.457-2.264 1.24-3.658 2.35-1.393 1.09-2.482 2.113-3.265 3.07-.675.893-1.23 1.84-1.666 2.842-.435.98-.653 1.796-.653 2.449 0 .827.403 1.567 1.208 2.22a4.33 4.33 0 0 0 2.743.948c1.285 0 2.82-.664 4.605-1.992 1.807-1.328 3.233-2.852 4.278-4.572.239-.436.446-.828.62-1.176.175-.37.262-.61.262-.718-.022-.087-.175-.131-.458-.131-.544 0-1.306.109-2.285.327-.741.152-1.394.337-1.96.555-.544.196-1.023.294-1.437.294-.435 0-.653-.142-.653-.425 0-.544 1.187-1.056 3.56-1.535 2.155-.413 4.539-.62 7.151-.62.98 0 1.72.01 2.221.032.523.022.871.066 1.045.131.174.065.261.153.261.261 0 .175-.13.294-.392.36-.239.043-.707.065-1.404.065-1.458 0-2.493.087-3.102.261-.588.152-.925.435-1.013.85-.174.761-.598 1.654-1.273 2.677a18.113 18.113 0 0 1-2.319 2.841c-2.286 2.264-4.768 3.45-7.445 3.56Zm27.611 32.231c-.457 0-.686-.217-.686-.653 0-1.175.577-4.038 1.731-8.588a110.2 110.2 0 0 1 2.939-9.7 489.36 489.36 0 0 1 2.711-7.51l.032-6.238c0-2.416-.098-4.474-.294-6.172-.174-1.72-.544-3.625-1.11-5.715-1.676-6.444-4.789-10.373-9.34-11.788-1.24-.392-1.861-.719-1.861-.98 0-.283 1.187-.882 3.56-1.796 2.22-.85 4.887-1.774 8-2.776a156.783 156.783 0 0 1 15.643-4.082c3.091-.631 5.573-1.078 7.445-1.339l2.123-3.168a109.137 109.137 0 0 0 3.821-6.04c.479-.806.86-1.427 1.143-1.862.479-.719.903-1.078 1.273-1.078.436 0 .664.152.686.457 0 .544-1.502 3.146-4.506 7.805-1.35 2.09-2.025 3.2-2.025 3.331h.098c.435 0 2.003-.152 4.702-.457 3.026-.327 6.477-.61 10.352-.85 5.204-.326 9.351-.49 12.442-.49 1.655 0 2.635.066 2.939.197.175.109.262.217.262.326 0 .349-1.23.523-3.69.523-6.314.043-13.52.49-21.619 1.339-3.353.348-5.443.664-6.27.947-.479.305-1.644 1.937-3.494 4.898a289.04 289.04 0 0 0-12.214 21.423c-3.526 7.053-5.704 11.865-6.531 14.434-.326 1.067-.631 2.765-.914 5.094a58.815 58.815 0 0 1-2.809 12.083c-1.436 4.093-2.503 6.684-3.2 7.772-.326.436-.773.653-1.339.653Zm1.862-6.041c.087 0 .402-.708.947-2.123.587-1.589 1.153-3.516 1.698-5.78.653-2.438.979-3.853.979-4.245 0-.087-.021-.13-.065-.13-.109 0-1.045 3.047-2.808 9.143-.523 1.807-.784 2.83-.784 3.07 0 .043.011.065.033.065Zm6.531-24.427c.936-1.981 2.166-4.55 3.69-7.707 3.287-6.792 7.424-14.227 12.409-22.304 2.156-3.505 3.233-5.323 3.233-5.454h-.13c-.37 0-1.448.175-3.233.523-1.764.348-3.886.816-6.368 1.404a147.46 147.46 0 0 0-6.499 1.633c-1.698.5-3.636 1.11-5.813 1.829a152.195 152.195 0 0 0-5.649 1.992c-1.611.587-2.46.947-2.547 1.077.065.13.566.414 1.502.85 4.55 2.285 7.467 7.684 8.752 16.197a56.05 56.05 0 0 1 .62 7.772l.033 2.188Z\" fill=\"#121926\"/><path d=\"M171.799 43.465c-.805 0-1.349-.217-1.632-.653-.284-.435-.425-1.24-.425-2.416V38.6c-1.742 1.371-3.037 2.057-3.886 2.057-.74 0-1.11-.468-1.11-1.404 0-.74.337-1.676 1.012-2.809.697-1.132 1.546-2.046 2.547-2.743a3.253 3.253 0 0 1 1.698-.49c.305 0 .61.044.915.131.936.24 1.404.708 1.404 1.404 0 .283-.207.425-.621.425-.392 0-.762-.142-1.11-.425-.218-.196-.414-.294-.588-.294-.348 0-.849.37-1.502 1.11-1.372 1.416-2.057 2.515-2.057 3.299 0 .152.054.229.163.229.239 0 .925-.6 2.057-1.797 1.132-1.219 1.949-1.828 2.45-1.828.217 0 .37.021.457.065.109.044.163.163.163.36 0 .195-.033.51-.098.946-.239 1.633-.359 2.885-.359 3.756 0 .631.065 1.045.196 1.24.152.197.261.316.326.36a.53.53 0 0 0 .229.065c.653 0 1.992-.98 4.017-2.939 2.22-2.155 4.049-3.244 5.486-3.265.522 0 .784.108.784.326 0 .283-.392.62-1.176 1.012-.784.37-2.046 1.318-3.788 2.842-1.35 1.284-2.406 2.144-3.168 2.58a4.737 4.737 0 0 1-2.384.652Z\" fill=\"#121926\"/><path d=\"M173.881 65.672c-.5 0-.838-.055-1.012-.164-.174-.087-.316-.304-.424-.653-.175-.522-.262-1.164-.262-1.926 0-.958.142-2.123.425-3.495.544-2.416 1.415-4.844 2.612-7.282 1.633-3.396 2.863-5.094 3.691-5.094.479 0 .718.076.718.228 0 .13-.523 1.132-1.568 3.005-2.939 5.225-4.408 9.492-4.408 12.8 0 .632.098.948.294.948.435 0 1.35-1.6 2.743-4.8 3.266-7.38 5.66-12.747 7.184-16.1 1.154-2.504 1.731-3.81 1.731-3.919l-.033-.032c-.065 0-.457.206-1.175.62-.849.457-1.698.686-2.547.686-1.285 0-1.927-.544-1.927-1.633 0-.762.294-1.764.882-3.004.348-.784.62-1.296.816-1.535.218-.262.479-.392.784-.392.392 0 .588.12.588.36 0 .37-.316 1.284-.947 2.742-.327.784-.49 1.372-.49 1.764 0 .348.141.522.424.522.588 0 1.764-.74 3.527-2.22 1.176-.958 2.003-1.437 2.482-1.437.327 0 .49.217.49.653 0 .457-.915 2.667-2.743 6.629l-5.291 11.789c-2.22 5.05-3.668 8.142-4.343 9.274-.435.719-.805 1.176-1.11 1.372a2.118 2.118 0 0 1-1.111.294Zm10.802-3.658c-.631 0-.947-.49-.947-1.47 0-1.545.609-4.484 1.829-8.816 3.592-12.758 8.556-23.24 14.891-31.449 1.263-1.698 2.22-2.851 2.874-3.461.566-.544 1.034-.816 1.404-.816.261.021.49.108.686.26.196.131.293.36.293.687 0 .87-.489 2.155-1.469 3.853-.98 1.698-2.351 3.527-4.115 5.486l-.326.36c-1.807 1.937-3.157 3.472-4.05 4.604a19.254 19.254 0 0 0-2.318 3.69c-2.373 4.942-4.692 11.419-6.956 19.43a53.985 53.985 0 0 0-1.339 6.075c.653-.74 2.308-2.841 4.964-6.303 3.113-4.05 6.183-7.467 9.209-10.254s5.181-4.18 6.466-4.18c.522 0 .784.098.784.294 0 .283-.632.805-1.895 1.567-1.523.915-3.57 2.69-6.139 5.323a92.516 92.516 0 0 0-7.25 8.393c-2.242 2.983-3.864 4.92-4.865 5.813-.675.61-1.252.914-1.731.914Zm14.663-37.26c.087-.066.272-.262.555-.588a27.722 27.722 0 0 0 3.037-4.311l-.751.85a12.86 12.86 0 0 0-.947 1.175 32.73 32.73 0 0 0-1.013 1.404c-.305.457-.555.827-.751 1.11-.109.196-.163.316-.163.36h.033Z\" fill=\"#121926\"/><path d=\"M213.902 46.013c-.348 0-.653-.11-.914-.327-.435-.24-.653-.675-.653-1.306 0-.414.163-1.143.49-2.188.348-1.045 1.034-2.21 2.057-3.494 1.045-1.307 1.568-2.036 1.568-2.188 0-.153-.566-.229-1.699-.229-.5 0-.87-.01-1.11-.033-.414-.043-.62-.206-.62-.49 0-.304-.033-.457-.098-.457-.087 0-.36.131-.817.392-.37.218-1.012.501-1.926.85-.327.086-.566.184-.719.293-.152.087-.228.327-.228.719l.065 1.47c0 .674-.207 1.23-.621 1.665-.631.675-1.437 1.012-2.416 1.012-.61 0-1.111-.174-1.502-.523-.392-.413-.588-.936-.588-1.567 0-.697.239-1.535.718-2.515.24-.479.436-.816.588-1.012a.719.719 0 0 1 .621-.326c.174 0 .391.021.653.065.152.022.315.033.489.033 1.285 0 3.059-.719 5.323-2.156 1.22-.762 1.982-1.143 2.286-1.143.436 0 .654.229.654.686 0 .24-.098.5-.294.784-.262.37-.392.631-.392.784 0 .065.032.141.098.228.065.066.479.098 1.241.098 1.306 0 1.959.349 1.959 1.045 0 .675-.555 1.73-1.665 3.168-1.764 2.33-2.646 3.897-2.646 4.702 0 .349.153.523.458.523.653 0 2.144-.947 4.473-2.841 2.352-1.916 4.268-2.874 5.748-2.874.544 0 .816.076.816.229 0 .217-.446.391-1.339.522-.892.13-2.275.958-4.147 2.482-1.872 1.524-3.32 2.634-4.343 3.33-.588.393-1.11.589-1.568.589Zm-7.38-5.487c.087-.021.316-.217.686-.587a1.99 1.99 0 0 0 .686-1.535c0-.37-.109-.664-.327-.882-.218-.24-.414-.36-.588-.36-.348 0-.675.425-.979 1.274-.196.501-.294.904-.294 1.209a.74.74 0 0 0 .163.49c.196.26.37.391.522.391h.131Z\" fill=\"#121926\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1zosek\",\"data-framer-name\":\"Frame 2121453053\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1saxon7\",\"data-framer-name\":\"Frame 2121453092\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7069+100+0+8+0+32+1133.6+.2+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/98uDbFikD8dzeGZzd6ESy2fw3A.png\"}},oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10654+32+0+8+0+16+1220+38.6+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/98uDbFikD8dzeGZzd6ESy2fw3A.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6627+100+0+8+0+32+1133.6+.2+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/98uDbFikD8dzeGZzd6ESy2fw3A.png\"},className:\"framer-ljuyfj\",\"data-border\":true,\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7069+100+0+8+0+32+1133.6+.2+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/0AqkPi7C0zx1gpeMm79yqfFlYwA.png\"}},oDFjJKDFf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10654+32+0+8+0+16+1220+38.6+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/0AqkPi7C0zx1gpeMm79yqfFlYwA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6627+100+0+8+0+32+1133.6+.2+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/0AqkPi7C0zx1gpeMm79yqfFlYwA.png\"},className:\"framer-cpf1ok\",\"data-border\":true,\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-anl6g7\",\"data-framer-name\":\"Frame 2121453052\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(17, 24, 38)\"},children:\"Kevin Coleman & Taylor Halliday\"})}),className:\"framer-ai0xym\",\"data-framer-name\":\"Kevin Coleman & Taylor Halliday\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(105, 116, 133)\"},children:\"Co-founders\"})}),className:\"framer-1bucqgr\",\"data-framer-name\":\"Co-founders\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w4kdfa\",\"data-framer-name\":\"Helper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azvhrr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h6pc3z\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:437,intrinsicWidth:412,svg:'<svg width=\"412\" height=\"437\" viewBox=\"0 0 412 437\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_i_3_22798)\">\\n<path d=\"M0 436.855L-6.08531e-06 297.64C-6.82626e-06 280.689 8.52086 264.88 22.6592 255.602L411.408 0.491651L411.408 139.707C411.408 156.658 402.887 172.466 388.749 181.744L0 436.855Z\" fill=\"black\" fill-opacity=\"0.1\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-1.54351e-05 58.7982L-9.47686e-06 195.107L100.521 126.663C120.833 115.046 134.529 93.1177 134.529 67.9808C134.529 30.7038 104.414 0.485316 67.2644 0.485318C51.5627 0.485319 37.1176 5.8836 25.6718 14.932C9.84236 23.7908 -1.62321e-05 40.5661 -1.54351e-05 58.7982Z\" fill=\"black\" fill-opacity=\"0.1\"/>\\n</g>\\n<path d=\"M100.273 126.229L100.256 126.238L100.24 126.249L0.49999 194.162L0.499985 58.7982C0.499984 40.7468 10.2448 24.1385 25.916 15.3683L25.9507 15.3489L25.9819 15.3242C37.3426 6.34305 51.6793 0.985319 67.2644 0.985318C104.136 0.985316 134.029 30.9783 134.029 67.9808C134.029 92.9317 120.435 114.698 100.273 126.229ZM22.9335 256.02L410.908 1.41783L410.908 139.707C410.908 156.49 402.472 172.141 388.475 181.326L0.5 435.929L0.499994 297.64C0.499993 280.856 8.93644 265.205 22.9335 256.02Z\" stroke=\"url(#paint0_linear_3_22798)\" stroke-opacity=\"0.1\"/>\\n<defs>\\n<filter id=\"filter0_i_3_22798\" x=\"0\" y=\"0.485321\" width=\"411.408\" height=\"440.37\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"6\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0666667 0 0 0 0 0.0666667 0 0 0 0 0.0666667 0 0 0 0.4 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_3_22798\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_3_22798\" x1=\"43.7393\" y1=\"384.37\" x2=\"205.704\" y2=\"0.485276\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oDFjJKDFf:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to revolutionize\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"your help desk? \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to revolutionize\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"your help desk? \"})]}),className:\"framer-hj4p4k\",\"data-framer-name\":\"Ready to revolutionize your help desk?\",fonts:[\"GF;Inter Display-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined},{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined},{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined},{href:{webPageId:\"YKfmInf8L\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ObbmVml1t:{y:(componentViewport?.y||0)+0+7069+100+1336+0+0+390},oDFjJKDFf:{y:(componentViewport?.y||0)+0+10654+32+1467.2+0+32+512}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+6627+100+1336+0+0+390,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18f2vxl-container\",nodeId:\"P3ZHPir9N\",scopeId:\"HE1QGHJti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EfRmhtV8Z:{OD2WUCgVP:resolvedLinks2[1]},ObbmVml1t:{OD2WUCgVP:resolvedLinks2[2]},oDFjJKDFf:{OD2WUCgVP:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{a46J9a7Sp:\"Schedule Demo\",height:\"100%\",id:\"P3ZHPir9N\",iMtZrtjub:false,layoutId:\"P3ZHPir9N\",nHcvdBhJH:false,OD2WUCgVP:resolvedLinks2[0],QKoXvH4nx:\"schedule-demo\",style:{height:\"100%\"},variant:\"RUKgmvIfr\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1xzu474 hidden-1ep3ugu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:558,intrinsicWidth:539,svg:'<svg width=\"539\" height=\"558\" viewBox=\"0 0 539 558\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_i_3_22799)\">\\n<path d=\"M419.559 0.485352L457.6 142.459C462.232 159.746 457.862 178.196 445.979 191.521L119.24 557.914L81.1982 415.94C76.5662 398.653 80.9363 380.204 92.819 366.879L419.559 0.485352Z\" fill=\"black\" fill-opacity=\"0.1\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M522.865 386.032L485.618 247.023L401.808 344.291C384.268 361.688 376.293 387.794 383.162 413.428C393.349 451.444 432.318 474.032 470.203 463.881C486.216 459.59 499.472 450.137 508.672 437.782C522.394 424.422 527.848 404.625 522.865 386.032Z\" fill=\"black\" fill-opacity=\"0.1\"/>\\n</g>\\n<path d=\"M402.16 344.646L402.174 344.633L402.187 344.618L485.38 248.065L522.383 386.161C527.318 404.58 521.915 424.191 508.323 437.424L508.295 437.452L508.271 437.484C499.136 449.752 485.974 459.137 470.074 463.398C432.457 473.477 393.76 451.049 383.645 413.299C376.825 387.844 384.743 361.922 402.16 344.646ZM445.606 191.188L119.483 556.89L81.6811 415.811C77.0926 398.686 81.4219 380.411 93.1922 367.211L419.315 1.50937L457.117 142.588C461.706 159.713 457.377 177.989 445.606 191.188Z\" stroke=\"url(#paint0_linear_3_22799)\" stroke-opacity=\"0.1\"/>\\n<defs>\\n<filter id=\"filter0_i_3_22799\" x=\"79.3845\" y=\"0.485352\" width=\"445.295\" height=\"561.429\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"6\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0666667 0 0 0 0 0.0666667 0 0 0 0 0.0666667 0 0 0 0.4 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_3_22799\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_3_22799\" x1=\"389.295\" y1=\"65.962\" x2=\"329.021\" y2=\"501.71\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pr33cv hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 226\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:930,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"930\" viewBox=\"-1 -1 4 930\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 927.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bvrueh hidden-1falpcb hidden-1ep3ugu\",\"data-framer-name\":\"Vector 227\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:939,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"939\" viewBox=\"-1 -1 4 939\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.485352L1.00004 936.485\" stroke=\"#E7E5E4\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a2fzY.framer-qg703i, .framer-a2fzY .framer-qg703i { display: block; }\",\".framer-a2fzY.framer-1rq73gh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-a2fzY .framer-ltofoy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-118ouyy { flex: none; height: 1px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 60px; width: 100%; z-index: 1; }\",\".framer-a2fzY .framer-dw7nlv { --border-bottom-width: 1px; --border-color: #d9d9d9; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 0px; height: 800px; overflow: hidden; position: relative; width: 1300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-wrmudd { aspect-ratio: 1.312142857142857 / 1; bottom: -335px; flex: none; height: var(--framer-aspect-ratio-supported, 1163px); left: -66px; overflow: visible; position: absolute; right: -160px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-a2fzY .framer-x22hs6-container { bottom: 327px; flex: none; height: 132px; left: 1158px; position: absolute; width: 240px; }\",\".framer-a2fzY .framer-dngupm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 100px; overflow: visible; padding: 0px; position: absolute; top: 167px; width: 652px; }\",\".framer-a2fzY .framer-11cu9g6-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-a2fzY .framer-ie7ysz, .framer-a2fzY .framer-173d6s1, .framer-a2fzY .framer-jki1bl, .framer-a2fzY .framer-1veiy6g, .framer-a2fzY .framer-1u2543s, .framer-a2fzY .framer-z2hhev, .framer-a2fzY .framer-spl9tk, .framer-a2fzY .framer-2nkfxo, .framer-a2fzY .framer-1xqwx6s, .framer-a2fzY .framer-1tbsp8v, .framer-a2fzY .framer-6g9mq4, .framer-a2fzY .framer-hsxwq, .framer-a2fzY .framer-4gyi15, .framer-a2fzY .framer-4k85eg, .framer-a2fzY .framer-1gfw2i0, .framer-a2fzY .framer-cgpq2t, .framer-a2fzY .framer-1elwc5d, .framer-a2fzY .framer-6ja8ai, .framer-a2fzY .framer-1yefzms, .framer-a2fzY .framer-73kmsp, .framer-a2fzY .framer-1qe4nsg, .framer-a2fzY .framer-1jse08u, .framer-a2fzY .framer-8yv25n, .framer-a2fzY .framer-2wr4wq, .framer-a2fzY .framer-2qoxaz, .framer-a2fzY .framer-96h8et, .framer-a2fzY .framer-1628r9o, .framer-a2fzY .framer-1wgv11t, .framer-a2fzY .framer-ai0xym, .framer-a2fzY .framer-1bucqgr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-a2fzY .framer-194ocnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1dfnc91-container, .framer-a2fzY .framer-1p3retk-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-a2fzY .framer-1d5j3po { aspect-ratio: 1.6752293577981652 / 1; bottom: -397px; flex: none; height: var(--framer-aspect-ratio-supported, 879px); left: -699px; overflow: visible; position: absolute; right: -399px; }\",\".framer-a2fzY .framer-1io16cv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-16cyywq, .framer-a2fzY .framer-nxz9zh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 722px; }\",\".framer-a2fzY .framer-lkakqk, .framer-a2fzY .framer-9njk9s { align-content: center; align-items: center; background-color: #eef2f6; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-ogk50x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 21px; }\",\".framer-a2fzY .framer-11z7o1y, .framer-a2fzY .framer-1ip752t { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 722px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1nbhyxn-container { flex: none; height: auto; position: relative; width: 899px; }\",\".framer-a2fzY .framer-1aogd62, .framer-a2fzY .framer-108h4oh, .framer-a2fzY .framer-121zkch, .framer-a2fzY .framer-d5yp3h { bottom: -5px; flex: none; left: 170px; position: absolute; top: -5px; width: 4px; z-index: 1; }\",\".framer-a2fzY .framer-peyd45, .framer-a2fzY .framer-t1fhyv, .framer-a2fzY .framer-1v2qyij, .framer-a2fzY .framer-chzd6u { bottom: -5px; flex: none; position: absolute; right: 170px; top: -5px; width: 4px; z-index: 1; }\",\".framer-a2fzY .framer-gi65x9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-r8l0m9, .framer-a2fzY .framer-14jnq7k, .framer-a2fzY .framer-1nlppxs, .framer-a2fzY .framer-1dvn0al { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-14b10uo, .framer-a2fzY .framer-1qqmsu3, .framer-a2fzY .framer-1u548zg, .framer-a2fzY .framer-1f6lj8s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1d3fo41, .framer-a2fzY .framer-gg693w, .framer-a2fzY .framer-v8y2n2, .framer-a2fzY .framer-1qh7g61 { align-content: center; align-items: center; background-color: #3695d6; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgb(255, 255, 255); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-199xq7f, .framer-a2fzY .framer-qfxddw, .framer-a2fzY .framer-1marfob, .framer-a2fzY .framer-yrvwy0 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; position: relative; width: 18px; }\",\".framer-a2fzY .framer-cwpgzo { flex: none; height: 14px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: 1px; width: 16px; }\",\".framer-a2fzY .framer-2tbeli, .framer-a2fzY .framer-ohj7k1, .framer-a2fzY .framer-1lyw1h4, .framer-a2fzY .framer-17w8y6j, .framer-a2fzY .framer-l86ol { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1loc8vc, .framer-a2fzY .framer-923wle, .framer-a2fzY .framer-xd9qo4, .framer-a2fzY .framer-1iqil8n { --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-a2fzY .framer-1y64fom, .framer-a2fzY .framer-1gj3o7d, .framer-a2fzY .framer-jgms4m, .framer-a2fzY .framer-1m9cyoz { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05), 0px 0px 1px 1px rgba(0, 0, 0, 0.1); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 200px); max-width: 400px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-13bnnfs { bottom: -1px; flex: none; height: 18px; left: calc(50.00000000000002% - 17px / 2); position: absolute; width: 17px; }\",\".framer-a2fzY .framer-6h4f8n { flex: none; height: 14px; left: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 14px / 2); }\",\".framer-a2fzY .framer-vlwk75 { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-a2fzY .framer-w7zzqp { align-content: center; align-items: center; background-color: #f5f5f3; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-cnipyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 86px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1pa2apw, .framer-a2fzY .framer-8lrs28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-fqc15c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-1dsgv7q { align-content: center; align-items: center; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-4sg6mv { background: conic-gradient(from 0deg at 50% 50%, #f5f5f3 0deg, rgba(117, 244, 231, 0) 284.46062878565203deg, rgb(49, 242, 226) 325.97920703507106deg, rgb(0, 127, 255) 360deg); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 598px; left: calc(50.00000000000002% - 598px / 2); opacity: 0.5; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 598px / 2); width: 598px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-a2fzY .framer-1uknytp { align-content: center; align-items: center; background-color: #eef2f6; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; z-index: 1; }\",\".framer-a2fzY .framer-188dl2i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 718px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1r5vvma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-6nny2k, .framer-a2fzY .framer-nnzenq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 910px; }\",\".framer-a2fzY .framer-kn6vo6 { align-content: flex-start; align-items: flex-start; background-color: #f1f0ef; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 334px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 337px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1nr1esq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-17xqpfe, .framer-a2fzY .framer-mrzq99 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 289px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-zq1k07, .framer-a2fzY .framer-1qg1vmr { flex: 1 0 0px; gap: 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-a2fzY .framer-v72b7v { --border-bottom-width: 1px; --border-color: #eeeeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); background-color: rgba(255, 255, 255, 0.3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -24px; flex: none; height: 96px; left: calc(49.82698961937718% - 225px / 2); position: absolute; width: 225px; }\",\".framer-a2fzY .framer-t3htbq { --border-bottom-width: 1px; --border-color: #eeeeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -12px; flex: none; height: 96px; left: calc(49.82698961937718% - 257px / 2); position: absolute; width: 257px; }\",\".framer-a2fzY .framer-ra2nsn { -webkit-filter: blur(16px); background-color: #62b8ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 10px; filter: blur(16px); flex: none; height: 83px; left: calc(49.82698961937718% - 281px / 2); opacity: 0.5; position: absolute; width: 281px; }\",\".framer-a2fzY .framer-1r00b8n { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 0.5px 0.5px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1lay1t5 { --border-bottom-width: 1px; --border-color: #eef2f6; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-17gvuo4 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10.185101509094238px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-a2fzY .framer-14ekh8w, .framer-a2fzY .framer-1wxxrue { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-g5jza6, .framer-a2fzY .framer-x2vh3z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-1gw6v1k, .framer-a2fzY .framer-1q0cgg5 { align-content: center; align-items: center; background-color: #e8e8e8; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6.395349502563477px; height: 14px; justify-content: center; overflow: visible; padding: 0px 2px 0px 2px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-18z7puz, .framer-a2fzY .framer-p06y7i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 231px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1njf09f { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1fcgil2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-1b4v33r { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-a2fzY .framer-xzcevl { align-content: flex-start; align-items: flex-start; background-color: #f1f0ef; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 334px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-8627g9, .framer-a2fzY .framer-dg31xd, .framer-a2fzY .framer-xwq3p6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 65px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1jv4yrj, .framer-a2fzY .framer-wdmqy4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 501px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1d5azts { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 0.5px 0.5px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 242px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 4px; width: 501px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-scat52 { --border-bottom-width: 1px; --border-color: #e5e5e5; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-s98ait, .framer-a2fzY .framer-cabtm7, .framer-a2fzY .framer-6k9iah, .framer-a2fzY .framer-udkuwl, .framer-a2fzY .framer-1gb7cwk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-1ypfdrl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-bwqgkj { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 12px; }\",\".framer-a2fzY .framer-1fx0yda { bottom: 7px; flex: none; left: 2px; position: absolute; right: 2px; top: 1px; }\",\".framer-a2fzY .framer-131tqzj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-luu8wb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1aozfzr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-1398mt2 { flex: none; gap: 0px; height: 14px; overflow: hidden; position: relative; width: 14px; }\",\".framer-a2fzY .framer-pyw78y { aspect-ratio: 0.9333333333333333 / 1; bottom: -1px; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 0px; position: absolute; right: 0px; }\",\".framer-a2fzY .framer-104z035 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-cxdt5j { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 461px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1amj6d5 { --framer-paragraph-spacing: 0px; flex: none; height: 72px; position: relative; white-space: pre-wrap; width: 461px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1df2icd { background: linear-gradient(-90deg, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 0.6) 100%); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 16px; position: relative; width: 461px; }\",\".framer-a2fzY .framer-1y7clah { background: linear-gradient(-90deg, rgba(221, 221, 221, 0) 0%, rgb(221, 221, 221) 100%); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 16px; opacity: 0.4; position: relative; width: 276px; }\",\".framer-a2fzY .framer-11358wn { background: linear-gradient(-90deg, rgba(221, 221, 221, 0) 0%, rgb(221, 221, 221) 100%); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 16px; opacity: 0.3; position: relative; width: 395px; }\",\".framer-a2fzY .framer-z3nyfz { align-content: flex-start; align-items: flex-start; background-color: #f1f0ef; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1kupc9g { -webkit-mask: linear-gradient(180deg, #000000 80%, rgba(0, 0, 0, 0) 100%) add; flex: none; gap: 0px; height: 210px; mask: linear-gradient(180deg, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%) add; overflow: visible; position: relative; width: 100%; }\",\".framer-a2fzY .framer-ko7yyc { flex: none; height: 250px; left: -22px; overflow: hidden; position: absolute; top: -40px; width: 406px; }\",\".framer-a2fzY .framer-7he2kp-container { flex: none; height: 85px; left: calc(50.00000000000002% - 94px / 2); position: absolute; top: calc(53.200000000000024% - 85px / 2); width: 94px; }\",\".framer-a2fzY .framer-1jn7869-container { flex: none; height: 85px; left: calc(50.00000000000002% - 94px / 2); position: absolute; top: calc(47.60000000000002% - 85px / 2); width: 94px; }\",\".framer-a2fzY .framer-1vv9hmo { aspect-ratio: 1.1928571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 149px); left: 49%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 177px; }\",\".framer-a2fzY .framer-5aapya { flex: none; height: 94px; left: calc(50.00000000000002% - 77.83251231527095% / 2); overflow: visible; position: absolute; top: calc(94.00000000000001% - 94px / 2); width: 78%; }\",\".framer-a2fzY .framer-1qoa8yl { --border-bottom-width: 1px; --border-color: #3695d6; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: -32px; box-shadow: 0px 0px 3.1976747512817383px 0px rgba(0, 0, 0, 0.06), 0px 0px 0.3997093439102173px 0.3997093439102173px rgba(0, 0, 0, 0.2), 0px 8px 16px -4px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 12px; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-zgaj9e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-1bprvp0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-pstpxc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 292px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-ogly98 { flex: none; height: 57px; left: calc(49.75369458128081% - 50.49261083743842% / 2); overflow: visible; position: absolute; top: calc(14.000000000000023% - 57px / 2); width: 50%; }\",\".framer-a2fzY .framer-rgsva2 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 0.6365688443183899px 0.6365688443183899px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 6px 12px 6px 12px; position: absolute; top: 0px; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-s60gj4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-q9id49 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1p6fvjt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5.092550754547119px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-1vraj3o, .framer-a2fzY .framer-ksep0s, .framer-a2fzY .framer-m7ef38, .framer-a2fzY .framer-lp22ms, .framer-a2fzY .framer-1spmzgr, .framer-a2fzY .framer-ahghmc { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-a2fzY .framer-1tnsnne { bottom: 3px; flex: none; left: 13px; position: absolute; right: 3px; top: 2px; }\",\".framer-a2fzY .framer-18o6m9f { bottom: 3px; flex: none; left: 1px; position: absolute; right: 15px; top: 9px; }\",\".framer-a2fzY .framer-u4q7on { bottom: 3px; flex: none; left: 7px; position: absolute; right: 9px; top: 5px; }\",\".framer-a2fzY .framer-1oolbuu { --border-bottom-width: 1.2731376886367798px; --border-color: #dcfce7; --border-left-width: 1.2731376886367798px; --border-right-width: 1.2731376886367798px; --border-style: solid; --border-top-width: 1.2731376886367798px; align-content: center; align-items: center; background-color: #f0fdf4; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5.092550754547119px; height: 20px; justify-content: center; overflow: hidden; padding: 3.820000171661377px 6px 3.820000171661377px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1iflvzn { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #99a3b2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.19); flex: none; height: 10px; left: calc(49.75369458128081% - 10px / 2); position: absolute; top: calc(25.600000000000023% - 10px / 2); width: 10px; }\",\".framer-a2fzY .framer-6j5j7v { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: #3695d6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.19); flex: none; height: 10px; left: calc(50.00000000000002% - 10px / 2); position: absolute; top: calc(75.20000000000002% - 10px / 2); width: 10px; }\",\".framer-a2fzY .framer-17x6qpa, .framer-a2fzY .framer-gxpr4n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 361px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-8nonsr { align-content: flex-start; align-items: flex-start; background-color: #f1f0ef; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 477px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1c8zk9f, .framer-a2fzY .framer-16dq6wk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 429px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1l8om81 { flex: none; gap: 0px; height: 205px; overflow: visible; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1jrhqkw { -webkit-filter: blur(16px); background-color: #62b8ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(16px); flex: none; height: 83px; left: 17px; opacity: 0.5; position: absolute; top: 117px; width: 395px; }\",\".framer-a2fzY .framer-1qqpx5t { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.05), 0px 0px 0.5px 0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 9px; width: 429px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1gz6tqf { --border-bottom-width: 1px; --border-color: #ededed; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f5f5f3; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 10px 8px 10px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1f7nq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-15u6zbr { --border-bottom-width: 1px; --border-color: #e2e2e2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-a2fzY .framer-1dvn0x5, .framer-a2fzY .framer-1dm255q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-tf0ezl, .framer-a2fzY .framer-djo4u8, .framer-a2fzY .framer-x8xpuw { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; }\",\".framer-a2fzY .framer-m3wr3z, .framer-a2fzY .framer-e5n7uf, .framer-a2fzY .framer-1ydcw9l { flex: none; height: 8px; left: calc(50.00000000000002% - 5px / 2); position: absolute; top: calc(50.00000000000002% - 8px / 2); width: 5px; }\",\".framer-a2fzY .framer-1u68j7m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-mp98r2, .framer-a2fzY .framer-1saxon7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-12xecy8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-ligkf4, .framer-a2fzY .framer-11jatn2, .framer-a2fzY .framer-w7ndhu, .framer-a2fzY .framer-mvn95t { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 8px 10px 8px 10px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-8pnkec, .framer-a2fzY .framer-17myp3f, .framer-a2fzY .framer-1o9zrpd, .framer-a2fzY .framer-1dqnk3y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 20px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-myluvg, .framer-a2fzY .framer-1vyvevb, .framer-a2fzY .framer-1fjizop, .framer-a2fzY .framer-tv1faz { align-content: center; align-items: center; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-mc73xh, .framer-a2fzY .framer-11smi0f, .framer-a2fzY .framer-kli7ro, .framer-a2fzY .framer-1c3lden { --border-bottom-width: 1px; --border-color: #e2e2e2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-a2fzY .framer-1c0m7ol, .framer-a2fzY .framer-10hn6y7, .framer-a2fzY .framer-1ayblmm, .framer-a2fzY .framer-5hc7y3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-1pmgmqg, .framer-a2fzY .framer-udx9i5, .framer-a2fzY .framer-1p2knxt, .framer-a2fzY .framer-gyi8zd, .framer-a2fzY .framer-rwirf2, .framer-a2fzY .framer-1ir6ml8 { flex: none; height: 17px; position: relative; width: 16px; }\",\".framer-a2fzY .framer-zbpq7d, .framer-a2fzY .framer-1azwqi5, .framer-a2fzY .framer-1oxe09e, .framer-a2fzY .framer-ani0zr, .framer-a2fzY .framer-q8jrnc, .framer-a2fzY .framer-1behms6, .framer-a2fzY .framer-1axfg1f, .framer-a2fzY .framer-4mbdj5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1446itb, .framer-a2fzY .framer-5vicev { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-a2fzY .framer-150otnv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-bzhbco { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 910px; }\",\".framer-a2fzY .framer-1bj6wsu, .framer-a2fzY .framer-1n1x83s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 910px; }\",\".framer-a2fzY .framer-1j5nr0a-container { cursor: default; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-a2fzY .framer-6r4ffj-container { align-self: stretch; cursor: default; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-a2fzY .framer-g710tq-container, .framer-a2fzY .framer-386ck2-container { cursor: default; flex: 1 0 0px; height: 413px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-10axsby { align-content: center; align-items: center; background-color: #f5f5f4; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1wohney { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-1bs264d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-f61jmj { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-a2fzY .framer-h0wq3z { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-ezkwb0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 759px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-vp9dro { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-a2fzY .framer-1eytq86 { display: grid; flex: none; gap: 56px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 910px; }\",\".framer-a2fzY .framer-1vqsy9j, .framer-a2fzY .framer-1sgeenq, .framer-a2fzY .framer-1xyf51j, .framer-a2fzY .framer-1848aor, .framer-a2fzY .framer-losqfs, .framer-a2fzY .framer-kl19pa, .framer-a2fzY .framer-8i51h5, .framer-a2fzY .framer-g3vll, .framer-a2fzY .framer-1dh72r0 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-vntjf4, .framer-a2fzY .framer-1v3ew1m, .framer-a2fzY .framer-gwx4jz, .framer-a2fzY .framer-15tbkoe, .framer-a2fzY .framer-1firn1p, .framer-a2fzY .framer-28k51w, .framer-a2fzY .framer-jin16i, .framer-a2fzY .framer-dw7qn6, .framer-a2fzY .framer-hhtgfu { align-content: center; align-items: center; background-color: #e3e8ee; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-d57zmm, .framer-a2fzY .framer-1ijzhh9, .framer-a2fzY .framer-1wzv2cb, .framer-a2fzY .framer-dvz8dv { flex: none; gap: 0px; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-a2fzY .framer-5ul41f { flex: none; height: 17px; left: calc(50.00000000000002% - 13px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 13px; }\",\".framer-a2fzY .framer-dla3yl, .framer-a2fzY .framer-8zdacr, .framer-a2fzY .framer-1lawdug, .framer-a2fzY .framer-1fkkqjf, .framer-a2fzY .framer-1s6fp0e, .framer-a2fzY .framer-r8q88h, .framer-a2fzY .framer-1xxj7zz, .framer-a2fzY .framer-lpek2j, .framer-a2fzY .framer-16ps1wx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-a2fzY .framer-675qzl, .framer-a2fzY .framer-1i45ae1, .framer-a2fzY .framer-1fxx0x4, .framer-a2fzY .framer-1f8x3hz, .framer-a2fzY .framer-71zxf4, .framer-a2fzY .framer-4a1pg8, .framer-a2fzY .framer-z4trt2, .framer-a2fzY .framer-10kj00f, .framer-a2fzY .framer-eddafn, .framer-a2fzY .framer-ibm9g7, .framer-a2fzY .framer-1sifdlw, .framer-a2fzY .framer-afchx7, .framer-a2fzY .framer-1d7jksv, .framer-a2fzY .framer-11uqdwx, .framer-a2fzY .framer-16q2idv, .framer-a2fzY .framer-o0z702, .framer-a2fzY .framer-v5pfh8, .framer-a2fzY .framer-1rkybtp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 218px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-stls0m { flex: none; height: 17px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 15px; }\",\".framer-a2fzY .framer-17w6evr, .framer-a2fzY .framer-x8ouhd { flex: none; height: 15px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 15px / 2); width: 15px; }\",\".framer-a2fzY .framer-sibp6p { flex: none; height: 13px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 17px; }\",\".framer-a2fzY .framer-1rev65i { flex: none; height: 16px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 15px; }\",\".framer-a2fzY .framer-p6gl2p, .framer-a2fzY .framer-9vd5eb { flex: none; height: 16px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 17px; }\",\".framer-a2fzY .framer-1v87xf3 { flex: none; height: 17px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 17px; }\",\".framer-a2fzY .framer-ps72hv { aspect-ratio: 455 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 120px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-a2fzY .framer-ur7mpb { aspect-ratio: 455 / 1; bottom: 133px; flex: none; height: var(--framer-aspect-ratio-supported, 2px); overflow: visible; position: absolute; right: -1px; width: 100%; z-index: 1; }\",\".framer-a2fzY .framer-14vbqn0 { aspect-ratio: 0.005025125628140704 / 1; flex: none; height: 100%; left: 291px; overflow: visible; position: absolute; top: -1px; width: var(--framer-aspect-ratio-supported, 2px); z-index: 1; }\",\".framer-a2fzY .framer-9ac6ed { aspect-ratio: 0.005025125628140704 / 1; flex: none; height: 100%; left: 613px; overflow: visible; position: absolute; top: -1px; width: var(--framer-aspect-ratio-supported, 2px); z-index: 1; }\",\".framer-a2fzY .framer-pue3if { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-n1skxs { --border-bottom-width: 1px; --border-color: #e3e8ee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4.347647666931152px 6.340319633483887px 0px rgba(0, 0, 0, 0.01), 0px 12.020689964294434px 17.53017234802246px 0px rgba(0, 0, 0, 0.01), 0px 28.941190719604492px 42.205902099609375px 0px rgba(0, 0, 0, 0.01), 0px 96px 140px 0px rgba(0, 0, 0, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 722px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-839di0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 0.5px 0.5px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-126h67g, .framer-a2fzY .framer-anl6g7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-1mtufqg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a2fzY .framer-3xbdma, .framer-a2fzY .framer-y4wzw, .framer-a2fzY .framer-bvqplp, .framer-a2fzY .framer-rd1hgm, .framer-a2fzY .framer-1enduh3, .framer-a2fzY .framer-1jb1ole { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 642px; word-break: break-word; word-wrap: break-word; }\",\".framer-a2fzY .framer-1sltbtv { aspect-ratio: 2.825 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 226px; }\",\".framer-a2fzY .framer-1zosek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-a2fzY .framer-ljuyfj, .framer-a2fzY .framer-cpf1ok { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16); flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 42px; }\",\".framer-a2fzY .framer-w4kdfa { flex: none; height: 140px; overflow: visible; position: relative; width: 910px; z-index: 1; }\",\".framer-a2fzY .framer-azvhrr { align-content: center; align-items: center; background-color: #1f2939; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 24px 24px -12px rgba(0, 0, 0, 0.1), 0px 12px 12px -6px rgba(0, 0, 0, 0.1), 0px 6px 6px -3px rgba(0, 0, 0, 0.1), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.1), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 268px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-a2fzY .framer-1h6pc3z { bottom: -84px; flex: none; left: 0px; position: absolute; top: -85px; width: 412px; z-index: 0; }\",\".framer-a2fzY .framer-hj4p4k { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 530px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-a2fzY .framer-18f2vxl-container { flex: none; height: 44px; position: relative; width: auto; z-index: 1; }\",\".framer-a2fzY .framer-1xzu474 { bottom: -145px; flex: none; position: absolute; right: -55px; top: -145px; width: 539px; z-index: 0; }\",\".framer-a2fzY .framer-pr33cv { bottom: -5px; flex: none; left: 170px; position: absolute; top: -2px; width: 4px; z-index: 1; }\",\".framer-a2fzY .framer-1bvrueh { bottom: -5px; flex: none; position: absolute; right: 170px; top: -2px; width: 4px; z-index: 1; }\",'.framer-a2fzY[data-border=\"true\"]::after, .framer-a2fzY [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; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-a2fzY.framer-1rq73gh { width: 1200px; } .framer-a2fzY .framer-dw7nlv { width: 1120px; } .framer-a2fzY .framer-wrmudd { bottom: -295px; height: var(--framer-aspect-ratio-supported, 1072px); left: -146px; right: -141px; } .framer-a2fzY .framer-dngupm { top: 147px; } .framer-a2fzY .framer-1aogd62, .framer-a2fzY .framer-108h4oh, .framer-a2fzY .framer-121zkch, .framer-a2fzY .framer-d5yp3h, .framer-a2fzY .framer-pr33cv { left: 70px; } .framer-a2fzY .framer-peyd45, .framer-a2fzY .framer-t1fhyv, .framer-a2fzY .framer-1v2qyij, .framer-a2fzY .framer-chzd6u, .framer-a2fzY .framer-1bvrueh { right: 70px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-a2fzY.framer-1rq73gh { width: 810px; } .framer-a2fzY .framer-dw7nlv { height: 770px; max-width: 770px; width: 100%; } .framer-a2fzY .framer-wrmudd { bottom: -345px; height: var(--framer-aspect-ratio-supported, 1037px); left: -346px; right: -245px; } .framer-a2fzY .framer-dngupm { left: 48%; top: 137px; transform: translateX(-50%); } .framer-a2fzY .framer-173d6s1 { white-space: pre-wrap; width: 557px; word-break: break-word; word-wrap: break-word; } .framer-a2fzY .framer-1io16cv, .framer-a2fzY .framer-cnipyx, .framer-a2fzY .framer-150otnv, .framer-a2fzY .framer-1wohney { max-width: 770px; } .framer-a2fzY .framer-1nbhyxn-container, .framer-a2fzY .framer-1r5vvma, .framer-a2fzY .framer-6nny2k, .framer-a2fzY .framer-wdmqy4, .framer-a2fzY .framer-nnzenq, .framer-a2fzY .framer-gxpr4n, .framer-a2fzY .framer-1bs264d, .framer-a2fzY .framer-w4kdfa { width: 100%; } .framer-a2fzY .framer-17gvuo4 { height: var(--framer-aspect-ratio-supported, 36px); } .framer-a2fzY .framer-1d5azts { bottom: -59px; right: -140px; top: unset; width: unset; } .framer-a2fzY .framer-1kupc9g { order: 1; } .framer-a2fzY .framer-ko7yyc { bottom: -43px; height: unset; left: -92px; right: -93px; top: -2px; width: unset; } .framer-a2fzY .framer-1vv9hmo { bottom: 33px; top: unset; transform: translateX(-50%); } .framer-a2fzY .framer-5aapya { top: calc(101.96078431372551% - 94px / 2); } .framer-a2fzY .framer-ogly98 { left: calc(50.00000000000002% - 50.49261083743842% / 2); top: calc(21.96078431372551% - 57px / 2); } .framer-a2fzY .framer-1iflvzn { left: calc(50.00000000000002% - 10px / 2); top: calc(33.725490196078454% - 10px / 2); } .framer-a2fzY .framer-6j5j7v { left: calc(50.24630541871924% - 10px / 2); top: calc(83.13725490196082% - 10px / 2); } .framer-a2fzY .framer-dg31xd { order: 0; } .framer-a2fzY .framer-bzhbco { gap: 40px; width: 100%; } .framer-a2fzY .framer-1bj6wsu, .framer-a2fzY .framer-1n1x83s { gap: 24px; width: 100%; } .framer-a2fzY .framer-f61jmj, .framer-a2fzY .framer-vp9dro { align-self: unset; width: 100%; } .framer-a2fzY .framer-1eytq86 { grid-template-columns: repeat(2, minmax(50px, 1fr)); width: 100%; } .framer-a2fzY .framer-azvhrr { left: calc(50.00000000000002% - 770px / 2); right: unset; width: 770px; }}\",\"@media (max-width: 809px) { .framer-a2fzY.framer-1rq73gh { width: 390px; } .framer-a2fzY .framer-ltofoy { padding: 80px 8px 0px 8px; } .framer-a2fzY .framer-dw7nlv { height: 708px; width: 100%; } .framer-a2fzY .framer-dngupm { align-content: center; align-items: center; gap: 16px; left: 0px; padding: 0px 13px 0px 13px; top: 32px; width: 100%; z-index: 3; } .framer-a2fzY .framer-11cu9g6-container, .framer-a2fzY .framer-1dfnc91-container, .framer-a2fzY .framer-1p3retk-container, .framer-a2fzY .framer-11z7o1y, .framer-a2fzY .framer-fqc15c, .framer-a2fzY .framer-188dl2i, .framer-a2fzY .framer-1r5vvma, .framer-a2fzY .framer-17xqpfe, .framer-a2fzY .framer-mrzq99, .framer-a2fzY .framer-1jv4yrj, .framer-a2fzY .framer-wdmqy4, .framer-a2fzY .framer-17x6qpa, .framer-a2fzY .framer-gxpr4n, .framer-a2fzY .framer-1c8zk9f, .framer-a2fzY .framer-16dq6wk, .framer-a2fzY .framer-1bs264d, .framer-a2fzY .framer-ezkwb0, .framer-a2fzY .framer-1i45ae1, .framer-a2fzY .framer-1f8x3hz, .framer-a2fzY .framer-4a1pg8, .framer-a2fzY .framer-10kj00f, .framer-a2fzY .framer-ibm9g7, .framer-a2fzY .framer-afchx7, .framer-a2fzY .framer-11uqdwx, .framer-a2fzY .framer-o0z702, .framer-a2fzY .framer-1rkybtp, .framer-a2fzY .framer-n1skxs, .framer-a2fzY .framer-126h67g, .framer-a2fzY .framer-3xbdma, .framer-a2fzY .framer-y4wzw, .framer-a2fzY .framer-bvqplp, .framer-a2fzY .framer-rd1hgm, .framer-a2fzY .framer-1enduh3, .framer-a2fzY .framer-1jb1ole, .framer-a2fzY .framer-1zosek, .framer-a2fzY .framer-hj4p4k { width: 100%; } .framer-a2fzY .framer-ie7ysz, .framer-a2fzY .framer-173d6s1, .framer-a2fzY .framer-ai0xym { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-a2fzY .framer-194ocnk { flex-direction: column; gap: 12px; } .framer-a2fzY .framer-1io16cv { padding: 100px 0px 48px 0px; } .framer-a2fzY .framer-16cyywq { order: 0; padding: 0px 16px 0px 16px; width: 100%; } .framer-a2fzY .framer-gi65x9 { min-height: unset; order: 1; } .framer-a2fzY .framer-r8l0m9 { order: 1; } .framer-a2fzY .framer-14jnq7k { order: 3; } .framer-a2fzY .framer-1nlppxs { order: 2; } .framer-a2fzY .framer-1dvn0al, .framer-a2fzY .framer-dg31xd { order: 0; } .framer-a2fzY .framer-cnipyx, .framer-a2fzY .framer-1wohney { padding: 40px 16px 100px 16px; } .framer-a2fzY .framer-1pa2apw, .framer-a2fzY .framer-8lrs28 { padding: 16px 0px 16px 0px; } .framer-a2fzY .framer-6nny2k, .framer-a2fzY .framer-nnzenq { align-content: center; align-items: center; flex-direction: column; width: 100%; } .framer-a2fzY .framer-kn6vo6 { height: min-content; max-width: 400px; width: 100%; } .framer-a2fzY .framer-zq1k07 { flex: none; height: 205px; } .framer-a2fzY .framer-xzcevl { flex: none; height: min-content; max-width: 400px; padding: 24px 0px 0px 24px; width: 100%; } .framer-a2fzY .framer-8627g9 { height: min-content; padding: 0px 24px 0px 0px; } .framer-a2fzY .framer-1qg1vmr { flex: none; height: 229px; } .framer-a2fzY .framer-z3nyfz { flex: none; max-width: 400px; width: 100%; } .framer-a2fzY .framer-1kupc9g { -webkit-mask: unset; mask: unset; order: 1; overflow: hidden; } .framer-a2fzY .framer-8nonsr { max-width: 400px; padding: 24px 0px 0px 24px; width: 100%; } .framer-a2fzY .framer-xwq3p6 { padding: 0px 24px 0px 0px; } .framer-a2fzY .framer-1l8om81 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 5%, rgba(0,0,0,1) 34%) add; mask: linear-gradient(0deg, rgba(0,0,0,0) 5%, rgba(0,0,0,1) 34%) add; } .framer-a2fzY .framer-150otnv { padding: 190px 0px 48px 0px; } .framer-a2fzY .framer-nxz9zh { padding: 0px 16px 0px 16px; width: 100%; } .framer-a2fzY .framer-1ip752t { max-width: 420px; width: 100%; } .framer-a2fzY .framer-bzhbco { gap: 24px; padding: 0px 16px 0px 16px; width: 100%; } .framer-a2fzY .framer-1bj6wsu, .framer-a2fzY .framer-1n1x83s { flex-direction: column; gap: 24px; width: 100%; } .framer-a2fzY .framer-1j5nr0a-container { aspect-ratio: 0.8605769230769231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 232px); max-width: 400px; width: 100%; } .framer-a2fzY .framer-6r4ffj-container { align-self: unset; aspect-ratio: 0.8605769230769231 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 232px); max-width: 400px; width: 100%; } .framer-a2fzY .framer-g710tq-container, .framer-a2fzY .framer-386ck2-container { aspect-ratio: 0.8668280871670703 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 231px); max-width: 400px; width: 100%; } .framer-a2fzY .framer-f61jmj, .framer-a2fzY .framer-vp9dro { align-self: unset; width: 100%; } .framer-a2fzY .framer-h0wq3z { height: min-content; padding: 6px 12px 6px 12px; } .framer-a2fzY .framer-1eytq86 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 26px; justify-content: flex-start; width: 100%; } .framer-a2fzY .framer-1vqsy9j, .framer-a2fzY .framer-1sgeenq, .framer-a2fzY .framer-1xyf51j, .framer-a2fzY .framer-losqfs, .framer-a2fzY .framer-kl19pa, .framer-a2fzY .framer-8i51h5, .framer-a2fzY .framer-g3vll, .framer-a2fzY .framer-1dh72r0 { --border-bottom-width: 1px; --border-color: rgba(105, 117, 134, 0.22); --border-left-width: 0px; --border-right-width: 0px; --border-style: dotted; --border-top-width: 0px; align-self: unset; padding: 0px 0px 20px 0px; } .framer-a2fzY .framer-1848aor { --border-bottom-width: 1px; --border-color: rgba(105, 117, 134, 0.22); --border-left-width: 0px; --border-right-width: 0px; --border-style: dotted; --border-top-width: 0px; align-self: unset; padding: 0px 0px 26px 0px; } .framer-a2fzY .framer-pue3if { padding: 32px 24px 32px 24px; } .framer-a2fzY .framer-839di0 { padding: 16px; } .framer-a2fzY .framer-1wgv11t { max-width: 260px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-a2fzY .framer-anl6g7 { flex: 1 0 0px; width: 1px; } .framer-a2fzY .framer-w4kdfa { height: 150px; width: 100%; } .framer-a2fzY .framer-azvhrr { gap: 32px; height: min-content; padding: 32px 24px 32px 24px; } .framer-a2fzY .framer-1h6pc3z { bottom: -52px; left: calc(50.00000000000002% - 334px / 2); top: -51px; width: 334px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7139\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EfRmhtV8Z\":{\"layout\":[\"fixed\",\"auto\"]},\"ObbmVml1t\":{\"layout\":[\"fixed\",\"auto\"]},\"oDFjJKDFf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerTrackingIds [{\"id\":\"request-free-trial\"},{\"id\":\"schedule-demo\"}]\n * @framerScrollSections {\"WbZqU9mqH\":{\"pattern\":\":WbZqU9mqH\",\"name\":\"trigger-nav-background\"}}\n * @framerResponsiveScreen\n */const FramerHE1QGHJti=withCSS(Component,css,\"framer-a2fzY\");export default FramerHE1QGHJti;FramerHE1QGHJti.displayName=\"Home\";FramerHE1QGHJti.defaultProps={height:7139,width:1440};addFonts(FramerHE1QGHJti,[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/PfdOpgzFf7N2Uye9JX7xRKYTgSc.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/bHYNJqzTyl2lqvmMiRRS6Y16Es.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/yDtI2UI8XcEg1W2je9XPN3Noo.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...IntercomFonts,...BannerFonts,...ButtonFonts,...FeatureTabsFonts,...SVGPathShimmerFonts,...CardsTicketsFonts,...CardsSLAsFonts,...CardsCSATFonts,...CardsAITimeSavingsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHE1QGHJti\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EfRmhtV8Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ObbmVml1t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oDFjJKDFf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"WbZqU9mqH\\\":{\\\"pattern\\\":\\\":WbZqU9mqH\\\",\\\"name\\\":\\\"trigger-nav-background\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"request-free-trial\\\"},{\\\"id\\\":\\\"schedule-demo\\\"}]\",\"framerIntrinsicHeight\":\"7139\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["_extends", "target", "i", "source", "key", "_objectWithoutPropertiesLoose", "excluded", "sourceKeys", "log", "level", "message", "packageName", "isEmptyObject", "obj", "isSSR", "window", "removeUndefined", "IntercomAPI", "method", "_len", "args", "_key", "NO_INTERCOM_PROVIDER_MESSAGE", "IntercomContext", "z", "initialize", "appId", "timeout", "w", "ic", "d", "l", "s", "x", "mapMessengerAttributesToRawMessengerAttributes", "attributes", "mapDataAttributesCompanyToRawDataAttributesCompany", "mapDataAttributesAvatarToRawDataAttributesAvatar", "mapDataAttributesToRawDataAttributes", "_attributes$companies", "mapIntercomPropsToRawIntercomProps", "props", "IntercomProvider", "_ref", "_ref$autoBoot", "autoBoot", "autoBootProps", "children", "onHide", "onShow", "onUnreadCountChange", "_ref$shouldInitialize", "shouldInitialize", "apiBase", "initializeDelay", "rest", "isBooted", "pe", "isInitialized", "boot", "te", "metaData", "ensureIntercom", "functionName", "callback", "shutdown", "hardShutdown", "refresh", "lastRequestedAt", "update", "rawProps", "hide", "show", "showMessages", "showNewMessages", "getVisitorId", "startTour", "tourId", "trackEvent", "event", "providerValue", "se", "content", "B", "emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "Intercom", "appId", "style", "props", "RenderTarget", "u", "motion", "neutralStateStyle", "p", "stateTitleStyle", "stateParagraphStyle", "IntercomProvider", "addPropertyControls", "ControlType", "IntercomFonts", "getFonts", "Intercom", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "BannerFonts", "VpbSN7w4R_default", "ButtonFonts", "kOibTklIm_default", "ButtonWithScheduleDemoButton1p3retkWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withScheduleDemoButton", "kOibTklIm_exports", "MotionDivWithFX", "withFX", "motion", "FeatureTabsFonts", "JlorPR0lz_default", "ContainerWithFX", "Container", "ImageWithFX", "SVGPathShimmerFonts", "SVGPathShimmer", "CardsTicketsFonts", "L3YNK2VpO_default", "CardsSLAsFonts", "ExLmdaf0s_default", "CardsCSATFonts", "y45WZeBBg_default", "CardsAITimeSavingsFonts", "uEheNtPIe_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "animation3", "transition4", "transition5", "animation4", "addImageAlt", "image", "alt", "transformTemplate1", "_", "transformTemplate2", "transition6", "transition7", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "x", "RichText", "resolvedLinks1", "SVG", "resolvedLinks2", "css", "FramerHE1QGHJti", "withCSS", "HE1QGHJti_default", "addFonts", "__FramerMetadata__"]
}
