{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/YYBTkVbEBoiSSpqQUMyN/QNBfKifh7mvZX7Ie9tkE/iUJiykBbO.js", "ssg:https://framerusercontent.com/modules/da0Au5baEMT2t0asRK7r/QYoGdwAGO7p4tAq6s6R9/RSromA5iN.js", "ssg:https://framerusercontent.com/modules/kSrEO84NuQDveZZP1H4q/mMoS4zJjc8f1bypRSy28/Dxc1eoI6G.js", "ssg:https://framerusercontent.com/modules/Yml8SLJmxSMfSav1naUr/QKn8e9N7ftifKfR3unPy/wMvAVn_SW.js", "ssg:https://framerusercontent.com/modules/kvX66dsOcbyxI8b30e3M/virpIKrG1KYpkacjwfOy/oxUjT3pRU.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addPropertyControls, ControlType, useIsInCurrentNavigationTarget } from \"framer\";\nimport { isMotionValue, useInView } from \"framer-motion\";\nimport { borderRadiusControl, defaultEvents, useIsBrowserSafari, useIsOnCanvas, useOnEnter, useOnExit, useRadius } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { memo, useCallback, useEffect, useMemo, useRef, useState } from \"react\";\nvar ObjectFitType;\n(function (ObjectFitType) {\n  ObjectFitType[\"Fill\"] = \"fill\";\n  ObjectFitType[\"Contain\"] = \"contain\";\n  ObjectFitType[\"Cover\"] = \"cover\";\n  ObjectFitType[\"None\"] = \"none\";\n  ObjectFitType[\"ScaleDown\"] = \"scale-down\";\n})(ObjectFitType || (ObjectFitType = {}));\nvar SrcType;\n(function (SrcType) {\n  SrcType[\"Video\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {})); // Reduce renders\nfunction getProps(props) {\n  const {\n    width,\n    height,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    id,\n    children,\n    ...rest\n  } = props;\n  return rest;\n} /**\n  * VIDEO\n  *\n  * @framerIntrinsicWidth 200\n  * @framerIntrinsicHeight 112\n  *\n  * @framerSupportedLayoutWidth fixed\n  * @framerSupportedLayoutHeight any-prefer-fixed\n  */\nexport function Video(props) {\n  const newProps = getProps(props);\n  return /*#__PURE__*/_jsx(VideoMemo, {\n    ...newProps\n  });\n}\nfunction usePlaybackControls(videoRef) {\n  const isInCurrentNavigationTarget = useIsInCurrentNavigationTarget();\n  const requestingPlay = useRef(false);\n  const setProgress = useCallback(rawProgress => {\n    if (!videoRef.current) return;\n    const newProgress = (rawProgress === 1 ? .999 : rawProgress) * videoRef.current.duration;\n    const isAlreadySet = Math.abs(videoRef.current.currentTime - newProgress) < .1;\n    if (videoRef.current.duration > 0 && !isAlreadySet) {\n      videoRef.current.currentTime = newProgress;\n    }\n  }, []);\n  const play = useCallback(() => {\n    const isPlaying = videoRef.current.currentTime > 0 && videoRef.current.onplaying && !videoRef.current.paused && !videoRef.current.ended && videoRef.current.readyState > videoRef.current.HAVE_CURRENT_DATA;\n    if (!isPlaying && videoRef.current && !requestingPlay.current && isInCurrentNavigationTarget) {\n      requestingPlay.current = true;\n      videoRef.current.play().catch(e => {}) // It's likely fine, swallow error\n      .finally(() => requestingPlay.current = false);\n    }\n  }, []);\n  const pause = useCallback(() => {\n    if (!videoRef.current || requestingPlay.current) return;\n    videoRef.current.pause();\n  }, []);\n  return {\n    play,\n    pause,\n    setProgress\n  };\n}\nfunction useAutoplayBehavior({\n  playingProp,\n  muted,\n  loop,\n  playsinline,\n  controls\n}) {\n  const [initialPlayingProp] = useState(() => playingProp);\n  const [hasPlayingPropChanged, setHasPlayingPropChanged] = useState(false);\n  if (playingProp !== initialPlayingProp && !hasPlayingPropChanged) {\n    setHasPlayingPropChanged(true);\n  }\n  const behavesAsGif =\n  // passing `playing === true` on mount indicates that the video should\n  // autoplay, like a GIF\n  initialPlayingProp && muted && loop && playsinline && !controls &&\n  // Some users of the <Video> component use it by wrapping it with\n  // another smart component and adding their own controls on top. (The\n  // controls use transitions to control the video: e.g., when clicking\n  // the play button, the smart component will transition to a state with\n  // <Video playing={true} />.) In this case, we don't want the video to\n  // behave as a gif, as it will be weird if the video suddenly started\n  // acting as such (and auto-pausing when leaving the viewport) as soon\n  // as the site visitor mutes it and clicks \u201CPlay\u201D.\n  !hasPlayingPropChanged;\n  let autoplay;\n  if (behavesAsGif) autoplay = \"on-viewport\";else if (initialPlayingProp) autoplay = \"on-mount\";else autoplay = \"no-autoplay\";\n  return autoplay;\n} /**\n  * The Video component has some effects that sync the video element with props\n  * like `startTime`, `progress`, etc. React calls these effects whenever these\n  * props change. However, it also calls them on the first mount, and this is\n  * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n  * the video was hydrated, the initial `useEffect` call will reset the video\n  * state. To avoid this, we use this flag.\n  */\nlet isMountedAndReadyForProgressChanges = false;\nconst VideoMemo = /*#__PURE__*/memo(function VideoInner(props) {\n  const {\n    srcType,\n    srcFile,\n    srcUrl,\n    playing: playingProp,\n    muted,\n    playsinline,\n    controls,\n    progress,\n    objectFit,\n    backgroundColor,\n    onSeeked,\n    onPause,\n    onPlay,\n    onEnd,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster,\n    posterEnabled,\n    startTime: startTimeProp,\n    volume,\n    loop\n  } = props;\n  const videoRef = useRef();\n  const isSafari = useIsBrowserSafari();\n  const wasPausedOnLeave = useRef(null);\n  const wasEndedOnLeave = useRef(null);\n  const isOnCanvas = useIsOnCanvas();\n  const borderRadius = useRadius(props); // Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n  // tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n  // the component, so using these hooks conditionally should be safe\n  const autoplayBehavior = isOnCanvas ? \"no-autoplay\" : useAutoplayBehavior({\n    playingProp,\n    muted,\n    loop,\n    playsinline,\n    controls\n  });\n  const isInViewport = isOnCanvas ? true : useInView(videoRef); // Video elements behave oddly at 100% duration\n  const startTime = startTimeProp === 100 ? 99.9 : startTimeProp;\n  const {\n    play,\n    pause,\n    setProgress\n  } = usePlaybackControls(videoRef); // Pause/play via props\n  useEffect(() => {\n    if (isOnCanvas) return;\n    if (playingProp) play();else pause();\n  }, [playingProp]); // Pause/play via viewport\n  useEffect(() => {\n    if (isOnCanvas) return;\n    if (autoplayBehavior !== \"on-viewport\") return;\n    if (isInViewport) play();else pause();\n  }, [autoplayBehavior, isInViewport]); // Allow scrubbling via progress prop\n  // 1) Handle cases when the progress prop itself changes\n  useEffect(() => {\n    if (!isMountedAndReadyForProgressChanges) {\n      isMountedAndReadyForProgressChanges = true;\n      return;\n    }\n    const rawProgressValue = isMotionValue(progress) ? progress.get() : (progress !== null && progress !== void 0 ? progress : 0) * .01;\n    setProgress(\n    // When the progress value exists (e.g. <Video startTime={10}\n    // progress={50} />), we respect the `progress` value over\n    // `startTime`, even if `startTime` changes. That\u2019s because\n    // `startTime` == start == changing it shouldn\u2019t affect the current\n    // progress\n    (rawProgressValue !== null && rawProgressValue !== void 0 ? rawProgressValue : 0) ||\n    // Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n    // you might ask? Now, that\u2019s for\n    // - canvas UX: we want the video progress to change when the user\n    //   is scrobbling the \u201CStart Time\u201D in component settings.\n    // - backwards compatibility: maybe some users *are* scrobbling\n    //   using `startTime` instead of `progress`? We don\u2019t know, and it\n    //   always supported it, so let\u2019s not break it\n    (startTime !== null && startTime !== void 0 ? startTime : 0) / 100);\n  }, [startTime, srcFile, srcUrl, progress]); // 2) Handle cases when the motion value inside the progress prop changes\n  useEffect(() => {\n    if (!isMotionValue(progress)) return;\n    return progress.on(\"change\", value => setProgress(value));\n  }, [progress]); // (Prototyping) Checking if we need to play on navigation enter\n  useOnEnter(() => {\n    if (wasPausedOnLeave.current === null) return;\n    if (videoRef.current) {\n      // if (restartOnEnter) setProgress(0)\n      if (!wasEndedOnLeave && loop || !wasPausedOnLeave.current) play();\n    }\n  }); // (Prototyping) Pausing & saving playing state on navigation exit\n  useOnExit(() => {\n    if (videoRef.current) {\n      wasEndedOnLeave.current = videoRef.current.ended;\n      wasPausedOnLeave.current = videoRef.current.paused;\n      pause();\n    }\n  });\n  const src = useMemo(() => {\n    let fragment = \"\"; // if (\n    //     startTime > 0 &&\n    //     videoRef.current &&\n    //     !isNaN(videoRef.current.duration) &&\n    //     !isOnCanvas\n    // ) {\n    //     console.log(startTime, videoRef.current.duration)\n    //     fragment = `#t=${startTime * videoRef.current.duration}`\n    // }\n    if (srcType === SrcType.Url) return srcUrl + fragment;\n    if (srcType === SrcType.Video) return srcFile + fragment;\n  }, [srcType, srcFile, srcUrl, startTime]); // Autoplay via JS to work in Safari\n  useEffect(() => {\n    if (isSafari && videoRef.current && autoplayBehavior === \"on-mount\") {\n      setTimeout(() => play(), 50);\n    }\n  }, []); // Volume Control\n  useEffect(() => {\n    if (videoRef.current && !muted) videoRef.current.volume = (volume !== null && volume !== void 0 ? volume : 0) / 100;\n  }, [volume]); // When video is ready, set start-time, then autoplay if needed\n  const handleReady = () => {\n    if (!videoRef.current) return;\n    if (videoRef.current.currentTime < .3) setProgress((startTime !== null && startTime !== void 0 ? startTime : 0) * .01);\n    if (autoplayBehavior === \"on-mount\") play();\n  };\n  return /*#__PURE__*/_jsx(\"video\", {\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    src: src,\n    loop: loop,\n    ref: videoRef,\n    onSeeked: e => {\n      return onSeeked === null || onSeeked === void 0 ? void 0 : onSeeked(e);\n    },\n    onPause: e => {\n      return onPause === null || onPause === void 0 ? void 0 : onPause(e);\n    },\n    onPlay: e => {\n      return onPlay === null || onPlay === void 0 ? void 0 : onPlay(e);\n    },\n    onEnded: e => {\n      return onEnd === null || onEnd === void 0 ? void 0 : onEnd(e);\n    },\n    autoPlay: autoplayBehavior === \"on-mount\",\n    poster: posterEnabled ? poster : undefined,\n    onLoadedData: handleReady,\n    controls: controls,\n    muted: isOnCanvas ? true : muted,\n    playsInline: playsinline,\n    style: {\n      cursor: !!onClick ? \"pointer\" : \"auto\",\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius,\n      display: \"block\",\n      objectFit: objectFit,\n      backgroundColor: backgroundColor,\n      objectPosition: \"50% 50%\"\n    }\n  });\n});\nVideo.displayName = \"Video\";\nVideo.defaultProps = {\n  srcType: SrcType.Url,\n  srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n  srcFile: \"\",\n  posterEnabled: false,\n  controls: false,\n  playing: true,\n  loop: true,\n  muted: true,\n  playsinline: true,\n  restartOnEnter: false,\n  objectFit: ObjectFitType.Cover,\n  backgroundColor: \"rgba(0,0,0,0)\",\n  radius: 0,\n  volume: 25,\n  startTime: 0\n};\nconst groupsRegex = /[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;\nfunction capitalizeFirstLetter(value) {\n  return value.charAt(0).toUpperCase() + value.slice(1);\n}\nexport function titleCase(value) {\n  const groups = value.match(groupsRegex) || [];\n  return groups.map(capitalizeFirstLetter).join(\" \");\n}\nconst objectFitOptions = [ObjectFitType.Cover, ObjectFitType.Fill, ObjectFitType.Contain, ObjectFitType.ScaleDown, ObjectFitType.None];\naddPropertyControls(Video, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.Video]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.mp4\",\n    hidden(props) {\n      return props.srcType === SrcType.Video;\n    },\n    description: \"Hosted video file URL. For YouTube, use the YouTube component.\"\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"mp4\"],\n    hidden(props) {\n      return props.srcType === SrcType.Url;\n    }\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  posterEnabled: {\n    type: ControlType.Boolean,\n    title: \"Poster\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  poster: {\n    type: ControlType.Image,\n    title: \" \",\n    hidden: ({\n      posterEnabled\n    }) => !posterEnabled\n  },\n  backgroundColor: {\n    type: ControlType.Color,\n    title: \"Background\"\n  },\n  ...borderRadiusControl,\n  startTime: {\n    title: \"Start Time\",\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: .1,\n    unit: \"%\"\n  },\n  loop: {\n    type: ControlType.Boolean,\n    title: \"Loop\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  objectFit: {\n    type: ControlType.Enum,\n    title: \"Fit\",\n    options: objectFitOptions,\n    optionTitles: objectFitOptions.map(titleCase)\n  },\n  // restartOnEnter: {\n  //     type: ControlType.Boolean,\n  //     title: \"On ReEnter\",\n  //     enabledTitle: \"Restart\",\n  //     disabledTitle: \"Resume\",\n  // },\n  controls: {\n    type: ControlType.Boolean,\n    title: \"Controls\",\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\"\n  },\n  muted: {\n    type: ControlType.Boolean,\n    title: \"Muted\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  volume: {\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      muted\n    }) => muted\n  },\n  onEnd: {\n    type: ControlType.EventHandler\n  },\n  onSeeked: {\n    type: ControlType.EventHandler\n  },\n  onPause: {\n    type: ControlType.EventHandler\n  },\n  onPlay: {\n    type: ControlType.EventHandler\n  },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"VideoProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"titleCase\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Video\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Video\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicHeight\": \"112\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ac3938c)\nimport { jsx as e, jsxs as r } from \"react/jsx-runtime\";\nimport { addFonts as a, addPropertyControls as t, ControlType as n, cx as i, Image as o, RichText as l, useLocaleInfo as s, useVariantState as f, withCSS as m } from \"framer\";\nimport { LayoutGroup as d, motion as p, MotionConfigContext as c } from \"framer-motion\";\nimport * as h from \"react\";\nlet g = {\n    j_zjEayMJ: {\n      hover: !0\n    },\n    MB8n2a5mK: {\n      hover: !0\n    }\n  },\n  u = [\"j_zjEayMJ\", \"MB8n2a5mK\"],\n  y = \"framer-GlQT1\",\n  v = {\n    j_zjEayMJ: \"framer-v-11e5phl\",\n    MB8n2a5mK: \"framer-v-yqcyh9\"\n  };\nfunction x(e, ...r) {\n  let a = {};\n  return null == r || r.forEach(r => r && Object.assign(a, e[r])), a;\n}\nlet b = {\n    default: {\n      damping: 60,\n      delay: 0,\n      mass: 1,\n      stiffness: 500,\n      type: \"spring\"\n    }\n  },\n  M = e => \"object\" == typeof e && null !== e && \"string\" == typeof e.src ? e : \"string\" == typeof e ? {\n    src: e\n  } : void 0,\n  w = ({\n    value: r,\n    children: a\n  }) => {\n    let t = h.useContext(c),\n      n = null != r ? r : t.transition,\n      i = h.useMemo(() => ({\n        ...t,\n        transition: n\n      }), [JSON.stringify(n)]);\n    return /*#__PURE__*/e(c.Provider, {\n      value: i,\n      children: a\n    });\n  },\n  j = {\n    \"Variant 1\": \"j_zjEayMJ\",\n    \"Variant 2\": \"MB8n2a5mK\"\n  },\n  T = ({\n    height: e,\n    id: r,\n    image3: a,\n    image4: t,\n    image5: n,\n    text: i,\n    title: o,\n    width: l,\n    ...s\n  }) => {\n    var f, m, d, p;\n    return {\n      ...s,\n      bzg3ZMthP: null !== (f = null != o ? o : s.bzg3ZMthP) && void 0 !== f ? f : \"AI & Machine Learning\",\n      gcbaUlv2A: null != a ? a : s.gcbaUlv2A,\n      NIQcMgWYO: null != t ? t : s.NIQcMgWYO,\n      nJPMU4ors: null != n ? n : s.nJPMU4ors,\n      qlR2EMMyS: null !== (m = null != i ? i : s.qlR2EMMyS) && void 0 !== m ? m : \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\",\n      variant: null !== (p = null !== (d = j[s.variant]) && void 0 !== d ? d : s.variant) && void 0 !== p ? p : \"j_zjEayMJ\"\n    };\n  },\n  A = (e, r) => r.join(\"-\") + e.layoutDependency,\n  I = /*#__PURE__*/h.forwardRef(function (a, t) {\n    let {\n        activeLocale: n\n      } = s(),\n      {\n        style: m,\n        className: c,\n        layoutId: y,\n        variant: j,\n        bzg3ZMthP: I,\n        qlR2EMMyS: z,\n        gcbaUlv2A: R,\n        NIQcMgWYO: E,\n        nJPMU4ors: L,\n        ...G\n      } = T(a),\n      {\n        baseVariant: B,\n        classNames: Q,\n        gestureVariant: F,\n        setGestureState: _,\n        setVariant: k,\n        transition: J,\n        variants: P\n      } = f({\n        cycleOrder: u,\n        defaultVariant: \"j_zjEayMJ\",\n        enabledGestures: g,\n        transitions: b,\n        variant: j,\n        variantClassNames: v\n      }),\n      Z = A(a, P),\n      K = h.useRef(null),\n      S = h.useId();\n    return /*#__PURE__*/e(d, {\n      id: null != y ? y : S,\n      children: /*#__PURE__*/e(p.div, {\n        initial: j,\n        animate: P,\n        onHoverStart: () => _({\n          isHovered: !0\n        }),\n        onHoverEnd: () => _({\n          isHovered: !1\n        }),\n        onTapStart: () => _({\n          isPressed: !0\n        }),\n        onTap: () => _({\n          isPressed: !1\n        }),\n        onTapCancel: () => _({\n          isPressed: !1\n        }),\n        className: i(\"framer-GlQT1\", ...[], Q),\n        style: {\n          display: \"contents\"\n        },\n        children: /*#__PURE__*/e(w, {\n          value: J,\n          children: /*#__PURE__*/r(p.div, {\n            ...G,\n            className: i(\"framer-11e5phl\", c),\n            \"data-framer-name\": \"Variant 1\",\n            layoutDependency: Z,\n            layoutId: \"j_zjEayMJ\",\n            ref: null != t ? t : K,\n            style: {\n              backgroundColor: \"rgb(255, 255, 255)\",\n              borderBottomLeftRadius: 10,\n              borderBottomRightRadius: 10,\n              borderTopLeftRadius: 10,\n              borderTopRightRadius: 10,\n              ...m\n            },\n            variants: {\n              \"j_zjEayMJ-hover\": {\n                backgroundColor: \"var(--token-dadc23da-fede-4c17-b8da-d655469d009e, rgb(0, 111, 218))\"\n              },\n              \"MB8n2a5mK-hover\": {\n                backgroundColor: \"var(--token-323a91a6-7518-46b7-8c0c-b60e5d7ab74d, rgb(238, 104, 36))\"\n              }\n            },\n            ...x({\n              \"j_zjEayMJ-hover\": {\n                \"data-framer-name\": void 0\n              },\n              \"MB8n2a5mK-hover\": {\n                \"data-framer-name\": void 0\n              },\n              MB8n2a5mK: {\n                \"data-framer-name\": \"Variant 2\"\n              }\n            }, B, F),\n            children: [/*#__PURE__*/e(o, {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                sizes: \"90px\",\n                ...M(R)\n              },\n              className: \"framer-1a71t3n\",\n              \"data-border\": !0,\n              \"data-framer-name\": \"connection 1\",\n              layoutDependency: Z,\n              layoutId: \"jke4vmiRo\",\n              style: {\n                \"--border-bottom-width\": \"2px\",\n                \"--border-color\": \"rgba(201, 201, 201, 0.3)\",\n                \"--border-left-width\": \"2px\",\n                \"--border-right-width\": \"2px\",\n                \"--border-style\": \"solid\",\n                \"--border-top-width\": \"2px\",\n                borderBottomLeftRadius: 10,\n                borderBottomRightRadius: 10,\n                borderTopLeftRadius: 10,\n                borderTopRightRadius: 10\n              },\n              ...x({\n                \"j_zjEayMJ-hover\": {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    sizes: \"90px\",\n                    ...M(L)\n                  }\n                },\n                \"MB8n2a5mK-hover\": {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    sizes: \"86px\",\n                    ...M(E)\n                  }\n                },\n                MB8n2a5mK: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    sizes: \"86px\",\n                    ...M(R)\n                  }\n                }\n              }, B, F)\n            }), /*#__PURE__*/r(p.div, {\n              className: \"framer-1t526tt\",\n              layoutDependency: Z,\n              layoutId: \"RTXUf8ab0\",\n              children: [/*#__PURE__*/e(l, {\n                __fromCanvasComponent: !0,\n                children: /*#__PURE__*/e(h.Fragment, {\n                  children: /*#__PURE__*/e(p.p, {\n                    style: {\n                      \"--font-selector\": \"R0Y7TWFucm9wZS02MDA=\",\n                      \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"26px\",\n                      \"--framer-font-weight\": \"600\",\n                      \"--framer-line-height\": \"102.42%\"\n                    },\n                    children: \"AI & Machine Learning\"\n                  })\n                }),\n                className: \"framer-1p3d6xh\",\n                \"data-framer-name\": \"AI & Machine Learning\",\n                fonts: [\"GF;Manrope-600\"],\n                layoutDependency: Z,\n                layoutId: \"Qjzm89644\",\n                style: {\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: I,\n                variants: {\n                  \"j_zjEayMJ-hover\": {\n                    \"--extracted-r6o4lv\": \"rgb(255, 255, 255)\"\n                  },\n                  \"MB8n2a5mK-hover\": {\n                    \"--extracted-r6o4lv\": \"rgb(255, 255, 255)\"\n                  }\n                },\n                verticalAlignment: \"top\",\n                withExternalLayout: !0,\n                ...x({\n                  \"j_zjEayMJ-hover\": {\n                    children: /*#__PURE__*/e(h.Fragment, {\n                      children: /*#__PURE__*/e(p.p, {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS02MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"26px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-line-height\": \"102.42%\",\n                          \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                        },\n                        children: \"AI & Machine Learning\"\n                      })\n                    })\n                  },\n                  \"MB8n2a5mK-hover\": {\n                    children: /*#__PURE__*/e(h.Fragment, {\n                      children: /*#__PURE__*/e(p.p, {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS02MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"22px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-line-height\": \"102.42%\",\n                          \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                        },\n                        children: \"AI & Machine Learning\"\n                      })\n                    })\n                  },\n                  MB8n2a5mK: {\n                    children: /*#__PURE__*/e(h.Fragment, {\n                      children: /*#__PURE__*/e(p.p, {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS02MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"22px\",\n                          \"--framer-font-weight\": \"600\",\n                          \"--framer-line-height\": \"102.42%\"\n                        },\n                        children: \"AI & Machine Learning\"\n                      })\n                    })\n                  }\n                }, B, F)\n              }), /*#__PURE__*/e(l, {\n                __fromCanvasComponent: !0,\n                children: /*#__PURE__*/e(h.Fragment, {\n                  children: /*#__PURE__*/e(p.p, {\n                    style: {\n                      \"--font-selector\": \"R0Y7TWFucm9wZS1yZWd1bGFy\",\n                      \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"14px\",\n                      \"--framer-line-height\": \"125%\"\n                    },\n                    children: \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\"\n                  })\n                }),\n                className: \"framer-1v21u2z\",\n                \"data-framer-name\": \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\",\n                fonts: [\"GF;Manrope-regular\"],\n                layoutDependency: Z,\n                layoutId: \"uemUJKEoW\",\n                style: {\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: z,\n                variants: {\n                  \"j_zjEayMJ-hover\": {\n                    \"--extracted-r6o4lv\": \"rgb(255, 255, 255)\"\n                  },\n                  \"MB8n2a5mK-hover\": {\n                    \"--extracted-r6o4lv\": \"rgb(255, 255, 255)\"\n                  }\n                },\n                verticalAlignment: \"top\",\n                withExternalLayout: !0,\n                ...x({\n                  \"j_zjEayMJ-hover\": {\n                    children: /*#__PURE__*/e(h.Fragment, {\n                      children: /*#__PURE__*/e(p.p, {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"14px\",\n                          \"--framer-line-height\": \"125%\",\n                          \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                        },\n                        children: \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\"\n                      })\n                    })\n                  },\n                  \"MB8n2a5mK-hover\": {\n                    children: /*#__PURE__*/e(h.Fragment, {\n                      children: /*#__PURE__*/e(p.p, {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"12px\",\n                          \"--framer-line-height\": \"125%\",\n                          \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                        },\n                        children: \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\"\n                      })\n                    })\n                  },\n                  MB8n2a5mK: {\n                    children: /*#__PURE__*/e(h.Fragment, {\n                      children: /*#__PURE__*/e(p.p, {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS1yZWd1bGFy\",\n                          \"--framer-font-family\": '\"Manrope\", \"Manrope Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"12px\",\n                          \"--framer-line-height\": \"125%\"\n                        },\n                        children: \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\"\n                      })\n                    })\n                  }\n                }, B, F)\n              })]\n            })]\n          })\n        })\n      })\n    });\n  }),\n  z = ['.framer-GlQT1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-GlQT1 .framer-aucbm0 { display: block; }\", \".framer-GlQT1 .framer-11e5phl { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 20px 20px 20px; position: relative; width: 343px; will-change: var(--framer-will-change-override, transform); }\", \".framer-GlQT1 .framer-1a71t3n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 90px; }\", \".framer-GlQT1 .framer-1t526tt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-GlQT1 .framer-1p3d6xh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-GlQT1 .framer-1v21u2z { flex: none; height: 87px; 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-GlQT1 .framer-11e5phl, .framer-GlQT1 .framer-1t526tt { gap: 0px; } .framer-GlQT1 .framer-11e5phl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GlQT1 .framer-11e5phl > :first-child, .framer-GlQT1 .framer-1t526tt > :first-child { margin-top: 0px; } .framer-GlQT1 .framer-11e5phl > :last-child, .framer-GlQT1 .framer-1t526tt > :last-child { margin-bottom: 0px; } .framer-GlQT1 .framer-1t526tt > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\", \".framer-GlQT1.framer-v-yqcyh9 .framer-1a71t3n { height: var(--framer-aspect-ratio-supported, 86px); width: 86px; }\", \".framer-GlQT1.framer-v-yqcyh9 .framer-1v21u2z { height: auto; }\"],\n  R = m(I, z, \"framer-GlQT1\");\nexport default R;\nR.displayName = \"Platform Cards\", R.defaultProps = {\n  height: 160,\n  width: 343\n}, t(R, {\n  variant: {\n    options: [\"j_zjEayMJ\", \"MB8n2a5mK\"],\n    optionTitles: [\"Variant 1\", \"Variant 2\"],\n    title: \"Variant\",\n    type: n.Enum\n  },\n  bzg3ZMthP: {\n    defaultValue: \"AI & Machine Learning\",\n    displayTextArea: !1,\n    title: \"Title\",\n    type: n.String\n  },\n  qlR2EMMyS: {\n    defaultValue: \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\",\n    displayTextArea: !1,\n    title: \"Text\",\n    type: n.String\n  },\n  gcbaUlv2A: {\n    title: \"Image 3\",\n    type: n.ResponsiveImage\n  },\n  NIQcMgWYO: {\n    title: \"Image 4\",\n    type: n.ResponsiveImage\n  },\n  nJPMU4ors: {\n    title: \"Image 5\",\n    type: n.ResponsiveImage\n  }\n}), a(R, [{\n  family: \"Manrope\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",\n  weight: \"600\"\n}, {\n  family: \"Manrope\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",\n  weight: \"400\"\n}]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameriUJiykBbO\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"160\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicWidth\": \"343\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MB8n2a5mK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gYsZQ25s0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ubaUBgULw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerVariables\": \"{\\\"bzg3ZMthP\\\":\\\"title\\\",\\\"qlR2EMMyS\\\":\\\"text\\\",\\\"gcbaUlv2A\\\":\\\"image3\\\",\\\"NIQcMgWYO\\\":\\\"image4\\\",\\\"nJPMU4ors\\\":\\\"image5\\\"}\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./iUJiykBbO.map", "// Generated by Framer (1119174)\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, RichText, useActiveVariantCallback, useLocaleInfo, useOnVariantChange, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"fqMywv9Oa\", \"ClcY90LUX\", \"gDsTpNiKI\", \"Q9OhDnae3\", \"mVp1uCZkv\", \"RBIkaeiH8\"];\nconst serializationHash = \"framer-ciemV\";\nconst variantClassNames = {\n  ClcY90LUX: \"framer-v-115x8yh\",\n  fqMywv9Oa: \"framer-v-1vtovwx\",\n  gDsTpNiKI: \"framer-v-1fewuhm\",\n  mVp1uCZkv: \"framer-v-10rhlxj\",\n  Q9OhDnae3: \"framer-v-1xi6qyc\",\n  RBIkaeiH8: \"framer-v-4h6zj1\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    delay: 0,\n    duration: .3,\n    ease: [.44, 0, .56, 1],\n    type: \"tween\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Variant 1\": \"fqMywv9Oa\",\n  \"Variant 2\": \"ClcY90LUX\",\n  \"Variant 3\": \"gDsTpNiKI\",\n  \"Variant 4\": \"Q9OhDnae3\",\n  \"Variant 5\": \"mVp1uCZkv\",\n  \"Variant 6\": \"RBIkaeiH8\"\n};\nconst getProps = ({\n  height,\n  id,\n  title,\n  width,\n  ...props\n}) => {\n  var _ref, _humanReadableVariantMap_props_variant, _ref1;\n  return {\n    ...props,\n    hqh_0cChh: (_ref = title !== null && title !== void 0 ? title : props.hqh_0cChh) !== null && _ref !== void 0 ? _ref : \"Low Code\",\n    variant: (_ref1 = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref1 !== void 0 ? _ref1 : \"fqMywv9Oa\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    hqh_0cChh,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"fqMywv9Oa\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onAppear8omjax = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"ClcY90LUX\"), 1e3);\n  });\n  const onAppear3or9pb = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"gDsTpNiKI\"), 1e3);\n  });\n  const onAppearsdds4x = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"fqMywv9Oa\"), 1e3);\n  });\n  const onAppearc0mck0 = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"mVp1uCZkv\"), 3e3);\n  });\n  const onAppear3ezt9y = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"RBIkaeiH8\"), 3e3);\n  });\n  useOnVariantChange(baseVariant, {\n    ClcY90LUX: onAppear3or9pb,\n    default: onAppear8omjax,\n    gDsTpNiKI: onAppearsdds4x,\n    mVp1uCZkv: onAppear3ezt9y,\n    Q9OhDnae3: onAppearc0mck0,\n    RBIkaeiH8: undefined\n  });\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-ciemV\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1vtovwx\", className),\n          \"data-framer-name\": \"Variant 1\",\n          \"data-highlight\": true,\n          layoutDependency: layoutDependency,\n          layoutId: \"fqMywv9Oa\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          ...addPropertyOverrides({\n            ClcY90LUX: {\n              \"data-framer-name\": \"Variant 2\"\n            },\n            gDsTpNiKI: {\n              \"data-framer-name\": \"Variant 3\"\n            },\n            mVp1uCZkv: {\n              \"data-framer-name\": \"Variant 5\"\n            },\n            Q9OhDnae3: {\n              \"data-framer-name\": \"Variant 4\"\n            },\n            RBIkaeiH8: {\n              \"data-framer-name\": \"Variant 6\",\n              \"data-highlight\": undefined\n            }\n          }, baseVariant, gestureVariant),\n          children: /*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.p, {\n                style: {\n                  \"--font-selector\": \"SW50ZXItU2VtaUJvbGQ=\",\n                  \"--framer-font-family\": '\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                  \"--framer-font-size\": \"55px\",\n                  \"--framer-font-weight\": \"600\",\n                  \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                },\n                children: \"Low Code\"\n              })\n            }),\n            className: \"framer-1aw26ut\",\n            fonts: [\"Inter-SemiBold\"],\n            layoutDependency: layoutDependency,\n            layoutId: \"Fb7qxg4Fm\",\n            style: {\n              \"--extracted-r6o4lv\": \"rgb(255, 255, 255)\",\n              \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: hqh_0cChh,\n            verticalAlignment: \"top\",\n            withExternalLayout: true,\n            ...addPropertyOverrides({\n              ClcY90LUX: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    style: {\n                      \"--font-selector\": \"SW50ZXItU2VtaUJvbGQ=\",\n                      \"--framer-font-family\": '\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"55px\",\n                      \"--framer-font-weight\": \"600\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                    },\n                    children: \"Hyper Automation\"\n                  })\n                }),\n                text: undefined\n              },\n              gDsTpNiKI: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    style: {\n                      \"--font-selector\": \"SW50ZXItU2VtaUJvbGQ=\",\n                      \"--framer-font-family\": '\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"55px\",\n                      \"--framer-font-weight\": \"600\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                    },\n                    children: \"Digital Transformation\"\n                  })\n                }),\n                text: undefined\n              },\n              mVp1uCZkv: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    style: {\n                      \"--font-selector\": \"SW50ZXItU2VtaUJvbGQ=\",\n                      \"--framer-font-family\": '\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"30px\",\n                      \"--framer-font-weight\": \"600\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                    },\n                    children: \"Hyper Automation\"\n                  })\n                }),\n                text: undefined\n              },\n              Q9OhDnae3: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    style: {\n                      \"--font-selector\": \"SW50ZXItU2VtaUJvbGQ=\",\n                      \"--framer-font-family\": '\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"30px\",\n                      \"--framer-font-weight\": \"600\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                    },\n                    children: \"Low Code\"\n                  })\n                })\n              },\n              RBIkaeiH8: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    style: {\n                      \"--font-selector\": \"SW50ZXItU2VtaUJvbGQ=\",\n                      \"--framer-font-family\": '\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                      \"--framer-font-size\": \"30px\",\n                      \"--framer-font-weight\": \"600\",\n                      \"--framer-text-color\": \"var(--extracted-r6o4lv, rgb(255, 255, 255))\"\n                    },\n                    children: \"Digital Transformation\"\n                  })\n                }),\n                text: undefined\n              }\n            }, baseVariant, gestureVariant)\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-ciemV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-ciemV .framer-1achbl0 { display: block; }\", \".framer-ciemV .framer-1vtovwx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 66px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-ciemV .framer-1aw26ut { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ciemV .framer-1vtovwx { gap: 0px; } .framer-ciemV .framer-1vtovwx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ciemV .framer-1vtovwx > :first-child { margin-left: 0px; } .framer-ciemV .framer-1vtovwx > :last-child { margin-right: 0px; } }\", \".framer-ciemV.framer-v-115x8yh .framer-1vtovwx, .framer-ciemV.framer-v-10rhlxj .framer-1vtovwx { flex-direction: column; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ciemV.framer-v-115x8yh .framer-1vtovwx { gap: 0px; } .framer-ciemV.framer-v-115x8yh .framer-1vtovwx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ciemV.framer-v-115x8yh .framer-1vtovwx > :first-child { margin-top: 0px; } .framer-ciemV.framer-v-115x8yh .framer-1vtovwx > :last-child { margin-bottom: 0px; } }\", \".framer-ciemV.framer-v-1fewuhm .framer-1vtovwx, .framer-ciemV.framer-v-4h6zj1 .framer-1vtovwx { height: min-content; }\", \".framer-ciemV.framer-v-1fewuhm .framer-1aw26ut, .framer-ciemV.framer-v-4h6zj1 .framer-1aw26ut { order: 0; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ciemV.framer-v-10rhlxj .framer-1vtovwx { gap: 0px; } .framer-ciemV.framer-v-10rhlxj .framer-1vtovwx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ciemV.framer-v-10rhlxj .framer-1vtovwx > :first-child { margin-top: 0px; } .framer-ciemV.framer-v-10rhlxj .framer-1vtovwx > :last-child { margin-bottom: 0px; } }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicHeight 66\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicWidth 265\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ClcY90LUX\":{\"layout\":[\"auto\",\"fixed\"]},\"gDsTpNiKI\":{\"layout\":[\"auto\",\"auto\"]},\"Q9OhDnae3\":{\"layout\":[\"auto\",\"fixed\"]},\"mVp1uCZkv\":{\"layout\":[\"auto\",\"fixed\"]},\"RBIkaeiH8\":{\"layout\":[\"auto\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerVariables {\"hqh_0cChh\":\"title\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        */\nconst FramerRSromA5iN = withCSS(Component, css, \"framer-ciemV\");\nexport default FramerRSromA5iN;\nFramerRSromA5iN.displayName = \"Title Platform\";\nFramerRSromA5iN.defaultProps = {\n  height: 66,\n  width: 265\n};\naddPropertyControls(FramerRSromA5iN, {\n  variant: {\n    options: [\"fqMywv9Oa\", \"ClcY90LUX\", \"gDsTpNiKI\", \"Q9OhDnae3\", \"mVp1uCZkv\", \"RBIkaeiH8\"],\n    optionTitles: [\"Variant 1\", \"Variant 2\", \"Variant 3\", \"Variant 4\", \"Variant 5\", \"Variant 6\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  hqh_0cChh: {\n    defaultValue: \"Low Code\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerRSromA5iN, []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerRSromA5iN\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"265\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"66\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ClcY90LUX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gDsTpNiKI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q9OhDnae3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mVp1uCZkv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RBIkaeiH8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\n        \"framerVariables\": \"{\\\"hqh_0cChh\\\":\\\"title\\\"}\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./RSromA5iN.map", "// Generated by Framer (ac3938c)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Image, RichText, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/9SoUySEjgJzkAWcVIDrA/e4gfPSwFwY32hg5IfZeN/m4bYofDlq.js\";\nconst cycleOrder = [\"jh63j6X_C\"];\nconst serializationHash = \"framer-NqFQE\";\nconst variantClassNames = {\n  jh63j6X_C: \"framer-v-1lxripa\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst getProps = ({\n  height,\n  id,\n  image2,\n  title2,\n  title3,\n  width,\n  ...props\n}) => {\n  var _ref, _ref1;\n  return {\n    ...props,\n    cBdrvIjm9: (_ref = title3 !== null && title3 !== void 0 ? title3 : props.cBdrvIjm9) !== null && _ref !== void 0 ? _ref : \"Achieve operational excellence by automating and optimizing processes. Utilize our platform to reduce manual work, streamline task allocation, meet timelines, and eliminate the risk of manual errors. For instance, automate task allocation, drive adherence to timelines, and eliminate manual errors, ensuring smooth A.\",\n    ETKhZrXUz: image2 !== null && image2 !== void 0 ? image2 : props.ETKhZrXUz,\n    gT1c3FPaN: (_ref1 = title2 !== null && title2 !== void 0 ? title2 : props.gT1c3FPaN) !== null && _ref1 !== void 0 ? _ref1 : \"geragreg\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ETKhZrXUz,\n    gT1c3FPaN,\n    cBdrvIjm9,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"jh63j6X_C\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-NqFQE\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsx(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1lxripa\", className),\n          \"data-framer-name\": \"Variant 1\",\n          layoutDependency: layoutDependency,\n          layoutId: \"jh63j6X_C\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            backgroundColor: \"rgb(255, 255, 255)\",\n            borderBottomLeftRadius: 10,\n            borderBottomRightRadius: 10,\n            borderTopLeftRadius: 10,\n            borderTopRightRadius: 10,\n            boxShadow: \"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",\n            ...style\n          },\n          children: /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-1n7ksib\",\n            layoutDependency: layoutDependency,\n            layoutId: \"GvxUYOUzv\",\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.h6, {\n                  className: \"framer-styles-preset-rh55x\",\n                  \"data-styles-preset\": \"m4bYofDlq\",\n                  style: {\n                    \"--framer-text-alignment\": \"left\"\n                  },\n                  children: \"geragreg\"\n                })\n              }),\n              className: \"framer-ld7tz3\",\n              layoutDependency: layoutDependency,\n              layoutId: \"jTNvR_1Yh\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: gT1c3FPaN,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(Image, {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                sizes: \"680px\",\n                ...toResponsiveImage(ETKhZrXUz)\n              },\n              className: \"framer-va6xqj\",\n              \"data-framer-name\": \"modern-equipped-computer-lab 2\",\n              layoutDependency: layoutDependency,\n              layoutId: \"V1YcbWgv8\",\n              style: {\n                borderBottomLeftRadius: 15,\n                borderBottomRightRadius: 15,\n                borderTopLeftRadius: 15,\n                borderTopRightRadius: 15\n              }\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.h2, {\n                  style: {\n                    \"--font-selector\": \"R0Y7SW50ZXItcmVndWxhcg==\",\n                    \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                    \"--framer-font-size\": \"20px\",\n                    \"--framer-line-height\": \"100%\",\n                    \"--framer-text-alignment\": \"left\",\n                    \"--framer-text-color\": \"var(--extracted-1of0zx5, rgb(69, 69, 69))\"\n                  },\n                  children: \"Achieve operational excellence by automating and optimizing processes. Utilize our platform to reduce manual work, streamline task allocation, meet timelines, and eliminate the risk of manual errors. For instance, automate task allocation, drive adherence to timelines, and eliminate manual errors, ensuring smooth A.\"\n                })\n              }),\n              className: \"framer-1di7r1s\",\n              fonts: [\"GF;Inter-regular\"],\n              layoutDependency: layoutDependency,\n              layoutId: \"bPYHBaESN\",\n              style: {\n                \"--extracted-1of0zx5\": \"rgb(69, 69, 69)\",\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: cBdrvIjm9,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })]\n          })\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-NqFQE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-NqFQE .framer-1rc63i6 { display: block; }\", \".framer-NqFQE .framer-1lxripa { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 30px 30px 30px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\", \".framer-NqFQE .framer-1n7ksib { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 680px; }\", \".framer-NqFQE .framer-ld7tz3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-NqFQE .framer-va6xqj { flex: none; height: 263px; position: relative; width: 100%; }\", \".framer-NqFQE .framer-1di7r1s { flex: none; height: auto; 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-NqFQE .framer-1lxripa, .framer-NqFQE .framer-1n7ksib { gap: 0px; } .framer-NqFQE .framer-1lxripa > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-NqFQE .framer-1lxripa > :first-child, .framer-NqFQE .framer-1n7ksib > :first-child { margin-top: 0px; } .framer-NqFQE .framer-1lxripa > :last-child, .framer-NqFQE .framer-1n7ksib > :last-child { margin-bottom: 0px; } .framer-NqFQE .framer-1n7ksib > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\", ...sharedStyle.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicHeight 481\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerIntrinsicWidth 720\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerVariables {\"ETKhZrXUz\":\"image2\",\"gT1c3FPaN\":\"title2\",\"cBdrvIjm9\":\"title3\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         */\nconst FramerDxc1eoI6G = withCSS(Component, css, \"framer-NqFQE\");\nexport default FramerDxc1eoI6G;\nFramerDxc1eoI6G.displayName = \"Use Cases Description\";\nFramerDxc1eoI6G.defaultProps = {\n  height: 481,\n  width: 720\n};\naddPropertyControls(FramerDxc1eoI6G, {\n  ETKhZrXUz: {\n    title: \"Image 2\",\n    type: ControlType.ResponsiveImage\n  },\n  gT1c3FPaN: {\n    defaultValue: \"geragreg\",\n    displayTextArea: false,\n    title: \"Title 2\",\n    type: ControlType.String\n  },\n  cBdrvIjm9: {\n    defaultValue: \"Achieve operational excellence by automating and optimizing processes. Utilize our platform to reduce manual work, streamline task allocation, meet timelines, and eliminate the risk of manual errors. For instance, automate task allocation, drive adherence to timelines, and eliminate manual errors, ensuring smooth A.\",\n    displayTextArea: false,\n    title: \"Title 3\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerDxc1eoI6G, [{\n  family: \"Inter\",\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",\n  weight: \"400\"\n}, ...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerDxc1eoI6G\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"720\",\n        \"framerContractVersion\": \"1\",\n        \"framerVariables\": \"{\\\"ETKhZrXUz\\\":\\\"image2\\\",\\\"gT1c3FPaN\\\":\\\"title2\\\",\\\"cBdrvIjm9\\\":\\\"title3\\\"}\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"481\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (9bd94da)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, useActiveVariantCallback, useLocaleInfo, useOnVariantChange, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport UseCasesDescription from \"https://framerusercontent.com/modules/kSrEO84NuQDveZZP1H4q/mMoS4zJjc8f1bypRSy28/Dxc1eoI6G.js\";\nimport UseCasesMenu from \"https://framerusercontent.com/modules/oA12O0uVeW9yzrfSsLI1/ObG5U4Et3eWUkh5oFc8g/nH4feE3kU.js\";\nconst UseCasesMenuFonts = getFonts(UseCasesMenu);\nconst UseCasesDescriptionFonts = getFonts(UseCasesDescription);\nconst cycleOrder = [\"amIR8c_9F\", \"w0OWG2uit\", \"pOejrajVI\", \"cbKpoe3UT\", \"OBEx5Ml4B\", \"TVrkDhotH\", \"tmCXf1Yb1\", \"CFEFfFD1G\"];\nconst serializationHash = \"framer-iBoFn\";\nconst variantClassNames = {\n  amIR8c_9F: \"framer-v-s6p80q\",\n  cbKpoe3UT: \"framer-v-1gyznli\",\n  CFEFfFD1G: \"framer-v-11xu1wu\",\n  OBEx5Ml4B: \"framer-v-f3sbte\",\n  pOejrajVI: \"framer-v-j88orr\",\n  tmCXf1Yb1: \"framer-v-1yb11ad\",\n  TVrkDhotH: \"framer-v-1vjev8b\",\n  w0OWG2uit: \"framer-v-jrcfh8\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst addImageAlt = (image, alt) => {\n  if (!image || typeof image !== \"object\") {\n    return;\n  }\n  return {\n    ...image,\n    alt\n  };\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Variant 1\": \"amIR8c_9F\",\n  \"Variant 2\": \"w0OWG2uit\",\n  \"Variant 3\": \"pOejrajVI\",\n  \"Variant 4\": \"cbKpoe3UT\",\n  \"Variant 5\": \"OBEx5Ml4B\",\n  \"Variant 6\": \"TVrkDhotH\",\n  \"Variant 7\": \"tmCXf1Yb1\",\n  \"Variant 8\": \"CFEFfFD1G\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"amIR8c_9F\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"amIR8c_9F\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onAppear18f9d8s = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"w0OWG2uit\"), 3e3);\n  });\n  const onAppear1v4jetd = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"pOejrajVI\"), 3e3);\n  });\n  const onAppear1qk0080 = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"cbKpoe3UT\"), 3e3);\n  });\n  const onAppearbm5mw7 = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"OBEx5Ml4B\"), 3e3);\n  });\n  const onAppear124bfsm = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"TVrkDhotH\"), 3e3);\n  });\n  const onAppear1v2fjpc = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"tmCXf1Yb1\"), 3e3);\n  });\n  const onAppeariv66c8 = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"CFEFfFD1G\"), 3e3);\n  });\n  const onAppear16t8itw = activeVariantCallback(async (...args) => {\n    await delay(() => setVariant(\"amIR8c_9F\"), 3e3);\n  });\n  const onMouseEnter1rl6t6o = activeVariantCallback(async (...args) => {\n    setVariant(\"amIR8c_9F\");\n  });\n  const onMouseEnterijghfd = activeVariantCallback(async (...args) => {\n    setVariant(\"w0OWG2uit\");\n  });\n  const onMouseEnterqhdg7v = activeVariantCallback(async (...args) => {\n    setVariant(\"pOejrajVI\");\n  });\n  const onMouseEnter168oo2f = activeVariantCallback(async (...args) => {\n    setVariant(\"cbKpoe3UT\");\n  });\n  const onMouseEnter1wt4z1r = activeVariantCallback(async (...args) => {\n    setVariant(\"OBEx5Ml4B\");\n  });\n  const onMouseEnter1xizou5 = activeVariantCallback(async (...args) => {\n    setVariant(\"TVrkDhotH\");\n  });\n  const onMouseEnter1muipvi = activeVariantCallback(async (...args) => {\n    setVariant(\"tmCXf1Yb1\");\n  });\n  const onMouseEnterccdpwx = activeVariantCallback(async (...args) => {\n    setVariant(\"CFEFfFD1G\");\n  });\n  useOnVariantChange(baseVariant, {\n    cbKpoe3UT: onAppearbm5mw7,\n    CFEFfFD1G: onAppear16t8itw,\n    default: onAppear18f9d8s,\n    OBEx5Ml4B: onAppear124bfsm,\n    pOejrajVI: onAppear1qk0080,\n    tmCXf1Yb1: onAppeariv66c8,\n    TVrkDhotH: onAppear1v2fjpc,\n    w0OWG2uit: onAppear1v4jetd\n  });\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-iBoFn\", ...sharedStyleClassNames, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-s6p80q\", className),\n          \"data-framer-name\": \"Variant 1\",\n          \"data-highlight\": true,\n          layoutDependency: layoutDependency,\n          layoutId: \"amIR8c_9F\",\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          ...addPropertyOverrides({\n            cbKpoe3UT: {\n              \"data-framer-name\": \"Variant 4\"\n            },\n            CFEFfFD1G: {\n              \"data-framer-name\": \"Variant 8\"\n            },\n            OBEx5Ml4B: {\n              \"data-framer-name\": \"Variant 5\"\n            },\n            pOejrajVI: {\n              \"data-framer-name\": \"Variant 3\"\n            },\n            tmCXf1Yb1: {\n              \"data-framer-name\": \"Variant 7\"\n            },\n            TVrkDhotH: {\n              \"data-framer-name\": \"Variant 6\"\n            },\n            w0OWG2uit: {\n              \"data-framer-name\": \"Variant 2\"\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-igav3z\",\n            layoutDependency: layoutDependency,\n            layoutId: \"JsdDbT8qi\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-48sub4\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"CZgHld8mK\",\n              onMouseEnter: onMouseEnter1rl6t6o,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1pso89r-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"xoNWgK_Ns-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"xoNWgK_Ns\",\n                  layoutId: \"xoNWgK_Ns\",\n                  pC0KmV5WF: \"Operational Excellence\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"xXws2u_0F\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    cbKpoe3UT: {\n                      variant: \"htLV8mXBF\"\n                    },\n                    CFEFfFD1G: {\n                      variant: \"htLV8mXBF\"\n                    },\n                    OBEx5Ml4B: {\n                      variant: \"htLV8mXBF\"\n                    },\n                    pOejrajVI: {\n                      variant: \"htLV8mXBF\"\n                    },\n                    tmCXf1Yb1: {\n                      variant: \"htLV8mXBF\"\n                    },\n                    TVrkDhotH: {\n                      variant: \"htLV8mXBF\"\n                    },\n                    w0OWG2uit: {\n                      variant: \"htLV8mXBF\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-2naefh\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"G8YBUxI85\",\n              onMouseEnter: onMouseEnterijghfd,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-16zk7t0-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"ehYOrwbiy-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"ehYOrwbiy\",\n                  layoutId: \"ehYOrwbiy\",\n                  pC0KmV5WF: \"Employee Experience\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    w0OWG2uit: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-18jugcy\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"exLSlrrnQ\",\n              onMouseEnter: onMouseEnterqhdg7v,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-iiiq0l-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"ns2bAasNQ-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"ns2bAasNQ\",\n                  layoutId: \"ns2bAasNQ\",\n                  pC0KmV5WF: \"Supplier / Vendor Management\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    pOejrajVI: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-yyelbv\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"JRbtZOcv2\",\n              onMouseEnter: onMouseEnter168oo2f,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-13z8r4w-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"E7qCkRtWO-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"E7qCkRtWO\",\n                  layoutId: \"E7qCkRtWO\",\n                  pC0KmV5WF: \"Customer Experience\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    cbKpoe3UT: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1wua3er\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"Tha5VVPRa\",\n              onMouseEnter: onMouseEnter1wt4z1r,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-c7bxdw-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"GBDu_uGa5-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"GBDu_uGa5\",\n                  layoutId: \"GBDu_uGa5\",\n                  pC0KmV5WF: \"Quality Management\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    OBEx5Ml4B: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-8f3qx9\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"JrnqU9toc\",\n              onMouseEnter: onMouseEnter1xizou5,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-x8ca7p-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"nTkS1T8Vd-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"nTkS1T8Vd\",\n                  layoutId: \"nTkS1T8Vd\",\n                  pC0KmV5WF: \"Audits and Checklists\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    TVrkDhotH: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-6wdtvb\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"ptX7GHMim\",\n              onMouseEnter: onMouseEnter1muipvi,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-165cgay-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"zTs2zvUDw-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"zTs2zvUDw\",\n                  layoutId: \"zTs2zvUDw\",\n                  pC0KmV5WF: \"ESG\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    tmCXf1Yb1: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-110jigp\",\n              \"data-highlight\": true,\n              layoutDependency: layoutDependency,\n              layoutId: \"UUiw_l55u\",\n              onMouseEnter: onMouseEnterccdpwx,\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1g0yohy-container\",\n                layoutDependency: layoutDependency,\n                layoutId: \"qJIddH1iv-container\",\n                children: /*#__PURE__*/_jsx(UseCasesMenu, {\n                  height: \"100%\",\n                  id: \"qJIddH1iv\",\n                  layoutId: \"qJIddH1iv\",\n                  pC0KmV5WF: \"GRC \",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"htLV8mXBF\",\n                  width: \"100%\",\n                  ...addPropertyOverrides({\n                    CFEFfFD1G: {\n                      variant: \"xXws2u_0F\"\n                    }\n                  }, baseVariant, gestureVariant)\n                })\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-11klrzd-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"nzK0RwDB3-container\",\n            children: /*#__PURE__*/_jsx(UseCasesDescription, {\n              cBdrvIjm9: \"Enhance operational efficiency, reduce costs, and achieve process optimization by automating workflows and gaining insights for continuous improvement. For example, streamline supply chain operations or manage maintenance tasks more efficiently.\",\n              ETKhZrXUz: addImageAlt({\n                src: \"https://framerusercontent.com/images/jw5o3HbFXroATcYyEOKjKmRoVos.png\",\n                srcSet: \"https://framerusercontent.com/images/jw5o3HbFXroATcYyEOKjKmRoVos.png?scale-down-to=512 512w, https://framerusercontent.com/images/jw5o3HbFXroATcYyEOKjKmRoVos.png 680w\"\n              }, \"\"),\n              gT1c3FPaN: \"Operational Excellence\",\n              height: \"100%\",\n              id: \"nzK0RwDB3\",\n              layoutId: \"nzK0RwDB3\",\n              style: {\n                width: \"100%\"\n              },\n              width: \"100%\",\n              ...addPropertyOverrides({\n                cbKpoe3UT: {\n                  cBdrvIjm9: \"Elevate customer satisfaction by automating support processes, providing timely responses, and gaining insights to deliver exceptional service. Automate customer support requests, create a comprehensive knowledge base, and analyze customer feedback.\",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/qSZmnApjHHEAViJxq9GsSlz1GPk.png\",\n                    srcSet: \"https://framerusercontent.com/images/qSZmnApjHHEAViJxq9GsSlz1GPk.png?scale-down-to=512 512w, https://framerusercontent.com/images/qSZmnApjHHEAViJxq9GsSlz1GPk.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"Customer Experience\"\n                },\n                CFEFfFD1G: {\n                  cBdrvIjm9: \"Efficiently manage governance, risk, and compliance activities with structured workflows to ensure strict regulatory adherence, minimize risks, and maintain optimal governance standards. Automate risk monitoring, track compliance issues, and gain insight\",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/uNF7fpOxKNXZiHAiQm8D6EsAE.png\",\n                    srcSet: \"https://framerusercontent.com/images/uNF7fpOxKNXZiHAiQm8D6EsAE.png?scale-down-to=512 512w, https://framerusercontent.com/images/uNF7fpOxKNXZiHAiQm8D6EsAE.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"GRC (Governance, Risk, and Compliance)\"\n                },\n                OBEx5Ml4B: {\n                  cBdrvIjm9: \"Elevate your product quality and compliance with standardized processes, assessments, risk management, and performance tracking. Drive continuous improvement through root cause analysis and corrective actions for sustained quality excellence\",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/svSByUdc6g1an9WNybHNZqaZVQU.png\",\n                    srcSet: \"https://framerusercontent.com/images/svSByUdc6g1an9WNybHNZqaZVQU.png?scale-down-to=512 512w, https://framerusercontent.com/images/svSByUdc6g1an9WNybHNZqaZVQU.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"Quality Management\"\n                },\n                pOejrajVI: {\n                  cBdrvIjm9: \"Streamline supplier communication, enhance procurement efficiency, and optimize vendor relationships for cost-effective operations. Manage supplier onboarding, automate purchase order approvals, and track vendor performance to ensure productivity and efficiency \",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/vq7MdTEBLFUvnG3ibJ7YeWMxWvI.png\",\n                    srcSet: \"https://framerusercontent.com/images/vq7MdTEBLFUvnG3ibJ7YeWMxWvI.png?scale-down-to=512 512w, https://framerusercontent.com/images/vq7MdTEBLFUvnG3ibJ7YeWMxWvI.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"Supplier / Vendor Management\"\n                },\n                tmCXf1Yb1: {\n                  cBdrvIjm9: \"Address environmental, social, and governance (ESG) concerns with comprehensive ESG initiatives, performance tracking, sustainability assurance, and compliance. Automate ESG data collection, monitor critical metrics and report on ESG performance.\",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/a5hUAH05JgJI2u1NvPKKOMW1I.png\",\n                    srcSet: \"https://framerusercontent.com/images/a5hUAH05JgJI2u1NvPKKOMW1I.png?scale-down-to=512 512w, https://framerusercontent.com/images/a5hUAH05JgJI2u1NvPKKOMW1I.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"ESG (Environmental, Social, and Governance)\"\n                },\n                TVrkDhotH: {\n                  cBdrvIjm9: \"Simplify audit management with automated scheduling, configurable checklists, audit assignment, compliance monitoring, and effortless report generation. Automate reviews, approvals, corrective actions, and findings tracking for comprehensive audit management.\",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/QVwfYpXc7xUbLgMrRj4yaFhgGX0.png\",\n                    srcSet: \"https://framerusercontent.com/images/QVwfYpXc7xUbLgMrRj4yaFhgGX0.png?scale-down-to=512 512w, https://framerusercontent.com/images/QVwfYpXc7xUbLgMrRj4yaFhgGX0.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"Audits and Checklists\"\n                },\n                w0OWG2uit: {\n                  cBdrvIjm9: \"Improve employee engagement and satisfaction with user-friendly digital tools that streamline helpdesk, manage requests, and deliver personalized experiences. For instance, automate asset requests and streamline onboarding processes.\",\n                  ETKhZrXUz: addImageAlt({\n                    src: \"https://framerusercontent.com/images/54wtXSumKbxjSGzked3nnPQzQ.png\",\n                    srcSet: \"https://framerusercontent.com/images/54wtXSumKbxjSGzked3nnPQzQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/54wtXSumKbxjSGzked3nnPQzQ.png 680w\"\n                  }, \"\"),\n                  gT1c3FPaN: \"Employee Experience\"\n                }\n              }, baseVariant, gestureVariant)\n            })\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-iBoFn [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-iBoFn .framer-19quq3f { display: block; }\", \".framer-iBoFn .framer-s6p80q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1180px; }\", \".framer-iBoFn .framer-igav3z { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-iBoFn .framer-48sub4, .framer-iBoFn .framer-2naefh, .framer-iBoFn .framer-18jugcy, .framer-iBoFn .framer-yyelbv, .framer-iBoFn .framer-1wua3er, .framer-iBoFn .framer-8f3qx9, .framer-iBoFn .framer-6wdtvb, .framer-iBoFn .framer-110jigp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-iBoFn .framer-1pso89r-container, .framer-iBoFn .framer-16zk7t0-container, .framer-iBoFn .framer-iiiq0l-container, .framer-iBoFn .framer-13z8r4w-container, .framer-iBoFn .framer-c7bxdw-container, .framer-iBoFn .framer-x8ca7p-container, .framer-iBoFn .framer-165cgay-container, .framer-iBoFn .framer-1g0yohy-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\", \".framer-iBoFn .framer-11klrzd-container { flex: 2 0 0px; height: auto; position: relative; width: 1px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iBoFn .framer-s6p80q, .framer-iBoFn .framer-48sub4, .framer-iBoFn .framer-2naefh, .framer-iBoFn .framer-18jugcy, .framer-iBoFn .framer-yyelbv, .framer-iBoFn .framer-1wua3er, .framer-iBoFn .framer-8f3qx9, .framer-iBoFn .framer-6wdtvb, .framer-iBoFn .framer-110jigp { gap: 0px; } .framer-iBoFn .framer-s6p80q > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-iBoFn .framer-s6p80q > :first-child, .framer-iBoFn .framer-48sub4 > :first-child, .framer-iBoFn .framer-2naefh > :first-child, .framer-iBoFn .framer-18jugcy > :first-child, .framer-iBoFn .framer-yyelbv > :first-child, .framer-iBoFn .framer-1wua3er > :first-child, .framer-iBoFn .framer-8f3qx9 > :first-child, .framer-iBoFn .framer-6wdtvb > :first-child, .framer-iBoFn .framer-110jigp > :first-child { margin-left: 0px; } .framer-iBoFn .framer-s6p80q > :last-child, .framer-iBoFn .framer-48sub4 > :last-child, .framer-iBoFn .framer-2naefh > :last-child, .framer-iBoFn .framer-18jugcy > :last-child, .framer-iBoFn .framer-yyelbv > :last-child, .framer-iBoFn .framer-1wua3er > :last-child, .framer-iBoFn .framer-8f3qx9 > :last-child, .framer-iBoFn .framer-6wdtvb > :last-child, .framer-iBoFn .framer-110jigp > :last-child { margin-right: 0px; } .framer-iBoFn .framer-48sub4 > *, .framer-iBoFn .framer-2naefh > *, .framer-iBoFn .framer-18jugcy > *, .framer-iBoFn .framer-yyelbv > *, .framer-iBoFn .framer-1wua3er > *, .framer-iBoFn .framer-8f3qx9 > *, .framer-iBoFn .framer-6wdtvb > *, .framer-iBoFn .framer-110jigp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerIntrinsicHeight 461\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerIntrinsicWidth 1180\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w0OWG2uit\":{\"layout\":[\"fixed\",\"auto\"]},\"pOejrajVI\":{\"layout\":[\"fixed\",\"auto\"]},\"cbKpoe3UT\":{\"layout\":[\"fixed\",\"auto\"]},\"OBEx5Ml4B\":{\"layout\":[\"fixed\",\"auto\"]},\"TVrkDhotH\":{\"layout\":[\"fixed\",\"auto\"]},\"tmCXf1Yb1\":{\"layout\":[\"fixed\",\"auto\"]},\"CFEFfFD1G\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              */\nconst FramerwMvAVn_SW = withCSS(Component, css, \"framer-iBoFn\");\nexport default FramerwMvAVn_SW;\nFramerwMvAVn_SW.displayName = \"Use Cases\";\nFramerwMvAVn_SW.defaultProps = {\n  height: 461,\n  width: 1180\n};\naddPropertyControls(FramerwMvAVn_SW, {\n  variant: {\n    options: [\"amIR8c_9F\", \"w0OWG2uit\", \"pOejrajVI\", \"cbKpoe3UT\", \"OBEx5Ml4B\", \"TVrkDhotH\", \"tmCXf1Yb1\", \"CFEFfFD1G\"],\n    optionTitles: [\"Variant 1\", \"Variant 2\", \"Variant 3\", \"Variant 4\", \"Variant 5\", \"Variant 6\", \"Variant 7\", \"Variant 8\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerwMvAVn_SW, [...UseCasesMenuFonts, ...UseCasesDescriptionFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerwMvAVn_SW\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w0OWG2uit\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOejrajVI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cbKpoe3UT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OBEx5Ml4B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TVrkDhotH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tmCXf1Yb1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CFEFfFD1G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"461\",\n        \"framerIntrinsicWidth\": \"1180\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (e75c18f)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, SVG, useHydratedBreakpointVariants, useLocaleInfo, useRouteElementId, useRouter, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";\nimport Slideshow from \"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";\nimport Footer from \"https://framerusercontent.com/modules/LHFvSZ8tjEVqiQMeEcpS/Hib5UdJXCGsTFpq9rqef/BciWFMwY3.js\";\nimport Menu from \"https://framerusercontent.com/modules/SFXZvbjn9jORzNVqF7z2/BFMyaCqeMSWHrfafJ0YM/Iu2Adu4Sz.js\";\nimport PlatformCards from \"https://framerusercontent.com/modules/YYBTkVbEBoiSSpqQUMyN/QNBfKifh7mvZX7Ie9tkE/iUJiykBbO.js\";\nimport CTA from \"https://framerusercontent.com/modules/uZ1IGFcPxJtFpkH8htmC/QqlBk1PrEnzSgePXmOj6/qFpv29gXf.js\";\nimport TitlePlatform from \"https://framerusercontent.com/modules/da0Au5baEMT2t0asRK7r/QYoGdwAGO7p4tAq6s6R9/RSromA5iN.js\";\nimport UseCases from \"https://framerusercontent.com/modules/Yml8SLJmxSMfSav1naUr/QKn8e9N7ftifKfR3unPy/wMvAVn_SW.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/9SoUySEjgJzkAWcVIDrA/e4gfPSwFwY32hg5IfZeN/m4bYofDlq.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/tnlrnWVzAzqJxoPBcKL0/l0jSGnrrF4MzTCbt9apz/Vf_2Xrw1d.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/wTmkZIymMwLgMCNj8q05/M3JYJ0whJINiesluYkRr/VfXPmCMQi.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/ln2Tlom0iY70oue7DLUY/A3VSbRUZ6ZiBjMaFbPkP/oxUjT3pRU.js\";\nconst VideoFonts = getFonts(Video);\nconst TitlePlatformFonts = getFonts(TitlePlatform);\nconst CTAFonts = getFonts(CTA);\nconst PlatformCardsFonts = getFonts(PlatformCards);\nconst UseCasesFonts = getFonts(UseCases);\nconst SlideshowFonts = getFonts(Slideshow);\nconst MenuFonts = getFonts(Menu);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"b8iJvEHN8\", \"rHuGJXdzx\", \"PCXH6NZqF\"];\nconst breakpoints = {\n  b8iJvEHN8: \"(min-width: 1280px)\",\n  PCXH6NZqF: \"(max-width: 809px)\",\n  rHuGJXdzx: \"(min-width: 810px) and (max-width: 1279px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-O0LAB\";\nconst variantClassNames = {\n  b8iJvEHN8: \"framer-v-nnwn6u\",\n  PCXH6NZqF: \"framer-v-ujmrmd\",\n  rHuGJXdzx: \"framer-v-1gkssqd\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"b8iJvEHN8\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst addImageAlt = (image, alt) => {\n  if (!image || typeof image !== \"object\") {\n    return;\n  }\n  return {\n    ...image,\n    alt\n  };\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"b8iJvEHN8\",\n  Phone: \"PCXH6NZqF\",\n  Tablet: \"rHuGJXdzx\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"b8iJvEHN8\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(`${metadata1.bodyClassName}-framer-O0LAB`);\n      return () => {\n        document.body.classList.remove(`${metadata1.bodyClassName}-framer-O0LAB`);\n      };\n    }\n  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const ref1 = React.useRef(null);\n  const router = useRouter();\n  const id = useRouteElementId(\"DNA9D55Gd\");\n  const ref2 = React.useRef(null);\n  const isDisplayed = () => {\n    if (baseVariant === \"PCXH6NZqF\") return !isBrowser();\n    return true;\n  };\n  const id1 = useRouteElementId(\"DgFh6Q_nr\");\n  const ref3 = React.useRef(null);\n  const id2 = useRouteElementId(\"U27oSml8k\");\n  const ref4 = React.useRef(null);\n  const id3 = useRouteElementId(\"iKqrIFafT\");\n  const ref5 = React.useRef(null);\n  const id4 = useRouteElementId(\"zrzF9sOe5\");\n  const ref6 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className, sharedStyle2.className];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"b8iJvEHN8\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsxs(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: [/*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-nnwn6u\", className),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          ...style\n        },\n        children: [/*#__PURE__*/_jsxs(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 848,\n            intrinsicWidth: 1494,\n            pixelHeight: 848,\n            pixelWidth: 1494,\n            sizes: \"100vw\",\n            src: \"https://framerusercontent.com/images/GBmZd2SYayAWMFgBiIOqUz1mbeQ.jpg\",\n            srcSet: \"https://framerusercontent.com/images/GBmZd2SYayAWMFgBiIOqUz1mbeQ.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/GBmZd2SYayAWMFgBiIOqUz1mbeQ.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/GBmZd2SYayAWMFgBiIOqUz1mbeQ.jpg 1494w\"\n          },\n          className: \"framer-1v19goj\",\n          \"data-framer-name\": \"Group_21\",\n          name: \"Group_21\",\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-tl11xq-container\",\n            children: /*#__PURE__*/_jsx(Video, {\n              backgroundColor: \"rgba(0, 0, 0, 0)\",\n              borderRadius: 0,\n              bottomLeftRadius: 0,\n              bottomRightRadius: 0,\n              controls: false,\n              height: \"100%\",\n              id: \"AKNoxZVxn\",\n              isMixedBorderRadius: false,\n              layoutId: \"AKNoxZVxn\",\n              loop: true,\n              muted: true,\n              objectFit: \"cover\",\n              playing: true,\n              posterEnabled: false,\n              srcFile: \"https://framerusercontent.com/assets/OLfVZ6YTPDvkAcb6JbeMnxrHCEA.mp4\",\n              srcType: \"Upload\",\n              srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n              startTime: 0,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              topLeftRadius: 0,\n              topRightRadius: 0,\n              volume: 25,\n              width: \"100%\"\n            })\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1mw6rhq\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-8zwu9b\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  PCXH6NZqF: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"SW50ZXItTGlnaHQ=\",\n                          \"--framer-font-family\": '\"Inter-Light\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                          \"--framer-font-size\": \"30px\",\n                          \"--framer-font-weight\": \"300\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Empowering Enterprises With\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"SW50ZXItTGlnaHQ=\",\n                        \"--framer-font-family\": '\"Inter-Light\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"55px\",\n                        \"--framer-font-weight\": \"300\",\n                        \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                      },\n                      children: \"Empowering Enterprises With\"\n                    })\n                  }),\n                  className: \"framer-caapde\",\n                  fonts: [\"Inter-Light\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-10agg4s-container\",\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    PCXH6NZqF: {\n                      variant: \"Q9OhDnae3\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(TitlePlatform, {\n                    height: \"100%\",\n                    hqh_0cChh: \"Low Code\",\n                    id: \"yAnVLK8gz\",\n                    layoutId: \"yAnVLK8gz\",\n                    style: {\n                      height: \"100%\"\n                    },\n                    variant: \"fqMywv9Oa\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"h2\", {\n                  className: \"framer-styles-preset-kwn89d\",\n                  \"data-styles-preset\": \"VfXPmCMQi\",\n                  style: {\n                    \"--framer-text-alignment\": \"left\",\n                    \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                  },\n                  children: \"Unlock efficiency, agility, and innovation with our integrated low-code platform, automating complex processes for transformative results across industries.\"\n                })\n              }),\n              className: \"framer-14mkfzc\",\n              \"data-framer-name\": \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n              name: \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-15baisr\",\n              children: [/*#__PURE__*/_jsx(Link, {\n                href: {\n                  webPageId: \"qEt8z0Wzm\"\n                },\n                openInNewTab: false,\n                children: /*#__PURE__*/_jsx(\"a\", {\n                  className: \"framer-176lnsg framer-phbux2\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1vavash-container\",\n                    children: /*#__PURE__*/_jsx(CTA, {\n                      height: \"100%\",\n                      id: \"zNa04Mn5u\",\n                      layoutId: \"zNa04Mn5u\",\n                      o0kuUnSgs: resolveLink({\n                        webPageId: \"ZqTz7UsDZ\"\n                      }, router),\n                      U6he50_LA: \"Request Demo\",\n                      variant: \"ZOfIBchCy\",\n                      width: \"100%\"\n                    })\n                  })\n                })\n              }), /*#__PURE__*/_jsx(Link, {\n                href: {\n                  hash: \":DNA9D55Gd\",\n                  webPageId: \"oxUjT3pRU\"\n                },\n                openInNewTab: false,\n                smoothScroll: true,\n                children: /*#__PURE__*/_jsx(\"a\", {\n                  className: \"framer-1nvbek9 framer-phbux2\",\n                  children: /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-k9yz8e-container\",\n                    children: /*#__PURE__*/_jsx(CTA, {\n                      height: \"100%\",\n                      id: \"eiH7XBmcD\",\n                      layoutId: \"eiH7XBmcD\",\n                      o0kuUnSgs: resolveLink({\n                        hash: \":DNA9D55Gd\",\n                        webPageId: \"oxUjT3pRU\"\n                      }, router),\n                      U6he50_LA: \"Explore more\",\n                      variant: \"GxRxmzpPp\",\n                      width: \"100%\"\n                    })\n                  })\n                })\n              })]\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          className: \"framer-1vk133u\",\n          id: id,\n          ref: ref2,\n          children: /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1oxbxpb\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-mrdnp2\",\n              children: [/*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-lksngx\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h6\", {\n                      className: \"framer-styles-preset-rh55x\",\n                      \"data-styles-preset\": \"m4bYofDlq\",\n                      children: \"OVERVIEW\"\n                    })\n                  }),\n                  className: \"framer-gzkl7x\",\n                  \"data-framer-name\": \"OVERVIEW\",\n                  name: \"OVERVIEW\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1hsum2t\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        className: \"framer-styles-preset-kqz1bq\",\n                        \"data-styles-preset\": \"Vf_2Xrw1d\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Explore a World of Possibilities:\"\n                      })\n                    }),\n                    className: \"framer-146thl9\",\n                    \"data-framer-name\": \"Explore a World of Possibilities:\",\n                    name: \"Explore a World of Possibilities:\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-kwn89d\",\n                        \"data-styles-preset\": \"VfXPmCMQi\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\"\n                      })\n                    }),\n                    className: \"framer-123l25s\",\n                    \"data-framer-name\": \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    name: \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })]\n              }), /*#__PURE__*/_jsx(SVG, {\n                className: \"framer-iwdbu9\",\n                \"data-framer-name\": \"Line 15\",\n                fill: \"rgba(0,0,0,1)\",\n                intrinsicHeight: 3,\n                intrinsicWidth: 1496,\n                name: \"Line 15\",\n                svg: '<svg width=\"1496\" height=\"3\" viewBox=\"-1 -1 1496 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"-4.37114e-08\" y1=\"0.5\" x2=\"1494\" y2=\"0.499869\" stroke=\"#006FDA\" stroke-opacity=\"0.5\"/>\\n</svg>\\n',\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1mpm8wi\",\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-6mjnwk\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1unottf-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Business Apps\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/Oc32DLKoMGzNRNFbvgE2ampOE.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"EevkCJet1\",\n                      layoutId: \"EevkCJet1\",\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/Oc32DLKoMGzNRNFbvgE2ampOE.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Empower your organization with tailored business applications, from CRM systems to inventory trackers, rapidly deployed through our versatile platform\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1ewxaby-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Workflows\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/JIb2lAzwUutPzaNQwFLwn3ttaZM.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"LqNJhY9Uk\",\n                      layoutId: \"LqNJhY9Uk\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/JIb2lAzwUutPzaNQwFLwn3ttaZM.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/JIb2lAzwUutPzaNQwFLwn3ttaZM.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Easily automate workflows for tasks like leave requests, procurement, and content publishing, optimizing efficiency and speeding up outcomes with our platform\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-v7kpy1-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Case Management\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/LQwAuRh61WKwM4rms2GcFHt7I.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"ehl1A4Pb9\",\n                      layoutId: \"ehl1A4Pb9\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/LQwAuRh61WKwM4rms2GcFHt7I.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/LQwAuRh61WKwM4rms2GcFHt7I.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Optimize customer support, incident handling, and legal matter management through intuitive and data-driven case management solutions on our platform\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-ment06\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1kr4m8x-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Asset Management\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/jSc3OSobxWsgurgI3L14IFiA9Vo.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"HmUes3Skl\",\n                      layoutId: \"HmUes3Skl\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/jSc3OSobxWsgurgI3L14IFiA9Vo.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/jSc3OSobxWsgurgI3L14IFiA9Vo.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Monitor assets from diverse departments, track their lifecycle, manage operations, and track inventory for efficient resource allocation and cost control\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-w66x65-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"AI / ML\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/wHUwhsKkGOKNHuDH6ZHi8UhpxI.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"rX7m_iCSx\",\n                      layoutId: \"rX7m_iCSx\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/wHUwhsKkGOKNHuDH6ZHi8UhpxI.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/wHUwhsKkGOKNHuDH6ZHi8UhpxI.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Leverage our AI/ML capabilities for sentiment analysis, classification, response generation, and many other predictive and generative AI functions, transforming your operations\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-e64144-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Chat Bots\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/HTWpQImvCqJBbMhigjUiY0wvYY.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"t6lbMyghf\",\n                      layoutId: \"t6lbMyghf\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/HTWpQImvCqJBbMhigjUiY0wvYY.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/HTWpQImvCqJBbMhigjUiY0wvYY.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Improve customer service and user satisfaction with chatbots and virtual assistants, available 24/7 for common inquiries and interactive guidance.\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-9167yz\",\n                  children: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1hdt9sw-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Integration\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/xVNIZV5CA25WWdS2x48FlOH9OWI.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"vWuyaM5Ja\",\n                      layoutId: \"vWuyaM5Ja\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/xVNIZV5CA25WWdS2x48FlOH9OWI.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/xVNIZV5CA25WWdS2x48FlOH9OWI.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Achieve data synchronization, process automation, and enhanced data flow by integrating your applications with various systems and third-party tools.\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1sfbqh1-container\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Analytics\",\n                      gcbaUlv2A: addImageAlt({\n                        src: \"https://framerusercontent.com/images/V2oHjBo0eNn90uYGKEWniCKuQ.png\"\n                      }, \"\"),\n                      height: \"100%\",\n                      id: \"bGfA8ATdo\",\n                      layoutId: \"bGfA8ATdo\",\n                      NIQcMgWYO: addImageAlt({\n                        src: \"https://framerusercontent.com/images/V2oHjBo0eNn90uYGKEWniCKuQ.png\"\n                      }, \"\"),\n                      nJPMU4ors: addImageAlt({\n                        src: \"https://framerusercontent.com/images/V2oHjBo0eNn90uYGKEWniCKuQ.png\"\n                      }, \"\"),\n                      qlR2EMMyS: \"Leverage our integrated analysis capabilities to provide actionable insights for operational efficiency, continuous improvement, and informed policy-making.\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-5wkks2-container hidden-ujmrmd\",\n                    children: /*#__PURE__*/_jsx(PlatformCards, {\n                      bzg3ZMthP: \"Analytics\",\n                      height: \"100%\",\n                      id: \"tG4ZFuoQh\",\n                      layoutId: \"tG4ZFuoQh\",\n                      qlR2EMMyS: \"Leverage our integrated analysis capabilities to provide actionable insights for operational efficiency, continuous improvement, and informed policy-making.\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      variant: \"j_zjEayMJ\",\n                      width: \"100%\"\n                    })\n                  })]\n                })]\n              })]\n            })\n          })\n        }), /*#__PURE__*/_jsx(\"div\", {\n          className: \"framer-476iiy\",\n          id: id1,\n          ref: ref3,\n          children: /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1lfymtz\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1fooiyg\",\n              children: [/*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-14e34mi\",\n                children: /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1urs42f\",\n                  children: [/*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-zbdjrh\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h6\", {\n                          className: \"framer-styles-preset-rh55x\",\n                          \"data-styles-preset\": \"m4bYofDlq\",\n                          style: {\n                            \"--framer-text-color\": \"rgb(238, 104, 36)\"\n                          },\n                          children: \"FEATURES\"\n                        })\n                      }),\n                      className: \"framer-1v5nd4k\",\n                      \"data-framer-name\": \"OVERVIEW\",\n                      name: \"OVERVIEW\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          className: \"framer-styles-preset-kqz1bq\",\n                          \"data-styles-preset\": \"Vf_2Xrw1d\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Explore the Capabilities\"\n                        })\n                      }),\n                      className: \"framer-1e375xq\",\n                      \"data-framer-name\": \"Explore a World of Possibilities:\",\n                      name: \"Explore a World of Possibilities:\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-kwn89d\",\n                        \"data-styles-preset\": \"VfXPmCMQi\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Elevate your digital transformation with our platform's key features, which empower you to reimagine and optimize business processes. From seamless integration to real-time analytics, unlock the tools you need for unparalleled success in today's dynamic landscape\"\n                      })\n                    }),\n                    className: \"framer-1koi1ea\",\n                    \"data-framer-name\": \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    name: \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })\n              }), /*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-1wl6kr8\"\n              })]\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-c6v6ig\",\n              children: [/*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1mwit4o\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-12wtyjd-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Omnichannel Interface\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/CrWaZRSgvy0Si7XENJa2pMrU99w.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"cN9jIR4iE\",\n                    layoutId: \"cN9jIR4iE\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/4vYMPWeZiG0FmCMj852Dg0sgEas.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Engage across channels, for a consistent user experience. Whether it's web, mobile, email, WhatsApp, chatbots, or QR codes, it work harmoniously\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1ympff7-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Drag-and-Drop Configuration\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/L5y9WrjFYG8SA5iuTPy9DMujKo.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"UlYqgLIe_\",\n                    layoutId: \"UlYqgLIe_\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/AfIiejHFNO1dvMBqXio4pzlZgic.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"With our intuitive drag-and-drop configuration, even non-technical users can effortlessly create applications and workflows. No more coding complexities, just rapid application development.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-ri41yt-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Process Orchestration\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/VBj1GP8hGNdMO9dsYpjanVahbE.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"Eccdy0Bij\",\n                    layoutId: \"Eccdy0Bij\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/lC1T12xWPTmOvQbrxCS8detB0w.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Streamline complex workflows with our platform's process orchestration capabilities. Seamlessly integrate RPA, BPA, and Business Rule Engine features for efficient task management.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1m6dsw8\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1vn0qxs-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Intelligent Automation\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/HEdvcXH3KiQZfgfRgWjIjunBM.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"ox5RCEDp5\",\n                    layoutId: \"ox5RCEDp5\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/rWsxaKjczLkAVNqgd0GH5mGKM.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Harness intelligent automation. Our platform integrates AI, machine learning, data analysis, and smart task automation to streamline processes and enhance decision-making.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-14mh8lq-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Rapid  Development\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/g8LJJBCN0ocarRRh431ZC1f0DiU.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"jiRRE0RoU\",\n                    layoutId: \"jiRRE0RoU\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/JhRpwssNvBD0gBjjU4c2V702r5o.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Achieve rapid deployment through our low-code platform and templated solutions, ensuring swift and efficient implementation of tailored applications.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-mkzfl6-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Integration / Connectors\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/awftC1d4r5l4kDiyzLGphSwfQI.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"Ifv6ZkVW8\",\n                    layoutId: \"Ifv6ZkVW8\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/BfSxXziXqL89oAE3FkXa4wML6M8.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Effortlessly integrate applications with external systems, databases, and APIs using our platform's wide array of connectors and integration tools, ensuring efficient data exchange.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1l16i54\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-19vs2t5-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Custom  Extensions\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/n9yntSOhZqNobVvVZyiylTTK2I.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"RcC31MN9S\",\n                    layoutId: \"RcC31MN9S\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/yL9BA2qLl96p7SA9Xm8HD1LiiW4.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Customize applications precisely for your unique needs. Configure and modify components for a perfect fit, ensuring your solutions are tailored.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-eb03i9-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Collab & Communication\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/DNw3zkAmYYYUpokAp1rkVeT9rI0.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"xGeoUAKkU\",\n                    layoutId: \"xGeoUAKkU\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/g2kn2SFB6gzgRetztRUaFCjKg.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Enhance team collaboration with seamless integration. Connect via Email, SMS, WhatsApp, MS Teams, and other social media, ensuring efficient cross-channel communication\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1tto3d0-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Scalability and Performance\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/ECA9u0R5eUcuDItrKivXCRjlFY.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"y2yVT1AqR\",\n                    layoutId: \"y2yVT1AqR\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/8aEtpm99hXK1FCUGW7Ie8nHT5I.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Scale applications effortlessly; maintain performance as user base grows. Integrated analytics for data-driven decisions to continually enhance the experience.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-ota80q\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-i1hzb5-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Deployment Flexibility\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/s4OYpoAjdXsp540HPS11J1IGBg.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"LcxU3EuRn\",\n                    layoutId: \"LcxU3EuRn\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/RfhoNkyE3domtTdXqECVkNTQAtM.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Select deployment to match geographic and security needs. Available for cloud and on-premise, our platform adapts to your global strategy.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1r88sh6-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Security and  Access Control\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/U157VQjieMujw9NAjS01yxSFU.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"wNvbIqayl\",\n                    layoutId: \"wNvbIqayl\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/mapTxa0JMG2Pbvjb9jeLtZvYEE.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Integrate robust security and authentication options. With ISO 27001 and SOC2 certifications, we are your trusted platform for safeguarding data.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-d21rbp-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Advanced  Analytics\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/FNpxlmhjdAZrFDSMaednjHQ3g.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"IOmfte26R\",\n                    layoutId: \"IOmfte26R\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/LzrmdpAYA77LNzzMAIoPvlqCnSo.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Empower decision-making with integrated analytics, seamlessly accessing Business Intelligence solutions for robust data analysis and insights that enhance your business.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-64oncn\",\n                children: [/*#__PURE__*/_jsx(Container, {\n                  className: \"framer-kjbahz-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Low code Chat Bot\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/ezF52YPlfRe44lq1wKt8BomkI.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"xT9Yh_nPP\",\n                    layoutId: \"xT9Yh_nPP\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/kGAUpeCtCgPTDjYNUIDrfCh4pQ.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Empower communication with our low-code, multichannel chatbot. Streamline interactions, enhance engagement, and provide seamless user experiences across various channels effortlessly.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-a175du-container\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"IoT and ITOM Data Discovery \",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/JZAtU4phQO1ABwYoe3GzYJtH5cQ.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"Vzuj6Yp8F\",\n                    layoutId: \"Vzuj6Yp8F\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/qdCWamALgkLt2VuM6OKTvxNYRT0.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Unlock the potential of your IoT and IT Operations with our cutting-edge data discovery and collection capabilities, providing valuable insights for informed decision-making\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1dxpjvc-container hidden-ujmrmd\",\n                  children: /*#__PURE__*/_jsx(PlatformCards, {\n                    bzg3ZMthP: \"Advanced  Analytics\",\n                    gcbaUlv2A: addImageAlt({\n                      src: \"https://framerusercontent.com/images/FNpxlmhjdAZrFDSMaednjHQ3g.png\"\n                    }, \"\"),\n                    height: \"100%\",\n                    id: \"wpSbCWIj6\",\n                    layoutId: \"wpSbCWIj6\",\n                    NIQcMgWYO: addImageAlt({\n                      src: \"https://framerusercontent.com/images/LzrmdpAYA77LNzzMAIoPvlqCnSo.png\"\n                    }, \"\"),\n                    qlR2EMMyS: \"Leverage our integrated analysis capabilities to provide actionable insights for operational efficiency, continuous improvement, and informed policy-making.\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"MB8n2a5mK\",\n                    width: \"100%\"\n                  })\n                })]\n              })]\n            })]\n          })\n        }), /*#__PURE__*/_jsx(\"div\", {\n          className: \"framer-1grcgtg\",\n          id: id2,\n          ref: ref4,\n          children: /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1vty21b\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-fuptb8\",\n              children: [/*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-tap7yz\",\n                children: /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-12b02ph\",\n                  children: [/*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-1s161wd\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h6\", {\n                          className: \"framer-styles-preset-rh55x\",\n                          \"data-styles-preset\": \"m4bYofDlq\",\n                          children: \"Use cases\"\n                        })\n                      }),\n                      className: \"framer-1mqbo2j\",\n                      \"data-framer-name\": \"OVERVIEW\",\n                      name: \"OVERVIEW\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          className: \"framer-styles-preset-kqz1bq\",\n                          \"data-styles-preset\": \"Vf_2Xrw1d\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Explore the Use Cases \"\n                        })\n                      }),\n                      className: \"framer-7bwet1\",\n                      \"data-framer-name\": \"Explore a World of Possibilities:\",\n                      name: \"Explore a World of Possibilities:\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-kwn89d\",\n                        \"data-styles-preset\": \"VfXPmCMQi\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Uncover the boundless potential of our platform, offering versatile solutions for diverse areas of your business. It helps you embrace digitization to its fullest extent and transform your business to stay agile.\"\n                      })\n                    }),\n                    className: \"framer-1lfii6j\",\n                    \"data-framer-name\": \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    name: \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })\n              }), /*#__PURE__*/_jsx(SVG, {\n                className: \"framer-18fogwn\",\n                \"data-framer-name\": \"Line 15\",\n                fill: \"rgba(0,0,0,1)\",\n                intrinsicHeight: 3,\n                intrinsicWidth: 1496,\n                name: \"Line 15\",\n                svg: '<svg width=\"1496\" height=\"3\" viewBox=\"-1 -1 1496 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"-4.37114e-08\" y1=\"0.5\" x2=\"1494\" y2=\"0.499869\" stroke=\"#006FDA\" stroke-opacity=\"0.5\"/>\\n</svg>\\n',\n                withExternalLayout: true\n              })]\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1p6rgns-container\",\n              id: id3,\n              ref: ref5,\n              children: /*#__PURE__*/_jsx(UseCases, {\n                height: \"100%\",\n                id: \"iKqrIFafT\",\n                layoutId: \"iKqrIFafT\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"CFEFfFD1G\",\n                width: \"100%\"\n              })\n            })]\n          })\n        }), isDisplayed() && /*#__PURE__*/_jsxs(\"div\", {\n          className: \"framer-13ribvn hidden-ujmrmd\",\n          id: id4,\n          ref: ref6,\n          children: [/*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-g6lg4n\",\n            children: /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1gyemi4\",\n              children: [/*#__PURE__*/_jsx(\"div\", {\n                className: \"framer-t3ow1j\",\n                children: /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-tvk75w\",\n                  children: [/*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-33q1v2\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h6\", {\n                          className: \"framer-styles-preset-rh55x\",\n                          \"data-styles-preset\": \"m4bYofDlq\",\n                          children: \"Success Stories\"\n                        })\n                      }),\n                      className: \"framer-qpggsc\",\n                      \"data-framer-name\": \"OVERVIEW\",\n                      name: \"OVERVIEW\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          className: \"framer-styles-preset-kqz1bq\",\n                          \"data-styles-preset\": \"Vf_2Xrw1d\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Explore the Success Stories\"\n                        })\n                      }),\n                      className: \"framer-jgs3u0\",\n                      \"data-framer-name\": \"Explore a World of Possibilities:\",\n                      name: \"Explore a World of Possibilities:\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-kwn89d\",\n                        \"data-styles-preset\": \"VfXPmCMQi\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Explore the success stories of organizations leveraging SapphireIMS, showcasing real-world examples of improved efficiency, streamlined operations, and transformative digital experiences in diverse industries\"\n                      })\n                    }),\n                    className: \"framer-1x4nxh1\",\n                    \"data-framer-name\": \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    name: \"Empower your enterprise with our low-code magic and hyper-automation. Streamline workflows, reduce costs, and unlock efficiency for a future-ready business\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })\n              }), /*#__PURE__*/_jsx(SVG, {\n                className: \"framer-pgmure\",\n                \"data-framer-name\": \"Line 15\",\n                fill: \"rgba(0,0,0,1)\",\n                intrinsicHeight: 3,\n                intrinsicWidth: 1496,\n                name: \"Line 15\",\n                svg: '<svg width=\"1496\" height=\"3\" viewBox=\"-1 -1 1496 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"-4.37114e-08\" y1=\"0.5\" x2=\"1494\" y2=\"0.499869\" stroke=\"#006FDA\" stroke-opacity=\"0.5\"/>\\n</svg>\\n',\n                withExternalLayout: true\n              })]\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1us09sm-container\",\n            children: /*#__PURE__*/_jsx(Slideshow, {\n              alignment: \"center\",\n              arrowOptions: {\n                arrowFill: \"rgba(0, 0, 0, 0.3)\",\n                arrowGap: 10,\n                arrowPadding: 20,\n                arrowPaddingBottom: 0,\n                arrowPaddingLeft: 0,\n                arrowPaddingRight: 0,\n                arrowPaddingTop: 0,\n                arrowPosition: \"auto\",\n                arrowRadius: 40,\n                arrowShouldFadeIn: false,\n                arrowShouldSpace: true,\n                arrowSize: 40,\n                showMouseControls: true\n              },\n              autoPlayControl: true,\n              borderRadius: 0,\n              direction: \"left\",\n              dragControl: true,\n              effectsOptions: {\n                effectsHover: true,\n                effectsOpacity: 1,\n                effectsPerspective: 1200,\n                effectsRotate: 0,\n                effectsScale: 1\n              },\n              fadeOptions: {\n                fadeAlpha: .4,\n                fadeContent: false,\n                fadeInset: 0,\n                fadeWidth: 40,\n                overflow: false\n              },\n              gap: 560,\n              height: \"100%\",\n              id: \"ZWYv_DYJt\",\n              intervalControl: 5,\n              itemAmount: 1,\n              layoutId: \"ZWYv_DYJt\",\n              padding: 0,\n              paddingBottom: 0,\n              paddingLeft: 0,\n              paddingPerSide: false,\n              paddingRight: 0,\n              paddingTop: 0,\n              progressOptions: {\n                dotsActiveOpacity: 1,\n                dotsBackground: \"rgba(0, 0, 0, 0.2)\",\n                dotsBlur: 0,\n                dotsFill: \"rgb(255, 255, 255)\",\n                dotsGap: 10,\n                dotsInset: 10,\n                dotSize: 10,\n                dotsOpacity: .5,\n                dotsPadding: 10,\n                dotsRadius: 50,\n                showProgressDots: true\n              },\n              slots: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-5okcfo\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-ye9x3u\",\n                  \"data-framer-name\": \"Group 11\",\n                  name: \"Group 11\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1lwha1x\",\n                    \"data-framer-name\": \"Rectangle 15\",\n                    name: \"Rectangle 15\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-3ag5ee\",\n                      \"data-framer-name\": \"\u201C\",\n                      fill: \"rgba(0,0,0,1)\",\n                      intrinsicHeight: 79,\n                      intrinsicWidth: 104,\n                      name: \"\u201C\",\n                      svg: '<svg width=\"104\" height=\"79\" viewBox=\"-1 -1 104 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M102 0L102 22.0309C102 28.3665 100.796 34.9542 98.3884 41.7938C95.9077 48.7055 92.5515 55.2211 88.3197 61.3408C84.015 67.5325 79.1996 72.7522 73.8734 77L55.4871 65.2286C59.7918 58.8209 63.4034 52.1253 66.3219 45.1416C69.1674 38.23 70.5537 30.5984 70.4807 22.2469L70.4807 -2.75551e-06L102 0ZM46.5129 -4.85084e-06L46.5129 22.0309C46.5129 28.3665 45.309 34.9542 42.9013 41.7938C40.4206 48.7055 37.0644 55.2211 32.8326 61.3408C28.5279 67.5325 23.7124 72.7522 18.3863 77L1.02909e-06 65.2286C4.30472 58.8209 7.91631 52.1253 10.8348 45.1416C13.6803 38.23 15.0665 30.5984 14.9936 22.2468L14.9936 -7.60634e-06L46.5129 -4.85084e-06Z\" fill=\"white\" fill-opacity=\"0.3\"/>\\n</svg>\\n',\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-sj7wf8\",\n                      \"data-framer-name\": \"\u201C\",\n                      fill: \"rgba(0,0,0,1)\",\n                      intrinsicHeight: 79,\n                      intrinsicWidth: 104,\n                      name: \"\u201C\",\n                      svg: '<svg width=\"104\" height=\"79\" viewBox=\"-1 -1 104 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 77V54.9691C0 48.6335 1.20386 42.0458 3.61159 35.2062C6.09228 28.2945 9.4485 21.7789 13.6803 15.6592C17.985 9.46751 22.8004 4.24779 28.1266 0L46.5129 11.7714C42.2082 18.179 38.5966 24.8747 35.6781 31.8584C32.8326 38.77 31.4464 46.4016 31.5193 54.7531V77H0ZM55.4871 77V54.9691C55.4871 48.6335 56.691 42.0458 59.0987 35.2062C61.5794 28.2945 64.9356 21.7789 69.1674 15.6592C73.4721 9.46751 78.2876 4.24779 83.6137 0L102 11.7714C97.6953 18.179 94.0837 24.8747 91.1652 31.8584C88.3197 38.77 86.9335 46.4016 87.0064 54.7531V77H55.4871Z\" fill=\"white\" fill-opacity=\"0.3\"/>\\n</svg>\\n',\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                            \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"26px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"120%\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Before SapphireIMS, TASL faced delays with paper approvals, scattered audit data, and complexities in approval validation during personnel changes\"\n                        })\n                      }),\n                      className: \"framer-ac1kzv\",\n                      \"data-framer-name\": \"Efficiency and business agility are a given when you engage with SapphireIMS. Their relentless focus on business goals makes us confident that our back-office is in safe hands.\",\n                      fonts: [\"Inter-Medium\"],\n                      name: \"Efficiency and business agility are a given when you engage with SapphireIMS. Their relentless focus on business goals makes us confident that our back-office is in safe hands.\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-17b1lxf\",\n                    \"data-framer-name\": \"Rectangle 19\",\n                    name: \"Rectangle 19\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 344,\n                        intrinsicWidth: 286,\n                        pixelHeight: 344,\n                        pixelWidth: 286,\n                        src: \"https://framerusercontent.com/images/QcJfh0a9EZUXR2JfsMOzxTfl50.jpg\"\n                      },\n                      className: \"framer-5g2cso\",\n                      \"data-framer-name\": \"RajeevKhadeAbout-min-min 1\",\n                      name: \"RajeevKhadeAbout-min-min 1\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(Link, {\n                  href: {\n                    webPageId: \"QVjg3NLgx\"\n                  },\n                  children: /*#__PURE__*/_jsx(motion.a, {\n                    className: \"framer-1rdq2s3 framer-phbux2\",\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-65fuet-container\",\n                      children: /*#__PURE__*/_jsx(CTA, {\n                        height: \"100%\",\n                        id: \"tE6vTT1ac\",\n                        layoutId: \"tE6vTT1ac\",\n                        U6he50_LA: \"Read More\",\n                        variant: \"ZOfIBchCy\",\n                        width: \"100%\"\n                      })\n                    })\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1u371bu\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1rjxmhs\",\n                  \"data-framer-name\": \"Group 11\",\n                  name: \"Group 11\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-khyhgb\",\n                    \"data-framer-name\": \"Rectangle 15\",\n                    name: \"Rectangle 15\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-15z6i3e\",\n                      \"data-framer-name\": \"\u201C\",\n                      fill: \"rgba(0,0,0,1)\",\n                      intrinsicHeight: 79,\n                      intrinsicWidth: 104,\n                      name: \"\u201C\",\n                      svg: '<svg width=\"104\" height=\"79\" viewBox=\"-1 -1 104 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M102 0L102 22.0309C102 28.3665 100.796 34.9542 98.3884 41.7938C95.9077 48.7055 92.5515 55.2211 88.3197 61.3408C84.015 67.5325 79.1996 72.7522 73.8734 77L55.4871 65.2286C59.7918 58.8209 63.4034 52.1253 66.3219 45.1416C69.1674 38.23 70.5537 30.5984 70.4807 22.2469L70.4807 -2.75551e-06L102 0ZM46.5129 -4.85084e-06L46.5129 22.0309C46.5129 28.3665 45.309 34.9542 42.9013 41.7938C40.4206 48.7055 37.0644 55.2211 32.8326 61.3408C28.5279 67.5325 23.7124 72.7522 18.3863 77L1.02909e-06 65.2286C4.30472 58.8209 7.91631 52.1253 10.8348 45.1416C13.6803 38.23 15.0665 30.5984 14.9936 22.2468L14.9936 -7.60634e-06L46.5129 -4.85084e-06Z\" fill=\"white\" fill-opacity=\"0.3\"/>\\n</svg>\\n',\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-vh8is1\",\n                      \"data-framer-name\": \"\u201C\",\n                      fill: \"rgba(0,0,0,1)\",\n                      intrinsicHeight: 79,\n                      intrinsicWidth: 104,\n                      name: \"\u201C\",\n                      svg: '<svg width=\"104\" height=\"79\" viewBox=\"-1 -1 104 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 77V54.9691C0 48.6335 1.20386 42.0458 3.61159 35.2062C6.09228 28.2945 9.4485 21.7789 13.6803 15.6592C17.985 9.46751 22.8004 4.24779 28.1266 0L46.5129 11.7714C42.2082 18.179 38.5966 24.8747 35.6781 31.8584C32.8326 38.77 31.4464 46.4016 31.5193 54.7531V77H0ZM55.4871 77V54.9691C55.4871 48.6335 56.691 42.0458 59.0987 35.2062C61.5794 28.2945 64.9356 21.7789 69.1674 15.6592C73.4721 9.46751 78.2876 4.24779 83.6137 0L102 11.7714C97.6953 18.179 94.0837 24.8747 91.1652 31.8584C88.3197 38.77 86.9335 46.4016 87.0064 54.7531V77H55.4871Z\" fill=\"white\" fill-opacity=\"0.3\"/>\\n</svg>\\n',\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                            \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"26px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"120%\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"In healthcare's dynamic landscape, our platform empowers a global team, catalyzing transformation for 200+ hospitals, thriving in Digital Transformation.\"\n                        })\n                      }),\n                      className: \"framer-8cnjl5\",\n                      \"data-framer-name\": \"Efficiency and business agility are a given when you engage with SapphireIMS. Their relentless focus on business goals makes us confident that our back-office is in safe hands.\",\n                      fonts: [\"Inter-Medium\"],\n                      name: \"Efficiency and business agility are a given when you engage with SapphireIMS. Their relentless focus on business goals makes us confident that our back-office is in safe hands.\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-er8bv0\",\n                    \"data-framer-name\": \"Rectangle 19\",\n                    name: \"Rectangle 19\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 344,\n                        intrinsicWidth: 286,\n                        pixelHeight: 344,\n                        pixelWidth: 286,\n                        src: \"https://framerusercontent.com/images/aZlKKGBkn37g8NgLdmDaZtR7IA.jpg\"\n                      },\n                      className: \"framer-5dl4nr\",\n                      \"data-border\": true,\n                      \"data-framer-name\": \"RajeevKhadeAbout-min-min 1\",\n                      name: \"RajeevKhadeAbout-min-min 1\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(Link, {\n                  href: {\n                    webPageId: \"BVcXg9oMW\"\n                  },\n                  openInNewTab: false,\n                  children: /*#__PURE__*/_jsx(motion.a, {\n                    className: \"framer-yiec6g framer-phbux2\",\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-15ppca2-container\",\n                      children: /*#__PURE__*/_jsx(CTA, {\n                        height: \"100%\",\n                        id: \"Gd9ox2rBR\",\n                        layoutId: \"Gd9ox2rBR\",\n                        U6he50_LA: \"Read More\",\n                        variant: \"ZOfIBchCy\",\n                        width: \"100%\"\n                      })\n                    })\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-nluo9k\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-luddlg\",\n                  \"data-framer-name\": \"Group 11\",\n                  name: \"Group 11\",\n                  children: [/*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-uepn9f\",\n                    \"data-framer-name\": \"Rectangle 15\",\n                    name: \"Rectangle 15\",\n                    children: [/*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-ts34n7\",\n                      \"data-framer-name\": \"\u201C\",\n                      fill: \"rgba(0,0,0,1)\",\n                      intrinsicHeight: 79,\n                      intrinsicWidth: 104,\n                      name: \"\u201C\",\n                      svg: '<svg width=\"104\" height=\"79\" viewBox=\"-1 -1 104 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M102 0L102 22.0309C102 28.3665 100.796 34.9542 98.3884 41.7938C95.9077 48.7055 92.5515 55.2211 88.3197 61.3408C84.015 67.5325 79.1996 72.7522 73.8734 77L55.4871 65.2286C59.7918 58.8209 63.4034 52.1253 66.3219 45.1416C69.1674 38.23 70.5537 30.5984 70.4807 22.2469L70.4807 -2.75551e-06L102 0ZM46.5129 -4.85084e-06L46.5129 22.0309C46.5129 28.3665 45.309 34.9542 42.9013 41.7938C40.4206 48.7055 37.0644 55.2211 32.8326 61.3408C28.5279 67.5325 23.7124 72.7522 18.3863 77L1.02909e-06 65.2286C4.30472 58.8209 7.91631 52.1253 10.8348 45.1416C13.6803 38.23 15.0665 30.5984 14.9936 22.2468L14.9936 -7.60634e-06L46.5129 -4.85084e-06Z\" fill=\"white\" fill-opacity=\"0.3\"/>\\n</svg>\\n',\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-1fsjk4a\",\n                      \"data-framer-name\": \"\u201C\",\n                      fill: \"rgba(0,0,0,1)\",\n                      intrinsicHeight: 79,\n                      intrinsicWidth: 104,\n                      name: \"\u201C\",\n                      svg: '<svg width=\"104\" height=\"79\" viewBox=\"-1 -1 104 79\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 77V54.9691C0 48.6335 1.20386 42.0458 3.61159 35.2062C6.09228 28.2945 9.4485 21.7789 13.6803 15.6592C17.985 9.46751 22.8004 4.24779 28.1266 0L46.5129 11.7714C42.2082 18.179 38.5966 24.8747 35.6781 31.8584C32.8326 38.77 31.4464 46.4016 31.5193 54.7531V77H0ZM55.4871 77V54.9691C55.4871 48.6335 56.691 42.0458 59.0987 35.2062C61.5794 28.2945 64.9356 21.7789 69.1674 15.6592C73.4721 9.46751 78.2876 4.24779 83.6137 0L102 11.7714C97.6953 18.179 94.0837 24.8747 91.1652 31.8584C88.3197 38.77 86.9335 46.4016 87.0064 54.7531V77H55.4871Z\" fill=\"white\" fill-opacity=\"0.3\"/>\\n</svg>\\n',\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          style: {\n                            \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                            \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"26px\",\n                            \"--framer-font-weight\": \"500\",\n                            \"--framer-line-height\": \"120%\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Fino Payments Bank faced challenges in tracking inventory efficiently. Manual order processing and a lack of a centralized system led to error\"\n                        })\n                      }),\n                      className: \"framer-v5geq\",\n                      \"data-framer-name\": \"Efficiency and business agility are a given when you engage with SapphireIMS. Their relentless focus on business goals makes us confident that our back-office is in safe hands.\",\n                      fonts: [\"Inter-Medium\"],\n                      name: \"Efficiency and business agility are a given when you engage with SapphireIMS. Their relentless focus on business goals makes us confident that our back-office is in safe hands.\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1yrg3vb\",\n                    \"data-framer-name\": \"Rectangle 19\",\n                    name: \"Rectangle 19\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 344,\n                        intrinsicWidth: 286,\n                        pixelHeight: 344,\n                        pixelWidth: 286,\n                        src: \"https://framerusercontent.com/images/uNcjHuqJhzsbnVFpx056KNXk.jpg\"\n                      },\n                      className: \"framer-14qmbat\",\n                      \"data-framer-name\": \"RajeevKhadeAbout-min-min 1\",\n                      name: \"RajeevKhadeAbout-min-min 1\"\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(Link, {\n                  href: {\n                    webPageId: \"onx4JUemq\"\n                  },\n                  children: /*#__PURE__*/_jsx(motion.a, {\n                    className: \"framer-1fz135q framer-phbux2\",\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-1nh7max-container\",\n                      children: /*#__PURE__*/_jsx(CTA, {\n                        height: \"100%\",\n                        id: \"DzV5UR333\",\n                        layoutId: \"DzV5UR333\",\n                        U6he50_LA: \"Read More\",\n                        variant: \"ZOfIBchCy\",\n                        width: \"100%\"\n                      })\n                    })\n                  })\n                })]\n              })],\n              startFrom: 0,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              transitionControl: {\n                damping: 40,\n                stiffness: 200,\n                type: \"spring\"\n              },\n              width: \"100%\"\n            })\n          })]\n        }), /*#__PURE__*/_jsx(Container, {\n          className: \"framer-p664xj-container\",\n          layoutScroll: true,\n          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PCXH6NZqF: {\n                variant: \"cChrMF7aG\"\n              }\n            },\n            children: /*#__PURE__*/_jsx(Menu, {\n              height: \"100%\",\n              id: \"VVxdXHhgK\",\n              layoutId: \"VVxdXHhgK\",\n              style: {\n                maxWidth: \"100%\",\n                width: \"100%\"\n              },\n              variant: \"AOA0Rya_T\",\n              width: \"100%\"\n            })\n          })\n        }), /*#__PURE__*/_jsx(Container, {\n          className: \"framer-1u2isyz-container\",\n          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              PCXH6NZqF: {\n                variant: \"IOaxZ9aKt\"\n              }\n            },\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"KaR1Zb79Q\",\n              layoutId: \"KaR1Zb79Q\",\n              style: {\n                width: \"100%\"\n              },\n              variant: \"VebhGt1W9\",\n              width: \"100%\"\n            })\n          })\n        })]\n      }), /*#__PURE__*/_jsx(\"div\", {\n        className: serializationHash,\n        id: \"overlay\"\n      })]\n    })\n  });\n});\nconst css = ['.framer-O0LAB[data-border=\"true\"]::after, .framer-O0LAB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName}-framer-O0LAB { background: rgb(247, 247, 247); }`, \".framer-O0LAB.framer-phbux2, .framer-O0LAB .framer-phbux2 { display: block; }\", \".framer-O0LAB.framer-nnwn6u { align-content: center; align-items: center; background-color: #f7f7f7; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 92px 0px 0px 0px; position: relative; width: 1280px; }\", \".framer-O0LAB .framer-1v19goj { box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); flex: none; height: 583px; max-width: 100%; overflow: visible; position: relative; width: 100%; }\", \".framer-O0LAB .framer-tl11xq-container { bottom: -39px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\", \".framer-O0LAB .framer-1mw6rhq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; left: 164px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 49%; transform: translateY(-50%); width: min-content; }\", \".framer-O0LAB .framer-8zwu9b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 750px; }\", \".framer-O0LAB .framer-caapde { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-O0LAB .framer-10agg4s-container { flex: none; height: 66px; position: relative; width: auto; }\", \".framer-O0LAB .framer-14mkfzc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 724px; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-15baisr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-O0LAB .framer-176lnsg, .framer-O0LAB .framer-1nvbek9, .framer-O0LAB .framer-1rdq2s3, .framer-O0LAB .framer-yiec6g, .framer-O0LAB .framer-1fz135q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\", \".framer-O0LAB .framer-1vavash-container, .framer-O0LAB .framer-k9yz8e-container, .framer-O0LAB .framer-65fuet-container, .framer-O0LAB .framer-15ppca2-container, .framer-O0LAB .framer-1nh7max-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-O0LAB .framer-1vk133u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; min-width: 1280px; overflow: hidden; padding: 79px 0px 79px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1oxbxpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-mrdnp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-lksngx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-gzkl7x, .framer-O0LAB .framer-1v5nd4k, .framer-O0LAB .framer-qpggsc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-O0LAB .framer-1hsum2t, .framer-O0LAB .framer-12b02ph, .framer-O0LAB .framer-tvk75w { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-146thl9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 483px; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-123l25s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-iwdbu9, .framer-O0LAB .framer-18fogwn, .framer-O0LAB .framer-pgmure { flex: none; height: 10px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1mpm8wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1180px; }\", \".framer-O0LAB .framer-6mjnwk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1unottf-container, .framer-O0LAB .framer-1ewxaby-container, .framer-O0LAB .framer-v7kpy1-container, .framer-O0LAB .framer-1kr4m8x-container, .framer-O0LAB .framer-w66x65-container, .framer-O0LAB .framer-e64144-container, .framer-O0LAB .framer-1hdt9sw-container, .framer-O0LAB .framer-1sfbqh1-container, .framer-O0LAB .framer-12wtyjd-container, .framer-O0LAB .framer-1ympff7-container, .framer-O0LAB .framer-ri41yt-container, .framer-O0LAB .framer-1vn0qxs-container, .framer-O0LAB .framer-14mh8lq-container, .framer-O0LAB .framer-mkzfl6-container, .framer-O0LAB .framer-19vs2t5-container, .framer-O0LAB .framer-eb03i9-container, .framer-O0LAB .framer-1tto3d0-container, .framer-O0LAB .framer-i1hzb5-container, .framer-O0LAB .framer-1r88sh6-container, .framer-O0LAB .framer-d21rbp-container, .framer-O0LAB .framer-kjbahz-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\", \".framer-O0LAB .framer-ment06 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-9167yz, .framer-O0LAB .framer-1m6dsw8, .framer-O0LAB .framer-1l16i54, .framer-O0LAB .framer-ota80q, .framer-O0LAB .framer-64oncn { 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: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-5wkks2-container, .framer-O0LAB .framer-1dxpjvc-container { flex: 1 0 0px; height: auto; opacity: 0; position: relative; width: 1px; }\", \".framer-O0LAB .framer-476iiy, .framer-O0LAB .framer-1grcgtg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: flex-start; min-width: 1280px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1lfymtz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1fooiyg, .framer-O0LAB .framer-fuptb8, .framer-O0LAB .framer-1gyemi4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-14e34mi, .framer-O0LAB .framer-tap7yz, .framer-O0LAB .framer-t3ow1j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1urs42f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-zbdjrh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 550px; }\", \".framer-O0LAB .framer-1e375xq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-1koi1ea, .framer-O0LAB .framer-1lfii6j, .framer-O0LAB .framer-1x4nxh1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 45%; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-1wl6kr8 { background-color: var(--token-323a91a6-7518-46b7-8c0c-b60e5d7ab74d, #ee6824); flex: none; height: 3px; opacity: 0.62; overflow: hidden; position: relative; width: 100%; }\", \".framer-O0LAB .framer-c6v6ig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1mwit4o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-a175du-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\", \".framer-O0LAB .framer-1vty21b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-1s161wd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 126px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 293px; }\", \".framer-O0LAB .framer-1mqbo2j { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: 1px; position: relative; white-space: pre; width: auto; }\", \".framer-O0LAB .framer-7bwet1, .framer-O0LAB .framer-jgs3u0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-1p6rgns-container, .framer-O0LAB .framer-1u2isyz-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-O0LAB .framer-13ribvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; max-width: 1280px; min-width: 100%; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-g6lg4n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\", \".framer-O0LAB .framer-33q1v2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 140px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 389px; }\", \".framer-O0LAB .framer-1us09sm-container { flex: none; height: 564px; position: relative; width: 1053px; }\", \".framer-O0LAB .framer-5okcfo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 858px; }\", \".framer-O0LAB .framer-ye9x3u, .framer-O0LAB .framer-1rjxmhs, .framer-O0LAB .framer-luddlg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-O0LAB .framer-1lwha1x { background-color: #0f79b9; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 344px; position: relative; width: 572px; }\", \".framer-O0LAB .framer-3ag5ee, .framer-O0LAB .framer-15z6i3e, .framer-O0LAB .framer-ts34n7 { bottom: 36px; flex: none; height: 79px; left: 389px; position: absolute; width: 104px; }\", \".framer-O0LAB .framer-sj7wf8, .framer-O0LAB .framer-vh8is1, .framer-O0LAB .framer-1fsjk4a { flex: none; height: 79px; left: 49px; position: absolute; top: 42px; width: 104px; }\", \".framer-O0LAB .framer-ac1kzv, .framer-O0LAB .framer-8cnjl5, .framer-O0LAB .framer-v5geq { --framer-paragraph-spacing: 0px; flex: none; height: 219px; left: calc(51.92307692307695% - 408px / 2); position: absolute; top: calc(51.74418604651165% - 219px / 2); white-space: pre-wrap; width: 408px; word-break: break-word; word-wrap: break-word; }\", \".framer-O0LAB .framer-17b1lxf, .framer-O0LAB .framer-er8bv0, .framer-O0LAB .framer-1yrg3vb { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 344px; overflow: hidden; position: relative; width: 286px; will-change: var(--framer-will-change-override, transform); }\", \".framer-O0LAB .framer-5g2cso, .framer-O0LAB .framer-14qmbat { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\", \".framer-O0LAB .framer-1u371bu, .framer-O0LAB .framer-nluo9k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-O0LAB .framer-khyhgb { background-color: #39b872; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 344px; position: relative; width: 572px; }\", \".framer-O0LAB .framer-5dl4nr { --border-bottom-width: 1px; --border-color: #b3b3b3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\", \".framer-O0LAB .framer-uepn9f { background-color: #493e8f; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 344px; position: relative; width: 572px; }\", \".framer-O0LAB .framer-p664xj-container { flex: none; height: auto; left: 0px; max-width: 100%; position: fixed; top: 0px; width: 100%; z-index: 1; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-O0LAB.framer-nnwn6u, .framer-O0LAB .framer-1mw6rhq, .framer-O0LAB .framer-8zwu9b, .framer-O0LAB .framer-15baisr, .framer-O0LAB .framer-176lnsg, .framer-O0LAB .framer-1nvbek9, .framer-O0LAB .framer-1vk133u, .framer-O0LAB .framer-1oxbxpb, .framer-O0LAB .framer-mrdnp2, .framer-O0LAB .framer-lksngx, .framer-O0LAB .framer-1mpm8wi, .framer-O0LAB .framer-6mjnwk, .framer-O0LAB .framer-ment06, .framer-O0LAB .framer-9167yz, .framer-O0LAB .framer-476iiy, .framer-O0LAB .framer-1lfymtz, .framer-O0LAB .framer-1fooiyg, .framer-O0LAB .framer-14e34mi, .framer-O0LAB .framer-zbdjrh, .framer-O0LAB .framer-c6v6ig, .framer-O0LAB .framer-1mwit4o, .framer-O0LAB .framer-1m6dsw8, .framer-O0LAB .framer-1l16i54, .framer-O0LAB .framer-ota80q, .framer-O0LAB .framer-64oncn, .framer-O0LAB .framer-1grcgtg, .framer-O0LAB .framer-1vty21b, .framer-O0LAB .framer-fuptb8, .framer-O0LAB .framer-tap7yz, .framer-O0LAB .framer-1s161wd, .framer-O0LAB .framer-13ribvn, .framer-O0LAB .framer-g6lg4n, .framer-O0LAB .framer-1gyemi4, .framer-O0LAB .framer-t3ow1j, .framer-O0LAB .framer-33q1v2, .framer-O0LAB .framer-5okcfo, .framer-O0LAB .framer-ye9x3u, .framer-O0LAB .framer-1rdq2s3, .framer-O0LAB .framer-1u371bu, .framer-O0LAB .framer-1rjxmhs, .framer-O0LAB .framer-yiec6g, .framer-O0LAB .framer-nluo9k, .framer-O0LAB .framer-luddlg, .framer-O0LAB .framer-1fz135q { gap: 0px; } .framer-O0LAB.framer-nnwn6u > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-O0LAB.framer-nnwn6u > :first-child, .framer-O0LAB .framer-1mw6rhq > :first-child, .framer-O0LAB .framer-8zwu9b > :first-child, .framer-O0LAB .framer-1vk133u > :first-child, .framer-O0LAB .framer-1oxbxpb > :first-child, .framer-O0LAB .framer-mrdnp2 > :first-child, .framer-O0LAB .framer-lksngx > :first-child, .framer-O0LAB .framer-1mpm8wi > :first-child, .framer-O0LAB .framer-476iiy > :first-child, .framer-O0LAB .framer-1lfymtz > :first-child, .framer-O0LAB .framer-1fooiyg > :first-child, .framer-O0LAB .framer-14e34mi > :first-child, .framer-O0LAB .framer-zbdjrh > :first-child, .framer-O0LAB .framer-c6v6ig > :first-child, .framer-O0LAB .framer-1grcgtg > :first-child, .framer-O0LAB .framer-1vty21b > :first-child, .framer-O0LAB .framer-fuptb8 > :first-child, .framer-O0LAB .framer-tap7yz > :first-child, .framer-O0LAB .framer-1s161wd > :first-child, .framer-O0LAB .framer-13ribvn > :first-child, .framer-O0LAB .framer-g6lg4n > :first-child, .framer-O0LAB .framer-1gyemi4 > :first-child, .framer-O0LAB .framer-t3ow1j > :first-child, .framer-O0LAB .framer-33q1v2 > :first-child, .framer-O0LAB .framer-5okcfo > :first-child, .framer-O0LAB .framer-1u371bu > :first-child, .framer-O0LAB .framer-nluo9k > :first-child { margin-top: 0px; } .framer-O0LAB.framer-nnwn6u > :last-child, .framer-O0LAB .framer-1mw6rhq > :last-child, .framer-O0LAB .framer-8zwu9b > :last-child, .framer-O0LAB .framer-1vk133u > :last-child, .framer-O0LAB .framer-1oxbxpb > :last-child, .framer-O0LAB .framer-mrdnp2 > :last-child, .framer-O0LAB .framer-lksngx > :last-child, .framer-O0LAB .framer-1mpm8wi > :last-child, .framer-O0LAB .framer-476iiy > :last-child, .framer-O0LAB .framer-1lfymtz > :last-child, .framer-O0LAB .framer-1fooiyg > :last-child, .framer-O0LAB .framer-14e34mi > :last-child, .framer-O0LAB .framer-zbdjrh > :last-child, .framer-O0LAB .framer-c6v6ig > :last-child, .framer-O0LAB .framer-1grcgtg > :last-child, .framer-O0LAB .framer-1vty21b > :last-child, .framer-O0LAB .framer-fuptb8 > :last-child, .framer-O0LAB .framer-tap7yz > :last-child, .framer-O0LAB .framer-1s161wd > :last-child, .framer-O0LAB .framer-13ribvn > :last-child, .framer-O0LAB .framer-g6lg4n > :last-child, .framer-O0LAB .framer-1gyemi4 > :last-child, .framer-O0LAB .framer-t3ow1j > :last-child, .framer-O0LAB .framer-33q1v2 > :last-child, .framer-O0LAB .framer-5okcfo > :last-child, .framer-O0LAB .framer-1u371bu > :last-child, .framer-O0LAB .framer-nluo9k > :last-child { margin-bottom: 0px; } .framer-O0LAB .framer-1mw6rhq > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-O0LAB .framer-8zwu9b > *, .framer-O0LAB .framer-1s161wd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-O0LAB .framer-15baisr > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } .framer-O0LAB .framer-15baisr > :first-child, .framer-O0LAB .framer-176lnsg > :first-child, .framer-O0LAB .framer-1nvbek9 > :first-child, .framer-O0LAB .framer-6mjnwk > :first-child, .framer-O0LAB .framer-ment06 > :first-child, .framer-O0LAB .framer-9167yz > :first-child, .framer-O0LAB .framer-1mwit4o > :first-child, .framer-O0LAB .framer-1m6dsw8 > :first-child, .framer-O0LAB .framer-1l16i54 > :first-child, .framer-O0LAB .framer-ota80q > :first-child, .framer-O0LAB .framer-64oncn > :first-child, .framer-O0LAB .framer-ye9x3u > :first-child, .framer-O0LAB .framer-1rdq2s3 > :first-child, .framer-O0LAB .framer-1rjxmhs > :first-child, .framer-O0LAB .framer-yiec6g > :first-child, .framer-O0LAB .framer-luddlg > :first-child, .framer-O0LAB .framer-1fz135q > :first-child { margin-left: 0px; } .framer-O0LAB .framer-15baisr > :last-child, .framer-O0LAB .framer-176lnsg > :last-child, .framer-O0LAB .framer-1nvbek9 > :last-child, .framer-O0LAB .framer-6mjnwk > :last-child, .framer-O0LAB .framer-ment06 > :last-child, .framer-O0LAB .framer-9167yz > :last-child, .framer-O0LAB .framer-1mwit4o > :last-child, .framer-O0LAB .framer-1m6dsw8 > :last-child, .framer-O0LAB .framer-1l16i54 > :last-child, .framer-O0LAB .framer-ota80q > :last-child, .framer-O0LAB .framer-64oncn > :last-child, .framer-O0LAB .framer-ye9x3u > :last-child, .framer-O0LAB .framer-1rdq2s3 > :last-child, .framer-O0LAB .framer-1rjxmhs > :last-child, .framer-O0LAB .framer-yiec6g > :last-child, .framer-O0LAB .framer-luddlg > :last-child, .framer-O0LAB .framer-1fz135q > :last-child { margin-right: 0px; } .framer-O0LAB .framer-176lnsg > *, .framer-O0LAB .framer-1nvbek9 > *, .framer-O0LAB .framer-1rdq2s3 > *, .framer-O0LAB .framer-yiec6g > *, .framer-O0LAB .framer-1fz135q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-O0LAB .framer-1vk133u > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-O0LAB .framer-1oxbxpb > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-O0LAB .framer-mrdnp2 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-O0LAB .framer-lksngx > *, .framer-O0LAB .framer-14e34mi > *, .framer-O0LAB .framer-tap7yz > *, .framer-O0LAB .framer-t3ow1j > *, .framer-O0LAB .framer-33q1v2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-O0LAB .framer-1mpm8wi > *, .framer-O0LAB .framer-c6v6ig > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-O0LAB .framer-6mjnwk > *, .framer-O0LAB .framer-ment06 > * { margin: 0px; margin-left: calc(65px / 2); margin-right: calc(65px / 2); } .framer-O0LAB .framer-9167yz > *, .framer-O0LAB .framer-1mwit4o > *, .framer-O0LAB .framer-1m6dsw8 > *, .framer-O0LAB .framer-1l16i54 > *, .framer-O0LAB .framer-ota80q > *, .framer-O0LAB .framer-64oncn > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-O0LAB .framer-476iiy > *, .framer-O0LAB .framer-1grcgtg > * { margin: 0px; margin-bottom: calc(110px / 2); margin-top: calc(110px / 2); } .framer-O0LAB .framer-1lfymtz > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-O0LAB .framer-1fooiyg > *, .framer-O0LAB .framer-fuptb8 > *, .framer-O0LAB .framer-1gyemi4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-O0LAB .framer-zbdjrh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-O0LAB .framer-1vty21b > *, .framer-O0LAB .framer-13ribvn > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-O0LAB .framer-g6lg4n > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-O0LAB .framer-5okcfo > *, .framer-O0LAB .framer-1u371bu > *, .framer-O0LAB .framer-nluo9k > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-O0LAB .framer-ye9x3u > *, .framer-O0LAB .framer-1rjxmhs > *, .framer-O0LAB .framer-luddlg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\", \"@media (min-width: 1280px) { .framer-O0LAB .hidden-nnwn6u { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1279px) { .framer-O0LAB .hidden-1gkssqd { display: none !important; } .${metadata.bodyClassName}-framer-O0LAB { background: rgb(247, 247, 247); } .framer-O0LAB.framer-nnwn6u { width: 810px; }}`, `@media (max-width: 809px) { .framer-O0LAB .hidden-ujmrmd { display: none !important; } .${metadata.bodyClassName}-framer-O0LAB { background: rgb(247, 247, 247); } .framer-O0LAB.framer-nnwn6u { gap: 0px; padding: 0px 0px 0px 0px; width: 390px; } .framer-O0LAB .framer-1v19goj { height: 363px; order: 1; } .framer-O0LAB .framer-tl11xq-container { bottom: 0px; } .framer-O0LAB .framer-1mw6rhq { gap: 19px; left: 52%; top: 49%; transform: translate(-50%, -50%); width: 86%; } .framer-O0LAB .framer-8zwu9b, .framer-O0LAB .framer-14mkfzc, .framer-O0LAB .framer-146thl9, .framer-O0LAB .framer-123l25s, .framer-O0LAB .framer-1mpm8wi, .framer-O0LAB .framer-1e375xq, .framer-O0LAB .framer-1koi1ea, .framer-O0LAB .framer-1lfii6j { width: 100%; } .framer-O0LAB .framer-caapde { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-O0LAB .framer-10agg4s-container { height: 37px; } .framer-O0LAB .framer-1vk133u { gap: 31px; order: 2; width: 1280px; } .framer-O0LAB .framer-mrdnp2 { width: 357px; } .framer-O0LAB .framer-lksngx { gap: 26px; } .framer-O0LAB .framer-1hsum2t, .framer-O0LAB .framer-12b02ph { flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-O0LAB .framer-6mjnwk, .framer-O0LAB .framer-ment06, .framer-O0LAB .framer-9167yz { flex-direction: column; gap: 24px; } .framer-O0LAB .framer-1unottf-container, .framer-O0LAB .framer-1ewxaby-container, .framer-O0LAB .framer-v7kpy1-container, .framer-O0LAB .framer-1kr4m8x-container, .framer-O0LAB .framer-w66x65-container, .framer-O0LAB .framer-e64144-container, .framer-O0LAB .framer-1hdt9sw-container, .framer-O0LAB .framer-1sfbqh1-container, .framer-O0LAB .framer-12wtyjd-container, .framer-O0LAB .framer-1ympff7-container, .framer-O0LAB .framer-ri41yt-container, .framer-O0LAB .framer-1vn0qxs-container, .framer-O0LAB .framer-14mh8lq-container, .framer-O0LAB .framer-mkzfl6-container, .framer-O0LAB .framer-19vs2t5-container, .framer-O0LAB .framer-eb03i9-container, .framer-O0LAB .framer-1tto3d0-container, .framer-O0LAB .framer-i1hzb5-container, .framer-O0LAB .framer-1r88sh6-container, .framer-O0LAB .framer-d21rbp-container, .framer-O0LAB .framer-kjbahz-container { flex: none; width: 100%; } .framer-O0LAB .framer-476iiy { order: 3; } .framer-O0LAB .framer-1lfymtz, .framer-O0LAB .framer-1vty21b { padding: 0px 0px 0px 0px; width: 357px; } .framer-O0LAB .framer-1urs42f { flex-direction: column; gap: 15px; justify-content: flex-start; } .framer-O0LAB .framer-zbdjrh { gap: 10px; width: 100%; } .framer-O0LAB .framer-c6v6ig { gap: 30px; } .framer-O0LAB .framer-1mwit4o, .framer-O0LAB .framer-1m6dsw8, .framer-O0LAB .framer-1l16i54, .framer-O0LAB .framer-ota80q, .framer-O0LAB .framer-64oncn { flex-direction: column; } .framer-O0LAB .framer-a175du-container { align-self: unset; flex: none; height: 227px; width: 100%; } .framer-O0LAB .framer-1grcgtg { order: 4; width: 1280px; } .framer-O0LAB .framer-1s161wd { height: 52px; width: 100%; } .framer-O0LAB .framer-p664xj-container { left: unset; order: 0; position: relative; top: unset; } .framer-O0LAB .framer-1u2isyz-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-O0LAB.framer-nnwn6u, .framer-O0LAB .framer-1mw6rhq, .framer-O0LAB .framer-1vk133u, .framer-O0LAB .framer-lksngx, .framer-O0LAB .framer-1hsum2t, .framer-O0LAB .framer-6mjnwk, .framer-O0LAB .framer-ment06, .framer-O0LAB .framer-9167yz, .framer-O0LAB .framer-1urs42f, .framer-O0LAB .framer-zbdjrh, .framer-O0LAB .framer-c6v6ig, .framer-O0LAB .framer-1mwit4o, .framer-O0LAB .framer-1m6dsw8, .framer-O0LAB .framer-1l16i54, .framer-O0LAB .framer-ota80q, .framer-O0LAB .framer-64oncn, .framer-O0LAB .framer-12b02ph { gap: 0px; } .framer-O0LAB.framer-nnwn6u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-O0LAB.framer-nnwn6u > :first-child, .framer-O0LAB .framer-1mw6rhq > :first-child, .framer-O0LAB .framer-1vk133u > :first-child, .framer-O0LAB .framer-lksngx > :first-child, .framer-O0LAB .framer-1hsum2t > :first-child, .framer-O0LAB .framer-6mjnwk > :first-child, .framer-O0LAB .framer-ment06 > :first-child, .framer-O0LAB .framer-9167yz > :first-child, .framer-O0LAB .framer-1urs42f > :first-child, .framer-O0LAB .framer-zbdjrh > :first-child, .framer-O0LAB .framer-c6v6ig > :first-child, .framer-O0LAB .framer-1mwit4o > :first-child, .framer-O0LAB .framer-1m6dsw8 > :first-child, .framer-O0LAB .framer-1l16i54 > :first-child, .framer-O0LAB .framer-ota80q > :first-child, .framer-O0LAB .framer-64oncn > :first-child, .framer-O0LAB .framer-12b02ph > :first-child { margin-top: 0px; } .framer-O0LAB.framer-nnwn6u > :last-child, .framer-O0LAB .framer-1mw6rhq > :last-child, .framer-O0LAB .framer-1vk133u > :last-child, .framer-O0LAB .framer-lksngx > :last-child, .framer-O0LAB .framer-1hsum2t > :last-child, .framer-O0LAB .framer-6mjnwk > :last-child, .framer-O0LAB .framer-ment06 > :last-child, .framer-O0LAB .framer-9167yz > :last-child, .framer-O0LAB .framer-1urs42f > :last-child, .framer-O0LAB .framer-zbdjrh > :last-child, .framer-O0LAB .framer-c6v6ig > :last-child, .framer-O0LAB .framer-1mwit4o > :last-child, .framer-O0LAB .framer-1m6dsw8 > :last-child, .framer-O0LAB .framer-1l16i54 > :last-child, .framer-O0LAB .framer-ota80q > :last-child, .framer-O0LAB .framer-64oncn > :last-child, .framer-O0LAB .framer-12b02ph > :last-child { margin-bottom: 0px; } .framer-O0LAB .framer-1mw6rhq > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-O0LAB .framer-1vk133u > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-O0LAB .framer-lksngx > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-O0LAB .framer-1hsum2t > *, .framer-O0LAB .framer-zbdjrh > *, .framer-O0LAB .framer-12b02ph > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-O0LAB .framer-6mjnwk > *, .framer-O0LAB .framer-ment06 > *, .framer-O0LAB .framer-9167yz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-O0LAB .framer-1urs42f > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-O0LAB .framer-c6v6ig > *, .framer-O0LAB .framer-1mwit4o > *, .framer-O0LAB .framer-1m6dsw8 > *, .framer-O0LAB .framer-1l16i54 > *, .framer-O0LAB .framer-ota80q > *, .framer-O0LAB .framer-64oncn > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 5714\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 1280\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rHuGJXdzx\":{\"layout\":[\"fixed\",\"auto\"]},\"PCXH6NZqF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FrameroxUjT3pRU = withCSS(Component, css, \"framer-O0LAB\");\nexport default FrameroxUjT3pRU;\nFrameroxUjT3pRU.displayName = \"Platform\";\nFrameroxUjT3pRU.defaultProps = {\n  height: 5714,\n  width: 1280\n};\naddFonts(FrameroxUjT3pRU, [...VideoFonts, ...TitlePlatformFonts, ...CTAFonts, ...PlatformCardsFonts, ...UseCasesFonts, ...SlideshowFonts, ...MenuFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameroxUjT3pRU\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerImmutableVariables\": \"true\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rHuGJXdzx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PCXH6NZqF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerIntrinsicHeight\": \"5714\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1280\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "g", "u", "v", "x", "e", "r", "a", "b", "M", "w", "t", "re", "MotionConfigContext", "i", "se", "p", "j", "T", "n", "o", "l", "s", "f", "m", "d", "A", "I", "Y", "useLocaleInfo", "c", "y", "z", "R", "E", "L", "G", "B", "Q", "F", "_", "k", "J", "P", "useVariantState", "u", "g", "Z", "K", "pe", "S", "ae", "LayoutGroup", "motion", "cx", "Image2", "RichText", "withCSS", "iUJiykBbO_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hqh_0cChh", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear8omjax", "args", "onAppear3or9pb", "onAppearsdds4x", "onAppearc0mck0", "onAppear3ezt9y", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "RichText", "x", "css", "FramerRSromA5iN", "withCSS", "RSromA5iN_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image2", "title2", "title3", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ETKhZrXUz", "gT1c3FPaN", "cBdrvIjm9", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "Image2", "css", "FramerDxc1eoI6G", "withCSS", "Dxc1eoI6G_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "UseCasesMenuFonts", "getFonts", "nH4feE3kU_default", "UseCasesDescriptionFonts", "Dxc1eoI6G_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear18f9d8s", "args", "onAppear1v4jetd", "onAppear1qk0080", "onAppearbm5mw7", "onAppear124bfsm", "onAppear1v2fjpc", "onAppeariv66c8", "onAppear16t8itw", "onMouseEnter1rl6t6o", "onMouseEnterijghfd", "onMouseEnterqhdg7v", "onMouseEnter168oo2f", "onMouseEnter1wt4z1r", "onMouseEnter1xizou5", "onMouseEnter1muipvi", "onMouseEnterccdpwx", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "nH4feE3kU_default", "Dxc1eoI6G_default", "css", "FramerwMvAVn_SW", "withCSS", "wMvAVn_SW_default", "addPropertyControls", "ControlType", "addFonts", "UseCasesMenuFonts", "UseCasesDescriptionFonts", "VideoFonts", "getFonts", "Video", "TitlePlatformFonts", "RSromA5iN_default", "CTAFonts", "qFpv29gXf_default", "PlatformCardsFonts", "iUJiykBbO_default", "UseCasesFonts", "wMvAVn_SW_default", "SlideshowFonts", "Slideshow", "MenuFonts", "Iu2Adu4Sz_default", "FooterFonts", "BciWFMwY3_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "router", "useRouter", "useRouteElementId", "ref2", "isDisplayed", "id1", "ref3", "id2", "ref4", "id3", "ref5", "id4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Image2", "Container", "Video", "PropertyOverrides", "x", "RichText", "RSromA5iN_default", "Link", "qFpv29gXf_default", "resolveLink", "SVG", "iUJiykBbO_default", "wMvAVn_SW_default", "Slideshow", "Iu2Adu4Sz_default", "BciWFMwY3_default", "css", "FrameroxUjT3pRU", "withCSS", "oxUjT3pRU_default", "addFonts", "VideoFonts", "TitlePlatformFonts", "CTAFonts", "PlatformCardsFonts", "UseCasesFonts", "SlideshowFonts", "MenuFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
