{
  "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/tzY0nVItgjnUdiRxw0dC/j0oiS9ZW3Wy0i64YzR9i/GOBjer1du.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/29VpBJsrMxhX1v4xF0GP/TjqSAkHQCqFM4uHsxSfa/HGo8YhvPy.js", "ssg:https://framerusercontent.com/modules/1dCGdKq8pu7EUQEYZITH/Lm2yJ20wPqwHfQhh3zl1/SOvG4qmLE.js", "ssg:https://framerusercontent.com/modules/iQbBiO4W0XdgHZhxtvaV/p40YIslEzbYM8JGWEkeM/w1dvJe3Ar.js", "ssg:https://framerusercontent.com/modules/hvMIogbeWfuxN8XpHUP0/VlmnTuE4pSZDneWL8Ts8/ZhrRcBbhh.js", "ssg:https://framerusercontent.com/modules/YVvBAbSlvfgZEaOZlb7D/RpBLj0m0GqWHrJqnLM9q/kGWi0HEJ8.js", "ssg:https://framerusercontent.com/modules/aaBYTqhaDhERwnZVFBDn/3RUt5iFjmJFTUBJKfrc0/nY01FKgds.js", "ssg:https://framerusercontent.com/modules/hvhcsJfZ8v8y5EP5wai2/VFqxEbmXhbeVmyJ1qWAs/VzqBlNU2p.js", "ssg:https://framerusercontent.com/modules/6Xw6gj99TEVZlVupjjKh/j6d5eyCiqOCJiTD2zm75/augiA20Il.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 (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/k9oNGyuWov9Rfj9qHzOA/vauUsdJLtZP5kzQgFxpO/Pu00R26H5.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mVg9C53SW5Mg6bdjubKZ/gOSNGB7QInpMmp0GIHyu/UYkaAbgpd.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"IZmxCmvFx\",\"lMYBOgfDh\"];const serializationHash=\"framer-rkmzl\";const variantClassNames={IZmxCmvFx:\"framer-v-7lgkw0\",lMYBOgfDh:\"framer-v-1czfbpw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Primary:\"IZmxCmvFx\",Secondary:\"lMYBOgfDh\"};const getProps=({description,height,id,title,width,...props})=>{return{...props,sbMsm2jj9:description??props.sbMsm2jj9??\"This is description from the title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"IZmxCmvFx\",zTE2qtvG6:title??props.zTE2qtvG6??\"This is title\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,zTE2qtvG6,sbMsm2jj9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IZmxCmvFx\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-7lgkw0\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"IZmxCmvFx\",ref:refBinding,style:{...style},...addPropertyOverrides({lMYBOgfDh:{\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y0xy4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uCDsgKL84-container\",nodeId:\"uCDsgKL84\",rendersWithMotion:true,scopeId:\"GOBjer1du\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, rgb(18, 19, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Hockey\",id:\"uCDsgKL84\",layoutId:\"uCDsgKL84\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uc51h3\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"UhL70sJjl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s5dqjr\",\"data-styles-preset\":\"UYkaAbgpd\",children:\"This is title\"})}),className:\"framer-2e242m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lF2gRCdUA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zTE2qtvG6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6)))\"},children:\"Close deals faster with a structured pipeline and automated follow-ups.\"})}),className:\"framer-190h2ip\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tvOUQzpnZ\",style:{\"--extracted-r6o4lv\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sbMsm2jj9,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rkmzl.framer-frhram, .framer-rkmzl .framer-frhram { display: block; }\",\".framer-rkmzl.framer-7lgkw0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 450px; }\",\".framer-rkmzl .framer-1y0xy4-container { flex: none; height: 28px; position: relative; width: 20px; }\",\".framer-rkmzl .framer-uc51h3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-rkmzl .framer-2e242m, .framer-rkmzl .framer-190h2ip { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rkmzl.framer-v-1czfbpw.framer-7lgkw0 { flex-direction: column; gap: 8px; }\",\".framer-rkmzl.framer-v-1czfbpw .framer-1y0xy4-container { height: 18px; }\",\".framer-rkmzl.framer-v-1czfbpw .framer-uc51h3 { flex: none; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50.5\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lMYBOgfDh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zTE2qtvG6\":\"title\",\"sbMsm2jj9\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerGOBjer1du=withCSS(Component,css,\"framer-rkmzl\");export default FramerGOBjer1du;FramerGOBjer1du.displayName=\"Misc/Icon Text\";FramerGOBjer1du.defaultProps={height:50.5,width:450};addPropertyControls(FramerGOBjer1du,{variant:{options:[\"IZmxCmvFx\",\"lMYBOgfDh\"],optionTitles:[\"Primary\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},zTE2qtvG6:{defaultValue:\"This is title\",displayTextArea:false,title:\"Title\",type:ControlType.String},sbMsm2jj9:{defaultValue:\"This is description from the title\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerGOBjer1du,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGOBjer1du\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lMYBOgfDh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"50.5\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"450\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"zTE2qtvG6\\\":\\\"title\\\",\\\"sbMsm2jj9\\\":\\\"description\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GOBjer1du.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import Integration from\"https://framerusercontent.com/modules/l8N6NuXVw2C92Sth9yDm/yVupIRW7nsrFO7C5vwSF/MzyqUfjgL.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lcfu88yvjUt75EnwSo3D/sNrUUcVHkWbPSJWjNN6Q/Epu0NqScc.js\";const SlideshowFonts=getFonts(Slideshow);const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-M4RKI\";const variantClassNames={Rc7yyvMST:\"framer-v-1qvh67d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"f6mscGTpn\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"f6mscGTpn\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"f6mscGTpn\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"f6mscGTpn\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"IA55JULQ6\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"IA55JULQ6\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"IA55JULQ6\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"IA55JULQ6\",name:\"id\",type:\"Identifier\"}]});const query2=prequery=>prequery({from:{alias:\"XtQd6iwJl\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"XtQd6iwJl\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"XtQd6iwJl\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"XtQd6iwJl\",name:\"id\",type:\"Identifier\"}]});const query3=prequery=>prequery({from:{alias:\"J9KTNGOB0\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"J9KTNGOB0\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"J9KTNGOB0\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"J9KTNGOB0\",name:\"id\",type:\"Identifier\"}]});const query4=prequery=>prequery({from:{alias:\"wJvkzMAlm\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"wJvkzMAlm\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"wJvkzMAlm\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"wJvkzMAlm\",name:\"id\",type:\"Identifier\"}]});const query5=prequery=>prequery({from:{alias:\"FQeM8kLFE\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"FQeM8kLFE\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"FQeM8kLFE\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"FQeM8kLFE\",name:\"id\",type:\"Identifier\"}]});const query6=prequery=>prequery({from:{alias:\"fJHAXQwGl\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"fJHAXQwGl\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"fJHAXQwGl\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"fJHAXQwGl\",name:\"id\",type:\"Identifier\"}]});const query7=prequery=>prequery({from:{alias:\"U2Ge0UcOH\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"U2Ge0UcOH\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"U2Ge0UcOH\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"U2Ge0UcOH\",name:\"id\",type:\"Identifier\"}]});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,S5J8ZPe4vf6mscGTpn,ivapFwSlwf6mscGTpn,idf6mscGTpn,S5J8ZPe4vIA55JULQ6,ivapFwSlwIA55JULQ6,idIA55JULQ6,S5J8ZPe4vXtQd6iwJl,ivapFwSlwXtQd6iwJl,idXtQd6iwJl,S5J8ZPe4vJ9KTNGOB0,ivapFwSlwJ9KTNGOB0,idJ9KTNGOB0,S5J8ZPe4vwJvkzMAlm,ivapFwSlwwJvkzMAlm,idwJvkzMAlm,S5J8ZPe4vFQeM8kLFE,ivapFwSlwFQeM8kLFE,idFQeM8kLFE,S5J8ZPe4vfJHAXQwGl,ivapFwSlwfJHAXQwGl,idfJHAXQwGl,S5J8ZPe4vU2Ge0UcOH,ivapFwSlwU2Ge0UcOH,idU2Ge0UcOH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Rc7yyvMST\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IQhuqQxya\"},motionChild:true,nodeId:\"Rc7yyvMST\",scopeId:\"HGo8YhvPy\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1qvh67d\",className,classNames)} framer-1f87qqz`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Rc7yyvMST\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vnvbax\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"WWcG_ZR5Q\",style:{backgroundColor:\"rgb(58, 190, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oc7fk1\",\"data-framer-name\":\"Slide/Tools\",layoutDependency:layoutDependency,layoutId:\"YDXTnOyaw\",style:{backgroundColor:\"var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rjo0fw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"u7MN6sHtH-container\",nodeId:\"u7MN6sHtH\",rendersWithMotion:true,scopeId:\"HGo8YhvPy\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"u7MN6sHtH\",intervalControl:1,itemAmount:1,layoutId:\"u7MN6sHtH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15fb9z1\",\"data-framer-name\":\"Tool 01\",layoutDependency:layoutDependency,layoutId:\"f6mscGTpn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"f6mscGTpn\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"f6mscGTpn\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"f6mscGTpn\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"f6mscGTpn\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idf6mscGTpn,ivapFwSlw:ivapFwSlwf6mscGTpn,S5J8ZPe4v:S5J8ZPe4vf6mscGTpn},index)=>{ivapFwSlwf6mscGTpn??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`f6mscGTpn-${idf6mscGTpn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwf6mscGTpn},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vf6mscGTpn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-h8tgq7\",layoutDependency:layoutDependency,layoutId:\"lTuaaXCwK\"})})},idf6mscGTpn);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yh3jwh\",\"data-framer-name\":\"Tool 02\",layoutDependency:layoutDependency,layoutId:\"IA55JULQ6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IA55JULQ6\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"IA55JULQ6\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"IA55JULQ6\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"IA55JULQ6\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idIA55JULQ6,ivapFwSlw:ivapFwSlwIA55JULQ6,S5J8ZPe4v:S5J8ZPe4vIA55JULQ6},index1)=>{ivapFwSlwIA55JULQ6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`IA55JULQ6-${idIA55JULQ6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwIA55JULQ6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vIA55JULQ6),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1e4wcb6\",layoutDependency:layoutDependency,layoutId:\"RqZZP6IUK\"})})},idIA55JULQ6);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13k1hh\",\"data-framer-name\":\"Tool 03\",layoutDependency:layoutDependency,layoutId:\"XtQd6iwJl\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XtQd6iwJl\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"XtQd6iwJl\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"XtQd6iwJl\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"XtQd6iwJl\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idXtQd6iwJl,ivapFwSlw:ivapFwSlwXtQd6iwJl,S5J8ZPe4v:S5J8ZPe4vXtQd6iwJl},index2)=>{ivapFwSlwXtQd6iwJl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XtQd6iwJl-${idXtQd6iwJl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwXtQd6iwJl},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vXtQd6iwJl),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-19igjzn\",layoutDependency:layoutDependency,layoutId:\"gsh70NqJa\"})})},idXtQd6iwJl);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b285ek\",\"data-framer-name\":\"Tool 04\",layoutDependency:layoutDependency,layoutId:\"J9KTNGOB0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"J9KTNGOB0\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"J9KTNGOB0\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"J9KTNGOB0\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"J9KTNGOB0\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idJ9KTNGOB0,ivapFwSlw:ivapFwSlwJ9KTNGOB0,S5J8ZPe4v:S5J8ZPe4vJ9KTNGOB0},index3)=>{ivapFwSlwJ9KTNGOB0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`J9KTNGOB0-${idJ9KTNGOB0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwJ9KTNGOB0},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vJ9KTNGOB0),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-10lvb8s\",layoutDependency:layoutDependency,layoutId:\"eoh544q0U\"})})},idJ9KTNGOB0);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kptdaf\",\"data-framer-name\":\"Tool 05\",layoutDependency:layoutDependency,layoutId:\"wJvkzMAlm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wJvkzMAlm\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"wJvkzMAlm\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"wJvkzMAlm\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"wJvkzMAlm\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idwJvkzMAlm,ivapFwSlw:ivapFwSlwwJvkzMAlm,S5J8ZPe4v:S5J8ZPe4vwJvkzMAlm},index4)=>{ivapFwSlwwJvkzMAlm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wJvkzMAlm-${idwJvkzMAlm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwwJvkzMAlm},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vwJvkzMAlm),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1eneaz1\",layoutDependency:layoutDependency,layoutId:\"qLsUTvHOx\"})})},idwJvkzMAlm);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tyjz48\",\"data-framer-name\":\"Tool 06\",layoutDependency:layoutDependency,layoutId:\"FQeM8kLFE\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FQeM8kLFE\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"FQeM8kLFE\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"FQeM8kLFE\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"FQeM8kLFE\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idFQeM8kLFE,ivapFwSlw:ivapFwSlwFQeM8kLFE,S5J8ZPe4v:S5J8ZPe4vFQeM8kLFE},index5)=>{ivapFwSlwFQeM8kLFE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FQeM8kLFE-${idFQeM8kLFE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwFQeM8kLFE},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vFQeM8kLFE),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-d3xmhg\",layoutDependency:layoutDependency,layoutId:\"At7hPpu0c\"})})},idFQeM8kLFE);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2wwd60\",\"data-framer-name\":\"Tool 07\",layoutDependency:layoutDependency,layoutId:\"fJHAXQwGl\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fJHAXQwGl\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"fJHAXQwGl\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"fJHAXQwGl\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"fJHAXQwGl\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:idfJHAXQwGl,ivapFwSlw:ivapFwSlwfJHAXQwGl,S5J8ZPe4v:S5J8ZPe4vfJHAXQwGl},index6)=>{ivapFwSlwfJHAXQwGl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fJHAXQwGl-${idfJHAXQwGl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwfJHAXQwGl},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vfJHAXQwGl),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1cgvysb\",layoutDependency:layoutDependency,layoutId:\"I2BNbuEH9\"})})},idfJHAXQwGl);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohpsh7\",\"data-framer-name\":\"Tool 08\",layoutDependency:layoutDependency,layoutId:\"U2Ge0UcOH\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"U2Ge0UcOH\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},select:[{collection:\"U2Ge0UcOH\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"U2Ge0UcOH\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"U2Ge0UcOH\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idU2Ge0UcOH,ivapFwSlw:ivapFwSlwU2Ge0UcOH,S5J8ZPe4v:S5J8ZPe4vU2Ge0UcOH},index7)=>{ivapFwSlwU2Ge0UcOH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`U2Ge0UcOH-${idU2Ge0UcOH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwU2Ge0UcOH},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"26px\",...toResponsiveImage(S5J8ZPe4vU2Ge0UcOH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-41x8b1\",layoutDependency:layoutDependency,layoutId:\"LLWxEunPu\"})})},idU2Ge0UcOH);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pk5f8l\",\"data-styles-preset\":\"Epu0NqScc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255)))\"},children:\"View all integrations\"})}),className:\"framer-jfdwfc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Sae_eJ6bp\",style:{\"--extracted-r6o4lv\":\"var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xrqw0q-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wzZtrgvWV-container\",nodeId:\"wzZtrgvWV\",rendersWithMotion:true,scopeId:\"HGo8YhvPy\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, rgb(18, 19, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"wzZtrgvWV\",layoutId:\"wzZtrgvWV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M4RKI.framer-1f87qqz, .framer-M4RKI .framer-1f87qqz { display: block; }\",\".framer-M4RKI.framer-1qvh67d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; text-decoration: none; width: 320px; }\",\".framer-M4RKI .framer-vnvbax { 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: center; overflow: visible; padding: 10px 20px 10px 10px; position: relative; width: 1px; }\",\".framer-M4RKI .framer-1oc7fk1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M4RKI .framer-rjo0fw-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 20px; }\",\".framer-M4RKI .framer-15fb9z1, .framer-M4RKI .framer-yh3jwh, .framer-M4RKI .framer-13k1hh, .framer-M4RKI .framer-b285ek, .framer-M4RKI .framer-1kptdaf, .framer-M4RKI .framer-tyjz48, .framer-M4RKI .framer-2wwd60, .framer-M4RKI .framer-1ohpsh7 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 26px); justify-content: center; padding: 0px; position: relative; width: 26px; }\",\".framer-M4RKI .framer-h8tgq7, .framer-M4RKI .framer-1e4wcb6, .framer-M4RKI .framer-19igjzn, .framer-M4RKI .framer-10lvb8s, .framer-M4RKI .framer-1eneaz1, .framer-M4RKI .framer-d3xmhg, .framer-M4RKI .framer-1cgvysb, .framer-M4RKI .framer-41x8b1 { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-M4RKI .framer-jfdwfc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M4RKI .framer-xrqw0q-container { flex: none; height: 14px; position: relative; width: 14px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHGo8YhvPy=withCSS(Component,css,\"framer-M4RKI\");export default FramerHGo8YhvPy;FramerHGo8YhvPy.displayName=\"Button/All Integrations\";FramerHGo8YhvPy.defaultProps={height:60,width:320};addFonts(FramerHGo8YhvPy,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SlideshowFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHGo8YhvPy\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"320\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"60\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HGo8YhvPy.map", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-I5otq .framer-styles-preset-1v7iuag:not(.rich-text-wrapper), .framer-I5otq .framer-styles-preset-1v7iuag.rich-text-wrapper a { --framer-link-current-text-color: var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, #121316) /* {\"name\":\"Black\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, #121316) /* {\"name\":\"Black\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, #121316); --framer-link-text-decoration: underline; }'];export const className=\"framer-I5otq\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"sb6FrkcJf\",\"WGU59O1SA\"];const serializationHash=\"framer-WaTT3\";const variantClassNames={sb6FrkcJf:\"framer-v-430cn7\",WGU59O1SA:\"framer-v-1wbv7zi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:0,delay:.2,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Appear 1\":\"WGU59O1SA\",Start:\"sb6FrkcJf\"};const getProps=({height,id,image,padding,width,...props})=>{return{...props,ilWWtJf3v:image??props.ilWWtJf3v,lJIGePIkT:padding??props.lJIGePIkT??\"64px 64px 64px 64px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sb6FrkcJf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ilWWtJf3v,lJIGePIkT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sb6FrkcJf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1w3a9x9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState,true),3e3);});useOnVariantChange(baseVariant,{default:onAppear1w3a9x9});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-430cn7\",className,classNames),\"data-framer-name\":\"Start\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sb6FrkcJf\",ref:refBinding,style:{\"--zsagno\":numberToPixelString(lJIGePIkT),backgroundColor:\"var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, rgb(245, 245, 245))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{WGU59O1SA:{backgroundColor:\"var(--token-b62e05fc-6719-4e37-b2df-1a8a240dcc9c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({WGU59O1SA:{\"data-framer-name\":\"Appear 1\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`calc(${componentViewport?.width||\"100vw\"} - ${lJIGePIkT*2}px)`,...toResponsiveImage(ilWWtJf3v),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1bsew2r\",layoutDependency:layoutDependency,layoutId:\"Ydk6N8nPE\",...addPropertyOverrides({WGU59O1SA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.1997)`,...toResponsiveImage(ilWWtJf3v),...{positionX:\"left\",positionY:\"top\"}}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WaTT3.framer-647jyb, .framer-WaTT3 .framer-647jyb { display: block; }\",\".framer-WaTT3.framer-430cn7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 396px; justify-content: center; overflow: hidden; padding: var(--zsagno); position: relative; width: 596px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WaTT3 .framer-1bsew2r { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WaTT3.framer-430cn7 { gap: 0px; } .framer-WaTT3.framer-430cn7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WaTT3.framer-430cn7 > :first-child { margin-top: 0px; } .framer-WaTT3.framer-430cn7 > :last-child { margin-bottom: 0px; } }\",\".framer-WaTT3.framer-v-1wbv7zi.framer-430cn7 { will-change: unset; }\",\".framer-WaTT3.framer-v-1wbv7zi .framer-1bsew2r { flex: none; height: 120%; left: 0px; position: absolute; top: 0px; width: 120%; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 396\n * @framerIntrinsicWidth 596\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WGU59O1SA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ilWWtJf3v\":\"image\",\"lJIGePIkT\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw1dvJe3Ar=withCSS(Component,css,\"framer-WaTT3\");export default Framerw1dvJe3Ar;Framerw1dvJe3Ar.displayName=\"Image/Feature Tab\";Framerw1dvJe3Ar.defaultProps={height:396,width:596};addPropertyControls(Framerw1dvJe3Ar,{variant:{options:[\"sb6FrkcJf\",\"WGU59O1SA\"],optionTitles:[\"Start\",\"Appear 1\"],title:\"Variant\",type:ControlType.Enum},ilWWtJf3v:{title:\"Image\",type:ControlType.ResponsiveImage},lJIGePIkT:{defaultValue:\"64px 64px 64px 64px\",title:\"Padding\",type:ControlType.Padding}});addFonts(Framerw1dvJe3Ar,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw1dvJe3Ar\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"596\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ilWWtJf3v\\\":\\\"image\\\",\\\"lJIGePIkT\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"396\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WGU59O1SA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./w1dvJe3Ar.map", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/mVg9C53SW5Mg6bdjubKZ/gOSNGB7QInpMmp0GIHyu/UYkaAbgpd.js\";const enabledGestures={EuVFx4Llr:{hover:true}};const cycleOrder=[\"EuVFx4Llr\",\"MWuFG92M8\"];const serializationHash=\"framer-7Ddf2\";const variantClassNames={EuVFx4Llr:\"framer-v-1wndjwo\",MWuFG92M8:\"framer-v-1lvau7x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"MWuFG92M8\",Default:\"EuVFx4Llr\"};const getProps=({click,height,id,title,width,...props})=>{return{...props,QOV_VA92J:title??props.QOV_VA92J??\"Custom Dashboards & Reports\",u1MhkJu9h:click??props.u1MhkJu9h,variant:humanReadableVariantMap[props.variant]??props.variant??\"EuVFx4Llr\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,QOV_VA92J,u1MhkJu9h,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EuVFx4Llr\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaphn6lhn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(u1MhkJu9h){const res=await u1MhkJu9h(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1wndjwo\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"EuVFx4Llr\",onTap:onTaphn6lhn,ref:refBinding,style:{backgroundColor:\"var(--token-b62e05fc-6719-4e37-b2df-1a8a240dcc9c, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"EuVFx4Llr-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},MWuFG92M8:{backgroundColor:\"rgb(58, 190, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},...addPropertyOverrides({\"EuVFx4Llr-hover\":{\"data-framer-name\":undefined},MWuFG92M8:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s5dqjr\",\"data-styles-preset\":\"UYkaAbgpd\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-80ca54e7-c090-40b9-8cd9-3fbce3e9f95f, rgba(18, 19, 22, 0.4)))\"},children:\"Custom Dashboards & Reports\"})}),className:\"framer-m1c0l9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zqdWZOpUC\",style:{\"--extracted-1w1cjl5\":\"var(--token-80ca54e7-c090-40b9-8cd9-3fbce3e9f95f, rgba(18, 19, 22, 0.4))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:QOV_VA92J,variants:{\"EuVFx4Llr-hover\":{\"--extracted-1w1cjl5\":\"var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, rgb(18, 19, 22))\"},MWuFG92M8:{\"--extracted-1w1cjl5\":\"var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"EuVFx4Llr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s5dqjr\",\"data-styles-preset\":\"UYkaAbgpd\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, rgb(18, 19, 22)))\"},children:\"Custom Dashboards & Reports\"})})},MWuFG92M8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s5dqjr\",\"data-styles-preset\":\"UYkaAbgpd\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255)))\"},children:\"Custom Dashboards & Reports\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7Ddf2.framer-1yx9day, .framer-7Ddf2 .framer-1yx9day { display: block; }\",\".framer-7Ddf2.framer-1wndjwo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7Ddf2 .framer-m1c0l9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7Ddf2.framer-v-1lvau7x.framer-1wndjwo { padding: 12px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 294.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"MWuFG92M8\":{\"layout\":[\"auto\",\"auto\"]},\"yWmg92KrM\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"QOV_VA92J\":\"title\",\"u1MhkJu9h\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZhrRcBbhh=withCSS(Component,css,\"framer-7Ddf2\");export default FramerZhrRcBbhh;FramerZhrRcBbhh.displayName=\"Button/Tab\";FramerZhrRcBbhh.defaultProps={height:24,width:294.5};addPropertyControls(FramerZhrRcBbhh,{variant:{options:[\"EuVFx4Llr\",\"MWuFG92M8\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},QOV_VA92J:{defaultValue:\"Custom Dashboards & Reports\",displayTextArea:false,title:\"Title\",type:ControlType.String},u1MhkJu9h:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerZhrRcBbhh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZhrRcBbhh\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"QOV_VA92J\\\":\\\"title\\\",\\\"u1MhkJu9h\\\":\\\"click\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"294.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MWuFG92M8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yWmg92KrM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZhrRcBbhh.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Feature from\"https://framerusercontent.com/modules/8od7zTT0cMtyOTjt1lv9/vmUw3qiuaIdtlSVNEpNZ/AlUcK7UyM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/k9oNGyuWov9Rfj9qHzOA/vauUsdJLtZP5kzQgFxpO/Pu00R26H5.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1dCGdKq8pu7EUQEYZITH/Lm2yJ20wPqwHfQhh3zl1/SOvG4qmLE.js\";import ImageFeatureTab from\"https://framerusercontent.com/modules/iQbBiO4W0XdgHZhxtvaV/p40YIslEzbYM8JGWEkeM/w1dvJe3Ar.js\";import ButtonTab from\"https://framerusercontent.com/modules/hvMIogbeWfuxN8XpHUP0/VlmnTuE4pSZDneWL8Ts8/ZhrRcBbhh.js\";const ButtonTabFonts=getFonts(ButtonTab);const ImageFeatureTabFonts=getFonts(ImageFeatureTab);const cycleOrder=[\"NJ6Ju8cFr\",\"dujo3TnHT\",\"lhkk6EEYj\",\"pHz8HvdUA\",\"xYTiyPIPX\",\"IY5_qA07Z\",\"zHQNptf5W\",\"fGUuW4xzI\",\"gJ9f3OWGP\",\"PoHVS5KWY\",\"FInqKJjtv\",\"EV_mK9h9m\",\"yXMgs4HyT\",\"SWBAJZaVc\",\"xDlgxnEPN\"];const serializationHash=\"framer-TjWGL\";const variantClassNames={dujo3TnHT:\"framer-v-1l8z4gq\",EV_mK9h9m:\"framer-v-78tno\",fGUuW4xzI:\"framer-v-teas9u\",FInqKJjtv:\"framer-v-ms2dlg\",gJ9f3OWGP:\"framer-v-cdxfvd\",IY5_qA07Z:\"framer-v-1kiopfo\",lhkk6EEYj:\"framer-v-50cazj\",NJ6Ju8cFr:\"framer-v-1uysnza\",pHz8HvdUA:\"framer-v-15r7b6u\",PoHVS5KWY:\"framer-v-1d228uv\",SWBAJZaVc:\"framer-v-1cxbrdh\",xDlgxnEPN:\"framer-v-1v9ax1q\",xYTiyPIPX:\"framer-v-ruz5xw\",yXMgs4HyT:\"framer-v-sjmpju\",zHQNptf5W:\"framer-v-omhg7b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"MWuFG92M8\";}else{return\"EuVFx4Llr\";}};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]});const query1=prequery=>prequery({from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]});const query2=prequery=>prequery({from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]});const query3=prequery=>prequery({from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]});const query4=prequery=>prequery({from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop/01\":\"NJ6Ju8cFr\",\"Desktop/02\":\"dujo3TnHT\",\"Desktop/03\":\"lhkk6EEYj\",\"Desktop/04\":\"pHz8HvdUA\",\"Desktop/05\":\"xYTiyPIPX\",\"Phone/01\":\"FInqKJjtv\",\"Phone/02\":\"EV_mK9h9m\",\"Phone/03\":\"yXMgs4HyT\",\"Phone/04\":\"SWBAJZaVc\",\"Phone/05\":\"xDlgxnEPN\",\"Tablet/01\":\"IY5_qA07Z\",\"Tablet/02\":\"zHQNptf5W\",\"Tablet/03\":\"fGUuW4xzI\",\"Tablet/04\":\"gJ9f3OWGP\",\"Tablet/05\":\"PoHVS5KWY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NJ6Ju8cFr\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Z6w6hvczEoMiobJXUx,Z6w6hvczEgrVCbFQI5,vUJ5wLRV5oMiobJXUx,idoMiobJXUx,Z6w6hvczEMjXS8H518,vUJ5wLRV5MjXS8H518,idMjXS8H518,Z6w6hvczEMTaA2J8F5,vUJ5wLRV5MTaA2J8F5,idMTaA2J8F5,Z6w6hvczEbUzD2rb19,vUJ5wLRV5bUzD2rb19,idbUzD2rb19,Z6w6hvczEsWZLpTiyz,vUJ5wLRV5sWZLpTiyz,idsWZLpTiyz,YHeEs4TuygrVCbFQI5,vUJ5wLRV5grVCbFQI5,kxQWSijPdgrVCbFQI5,idgrVCbFQI5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NJ6Ju8cFr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1uu5xr4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dujo3TnHT\",true),5e3);});const onAppear18if745=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lhkk6EEYj\",true),5e3);});const onAppear4vadif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pHz8HvdUA\",true),4e3);});const onAppearv301cd=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xYTiyPIPX\",true),4e3);});const onAppearghk4k2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NJ6Ju8cFr\",true),4e3);});const onAppear10efd3j=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zHQNptf5W\",true),4e3);});const onAppearqs46fw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fGUuW4xzI\",true),4e3);});const onAppear1jf7cqb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gJ9f3OWGP\",true),4e3);});const onAppearqu2inw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PoHVS5KWY\",true),4e3);});const onAppearz5rs98=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IY5_qA07Z\",true),4e3);});const onAppear1tvxhne=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EV_mK9h9m\",true),4e3);});const onAppear3a8ycg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yXMgs4HyT\",true),4e3);});const onAppearpugguz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SWBAJZaVc\",true),4e3);});const onAppear16eud6u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xDlgxnEPN\",true),4e3);});const onAppears01lf6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FInqKJjtv\",true),4e3);});const u1MhkJu9h19gt3ob=activeVariantCallback(async(...args)=>{setVariant(\"NJ6Ju8cFr\");});const u1MhkJu9hd266vu=activeVariantCallback(async(...args)=>{setVariant(\"IY5_qA07Z\");});const u1MhkJu9h1e93zx5=activeVariantCallback(async(...args)=>{setVariant(\"FInqKJjtv\");});const u1MhkJu9hmflep9=activeVariantCallback(async(...args)=>{setVariant(\"dujo3TnHT\");});const u1MhkJu9hby9420=activeVariantCallback(async(...args)=>{setVariant(\"zHQNptf5W\");});const u1MhkJu9h14yazlv=activeVariantCallback(async(...args)=>{setVariant(\"EV_mK9h9m\");});const u1MhkJu9hjog9uq=activeVariantCallback(async(...args)=>{setVariant(\"lhkk6EEYj\");});const u1MhkJu9hnl3z2k=activeVariantCallback(async(...args)=>{setVariant(\"fGUuW4xzI\");});const u1MhkJu9hgyt4wl=activeVariantCallback(async(...args)=>{setVariant(\"yXMgs4HyT\");});const u1MhkJu9hkgjlfn=activeVariantCallback(async(...args)=>{setVariant(\"pHz8HvdUA\");});const u1MhkJu9h1f84e0e=activeVariantCallback(async(...args)=>{setVariant(\"gJ9f3OWGP\");});const u1MhkJu9hwaftw7=activeVariantCallback(async(...args)=>{setVariant(\"SWBAJZaVc\");});const u1MhkJu9hrb8oqx=activeVariantCallback(async(...args)=>{setVariant(\"xYTiyPIPX\");});const u1MhkJu9h1cz267d=activeVariantCallback(async(...args)=>{setVariant(\"PoHVS5KWY\");});const u1MhkJu9h1nvrokb=activeVariantCallback(async(...args)=>{setVariant(\"xDlgxnEPN\");});useOnVariantChange(baseVariant,{default:onAppear1uu5xr4,dujo3TnHT:onAppear18if745,EV_mK9h9m:onAppear3a8ycg,fGUuW4xzI:onAppear1jf7cqb,FInqKJjtv:onAppear1tvxhne,gJ9f3OWGP:onAppearqu2inw,IY5_qA07Z:onAppear10efd3j,lhkk6EEYj:onAppear4vadif,pHz8HvdUA:onAppearv301cd,PoHVS5KWY:onAppearz5rs98,SWBAJZaVc:onAppear16eud6u,xDlgxnEPN:onAppears01lf6,xYTiyPIPX:onAppearghk4k2,yXMgs4HyT:onAppearpugguz,zHQNptf5W:onAppearqs46fw});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1uysnza\",className,classNames),\"data-framer-name\":\"Desktop/01\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NJ6Ju8cFr\",ref:refBinding,style:{...style},...addPropertyOverrides({dujo3TnHT:{\"data-framer-name\":\"Desktop/02\"},EV_mK9h9m:{\"data-framer-name\":\"Phone/02\"},fGUuW4xzI:{\"data-framer-name\":\"Tablet/03\"},FInqKJjtv:{\"data-framer-name\":\"Phone/01\"},gJ9f3OWGP:{\"data-framer-name\":\"Tablet/04\"},IY5_qA07Z:{\"data-framer-name\":\"Tablet/01\"},lhkk6EEYj:{\"data-framer-name\":\"Desktop/03\"},pHz8HvdUA:{\"data-framer-name\":\"Desktop/04\"},PoHVS5KWY:{\"data-framer-name\":\"Tablet/05\"},SWBAJZaVc:{\"data-framer-name\":\"Phone/04\"},xDlgxnEPN:{\"data-framer-name\":\"Phone/05\"},xYTiyPIPX:{\"data-framer-name\":\"Desktop/05\"},yXMgs4HyT:{\"data-framer-name\":\"Phone/03\"},zHQNptf5W:{\"data-framer-name\":\"Tablet/02\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y0a7u5\",layoutDependency:layoutDependency,layoutId:\"grVCbFQI5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]},...addPropertyOverrides({dujo3TnHT:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},EV_mK9h9m:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},fGUuW4xzI:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},gJ9f3OWGP:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},lhkk6EEYj:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},pHz8HvdUA:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},PoHVS5KWY:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},SWBAJZaVc:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},xDlgxnEPN:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},xYTiyPIPX:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},yXMgs4HyT:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}},zHQNptf5W:{query:{from:{alias:\"grVCbFQI5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"grVCbFQI5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"YHeEs4Tuy\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"kxQWSijPd\",type:\"Identifier\"},{collection:\"grVCbFQI5\",name:\"id\",type:\"Identifier\"},{alias:\"oMiobJXUx\",arguments:[{from:{alias:\"oMiobJXUx\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oMiobJXUx\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"oMiobJXUx\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MjXS8H518\",arguments:[{from:{alias:\"MjXS8H518\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"MjXS8H518\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MjXS8H518\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"MTaA2J8F5\",arguments:[{from:{alias:\"MTaA2J8F5\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"MTaA2J8F5\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"MTaA2J8F5\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"bUzD2rb19\",arguments:[{from:{alias:\"bUzD2rb19\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"bUzD2rb19\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"bUzD2rb19\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"},{alias:\"sWZLpTiyz\",arguments:[{from:{alias:\"sWZLpTiyz\",data:Feature,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"sWZLpTiyz\",name:\"Z6w6hvczE\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"vUJ5wLRV5\",type:\"Identifier\"},{collection:\"sWZLpTiyz\",name:\"id\",type:\"Identifier\"}],type:\"Select\"}],functionName:\"ARRAY\",type:\"FunctionCall\"}]}}},baseVariant,gestureVariant),children:(collection5,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({bUzD2rb19:collection3,id:idgrVCbFQI5,kxQWSijPd:kxQWSijPdgrVCbFQI5,MjXS8H518:collection1,MTaA2J8F5:collection2,oMiobJXUx:collection,sWZLpTiyz:collection4,vUJ5wLRV5:vUJ5wLRV5grVCbFQI5,YHeEs4Tuy:YHeEs4TuygrVCbFQI5,Z6w6hvczE:Z6w6hvczEgrVCbFQI5},index5)=>{Z6w6hvczEgrVCbFQI5??=\"\";YHeEs4TuygrVCbFQI5??=\"\";vUJ5wLRV5grVCbFQI5??=\"\";const textContent=prefix(Z6w6hvczEgrVCbFQI5,\"Learn more about \");return /*#__PURE__*/_jsx(LayoutGroup,{id:`grVCbFQI5-${idgrVCbFQI5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vUJ5wLRV5:vUJ5wLRV5grVCbFQI5},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pcsz0z\",\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"QOXKfI9Ff\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nblo21\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HmebIx9WN\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-clt83e\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"umBh5BUkw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m3q7uo\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"FLYACBFTv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o3yoh9\",\"data-framer-name\":\"Feature 01\",layoutDependency:layoutDependency,layoutId:\"oMiobJXUx\",children:collection?.map(({id:idoMiobJXUx,vUJ5wLRV5:vUJ5wLRV5oMiobJXUx,Z6w6hvczE:Z6w6hvczEoMiobJXUx},index)=>{Z6w6hvczEoMiobJXUx??=\"\";vUJ5wLRV5oMiobJXUx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oMiobJXUx-${idoMiobJXUx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vUJ5wLRV5:vUJ5wLRV5oMiobJXUx},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||392.5)-0-458)/2)+0+0+0+0+0+0+0+0+0+0+0,...addPropertyOverrides({EV_mK9h9m:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+0+0+0},fGUuW4xzI:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+0+0+0},FInqKJjtv:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+0+0+0},gJ9f3OWGP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+0+0+0},IY5_qA07Z:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+0+0+0},PoHVS5KWY:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+0+0+0},SWBAJZaVc:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+0+0+0},xDlgxnEPN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+0+0+0},yXMgs4HyT:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+0+0+0},zHQNptf5W:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dwdv82-container\",layoutDependency:layoutDependency,layoutId:\"VNJ0YTpsn-container\",nodeId:\"VNJ0YTpsn\",rendersWithMotion:true,scopeId:\"kGWi0HEJ8\",children:/*#__PURE__*/_jsx(ButtonTab,{height:\"100%\",id:\"VNJ0YTpsn\",layoutId:\"VNJ0YTpsn\",QOV_VA92J:Z6w6hvczEoMiobJXUx,u1MhkJu9h:u1MhkJu9h19gt3ob,variant:convertFromBoolean(equals(Z6w6hvczEoMiobJXUx,Z6w6hvczEgrVCbFQI5),activeLocale),width:\"100%\",...addPropertyOverrides({EV_mK9h9m:{u1MhkJu9h:u1MhkJu9h1e93zx5},fGUuW4xzI:{u1MhkJu9h:u1MhkJu9hd266vu},FInqKJjtv:{u1MhkJu9h:u1MhkJu9h1e93zx5},gJ9f3OWGP:{u1MhkJu9h:u1MhkJu9hd266vu},IY5_qA07Z:{u1MhkJu9h:u1MhkJu9hd266vu},PoHVS5KWY:{u1MhkJu9h:u1MhkJu9hd266vu},SWBAJZaVc:{u1MhkJu9h:u1MhkJu9h1e93zx5},xDlgxnEPN:{u1MhkJu9h:u1MhkJu9h1e93zx5},yXMgs4HyT:{u1MhkJu9h:u1MhkJu9h1e93zx5},zHQNptf5W:{u1MhkJu9h:u1MhkJu9hd266vu}},baseVariant,gestureVariant)})})})})},idoMiobJXUx);})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9ix2i\",\"data-framer-name\":\"Feature 02\",layoutDependency:layoutDependency,layoutId:\"MjXS8H518\",children:collection1?.map(({id:idMjXS8H518,vUJ5wLRV5:vUJ5wLRV5MjXS8H518,Z6w6hvczE:Z6w6hvczEMjXS8H518},index1)=>{Z6w6hvczEMjXS8H518??=\"\";vUJ5wLRV5MjXS8H518??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MjXS8H518-${idMjXS8H518}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vUJ5wLRV5:vUJ5wLRV5MjXS8H518},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||392.5)-0-458)/2)+0+0+0+0+0+0+0+0+40+0+0,...addPropertyOverrides({EV_mK9h9m:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+40+0+0},fGUuW4xzI:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+40+0+0},FInqKJjtv:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+40+0+0},gJ9f3OWGP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+40+0+0},IY5_qA07Z:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+40+0+0},PoHVS5KWY:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+40+0+0},SWBAJZaVc:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+40+0+0},xDlgxnEPN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+40+0+0},yXMgs4HyT:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+40+0+0},zHQNptf5W:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+40+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-124gw0f-container\",layoutDependency:layoutDependency,layoutId:\"j2jM7Nb3Y-container\",nodeId:\"j2jM7Nb3Y\",rendersWithMotion:true,scopeId:\"kGWi0HEJ8\",children:/*#__PURE__*/_jsx(ButtonTab,{height:\"100%\",id:\"j2jM7Nb3Y\",layoutId:\"j2jM7Nb3Y\",QOV_VA92J:Z6w6hvczEMjXS8H518,u1MhkJu9h:u1MhkJu9hmflep9,variant:convertFromBoolean(equals(Z6w6hvczEMjXS8H518,Z6w6hvczEgrVCbFQI5),activeLocale),width:\"100%\",...addPropertyOverrides({EV_mK9h9m:{u1MhkJu9h:u1MhkJu9h14yazlv},fGUuW4xzI:{u1MhkJu9h:u1MhkJu9hby9420},FInqKJjtv:{u1MhkJu9h:u1MhkJu9h14yazlv},gJ9f3OWGP:{u1MhkJu9h:u1MhkJu9hby9420},IY5_qA07Z:{u1MhkJu9h:u1MhkJu9hby9420},PoHVS5KWY:{u1MhkJu9h:u1MhkJu9hby9420},SWBAJZaVc:{u1MhkJu9h:u1MhkJu9h14yazlv},xDlgxnEPN:{u1MhkJu9h:u1MhkJu9h14yazlv},yXMgs4HyT:{u1MhkJu9h:u1MhkJu9h14yazlv},zHQNptf5W:{u1MhkJu9h:u1MhkJu9hby9420}},baseVariant,gestureVariant)})})})})},idMjXS8H518);})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fpu5xi\",\"data-framer-name\":\"Feature 03\",layoutDependency:layoutDependency,layoutId:\"MTaA2J8F5\",children:collection2?.map(({id:idMTaA2J8F5,vUJ5wLRV5:vUJ5wLRV5MTaA2J8F5,Z6w6hvczE:Z6w6hvczEMTaA2J8F5},index2)=>{Z6w6hvczEMTaA2J8F5??=\"\";vUJ5wLRV5MTaA2J8F5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MTaA2J8F5-${idMTaA2J8F5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vUJ5wLRV5:vUJ5wLRV5MTaA2J8F5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||392.5)-0-458)/2)+0+0+0+0+0+0+0+0+80+0+0,...addPropertyOverrides({EV_mK9h9m:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+80+0+0},fGUuW4xzI:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+80+0+0},FInqKJjtv:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+80+0+0},gJ9f3OWGP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+80+0+0},IY5_qA07Z:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+80+0+0},PoHVS5KWY:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+80+0+0},SWBAJZaVc:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+80+0+0},xDlgxnEPN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+80+0+0},yXMgs4HyT:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+80+0+0},zHQNptf5W:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+80+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c9siq8-container\",layoutDependency:layoutDependency,layoutId:\"RfLCsgeUA-container\",nodeId:\"RfLCsgeUA\",rendersWithMotion:true,scopeId:\"kGWi0HEJ8\",children:/*#__PURE__*/_jsx(ButtonTab,{height:\"100%\",id:\"RfLCsgeUA\",layoutId:\"RfLCsgeUA\",QOV_VA92J:Z6w6hvczEMTaA2J8F5,u1MhkJu9h:u1MhkJu9hjog9uq,variant:convertFromBoolean(equals(Z6w6hvczEMTaA2J8F5,Z6w6hvczEgrVCbFQI5),activeLocale),width:\"100%\",...addPropertyOverrides({EV_mK9h9m:{u1MhkJu9h:u1MhkJu9hgyt4wl},fGUuW4xzI:{u1MhkJu9h:u1MhkJu9hnl3z2k},FInqKJjtv:{u1MhkJu9h:u1MhkJu9hgyt4wl},gJ9f3OWGP:{u1MhkJu9h:u1MhkJu9hnl3z2k},IY5_qA07Z:{u1MhkJu9h:u1MhkJu9hnl3z2k},PoHVS5KWY:{u1MhkJu9h:u1MhkJu9hnl3z2k},SWBAJZaVc:{u1MhkJu9h:u1MhkJu9hgyt4wl},xDlgxnEPN:{u1MhkJu9h:u1MhkJu9hgyt4wl},yXMgs4HyT:{u1MhkJu9h:u1MhkJu9hgyt4wl},zHQNptf5W:{u1MhkJu9h:u1MhkJu9hnl3z2k}},baseVariant,gestureVariant)})})})})},idMTaA2J8F5);})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-159flhn\",\"data-framer-name\":\"Feature 04\",layoutDependency:layoutDependency,layoutId:\"bUzD2rb19\",children:collection3?.map(({id:idbUzD2rb19,vUJ5wLRV5:vUJ5wLRV5bUzD2rb19,Z6w6hvczE:Z6w6hvczEbUzD2rb19},index3)=>{Z6w6hvczEbUzD2rb19??=\"\";vUJ5wLRV5bUzD2rb19??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bUzD2rb19-${idbUzD2rb19}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vUJ5wLRV5:vUJ5wLRV5bUzD2rb19},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||392.5)-0-458)/2)+0+0+0+0+0+0+0+0+120+0+0,...addPropertyOverrides({EV_mK9h9m:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+120+0+0},fGUuW4xzI:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+120+0+0},FInqKJjtv:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+120+0+0},gJ9f3OWGP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+120+0+0},IY5_qA07Z:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+120+0+0},PoHVS5KWY:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+120+0+0},SWBAJZaVc:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+120+0+0},xDlgxnEPN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+120+0+0},yXMgs4HyT:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+120+0+0},zHQNptf5W:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+120+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hjyvt1-container\",layoutDependency:layoutDependency,layoutId:\"AyMvVFC7_-container\",nodeId:\"AyMvVFC7_\",rendersWithMotion:true,scopeId:\"kGWi0HEJ8\",children:/*#__PURE__*/_jsx(ButtonTab,{height:\"100%\",id:\"AyMvVFC7_\",layoutId:\"AyMvVFC7_\",QOV_VA92J:Z6w6hvczEbUzD2rb19,u1MhkJu9h:u1MhkJu9hkgjlfn,variant:convertFromBoolean(equals(Z6w6hvczEbUzD2rb19,Z6w6hvczEgrVCbFQI5),activeLocale),width:\"100%\",...addPropertyOverrides({EV_mK9h9m:{u1MhkJu9h:u1MhkJu9hwaftw7},fGUuW4xzI:{u1MhkJu9h:u1MhkJu9h1f84e0e},FInqKJjtv:{u1MhkJu9h:u1MhkJu9hwaftw7},gJ9f3OWGP:{u1MhkJu9h:u1MhkJu9h1f84e0e},IY5_qA07Z:{u1MhkJu9h:u1MhkJu9h1f84e0e},PoHVS5KWY:{u1MhkJu9h:u1MhkJu9h1f84e0e},SWBAJZaVc:{u1MhkJu9h:u1MhkJu9hwaftw7},xDlgxnEPN:{u1MhkJu9h:u1MhkJu9hwaftw7},yXMgs4HyT:{u1MhkJu9h:u1MhkJu9hwaftw7},zHQNptf5W:{u1MhkJu9h:u1MhkJu9h1f84e0e}},baseVariant,gestureVariant)})})})})},idbUzD2rb19);})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m0srnv\",\"data-framer-name\":\"Feature 05\",layoutDependency:layoutDependency,layoutId:\"sWZLpTiyz\",children:collection4?.map(({id:idsWZLpTiyz,vUJ5wLRV5:vUJ5wLRV5sWZLpTiyz,Z6w6hvczE:Z6w6hvczEsWZLpTiyz},index4)=>{Z6w6hvczEsWZLpTiyz??=\"\";vUJ5wLRV5sWZLpTiyz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`sWZLpTiyz-${idsWZLpTiyz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vUJ5wLRV5:vUJ5wLRV5sWZLpTiyz},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||392.5)-0-458)/2)+0+0+0+0+0+0+0+0+160+0+0,...addPropertyOverrides({EV_mK9h9m:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+160+0+0},fGUuW4xzI:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+160+0+0},FInqKJjtv:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+160+0+0},gJ9f3OWGP:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+160+0+0},IY5_qA07Z:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+160+0+0},PoHVS5KWY:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+160+0+0},SWBAJZaVc:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+160+0+0},xDlgxnEPN:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+160+0+0},yXMgs4HyT:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+448+0+0+0+0+0+160+0+0},zHQNptf5W:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0+0+0+0+0+0+160+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sciihf-container\",layoutDependency:layoutDependency,layoutId:\"g9TDlDc5T-container\",nodeId:\"g9TDlDc5T\",rendersWithMotion:true,scopeId:\"kGWi0HEJ8\",children:/*#__PURE__*/_jsx(ButtonTab,{height:\"100%\",id:\"g9TDlDc5T\",layoutId:\"g9TDlDc5T\",QOV_VA92J:Z6w6hvczEsWZLpTiyz,u1MhkJu9h:u1MhkJu9hrb8oqx,variant:convertFromBoolean(equals(Z6w6hvczEsWZLpTiyz,Z6w6hvczEgrVCbFQI5),activeLocale),width:\"100%\",...addPropertyOverrides({EV_mK9h9m:{u1MhkJu9h:u1MhkJu9h1nvrokb},fGUuW4xzI:{u1MhkJu9h:u1MhkJu9h1cz267d},FInqKJjtv:{u1MhkJu9h:u1MhkJu9h1nvrokb},gJ9f3OWGP:{u1MhkJu9h:u1MhkJu9h1cz267d},IY5_qA07Z:{u1MhkJu9h:u1MhkJu9h1cz267d},PoHVS5KWY:{u1MhkJu9h:u1MhkJu9h1cz267d},SWBAJZaVc:{u1MhkJu9h:u1MhkJu9h1nvrokb},xDlgxnEPN:{u1MhkJu9h:u1MhkJu9h1nvrokb},yXMgs4HyT:{u1MhkJu9h:u1MhkJu9h1nvrokb},zHQNptf5W:{u1MhkJu9h:u1MhkJu9h1cz267d}},baseVariant,gestureVariant)})})})})},idsWZLpTiyz);})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9xthot\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"dN6WXAsuc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",children:[\"Keep all customer interactions and details in one place. Easily access customer history, notes, and communication logs to ensure a \",/*#__PURE__*/_jsx(motion.strong,{children:\"seamless and personalized experience\"}),\" for every client.\"]})}),className:\"framer-rh83mg\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"nx0Mos62v\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YHeEs4TuygrVCbFQI5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vUJ5wLRV5:vUJ5wLRV5grVCbFQI5},webPageId:\"WFtfocg73\"},motionChild:true,nodeId:\"rM01GsQZT\",openInNewTab:false,scopeId:\"kGWi0HEJ8\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v7iuag\",\"data-styles-preset\":\"SOvG4qmLE\",children:\"Learn more about Contact management\"})})})}),className:\"framer-6y42r1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rM01GsQZT\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:458,width:`max(max(${componentViewport?.width||\"100vw\"}, 1px) * 0.6 - 64px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||392.5)-0-458)/2)+0+0+0,...addPropertyOverrides({EV_mK9h9m:{height:400,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+0},fGUuW4xzI:{height:524.8,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0},FInqKJjtv:{height:400,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+0},gJ9f3OWGP:{height:524.8,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0},IY5_qA07Z:{height:524.8,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0},PoHVS5KWY:{height:524.8,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0},SWBAJZaVc:{height:400,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+0},xDlgxnEPN:{height:400,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+0},yXMgs4HyT:{height:400,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-912)/2)+0+0+0+0},zHQNptf5W:{height:524.8,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-524.8)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o8gnp4-container\",layoutDependency:layoutDependency,layoutId:\"CPiM809jJ-container\",nodeId:\"CPiM809jJ\",rendersWithMotion:true,scopeId:\"kGWi0HEJ8\",children:/*#__PURE__*/_jsx(ImageFeatureTab,{height:\"100%\",id:\"CPiM809jJ\",ilWWtJf3v:toResponsiveImage(kxQWSijPdgrVCbFQI5),layoutId:\"CPiM809jJ\",lJIGePIkT:\"64px 64px 64px 64px\",style:{height:\"100%\",width:\"100%\"},variant:\"sb6FrkcJf\",width:\"100%\",...addPropertyOverrides({EV_mK9h9m:{lJIGePIkT:\"24px\"},fGUuW4xzI:{lJIGePIkT:\"32px\"},FInqKJjtv:{lJIGePIkT:\"24px\"},gJ9f3OWGP:{lJIGePIkT:\"32px\"},IY5_qA07Z:{lJIGePIkT:\"32px\"},PoHVS5KWY:{lJIGePIkT:\"32px\"},SWBAJZaVc:{lJIGePIkT:\"24px\"},xDlgxnEPN:{lJIGePIkT:\"24px\"},yXMgs4HyT:{lJIGePIkT:\"24px\"},zHQNptf5W:{lJIGePIkT:\"32px\"}},baseVariant,gestureVariant)})})})]})})},idgrVCbFQI5);})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TjWGL.framer-1vediel, .framer-TjWGL .framer-1vediel { display: block; }\",\".framer-TjWGL.framer-1uysnza { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-TjWGL .framer-1y0a7u5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-TjWGL .framer-pcsz0z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TjWGL .framer-1nblo21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-TjWGL .framer-clt83e { align-content: center; align-items: center; 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: 100%; }\",\".framer-TjWGL .framer-m3q7uo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TjWGL .framer-1o3yoh9, .framer-TjWGL .framer-k9ix2i, .framer-TjWGL .framer-fpu5xi, .framer-TjWGL .framer-159flhn, .framer-TjWGL .framer-m0srnv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-TjWGL .framer-dwdv82-container, .framer-TjWGL .framer-124gw0f-container, .framer-TjWGL .framer-1c9siq8-container, .framer-TjWGL .framer-1hjyvt1-container, .framer-TjWGL .framer-sciihf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TjWGL .framer-9xthot { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TjWGL .framer-rh83mg { flex: none; height: 90px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TjWGL .framer-6y42r1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TjWGL .framer-1o8gnp4-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TjWGL.framer-v-1kiopfo.framer-1uysnza, .framer-TjWGL.framer-v-omhg7b.framer-1uysnza, .framer-TjWGL.framer-v-teas9u.framer-1uysnza, .framer-TjWGL.framer-v-cdxfvd.framer-1uysnza, .framer-TjWGL.framer-v-1d228uv.framer-1uysnza { width: 750px; }\",\".framer-TjWGL.framer-v-1kiopfo .framer-pcsz0z, .framer-TjWGL.framer-v-omhg7b .framer-pcsz0z, .framer-TjWGL.framer-v-teas9u .framer-pcsz0z, .framer-TjWGL.framer-v-cdxfvd .framer-pcsz0z, .framer-TjWGL.framer-v-1d228uv .framer-pcsz0z { gap: 40px; }\",\".framer-TjWGL.framer-v-1kiopfo .framer-1nblo21, .framer-TjWGL.framer-v-omhg7b .framer-1nblo21, .framer-TjWGL.framer-v-teas9u .framer-1nblo21, .framer-TjWGL.framer-v-cdxfvd .framer-1nblo21, .framer-TjWGL.framer-v-1d228uv .framer-1nblo21 { flex: 1 0 0px; width: 1px; }\",\".framer-TjWGL.framer-v-1kiopfo .framer-rh83mg, .framer-TjWGL.framer-v-1kiopfo .framer-6y42r1, .framer-TjWGL.framer-v-omhg7b .framer-rh83mg, .framer-TjWGL.framer-v-omhg7b .framer-6y42r1, .framer-TjWGL.framer-v-teas9u .framer-rh83mg, .framer-TjWGL.framer-v-teas9u .framer-6y42r1, .framer-TjWGL.framer-v-cdxfvd .framer-rh83mg, .framer-TjWGL.framer-v-cdxfvd .framer-6y42r1, .framer-TjWGL.framer-v-1d228uv .framer-rh83mg, .framer-TjWGL.framer-v-1d228uv .framer-6y42r1 { height: 134px; }\",\".framer-TjWGL.framer-v-1d228uv .framer-1hjyvt1-container { order: 0; }\",\".framer-TjWGL.framer-v-ms2dlg.framer-1uysnza, .framer-TjWGL.framer-v-78tno.framer-1uysnza, .framer-TjWGL.framer-v-sjmpju.framer-1uysnza, .framer-TjWGL.framer-v-1cxbrdh.framer-1uysnza, .framer-TjWGL.framer-v-1v9ax1q.framer-1uysnza { width: 374px; }\",\".framer-TjWGL.framer-v-ms2dlg .framer-pcsz0z, .framer-TjWGL.framer-v-78tno .framer-pcsz0z, .framer-TjWGL.framer-v-sjmpju .framer-pcsz0z, .framer-TjWGL.framer-v-1cxbrdh .framer-pcsz0z, .framer-TjWGL.framer-v-1v9ax1q .framer-pcsz0z { flex-direction: column; gap: 48px; }\",\".framer-TjWGL.framer-v-ms2dlg .framer-1nblo21, .framer-TjWGL.framer-v-78tno .framer-1nblo21, .framer-TjWGL.framer-v-sjmpju .framer-1nblo21, .framer-TjWGL.framer-v-1cxbrdh .framer-1nblo21, .framer-TjWGL.framer-v-1v9ax1q .framer-1nblo21 { order: 1; width: 100%; }\",\".framer-TjWGL.framer-v-ms2dlg .framer-clt83e, .framer-TjWGL.framer-v-78tno .framer-clt83e, .framer-TjWGL.framer-v-sjmpju .framer-clt83e, .framer-TjWGL.framer-v-1cxbrdh .framer-clt83e, .framer-TjWGL.framer-v-1v9ax1q .framer-clt83e { gap: 32px; }\",\".framer-TjWGL.framer-v-ms2dlg .framer-rh83mg, .framer-TjWGL.framer-v-78tno .framer-rh83mg, .framer-TjWGL.framer-v-sjmpju .framer-rh83mg, .framer-TjWGL.framer-v-1cxbrdh .framer-rh83mg, .framer-TjWGL.framer-v-1v9ax1q .framer-rh83mg { height: auto; }\",\".framer-TjWGL.framer-v-ms2dlg .framer-1o8gnp4-container, .framer-TjWGL.framer-v-78tno .framer-1o8gnp4-container, .framer-TjWGL.framer-v-sjmpju .framer-1o8gnp4-container, .framer-TjWGL.framer-v-1cxbrdh .framer-1o8gnp4-container, .framer-TjWGL.framer-v-1v9ax1q .framer-1o8gnp4-container { align-self: unset; aspect-ratio: 0.935 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 214px); order: 0; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 392.5\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dujo3TnHT\":{\"layout\":[\"fixed\",\"auto\"]},\"lhkk6EEYj\":{\"layout\":[\"fixed\",\"auto\"]},\"pHz8HvdUA\":{\"layout\":[\"fixed\",\"auto\"]},\"xYTiyPIPX\":{\"layout\":[\"fixed\",\"auto\"]},\"IY5_qA07Z\":{\"layout\":[\"fixed\",\"auto\"]},\"zHQNptf5W\":{\"layout\":[\"fixed\",\"auto\"]},\"fGUuW4xzI\":{\"layout\":[\"fixed\",\"auto\"]},\"gJ9f3OWGP\":{\"layout\":[\"fixed\",\"auto\"]},\"PoHVS5KWY\":{\"layout\":[\"fixed\",\"auto\"]},\"FInqKJjtv\":{\"layout\":[\"fixed\",\"auto\"]},\"EV_mK9h9m\":{\"layout\":[\"fixed\",\"auto\"]},\"yXMgs4HyT\":{\"layout\":[\"fixed\",\"auto\"]},\"SWBAJZaVc\":{\"layout\":[\"fixed\",\"auto\"]},\"xDlgxnEPN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkGWi0HEJ8=withCSS(Component,css,\"framer-TjWGL\");export default FramerkGWi0HEJ8;FramerkGWi0HEJ8.displayName=\"Card/Features Tab\";FramerkGWi0HEJ8.defaultProps={height:392.5,width:1100};addPropertyControls(FramerkGWi0HEJ8,{variant:{options:[\"NJ6Ju8cFr\",\"dujo3TnHT\",\"lhkk6EEYj\",\"pHz8HvdUA\",\"xYTiyPIPX\",\"IY5_qA07Z\",\"zHQNptf5W\",\"fGUuW4xzI\",\"gJ9f3OWGP\",\"PoHVS5KWY\",\"FInqKJjtv\",\"EV_mK9h9m\",\"yXMgs4HyT\",\"SWBAJZaVc\",\"xDlgxnEPN\"],optionTitles:[\"Desktop/01\",\"Desktop/02\",\"Desktop/03\",\"Desktop/04\",\"Desktop/05\",\"Tablet/01\",\"Tablet/02\",\"Tablet/03\",\"Tablet/04\",\"Tablet/05\",\"Phone/01\",\"Phone/02\",\"Phone/03\",\"Phone/04\",\"Phone/05\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkGWi0HEJ8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ButtonTabFonts,...ImageFeatureTabFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkGWi0HEJ8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"392.5\",\"framerIntrinsicWidth\":\"1100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dujo3TnHT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lhkk6EEYj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pHz8HvdUA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xYTiyPIPX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IY5_qA07Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zHQNptf5W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fGUuW4xzI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gJ9f3OWGP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PoHVS5KWY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FInqKJjtv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EV_mK9h9m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yXMgs4HyT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SWBAJZaVc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xDlgxnEPN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/59jNtnvMcqXYOVI3k19H/19zCy4HxHlcg1MGWs33S/Pu00R26H5.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tEmeCgAkJpdNv0AU6eHC/VsCyPNAmidbp5DoyILEr/whYfzqmcB.js\";const cycleOrder=[\"RVxDyBZB7\",\"FyWXSqfJk\"];const serializationHash=\"framer-hB19B\";const variantClassNames={FyWXSqfJk:\"framer-v-1s5qj8y\",RVxDyBZB7:\"framer-v-z5ffsk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"RVxDyBZB7\",Mobile:\"FyWXSqfJk\"};const getProps=({description,height,id,title,width,...props})=>{return{...props,uLpjgoSCD:title??props.uLpjgoSCD??\"Service-Based Businesses\",variant:humanReadableVariantMap[props.variant]??props.variant??\"RVxDyBZB7\",ZQQ6tg4jZ:description??props.ZQQ6tg4jZ??\"Handle customer inquiries, appointments, and support requests with ease.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,uLpjgoSCD,ZQQ6tg4jZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RVxDyBZB7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-z5ffsk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RVxDyBZB7\",ref:refBinding,style:{backgroundColor:\"var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, rgb(245, 245, 245))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({FyWXSqfJk:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-16wf23l\",\"data-styles-preset\":\"whYfzqmcB\",children:\"Service-Based Businesses\"})}),className:\"framer-d1rae3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fgZ9U3ZRK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uLpjgoSCD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6)))\"},children:\"Handle customer inquiries, appointments, and support requests with ease.\"})}),className:\"framer-1el4oq7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Eo4ssEr9Y\",style:{\"--extracted-r6o4lv\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ZQQ6tg4jZ,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hB19B.framer-ir6pct, .framer-hB19B .framer-ir6pct { display: block; }\",\".framer-hB19B.framer-z5ffsk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hB19B .framer-d1rae3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hB19B .framer-1el4oq7 { flex: none; height: auto; min-height: 90px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hB19B.framer-z5ffsk { gap: 0px; } .framer-hB19B.framer-z5ffsk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hB19B.framer-z5ffsk > :first-child { margin-top: 0px; } .framer-hB19B.framer-z5ffsk > :last-child { margin-bottom: 0px; } }\",\".framer-hB19B.framer-v-1s5qj8y.framer-z5ffsk { gap: 24px; padding: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hB19B.framer-v-1s5qj8y.framer-z5ffsk { gap: 0px; } .framer-hB19B.framer-v-1s5qj8y.framer-z5ffsk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hB19B.framer-v-1s5qj8y.framer-z5ffsk > :first-child { margin-top: 0px; } .framer-hB19B.framer-v-1s5qj8y.framer-z5ffsk > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 245\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FyWXSqfJk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"uLpjgoSCD\":\"title\",\"ZQQ6tg4jZ\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernY01FKgds=withCSS(Component,css,\"framer-hB19B\");export default FramernY01FKgds;FramernY01FKgds.displayName=\"Card/Who Uses\";FramernY01FKgds.defaultProps={height:228,width:245};addPropertyControls(FramernY01FKgds,{variant:{options:[\"RVxDyBZB7\",\"FyWXSqfJk\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},uLpjgoSCD:{defaultValue:\"Service-Based Businesses\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZQQ6tg4jZ:{defaultValue:\"Handle customer inquiries, appointments, and support requests with ease.\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramernY01FKgds,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernY01FKgds\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"228\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FyWXSqfJk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"uLpjgoSCD\\\":\\\"title\\\",\\\"ZQQ6tg4jZ\\\":\\\"description\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"245\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nY01FKgds.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,cx,getFonts,Image,PathVariablesContext,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Integration from\"https://framerusercontent.com/modules/l8N6NuXVw2C92Sth9yDm/yVupIRW7nsrFO7C5vwSF/MzyqUfjgL.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-wsxHW\";const variantClassNames={rXWZMp8nT:\"framer-v-19rhhjz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"lT3rpZEjA\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:12},select:[{collection:\"lT3rpZEjA\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"lT3rpZEjA\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"lT3rpZEjA\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,S5J8ZPe4vlT3rpZEjA,ivapFwSlwlT3rpZEjA,idlT3rpZEjA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rXWZMp8nT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19rhhjz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rXWZMp8nT\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xvz8s0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vKk5FDvvm-container\",nodeId:\"vKk5FDvvm\",rendersWithMotion:true,scopeId:\"VzqBlNU2p\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"vKk5FDvvm\",layoutId:\"vKk5FDvvm\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xoy04z\",\"data-framer-name\":\"Tools\",layoutDependency:layoutDependency,layoutId:\"lT3rpZEjA\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lT3rpZEjA\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:12},select:[{collection:\"lT3rpZEjA\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"lT3rpZEjA\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"lT3rpZEjA\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idlT3rpZEjA,ivapFwSlw:ivapFwSlwlT3rpZEjA,S5J8ZPe4v:S5J8ZPe4vlT3rpZEjA},index)=>{ivapFwSlwlT3rpZEjA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lT3rpZEjA-${idlT3rpZEjA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwlT3rpZEjA},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"32px\",...toResponsiveImage(S5J8ZPe4vlT3rpZEjA),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ufgthw\",layoutDependency:layoutDependency,layoutId:\"i6kgtwQz1\"})})},idlT3rpZEjA);})})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wsxHW.framer-fdeimz, .framer-wsxHW .framer-fdeimz { display: block; }\",\".framer-wsxHW.framer-19rhhjz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-wsxHW .framer-1xvz8s0-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-wsxHW .framer-xoy04z { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-wsxHW .framer-ufgthw { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsxHW.framer-19rhhjz, .framer-wsxHW .framer-xoy04z { gap: 0px; } .framer-wsxHW.framer-19rhhjz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wsxHW.framer-19rhhjz > :first-child, .framer-wsxHW .framer-xoy04z > :first-child { margin-left: 0px; } .framer-wsxHW.framer-19rhhjz > :last-child, .framer-wsxHW .framer-xoy04z > :last-child { margin-right: 0px; } .framer-wsxHW .framer-xoy04z > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVzqBlNU2p=withCSS(Component,css,\"framer-wsxHW\");export default FramerVzqBlNU2p;FramerVzqBlNU2p.displayName=\"Tools\";FramerVzqBlNU2p.defaultProps={height:32,width:1100};addFonts(FramerVzqBlNU2p,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVzqBlNU2p\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"32\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bf2ee14)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import ButtonPrimary from\"#framer/local/canvasComponent/f0BG8OdEZ/f0BG8OdEZ.js\";import MiscIconText from\"#framer/local/canvasComponent/GOBjer1du/GOBjer1du.js\";import ButtonAllIntegrations from\"#framer/local/canvasComponent/HGo8YhvPy/HGo8YhvPy.js\";import Logo from\"#framer/local/canvasComponent/hIwDcZztI/hIwDcZztI.js\";import CardTool from\"#framer/local/canvasComponent/iK1Ktqojb/iK1Ktqojb.js\";import MiscLogo from\"#framer/local/canvasComponent/jJtgxbie7/jJtgxbie7.js\";import CardFeaturesTab from\"#framer/local/canvasComponent/kGWi0HEJ8/kGWi0HEJ8.js\";import Form from\"#framer/local/canvasComponent/MR7CV4j0n/MR7CV4j0n.js\";import CardBlog from\"#framer/local/canvasComponent/nU0zGVTLv/nU0zGVTLv.js\";import CardWhoUses from\"#framer/local/canvasComponent/nY01FKgds/nY01FKgds.js\";import Tools from\"#framer/local/canvasComponent/VzqBlNU2p/VzqBlNU2p.js\";import Blog,{enumToDisplayNameFunctions as enumToDisplayNameFunctions1}from\"#framer/local/collection/FUwOpZR7W/FUwOpZR7W.js\";import Integration,{enumToDisplayNameFunctions}from\"#framer/local/collection/MzyqUfjgL/MzyqUfjgL.js\";import*as sharedStyle4 from\"#framer/local/css/co0iCgT44/co0iCgT44.js\";import*as sharedStyle from\"#framer/local/css/E2GdJgdUc/E2GdJgdUc.js\";import*as sharedStyle1 from\"#framer/local/css/lfYoHoiGG/lfYoHoiGG.js\";import*as sharedStyle3 from\"#framer/local/css/nBYoYjZot/nBYoYjZot.js\";import*as sharedStyle2 from\"#framer/local/css/Pu00R26H5/Pu00R26H5.js\";import*as sharedStyle5 from\"#framer/local/css/vB4AUeX65/vB4AUeX65.js\";import*as sharedStyle6 from\"#framer/local/css/whYfzqmcB/whYfzqmcB.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonPrimaryFonts=getFonts(ButtonPrimary);const VideoFonts=getFonts(Video);const ContainerWithFX=withFX(Container);const LogoFonts=getFonts(Logo);const MiscIconTextFonts=getFonts(MiscIconText);const CardFeaturesTabFonts=getFonts(CardFeaturesTab);const FormFonts=getFonts(Form);const MiscLogoFonts=getFonts(MiscLogo);const CardWhoUsesFonts=getFonts(CardWhoUses);const ButtonAllIntegrationsFonts=getFonts(ButtonAllIntegrations);const ToolsFonts=getFonts(Tools);const CardToolFonts=getFonts(CardTool);const CardBlogFonts=getFonts(CardBlog);const IntercomFonts=getFonts(Intercom);const breakpoints={blRCNHIt9:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\",y_lDj_sNB:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yXbrH\";const variantClassNames={blRCNHIt9:\"framer-v-10f9k91\",WQLkyLRf1:\"framer-v-72rtr7\",y_lDj_sNB:\"framer-v-94xsim\"};const animation={opacity:1,rotate:-10,rotateX:-10,rotateY:-10,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:1,rotate:-10,rotateX:-10,rotateY:-10,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-4};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"y_lDj_sNB\",Tablet:\"blRCNHIt9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,v8COP3qctUFjo2kdja,S5J8ZPe4vUFjo2kdja,imWFd2rjeUFjo2kdja,ivapFwSlwUFjo2kdja,idUFjo2kdja,DI9sQ7vM5kmCIxmGMx,e4G8z3_QlkmCIxmGMx,h0as0HmGLkmCIxmGMx,UIcJds6uTkmCIxmGMx,zxtOUaRCNkmCIxmGMx,idkmCIxmGMx,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-z5ta0i\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qn98ml\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r0xj51\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pcuzdr\",\"data-framer-name\":\"Hero Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjaz6p\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1do10gq\",\"data-framer-name\":\"Subtitle\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h3151t\",\"data-styles-preset\":\"E2GdJgdUc\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u2726 Not a better system \u2014 a smarter teammate. \u2726\"})}),className:\"framer-1naelto\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1tosfeh\",\"data-styles-preset\":\"lfYoHoiGG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your F&B and Retail Data, Transformed by AI\"})}),className:\"framer-ecywsh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-alignment\":\"center\"},children:\"VAL connects and cleans data from all your systems\u2014POS, delivery, eCommerce, accounting, and more. It applies F&B and Retail logic, so AI can deliver instant answers that help your team move faster and work smarter.\"})}),className:\"framer-1nmwpwh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r3iq5k\",\"data-framer-name\":\"Action\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PI5zE66Z5\"},implicitPathVariables:undefined},{href:{webPageId:\"PI5zE66Z5\"},implicitPathVariables:undefined},{href:{webPageId:\"PI5zE66Z5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+0+60+0+0+0+270+0},y_lDj_sNB:{y:(componentViewport?.y||0)+0+0+50+0+0+0+270+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+80+0+0+0+270+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9oulxa-container\",nodeId:\"ZhUjrI3g8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{aXUt524bX:resolvedLinks[1]},y_lDj_sNB:{aXUt524bX:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{aXUt524bX:resolvedLinks[0],fo3OjjxHy:\"Start Today \u2013 It\u2019s Free!\",hCaqIJQo7:true,height:\"100%\",id:\"ZhUjrI3g8\",layoutId:\"ZhUjrI3g8\",m33HmdY5U:\"12px 16px 12px 16px\",variant:\"sbdDDwZlp\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CA98HJu4U\"},implicitPathVariables:undefined},{href:{webPageId:\"CA98HJu4U\"},implicitPathVariables:undefined},{href:{webPageId:\"CA98HJu4U\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+0+60+0+0+0+270+0},y_lDj_sNB:{y:(componentViewport?.y||0)+0+0+50+0+0+0+270+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+80+0+0+0+270+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pvd8v8-container\",nodeId:\"iMmRzAcPu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{aXUt524bX:resolvedLinks1[1]},y_lDj_sNB:{aXUt524bX:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{aXUt524bX:resolvedLinks1[0],fo3OjjxHy:\"Book a demo\",hCaqIJQo7:false,height:\"100%\",id:\"iMmRzAcPu\",layoutId:\"iMmRzAcPu\",m33HmdY5U:\"12px 16px 12px 16px\",variant:\"r0oOSBgll\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ugmtr\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rjoju5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ozMT4vwLZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ozMT4vwLZ\",isMixedBorderRadius:false,layoutId:\"ozMT4vwLZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dctpyur0z/video/upload/v1747540646/VAIChat_v2_uyhahi.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19bau1c\",\"data-framer-name\":\"Client\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+60+0+367+112-200+0+160},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+50+0+367+112-100+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+80+0+367+112-200+0+160,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pux1n9-container\",nodeId:\"ov_PiDojJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"ov_PiDojJ\",layoutId:\"ov_PiDojJ\",LDdhNX4u_:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-u1q0q2\",\"data-framer-name\":\"Why\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1db9xgx\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gt5eq7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eoebn5\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3gxfz\",\"data-styles-preset\":\"nBYoYjZot\",children:\"Smarter F&B and Retail Operations with AI\"})}),className:\"framer-xxldxa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qi6q1j\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10669s0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14udc8z\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vi28ec\",\"data-styles-preset\":\"co0iCgT44\",children:\"AI That Explains Your Business in Real Time\"})}),className:\"framer-1xlvr5c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\"},children:\"ChatVAL turns complex data into clear, instant insights\u2014so your team knows what\u2019s happening and why, without digging through reports.\"})}),className:\"framer-74jq6h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LcMNOCAol\"},implicitPathVariables:undefined},{href:{webPageId:\"LcMNOCAol\"},implicitPathVariables:undefined},{href:{webPageId:\"LcMNOCAol\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+599+80+0+0+0+0+112.8+18+0+0+179.6},y_lDj_sNB:{y:(componentViewport?.y||0)+0+579+60+0+0+0+0+0+92.8+16+0+0+179.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+639+100+0+0+0+0+132.8+24+0+0+179.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15frw9j-container\",nodeId:\"sYuQ8L8xu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{aXUt524bX:resolvedLinks2[1]},y_lDj_sNB:{aXUt524bX:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{aXUt524bX:resolvedLinks2[0],fo3OjjxHy:\"More about us\",hCaqIJQo7:false,height:\"100%\",id:\"sYuQ8L8xu\",layoutId:\"sYuQ8L8xu\",m33HmdY5U:\"12px 16px 12px 16px\",variant:\"r0oOSBgll\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f94ayk-container\",id:\"1f94ayk\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kyCQqpOxK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"kyCQqpOxK\",isMixedBorderRadius:false,layoutId:\"kyCQqpOxK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dctpyur0z/video/upload/v1747556879/ChatVAL_UI_v2_lcw47g.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3f08u\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vi28ec\",\"data-styles-preset\":\"co0iCgT44\",children:\"Unify F&B and Retail Data in One Platform\"})}),className:\"framer-1991u36\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wyozsk\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+599+80+0+0+0+18+65.6+0+0),pixelHeight:2536,pixelWidth:2880,positionX:\"left\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png\",srcSet:\"https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png 2880w\"}},y_lDj_sNB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+579+60+0+0+0+515.4+16+65.6+0+0),pixelHeight:2536,pixelWidth:2880,positionX:\"left\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png\",srcSet:\"https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+639+100+0+0+0+24+65.6+0+0),pixelHeight:2536,pixelWidth:2880,positionX:\"left\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png\",srcSet:\"https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/G5R11maNcwMWURF47GfWljvFb4.png 2880w\"},className:\"framer-ppm6zc\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-csl2j6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4e8ay\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6isea\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vi28ec\",\"data-styles-preset\":\"co0iCgT44\",children:\"Industry-Ready Logic for F&B and Retail\"})}),className:\"framer-drjc6e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\"},children:\"Use prebuilt workflows for reconciliation, accounting, sales metrics, and more\u2014designed around real F&B and Retail operations.\"})}),className:\"framer-wg0tzr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1olz932\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b7lszb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WY3xY9rVR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"WY3xY9rVR\",isMixedBorderRadius:false,layoutId:\"WY3xY9rVR\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dctpyur0z/video/upload/v1747558466/TriggerReconciliation_sneezf.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9p0k9j\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9gx1k\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vi28ec\",\"data-styles-preset\":\"co0iCgT44\",children:\"End-to-End Visibility in One F&B Platform\"})}),className:\"framer-1o35agk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\"},children:\"From finance to operations, get dashboards, alerts, and reports\u2014all in one platform built to support every part of your business.\"})}),className:\"framer-1kkpfrx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-187ncop\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i97u0l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RJLGMBjXJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"RJLGMBjXJ\",isMixedBorderRadius:false,layoutId:\"RJLGMBjXJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dctpyur0z/video/upload/v1747559588/Dashboard_cfgnyc.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1keousb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-174ay15\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122p31u\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1vi28ec\",\"data-styles-preset\":\"co0iCgT44\",children:\"Do More with Less\u2014No Extra Headcount Needed\"})}),className:\"framer-1gonbj8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\"},children:\"Automate manual work and reporting with ThinkVAL\u2014so your lean team performs like a full data department, without the overhead.\"})}),className:\"framer-1uqsewn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10tnjk2\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2au5q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gXdg3SMJX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"gXdg3SMJX\",isMixedBorderRadius:false,layoutId:\"gXdg3SMJX\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dctpyur0z/video/upload/v1747559780/Workflow_pppeij.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u63syg\",\"data-framer-name\":\"Action\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1a26qz\",\"data-styles-preset\":\"vB4AUeX65\",children:\"Smarter Operations Start Here\u2014No Extra Staff Needed\"})}),className:\"framer-1t8wown\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PI5zE66Z5\"},implicitPathVariables:undefined},{href:{webPageId:\"PI5zE66Z5\"},implicitPathVariables:undefined},{href:{webPageId:\"PI5zE66Z5\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+599+80+0+1099.5+0+18+303.9},y_lDj_sNB:{y:(componentViewport?.y||0)+0+579+60+0+2012.7+0+631.6+16+75.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+639+100+0+1143.5+0+24+303.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d87jyn-container\",nodeId:\"Bp3mViBRx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{aXUt524bX:resolvedLinks3[1]},y_lDj_sNB:{aXUt524bX:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{aXUt524bX:resolvedLinks3[0],fo3OjjxHy:\"Start Today \u2013 It\u2019s Free!\",hCaqIJQo7:true,height:\"100%\",id:\"Bp3mViBRx\",layoutId:\"Bp3mViBRx\",m33HmdY5U:\"12px 16px 12px 16px\",variant:\"sbdDDwZlp\",width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-11nrpx7\",\"data-framer-name\":\"Our Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13lhas5\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ctwxd\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3gxfz\",\"data-styles-preset\":\"nBYoYjZot\",style:{\"--framer-text-alignment\":\"left\"},children:\"Built for Every Team That Relies on Data\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3gxfz\",\"data-styles-preset\":\"nBYoYjZot\",style:{\"--framer-text-alignment\":\"center\"},children:\"Built for Every Team That Relies on Data\"})}),className:\"framer-3ngyqq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"One platform to align operations, finance, and leadership\u2014powered by clean data and built-in intelligence.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-alignment\":\"center\"},children:\"One platform to align operations, finance, and leadership\u2014powered by clean data and built-in intelligence.\"})}),className:\"framer-hzitmp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c8d7e9\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2476.1+80+0+256.8+0},y_lDj_sNB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3499.5+60+0+236.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2612.1+100+0+276.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vjmx4-container\",nodeId:\"OP8HP1mke\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{variant:\"lMYBOgfDh\"}},children:/*#__PURE__*/_jsx(MiscIconText,{height:\"100%\",id:\"OP8HP1mke\",layoutId:\"OP8HP1mke\",sbMsm2jj9:\"Get AI-generated summaries and insights to guide decisions \u2014without waiting on reports.\",style:{width:\"100%\"},variant:\"IZmxCmvFx\",width:\"100%\",zTE2qtvG6:\"For Management\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2476.1+80+0+256.8+0},y_lDj_sNB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3499.5+60+0+236.8+0+82}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2612.1+100+0+276.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1phz6f8-container\",nodeId:\"kQiELS8E9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{variant:\"lMYBOgfDh\"}},children:/*#__PURE__*/_jsx(MiscIconText,{height:\"100%\",id:\"kQiELS8E9\",layoutId:\"kQiELS8E9\",sbMsm2jj9:\"Track performance, spot issues early, and streamline daily reporting\u2014all in one place.\",style:{width:\"100%\"},variant:\"IZmxCmvFx\",width:\"100%\",zTE2qtvG6:\"For Operations\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2476.1+80+0+256.8+0},y_lDj_sNB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3499.5+60+0+236.8+0+164}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2612.1+100+0+276.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgmer7-container\",nodeId:\"boz9zrOQy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{variant:\"lMYBOgfDh\"}},children:/*#__PURE__*/_jsx(MiscIconText,{height:\"100%\",id:\"boz9zrOQy\",layoutId:\"boz9zrOQy\",sbMsm2jj9:\"Automate reconciliation and journal entries with clean, structured data\u2014ready for your accounting system.\",style:{width:\"100%\"},variant:\"IZmxCmvFx\",width:\"100%\",zTE2qtvG6:\"For Finance\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ov5b3c\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y0066y\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1a26qz\",\"data-styles-preset\":\"vB4AUeX65\",children:[\"Everything you need,\",/*#__PURE__*/_jsx(\"br\",{}),\"All in One F&B & Retail Data Platform\"]})}),className:\"framer-1kb2k66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2476.1+80+0+467.8+0+91.2},y_lDj_sNB:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3499.5+60+0+571.8+0+91.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:392,width:`min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2612.1+100+0+527.8+0+91.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yz86oa-container\",nodeId:\"VxRC66NMJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{variant:\"IY5_qA07Z\"},y_lDj_sNB:{variant:\"FInqKJjtv\"}},children:/*#__PURE__*/_jsx(CardFeaturesTab,{height:\"100%\",id:\"VxRC66NMJ\",layoutId:\"VxRC66NMJ\",style:{width:\"100%\"},variant:\"NJ6Ju8cFr\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-mlgrn6\",\"data-framer-name\":\"Who Uses\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tnfc0c\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10vsf3o\",\"data-framer-name\":\"Subscribe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhy9wu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qevgit\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t2p00u\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3gxfz\",\"data-styles-preset\":\"nBYoYjZot\",style:{\"--framer-text-color\":\"var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255))\"},children:\"Join Hundreds of Outlets Who Rely on ThinkVAL\"})}),className:\"framer-189oa1t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, rgb(245, 245, 245))\"},children:[\"F&B and Retail businesses trust ThinkVAL to unify data, \",/*#__PURE__*/_jsx(\"strong\",{children:\"automate\"}),\" finance and ops, and \",/*#__PURE__*/_jsx(\"strong\",{children:\"power faster decisions\"}),\" with AI\u2014so they \",/*#__PURE__*/_jsx(\"strong\",{children:\"do more with less\"}),\".\"]})}),className:\"framer-dfmxg9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/bbcf1ba6-acf6-4441-90cc-a1f59c3039cb/submit\",className:\"framer-1r6jgqf\",nodeId:\"KS3G3QWEx\",redirectUrl:{webPageId:\"E8jfGNuyF\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-sqjjxr\",inputName:\"Email\",placeholder:\"What's you work email?\",type:\"email\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+3587.1+80+0+0+32+0+0+0+0+212.8+8},y_lDj_sNB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px) - 48px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+0+16+0+0+0+0+212.8+8+50}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"200px\",y:(componentViewport?.y||0)+0+3823.1+100+0+0+42+0+0+0+212.8+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4b5n6-container\",nodeId:\"xJiTHiGuc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Form,{height:\"100%\",id:\"xJiTHiGuc\",IJMUXOXa7:\"rgb(58, 190, 255)\",layoutId:\"xJiTHiGuc\",pWLpiEwHD:\"See VAL in action\",Q11dNEZPa:\"var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"QeCYutJMV\",success:\"NcmgyY6Hz\"},\"ASjrVJ4My\"),width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-134o5c4\",\"data-framer-name\":\"Value\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:\"120px\",y:(componentViewport?.y||0)+0+3587.1+80+0+0+32+0+0+300.8+20},y_lDj_sNB:{height:31,width:\"120px\",y:(componentViewport?.y||0)+0+4674.5+60+0+0+16+0+0+360.8+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"162px\",y:(componentViewport?.y||0)+0+3823.1+100+0+0+42+0+0+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfeh4l-container\",nodeId:\"TxKggFT1N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MiscLogo,{height:\"100%\",id:\"TxKggFT1N\",layoutId:\"TxKggFT1N\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwi6oa\",\"data-framer-name\":\"Fact Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m09bxg\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16wf23l\",\"data-styles-preset\":\"whYfzqmcB\",children:\"13.5M+\"})}),className:\"framer-193oxqf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\"},children:\"Monthly transactions\"})}),className:\"framer-lqie43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yu50es\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16wf23l\",\"data-styles-preset\":\"whYfzqmcB\",children:\"90+\"})}),className:\"framer-18y5xgi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6))\"},children:\"Brands powered by VAL\"})}),className:\"framer-1i6o5pa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l6t1c9\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 64px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+0+32+582.6},y_lDj_sNB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px) - 32px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+0+16+707.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 84px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+0+42+365.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cig38t-container\",nodeId:\"QlgVSykFe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"QlgVSykFe\",layoutId:\"QlgVSykFe\",LDdhNX4u_:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8d4gsn\",\"data-framer-name\":\"Who Uses\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1a26qz\",\"data-styles-preset\":\"vB4AUeX65\",children:\"Who uses our Data Platform?\"})}),className:\"framer-16i0ab7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u7kh7l\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+846.6+0+75.2+0+0},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+899.8+0+75.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+689.8+0+75.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ajlian-container\",nodeId:\"fR2JZb6AP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{variant:\"FyWXSqfJk\"}},children:/*#__PURE__*/_jsx(CardWhoUses,{height:\"100%\",id:\"fR2JZb6AP\",layoutId:\"fR2JZb6AP\",style:{width:\"100%\"},uLpjgoSCD:\"Executive Teams\",variant:\"RVxDyBZB7\",width:\"100%\",ZQQ6tg4jZ:\"Access consolidated dashboards and summaries to make fast, data-backed decisions for growth and cost control.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+846.6+0+75.2+0+0},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+899.8+0+75.2+0+246}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+689.8+0+75.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12m23d4-container\",nodeId:\"wTHY_SOJL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{variant:\"FyWXSqfJk\"}},children:/*#__PURE__*/_jsx(CardWhoUses,{height:\"100%\",id:\"wTHY_SOJL\",layoutId:\"wTHY_SOJL\",style:{width:\"100%\"},uLpjgoSCD:\"Operations Teams\",variant:\"RVxDyBZB7\",width:\"100%\",ZQQ6tg4jZ:\"Monitor outlet performance, streamline reporting, and reduce day-to-day manual work with clean, automated data flows.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+846.6+0+75.2+0+252},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+899.8+0+75.2+0+492}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+689.8+0+75.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7wxcxy-container\",nodeId:\"pjsaOamsC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{variant:\"FyWXSqfJk\"}},children:/*#__PURE__*/_jsx(CardWhoUses,{height:\"100%\",id:\"pjsaOamsC\",layoutId:\"pjsaOamsC\",style:{width:\"100%\"},uLpjgoSCD:\"Finance Teams\",variant:\"RVxDyBZB7\",width:\"100%\",ZQQ6tg4jZ:\"Automate reconciliation, generate accounting entries, and reduce month-end closing time with trusted data.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+846.6+0+75.2+0+252},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+899.8+0+75.2+0+738}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+689.8+0+75.2+0+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1penx1t-container\",nodeId:\"zPkRlw0Mh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{variant:\"FyWXSqfJk\"}},children:/*#__PURE__*/_jsx(CardWhoUses,{height:\"100%\",id:\"zPkRlw0Mh\",layoutId:\"zPkRlw0Mh\",style:{width:\"100%\"},uLpjgoSCD:\"Store Managers\",variant:\"RVxDyBZB7\",width:\"100%\",ZQQ6tg4jZ:\"Track sales trends, meal period performance, and key outlet KPIs in real time\u2014without waiting on reports.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+846.6+0+75.2+0+504},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+899.8+0+75.2+0+984}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+689.8+0+75.2+0+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jn75ql-container\",nodeId:\"ILsasSiFc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{variant:\"FyWXSqfJk\"}},children:/*#__PURE__*/_jsx(CardWhoUses,{height:\"100%\",id:\"ILsasSiFc\",layoutId:\"ILsasSiFc\",style:{width:\"100%\"},uLpjgoSCD:\"Strategy & Insights\",variant:\"RVxDyBZB7\",width:\"100%\",ZQQ6tg4jZ:\"Use AI to surface trends, anomalies, and drivers behind performance changes across channels and brands.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3587.1+80+0+846.6+0+75.2+0+504},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+4674.5+60+0+899.8+0+75.2+0+1230}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3823.1+100+0+689.8+0+75.2+0+252,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i76f0b-container\",nodeId:\"Vtu96LYBW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_lDj_sNB:{variant:\"FyWXSqfJk\"}},children:/*#__PURE__*/_jsx(CardWhoUses,{height:\"100%\",id:\"Vtu96LYBW\",layoutId:\"Vtu96LYBW\",style:{width:\"100%\"},uLpjgoSCD:\"Tech & Data Teams\",variant:\"RVxDyBZB7\",width:\"100%\",ZQQ6tg4jZ:\"Replace fragile spreadsheets with scalable pipelines that collect, clean, and transform data from multiple systems.\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-uuznv6\",\"data-framer-name\":\"Integration\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dlccdc\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tq6310\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2mtjq\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3gxfz\",\"data-styles-preset\":\"nBYoYjZot\",style:{\"--framer-text-color\":\"var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255))\"},children:\"Effortlessly Connect, Clean, and Automate Your F&B & Retail Data\"})}),className:\"framer-10e2cz2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",style:{\"--framer-text-color\":\"var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, rgb(245, 245, 245))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"VAL integrates with the systems you already use\"}),\"\u2014from POS to delivery, eCommerce, and accounting\u2014ensuring accurate data flow, faster processes, and AI-ready insights without changing your existing setup.\"]})}),className:\"framer-17bpn7r\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+5400.9+80+32+0+0+228.8},y_lDj_sNB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px) - 32px)`,y:(componentViewport?.y||0)+0+7227.5+60+16+0+0+222.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"320px\",y:(componentViewport?.y||0)+0+5268.1+100+42+0+0+120.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17tdfei-container\",nodeId:\"zhZOOJn4k\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation2,children:/*#__PURE__*/_jsx(ButtonAllIntegrations,{height:\"100%\",id:\"zhZOOJn4k\",layoutId:\"zhZOOJn4k\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hgvz57\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 64px)`,y:(componentViewport?.y||0)+0+5400.9+80+32+385.8},y_lDj_sNB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px) - 32px)`,y:(componentViewport?.y||0)+0+7227.5+60+16+379.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 84px)`,y:(componentViewport?.y||0)+0+5268.1+100+42+277.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m6ms4g-container\",nodeId:\"AYVNVIRM0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"AYVNVIRM0\",layoutId:\"AYVNVIRM0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jusnzp\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mtxs6o\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UFjo2kdja\",data:Integration,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"UFjo2kdja\",name:\"v8COP3qct\",type:\"Identifier\"},{collection:\"UFjo2kdja\",name:\"S5J8ZPe4v\",type:\"Identifier\"},{collection:\"UFjo2kdja\",name:\"imWFd2rje\",type:\"Identifier\"},{collection:\"UFjo2kdja\",name:\"ivapFwSlw\",type:\"Identifier\"},{collection:\"UFjo2kdja\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idUFjo2kdja,imWFd2rje:imWFd2rjeUFjo2kdja,ivapFwSlw:ivapFwSlwUFjo2kdja,S5J8ZPe4v:S5J8ZPe4vUFjo2kdja,v8COP3qct:v8COP3qctUFjo2kdja},index)=>{v8COP3qctUFjo2kdja??=\"\";ivapFwSlwUFjo2kdja??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UFjo2kdja-${idUFjo2kdja}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ivapFwSlw:ivapFwSlwUFjo2kdja},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 88px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5400.9+80+32+514.8+0+0},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px) - 32px, 50px)`,y:(componentViewport?.y||0)+0+7227.5+60+16+508.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 156px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5268.1+100+42+406.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-39ltxu-container\",nodeId:\"Q6Pkh8JPU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardTool,{aNxemTTU1:enumToDisplayNameFunctions[\"imWFd2rje\"]?.(imWFd2rjeUFjo2kdja,activeLocale),G44R3MgrC:v8COP3qctUFjo2kdja,height:\"100%\",id:\"Q6Pkh8JPU\",layoutId:\"Q6Pkh8JPU\",style:{width:\"100%\"},variant:\"C7vWksGoH\",width:\"100%\",WmE2RP_3V:toResponsiveImage(S5J8ZPe4vUFjo2kdja)})})})})})},idUFjo2kdja);})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-b1jm6t\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pk6fzx\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0parp\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ggzuj4\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1b3gxfz\",\"data-styles-preset\":\"nBYoYjZot\",children:\"Resources & insights\"})}),className:\"framer-1s3otls\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lb16r3\",\"data-styles-preset\":\"Pu00R26H5\",children:\"Stay ahead with expert insights, guides, and updates to help you maximize your data experience.\"})}),className:\"framer-1uf0hxv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vpC9oN7KC\"},implicitPathVariables:undefined},{href:{webPageId:\"vpC9oN7KC\"},implicitPathVariables:undefined},{href:{webPageId:\"vpC9oN7KC\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{y:(componentViewport?.y||0)+0+6262.7+80+0+0+0+127.8},y_lDj_sNB:{y:(componentViewport?.y||0)+0+8011.3+60+0+0+0+200.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+6081.9+100+0+0+0+127.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bkepq5-container\",nodeId:\"kPQZxaxcZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{aXUt524bX:resolvedLinks4[1]},y_lDj_sNB:{aXUt524bX:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{aXUt524bX:resolvedLinks4[0],fo3OjjxHy:\"Visit our blog\",hCaqIJQo7:true,height:\"100%\",id:\"kPQZxaxcZ\",layoutId:\"kPQZxaxcZ\",m33HmdY5U:\"12px 16px 12px 16px\",variant:\"r0oOSBgll\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-694797\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{query:{from:{alias:\"kmCIxmGMx\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"kmCIxmGMx\",name:\"DI9sQ7vM5\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"e4G8z3_Ql\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"h0as0HmGL\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"UIcJds6uT\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"zxtOUaRCN\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kmCIxmGMx\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"kmCIxmGMx\",name:\"DI9sQ7vM5\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"e4G8z3_Ql\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"h0as0HmGL\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"UIcJds6uT\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"zxtOUaRCN\",type:\"Identifier\"},{collection:\"kmCIxmGMx\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({DI9sQ7vM5:DI9sQ7vM5kmCIxmGMx,e4G8z3_Ql:e4G8z3_QlkmCIxmGMx,h0as0HmGL:h0as0HmGLkmCIxmGMx,id:idkmCIxmGMx,UIcJds6uT:UIcJds6uTkmCIxmGMx,zxtOUaRCN:zxtOUaRCNkmCIxmGMx},index1)=>{DI9sQ7vM5kmCIxmGMx??=\"\";UIcJds6uTkmCIxmGMx??=\"\";zxtOUaRCNkmCIxmGMx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kmCIxmGMx-${idkmCIxmGMx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zxtOUaRCN:zxtOUaRCNkmCIxmGMx},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zxtOUaRCN:zxtOUaRCNkmCIxmGMx},webPageId:\"lAmyQnlxX\"},implicitPathVariables:undefined},{href:{pathVariables:{zxtOUaRCN:zxtOUaRCNkmCIxmGMx},webPageId:\"lAmyQnlxX\"},implicitPathVariables:undefined},{href:{pathVariables:{zxtOUaRCN:zxtOUaRCNkmCIxmGMx},webPageId:\"lAmyQnlxX\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+6262.7+80+0+224.8+0+0},y_lDj_sNB:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1200px), 50px)`,y:(componentViewport?.y||0)+0+8011.3+60+0+297.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6081.9+100+0+224.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w71rg0-container\",nodeId:\"Wnv4xMBp5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{blRCNHIt9:{qQcmmVZBM:resolvedLinks5[1]},y_lDj_sNB:{qQcmmVZBM:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(CardBlog,{CBlPDitGA:toResponsiveImage(h0as0HmGLkmCIxmGMx),height:\"100%\",id:\"Wnv4xMBp5\",kiwo8HnEd:enumToDisplayNameFunctions1[\"e4G8z3_Ql\"]?.(e4G8z3_QlkmCIxmGMx,activeLocale),layoutId:\"Wnv4xMBp5\",q3jIl3ztw:DI9sQ7vM5kmCIxmGMx,qQcmmVZBM:resolvedLinks5[0],style:{width:\"100%\"},u_oA1fhDx:UIcJds6uTkmCIxmGMx,width:\"100%\"})})})})})})})},idkmCIxmGMx);})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11z10r1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RhhANk6Rg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"ykk38hhl\",height:\"100%\",id:\"RhhANk6Rg\",layoutId:\"RhhANk6Rg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yXbrH.framer-lux5qc, .framer-yXbrH .framer-lux5qc { display: block; }\",\".framer-yXbrH.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, #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: 1200px; }\",\".framer-yXbrH .framer-z5ta0i { 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: 80px 50px 80px 50px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-qn98ml, .framer-yXbrH .framer-1pk6fzx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-r0xj51, .framer-yXbrH .framer-8d4gsn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1pcuzdr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-wjaz6p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1do10gq { align-content: center; align-items: center; background-color: #1e1e3f; 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: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-1naelto, .framer-yXbrH .framer-193oxqf, .framer-yXbrH .framer-18y5xgi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yXbrH .framer-ecywsh, .framer-yXbrH .framer-xxldxa, .framer-yXbrH .framer-1xlvr5c, .framer-yXbrH .framer-74jq6h, .framer-yXbrH .framer-1991u36, .framer-yXbrH .framer-drjc6e, .framer-yXbrH .framer-wg0tzr, .framer-yXbrH .framer-1o35agk, .framer-yXbrH .framer-1kkpfrx, .framer-yXbrH .framer-1gonbj8, .framer-yXbrH .framer-1uqsewn, .framer-yXbrH .framer-1t8wown, .framer-yXbrH .framer-3ngyqq, .framer-yXbrH .framer-hzitmp, .framer-yXbrH .framer-1kb2k66, .framer-yXbrH .framer-189oa1t, .framer-yXbrH .framer-lqie43, .framer-yXbrH .framer-1i6o5pa, .framer-yXbrH .framer-16i0ab7, .framer-yXbrH .framer-10e2cz2, .framer-yXbrH .framer-1s3otls, .framer-yXbrH .framer-1uf0hxv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yXbrH .framer-1nmwpwh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yXbrH .framer-r3iq5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yXbrH .framer-9oulxa-container, .framer-yXbrH .framer-pvd8v8-container, .framer-yXbrH .framer-15frw9j-container, .framer-yXbrH .framer-d87jyn-container, .framer-yXbrH .framer-1bkepq5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-yXbrH .framer-16ugmtr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; opacity: 0.8; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-rjoju5-container, .framer-yXbrH .framer-yz86oa-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yXbrH .framer-19bau1c { align-content: flex-end; align-items: flex-end; background: linear-gradient(180deg, var(--token-b62e05fc-6719-4e37-b2df-1a8a240dcc9c, rgba(255, 255, 255, 0)) 0%, var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255)) 61%, var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, rgb(255, 255, 255)) 100%); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 200px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-yXbrH .framer-1pux1n9-container { flex: 1 0 0px; height: 40px; opacity: 0.75; position: relative; width: 1px; }\",\".framer-yXbrH .framer-u1q0q2, .framer-yXbrH .framer-11nrpx7, .framer-yXbrH .framer-mlgrn6, .framer-yXbrH .framer-uuznv6, .framer-yXbrH .framer-b1jm6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1db9xgx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-1gt5eq7, .framer-yXbrH .framer-1keousb { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1eoebn5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-1qi6q1j { align-content: center; align-items: center; background-color: var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, #f5f5f5); 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: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-10669s0 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-14udc8z, .framer-yXbrH .framer-h6isea, .framer-yXbrH .framer-1v9gx1k, .framer-yXbrH .framer-122p31u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1f94ayk-container { flex: none; height: auto; position: relative; width: 99%; }\",\".framer-yXbrH .framer-1d3f08u { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, #f5f5f5); 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: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-1wyozsk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-ppm6zc { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 783px; position: relative; width: 400px; }\",\".framer-yXbrH .framer-csl2j6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-q4e8ay, .framer-yXbrH .framer-174ay15 { align-content: flex-start; align-items: flex-start; background-color: var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, #f5f5f5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-1olz932 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 307px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1b7lszb-container { flex: none; height: auto; position: relative; width: 489px; }\",\".framer-yXbrH .framer-9p0k9j { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, #f5f5f5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-187ncop { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1i97u0l-container { flex: none; height: 306px; position: relative; width: 489px; }\",\".framer-yXbrH .framer-10tnjk2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 394px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-m2au5q-container { flex: none; height: auto; position: relative; width: 630px; }\",\".framer-yXbrH .framer-u63syg { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-91f5f6ac-2d01-46ef-abe8-03874506b038, #f5f5f5); 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: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 36%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-13lhas5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-6ctwxd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-c8d7e9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-16vjmx4-container, .framer-yXbrH .framer-1phz6f8-container, .framer-yXbrH .framer-fgmer7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-yXbrH .framer-ov5b3c { background-color: var(--token-ee34131e-5416-4759-a4cd-c05e86974cba, rgba(18, 19, 22, 0.2)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-yXbrH .framer-y0066y { align-content: center; align-items: center; 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: 100%; }\",\".framer-yXbrH .framer-1tnfc0c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-10vsf3o { align-content: center; align-items: center; background-color: #1e1e3f; 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: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 42px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-xhy9wu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-qevgit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 47%; }\",\".framer-yXbrH .framer-1t2p00u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-dfmxg9, .framer-yXbrH .framer-17bpn7r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-yXbrH .framer-1r6jgqf { align-content: flex-start; align-items: flex-start; background-color: var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, #ffffff); 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: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-yXbrH .framer-sqjjxr { --framer-input-background: var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, #ffffff); --framer-input-font-color: var(--token-1025098b-bdfe-498f-8c20-f9a2950fd4bf, #121316); --framer-input-font-family: \"Plus Jakarta Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: var(--token-c2a3bf50-9c5c-48a1-a955-71074a7a38d9, rgba(18, 19, 22, 0.6)); flex: 1 0 0px; height: 40px; position: relative; width: 1px; }',\".framer-yXbrH .framer-y4b5n6-container { flex: none; height: 40px; position: relative; width: 200px; }\",\".framer-yXbrH .framer-134o5c4 { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-37e8afd6-496b-4761-a610-4c3bcbf28d89, #ffffff); 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: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 30%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-1jfeh4l-container { aspect-ratio: 3.176470588235294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 162px; }\",\".framer-yXbrH .framer-1cwi6oa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-m09bxg, .framer-yXbrH .framer-1yu50es { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-1l6t1c9, .framer-yXbrH .framer-1hgvz57, .framer-yXbrH .framer-1jusnzp { background-color: var(--token-08faceeb-1065-43e2-8c01-5d6fcdd9121c, rgba(255, 255, 255, 0.2)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1cig38t-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1u7kh7l { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-ajlian-container, .framer-yXbrH .framer-12m23d4-container, .framer-yXbrH .framer-7wxcxy-container, .framer-yXbrH .framer-1penx1t-container, .framer-yXbrH .framer-1jn75ql-container, .framer-yXbrH .framer-i76f0b-container, .framer-yXbrH .framer-39ltxu-container, .framer-yXbrH .framer-1w71rg0-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1dlccdc { align-content: center; align-items: center; background-color: #1e1e3f; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 42px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yXbrH .framer-1tq6310, .framer-yXbrH .framer-q0parp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1w2mtjq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-17tdfei-container { flex: none; height: auto; position: relative; width: 320px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yXbrH .framer-1m6ms4g-container { flex: none; height: 32px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1mtxs6o { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-1ggzuj4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yXbrH .framer-694797 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-yXbrH .framer-11z10r1-container { flex: none; height: 100px; position: relative; width: 200px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-yXbrH.framer-72rtr7 { width: 810px; } .framer-yXbrH .framer-z5ta0i { padding: 60px 30px 60px 30px; } .framer-yXbrH .framer-u1q0q2, .framer-yXbrH .framer-11nrpx7, .framer-yXbrH .framer-mlgrn6, .framer-yXbrH .framer-uuznv6, .framer-yXbrH .framer-b1jm6t { padding: 80px 30px 80px 30px; } .framer-yXbrH .framer-1eoebn5 { gap: 60px; } .framer-yXbrH .framer-1qi6q1j, .framer-yXbrH .framer-1d3f08u, .framer-yXbrH .framer-q4e8ay, .framer-yXbrH .framer-9p0k9j, .framer-yXbrH .framer-174ay15, .framer-yXbrH .framer-u63syg { padding: 18px; } .framer-yXbrH .framer-13lhas5 { gap: 80px; } .framer-yXbrH .framer-1tnfc0c { gap: 160px; } .framer-yXbrH .framer-10vsf3o, .framer-yXbrH .framer-1dlccdc { padding: 32px; } .framer-yXbrH .framer-xhy9wu { flex-direction: column; gap: 32px; justify-content: center; } .framer-yXbrH .framer-qevgit { width: 100%; } .framer-yXbrH .framer-134o5c4 { align-self: unset; flex-direction: row; height: min-content; width: 100%; } .framer-yXbrH .framer-1jfeh4l-container { height: var(--framer-aspect-ratio-supported, 38px); width: 120px; } .framer-yXbrH .framer-1cwi6oa { width: 312px; } .framer-yXbrH .framer-1u7kh7l, .framer-yXbrH .framer-1mtxs6o, .framer-yXbrH .framer-694797 { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-yXbrH .framer-1tq6310 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-yXbrH .framer-1w2mtjq { flex: none; width: 100%; }}\",\"@media (max-width: 809px) { .framer-yXbrH.framer-72rtr7 { width: 390px; } .framer-yXbrH .framer-z5ta0i { padding: 50px 16px 50px 16px; } .framer-yXbrH .framer-19bau1c { height: 100px; } .framer-yXbrH .framer-u1q0q2, .framer-yXbrH .framer-11nrpx7, .framer-yXbrH .framer-mlgrn6, .framer-yXbrH .framer-uuznv6, .framer-yXbrH .framer-b1jm6t { padding: 60px 16px 60px 16px; } .framer-yXbrH .framer-1db9xgx { gap: 18px; } .framer-yXbrH .framer-1gt5eq7, .framer-yXbrH .framer-csl2j6, .framer-yXbrH .framer-1keousb { flex-direction: column; gap: 18px; } .framer-yXbrH .framer-1eoebn5 { flex: none; gap: 40px; width: 100%; } .framer-yXbrH .framer-1qi6q1j, .framer-yXbrH .framer-10vsf3o, .framer-yXbrH .framer-1dlccdc { padding: 16px; } .framer-yXbrH .framer-1d3f08u, .framer-yXbrH .framer-u63syg { align-self: unset; height: min-content; padding: 16px; width: 100%; } .framer-yXbrH .framer-1wyozsk { flex: none; height: 350px; } .framer-yXbrH .framer-q4e8ay, .framer-yXbrH .framer-174ay15 { flex: none; padding: 16px; width: 100%; } .framer-yXbrH .framer-9p0k9j { align-self: unset; flex: none; height: min-content; padding: 16px; width: 100%; } .framer-yXbrH .framer-1v9gx1k, .framer-yXbrH .framer-1t8wown { order: 0; } .framer-yXbrH .framer-187ncop { aspect-ratio: 1.336 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); order: 1; } .framer-yXbrH .framer-d87jyn-container { order: 1; } .framer-yXbrH .framer-13lhas5 { gap: 60px; } .framer-yXbrH .framer-c8d7e9 { flex-direction: column; } .framer-yXbrH .framer-16vjmx4-container, .framer-yXbrH .framer-1phz6f8-container, .framer-yXbrH .framer-fgmer7-container, .framer-yXbrH .framer-sqjjxr, .framer-yXbrH .framer-1w2mtjq, .framer-yXbrH .framer-1ggzuj4 { flex: none; width: 100%; } .framer-yXbrH .framer-1tnfc0c { gap: 120px; } .framer-yXbrH .framer-xhy9wu { flex-direction: column; gap: 42px; justify-content: center; } .framer-yXbrH .framer-qevgit, .framer-yXbrH .framer-dfmxg9, .framer-yXbrH .framer-y4b5n6-container, .framer-yXbrH .framer-17bpn7r, .framer-yXbrH .framer-17tdfei-container { width: 100%; } .framer-yXbrH .framer-1r6jgqf { flex-direction: column; gap: 10px; } .framer-yXbrH .framer-134o5c4 { align-self: unset; height: 250px; width: 100%; } .framer-yXbrH .framer-1jfeh4l-container { height: var(--framer-aspect-ratio-supported, 31px); width: 120px; } .framer-yXbrH .framer-1u7kh7l { gap: 18px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-yXbrH .framer-1tq6310 { flex-direction: column; gap: 42px; } .framer-yXbrH .framer-1mtxs6o, .framer-yXbrH .framer-694797 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-yXbrH .framer-q0parp { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8734.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"blRCNHIt9\":{\"layout\":[\"fixed\",\"auto\"]},\"y_lDj_sNB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-yXbrH\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8734.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]},...ButtonPrimaryFonts,...VideoFonts,...LogoFonts,...MiscIconTextFonts,...CardFeaturesTabFonts,...FormFonts,...MiscLogoFonts,...CardWhoUsesFonts,...ButtonAllIntegrationsFonts,...ToolsFonts,...CardToolFonts,...CardBlogFonts,...IntercomFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"blRCNHIt9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y_lDj_sNB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8734.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__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", "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", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zTE2qtvG6", "sbMsm2jj9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerGOBjer1du", "withCSS", "GOBjer1du_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "PhosphorFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "S5J8ZPe4vf6mscGTpn", "ivapFwSlwf6mscGTpn", "idf6mscGTpn", "S5J8ZPe4vIA55JULQ6", "ivapFwSlwIA55JULQ6", "idIA55JULQ6", "S5J8ZPe4vXtQd6iwJl", "ivapFwSlwXtQd6iwJl", "idXtQd6iwJl", "S5J8ZPe4vJ9KTNGOB0", "ivapFwSlwJ9KTNGOB0", "idJ9KTNGOB0", "S5J8ZPe4vwJvkzMAlm", "ivapFwSlwwJvkzMAlm", "idwJvkzMAlm", "S5J8ZPe4vFQeM8kLFE", "ivapFwSlwFQeM8kLFE", "idFQeM8kLFE", "S5J8ZPe4vfJHAXQwGl", "ivapFwSlwfJHAXQwGl", "idfJHAXQwGl", "S5J8ZPe4vU2Ge0UcOH", "ivapFwSlwU2Ge0UcOH", "idU2Ge0UcOH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "ChildrenCanSuspend", "QueryData", "MzyqUfjgL_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Image2", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "RichText", "Icon", "css", "FramerHGo8YhvPy", "withCSS", "HGo8YhvPy_default", "addFonts", "SlideshowFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ilWWtJf3v", "lJIGePIkT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1w3a9x9", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framerw1dvJe3Ar", "withCSS", "w1dvJe3Ar_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "QOV_VA92J", "u1MhkJu9h", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaphn6lhn", "args", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerZhrRcBbhh", "withCSS", "ZhrRcBbhh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonTabFonts", "getFonts", "ZhrRcBbhh_default", "ImageFeatureTabFonts", "w1dvJe3Ar_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "equals", "b", "convertFromBoolean", "value", "activeLocale", "prefix", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Z6w6hvczEoMiobJXUx", "Z6w6hvczEgrVCbFQI5", "vUJ5wLRV5oMiobJXUx", "idoMiobJXUx", "Z6w6hvczEMjXS8H518", "vUJ5wLRV5MjXS8H518", "idMjXS8H518", "Z6w6hvczEMTaA2J8F5", "vUJ5wLRV5MTaA2J8F5", "idMTaA2J8F5", "Z6w6hvczEbUzD2rb19", "vUJ5wLRV5bUzD2rb19", "idbUzD2rb19", "Z6w6hvczEsWZLpTiyz", "vUJ5wLRV5sWZLpTiyz", "idsWZLpTiyz", "YHeEs4TuygrVCbFQI5", "vUJ5wLRV5grVCbFQI5", "kxQWSijPdgrVCbFQI5", "idgrVCbFQI5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1uu5xr4", "args", "onAppear18if745", "onAppear4vadif", "onAppearv301cd", "onAppearghk4k2", "onAppear10efd3j", "onAppearqs46fw", "onAppear1jf7cqb", "onAppearqu2inw", "onAppearz5rs98", "onAppear1tvxhne", "onAppear3a8ycg", "onAppearpugguz", "onAppear16eud6u", "onAppears01lf6", "u1MhkJu9h19gt3ob", "u1MhkJu9hd266vu", "u1MhkJu9h1e93zx5", "u1MhkJu9hmflep9", "u1MhkJu9hby9420", "u1MhkJu9h14yazlv", "u1MhkJu9hjog9uq", "u1MhkJu9hnl3z2k", "u1MhkJu9hgyt4wl", "u1MhkJu9hkgjlfn", "u1MhkJu9h1f84e0e", "u1MhkJu9hwaftw7", "u1MhkJu9hrb8oqx", "u1MhkJu9h1cz267d", "u1MhkJu9h1nvrokb", "useOnVariantChange", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "addPropertyOverrides", "ChildrenCanSuspend", "AlUcK7UyM_default", "collection5", "paginationInfo", "loadMore", "l", "collection3", "collection1", "collection2", "collection", "collection4", "index5", "textContent", "prefix", "PathVariablesContext", "u", "index", "ComponentViewportProvider", "SmartComponentScopedContainer", "ZhrRcBbhh_default", "convertFromBoolean", "equals", "index1", "index2", "index3", "index4", "RichText", "Link", "w1dvJe3Ar_default", "toResponsiveImage", "css", "FramerkGWi0HEJ8", "withCSS", "kGWi0HEJ8_default", "addPropertyControls", "ControlType", "addFonts", "ButtonTabFonts", "ImageFeatureTabFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uLpjgoSCD", "ZQQ6tg4jZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramernY01FKgds", "withCSS", "nY01FKgds_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "S5J8ZPe4vlT3rpZEjA", "ivapFwSlwlT3rpZEjA", "idlT3rpZEjA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "ChildrenCanSuspend", "MzyqUfjgL_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Image2", "toResponsiveImage", "css", "FramerVzqBlNU2p", "withCSS", "VzqBlNU2p_default", "addFonts", "TickerFonts", "ButtonPrimaryFonts", "getFonts", "f0BG8OdEZ_default", "VideoFonts", "Video", "ContainerWithFX", "withFX", "Container", "LogoFonts", "hIwDcZztI_default", "MiscIconTextFonts", "GOBjer1du_default", "CardFeaturesTabFonts", "kGWi0HEJ8_default", "FormFonts", "MR7CV4j0n_default", "MiscLogoFonts", "jJtgxbie7_default", "CardWhoUsesFonts", "nY01FKgds_default", "ButtonAllIntegrationsFonts", "HGo8YhvPy_default", "ToolsFonts", "VzqBlNU2p_default", "CardToolFonts", "iK1Ktqojb_default", "CardBlogFonts", "nU0zGVTLv_default", "IntercomFonts", "Intercom", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "formVariants", "form", "variants", "currentVariant", "transition2", "animation2", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "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", "v8COP3qctUFjo2kdja", "S5J8ZPe4vUFjo2kdja", "imWFd2rjeUFjo2kdja", "ivapFwSlwUFjo2kdja", "idUFjo2kdja", "DI9sQ7vM5kmCIxmGMx", "e4G8z3_QlkmCIxmGMx", "h0as0HmGLkmCIxmGMx", "UIcJds6uTkmCIxmGMx", "zxtOUaRCNkmCIxmGMx", "idkmCIxmGMx", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText", "x", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "f0BG8OdEZ_default", "resolvedLinks1", "ContainerWithFX", "Video", "hIwDcZztI_default", "resolvedLinks2", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks3", "GOBjer1du_default", "kGWi0HEJ8_default", "FormContainer", "formState", "l", "FormPlainTextInput2", "MR7CV4j0n_default", "jJtgxbie7_default", "nY01FKgds_default", "HGo8YhvPy_default", "VzqBlNU2p_default", "ChildrenCanSuspend", "MzyqUfjgL_default", "collection", "paginationInfo", "loadMore", "index", "PathVariablesContext", "iK1Ktqojb_default", "enumToDisplayNameFunctions", "resolvedLinks4", "FUwOpZR7W_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks5", "nU0zGVTLv_default", "Intercom", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "ButtonPrimaryFonts", "VideoFonts", "LogoFonts", "MiscIconTextFonts", "CardFeaturesTabFonts", "FormFonts", "MiscLogoFonts", "CardWhoUsesFonts", "ButtonAllIntegrationsFonts", "ToolsFonts", "CardToolFonts", "CardBlogFonts", "IntercomFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
