{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/QDDewIk3TnamRe8FjTFK/yEggZQkJkLtkOO2QH1sK/yXol5yR02.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 (b084a7c)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppear, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, useLocaleInfo, 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 Footer from \"https://framerusercontent.com/modules/tfh6J5fXpxXMgnoQJXcb/VqI0ygiLPI7UbLWMM74T/NNpgnq2bN.js\";\nimport Button from \"https://framerusercontent.com/modules/mlGwhPFtpJeV5WOOXU2w/kmEFaHx36vcmzM8v1T3u/P8dj6_5tK.js\";\nimport NavigationBar from \"https://framerusercontent.com/modules/tsddWi7Jykx94pHbzIWB/jQeab38zVhc0IIkCP4ig/uGGJCoIU8.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/aB28gYCCAPc32BuQH7nH/m05Dm5oaBcee6oqIaRMd/PJ34MGaut.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/S3ek11oihsCRDDPTKw6l/sbl6GHsBvbwMn7LKmbPN/stylesPresetHeading1.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/gdBA29DpA6nsXZpaZ0Fv/h5w1R6956Jg8A4gwrja2/stylesPresetHeading2.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/8o21dG5cF9rmkrN1XNsG/glte0YiZGs7FQ8Zw3w5T/stylesPresetParagraph.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/XO39r8VrMGg7hPeEyfsF/op8sLKtjli5xWhWzLqxk/yXol5yR02.js\";\nconst NavigationBarFonts = getFonts(NavigationBar);\nconst VideoFonts = getFonts(Video);\nconst ButtonFonts = getFonts(Button);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"xieCDmlUX\", \"HT9ZWLc5g\", \"vE5baE5xf\"];\nconst breakpoints = {\n  HT9ZWLc5g: \"(min-width: 810px) and (max-width: 1199px)\",\n  vE5baE5xf: \"(max-width: 809px)\",\n  xieCDmlUX: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  HT9ZWLc5g: \"framer-v-1w7hm3c\",\n  vE5baE5xf: \"framer-v-pckgtm\",\n  xieCDmlUX: \"framer-v-yq3fgv\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"xieCDmlUX\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst transition1 = {\n  damping: 60,\n  delay: 0,\n  mass: 1,\n  stiffness: 500,\n  type: \"spring\"\n};\nconst animation = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation1 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 40\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"xieCDmlUX\",\n  Phone: \"vE5baE5xf\",\n  Tablet: \"HT9ZWLc5g\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"xieCDmlUX\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const isDisplayed = () => {\n    if (baseVariant === \"vE5baE5xf\") return true;\n    return !isBrowser();\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"vE5baE5xf\") return !isBrowser();\n    return true;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"xieCDmlUX\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-zxnAG\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-yq3fgv\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-9x8psy-container\",\n            layoutScroll: true,\n            transformTemplate: transformTemplate,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                vE5baE5xf: {\n                  variant: \"R7qPWHgnI\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(NavigationBar, {\n                height: \"100%\",\n                id: \"Sanq41K_v\",\n                layoutId: \"Sanq41K_v\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"iMkm2762V\",\n                width: \"100%\"\n              })\n            })\n          }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1rmshdu-container hidden-yq3fgv hidden-1w7hm3c\",\n            children: /*#__PURE__*/_jsx(Video, {\n              backgroundColor: \"rgba(0, 0, 0, 0)\",\n              borderRadius: 0,\n              bottomLeftRadius: 0,\n              bottomRightRadius: 0,\n              controls: true,\n              height: \"100%\",\n              id: \"ql9h2gBhu\",\n              isMixedBorderRadius: false,\n              layoutId: \"ql9h2gBhu\",\n              loop: false,\n              muted: false,\n              objectFit: \"scale-down\",\n              playing: true,\n              posterEnabled: false,\n              srcFile: new URL(\"https://framerusercontent.com/modules/assets/8a6AvTak8lcidjk3h3DfZqtc30~oz6xkiERCmmxX4DmJ3NXuL8gTgZVo3nRoFdbgKybC7s.mp4\").href,\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: 50,\n              width: \"100%\"\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1pc4rvs\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                HT9ZWLc5g: {\n                  \"data-framer-appear-id\": \"hy1ou3\",\n                  animate: optimizeAppear(\"animate\", \"hy1ou3\", animation, \"1w7hm3c\"),\n                  initial: optimizeAppear(\"initial\", \"hy1ou3\", animation1, \"1w7hm3c\")\n                },\n                vE5baE5xf: {\n                  \"data-framer-appear-id\": \"7ile1s\",\n                  animate: optimizeAppear(\"animate\", \"7ile1s\", animation, \"pckgtm\"),\n                  children: /*#__PURE__*/_jsxs(React.Fragment, {\n                    children: [/*#__PURE__*/_jsx(\"h1\", {\n                      className: \"framer-styles-preset-o3e5h0\",\n                      \"data-styles-preset\": \"stylesPresetHeading1\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: \"How it Works\"\n                    }), /*#__PURE__*/_jsx(\"h3\", {\n                      className: \"framer-styles-preset-1jkzk3b\",\n                      \"data-styles-preset\": \"PJ34MGaut\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: \"The simple way to reflect on your day and stay motivated.\"\n                    })]\n                  }),\n                  initial: optimizeAppear(\"initial\", \"7ile1s\", animation1, \"pckgtm\")\n                }\n              },\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                animate: optimizeAppear(\"animate\", \"sh63ul\", animation, \"yq3fgv\"),\n                children: /*#__PURE__*/_jsxs(React.Fragment, {\n                  children: [/*#__PURE__*/_jsx(\"h1\", {\n                    className: \"framer-styles-preset-o3e5h0\",\n                    \"data-styles-preset\": \"stylesPresetHeading1\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(0, 0, 0)\"\n                    },\n                    children: \"How it Works\"\n                  }), /*#__PURE__*/_jsx(\"h3\", {\n                    className: \"framer-styles-preset-1jkzk3b\",\n                    \"data-styles-preset\": \"PJ34MGaut\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"The simple way to reflect on your day and stay motivated.\"\n                  })]\n                }),\n                className: \"framer-sh63ul\",\n                \"data-framer-appear-id\": \"sh63ul\",\n                initial: optimizeAppear(\"initial\", \"sh63ul\", animation1, \"yq3fgv\"),\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            })\n          }), isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n            className: \"framer-hft6cs-container hidden-pckgtm\",\n            children: /*#__PURE__*/_jsx(Video, {\n              backgroundColor: \"rgba(0, 0, 0, 0)\",\n              borderRadius: 0,\n              bottomLeftRadius: 0,\n              bottomRightRadius: 0,\n              controls: true,\n              height: \"100%\",\n              id: \"EROmzxgYs\",\n              isMixedBorderRadius: false,\n              layoutId: \"EROmzxgYs\",\n              loop: false,\n              muted: false,\n              objectFit: \"scale-down\",\n              playing: false,\n              posterEnabled: false,\n              srcFile: new URL(\"https://framerusercontent.com/modules/assets/8a6AvTak8lcidjk3h3DfZqtc30~oz6xkiERCmmxX4DmJ3NXuL8gTgZVo3nRoFdbgKybC7s.mp4\").href,\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: 50,\n              width: \"100%\"\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-oz69gc\",\n            \"data-framer-name\": \"Features Large\",\n            name: \"Features Large\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-jljn7l\",\n              \"data-framer-name\": \"Features\",\n              name: \"Features\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-ncvhpk\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 2e3,\n                        intrinsicWidth: 3e3,\n                        loading: \"lazy\",\n                        pixelHeight: 2e3,\n                        pixelWidth: 3e3,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg\").href} 3000w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 2e3,\n                        intrinsicWidth: 3e3,\n                        pixelHeight: 2e3,\n                        pixelWidth: 3e3,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg\").href} 3000w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 2e3,\n                      intrinsicWidth: 3e3,\n                      loading: \"lazy\",\n                      pixelHeight: 2e3,\n                      pixelWidth: 3e3,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/RbTb1fjEAWUHMfkBWJgbwOAl1k.jpg\").href} 3000w`\n                    },\n                    className: \"framer-uzecum\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1pc168b\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Increase Productivity\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Increase Productivity\"\n                        })\n                      }),\n                      className: \"framer-qbbg5r\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"IDoneThis is a user-friendly tool that enables you or your team to document daily achievements and goals, fostering a sense of accomplishment and accountability by sending daily email reminders of completed tasks and plans for the next day.\"\n                      })\n                    }),\n                    className: \"framer-krnp5s\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1x1mhd2\"\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-jvu0d9\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-ofo80m\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.8px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Improve Engagement\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Improve Engagement\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Improve Engagement\"\n                        })\n                      }),\n                      className: \"framer-wdly9y\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"IDoneThis enhances engagement and perspective by enabling you and your team to like and comment on done reports, providing a manager with valuable insights to gauge the team's sentiment.\"\n                      })\n                    }),\n                    className: \"framer-1wgzi23\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-z93olt\"\n                  })]\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 3648,\n                        intrinsicWidth: 5472,\n                        loading: \"lazy\",\n                        pixelHeight: 3648,\n                        pixelWidth: 5472,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg\").href} 5472w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 3648,\n                        intrinsicWidth: 5472,\n                        loading: \"lazy\",\n                        pixelHeight: 3648,\n                        pixelWidth: 5472,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg\").href} 5472w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 3648,\n                      intrinsicWidth: 5472,\n                      loading: \"lazy\",\n                      pixelHeight: 3648,\n                      pixelWidth: 5472,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/UIBGo8jO7eSl6MCqoWKiYDx5rtI.jpg\").href} 5472w`\n                    },\n                    className: \"framer-1qv70rm\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1hgu864\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 4e3,\n                        intrinsicWidth: 6e3,\n                        loading: \"lazy\",\n                        pixelHeight: 4e3,\n                        pixelWidth: 6e3,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg\").href} 6000w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 4e3,\n                        intrinsicWidth: 6e3,\n                        loading: \"lazy\",\n                        pixelHeight: 4e3,\n                        pixelWidth: 6e3,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg\").href} 6000w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 4e3,\n                      intrinsicWidth: 6e3,\n                      loading: \"lazy\",\n                      pixelHeight: 4e3,\n                      pixelWidth: 6e3,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/LnQFUDFbgBEaopBZLleHMv3LY4.jpg\").href} 6000w`\n                    },\n                    className: \"framer-1x04ft8\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1sghotb\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Decrease meetings\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Decrease meetings\"\n                        })\n                      }),\n                      className: \"framer-qsc9za\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"IDoneThis minimizes meeting time by enabling team members to record progress and goals, allowing others to catch up on everyone's status at their convenience, thereby avoiding unproductive meetings or conference calls where attention is often lacking.\"\n                      })\n                    }),\n                    className: \"framer-3dkke7\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-13op6zx\"\n                  })]\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-u8pxj7\",\n            \"data-framer-name\": \"Features Large\",\n            name: \"Features Large\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1c7zmho\",\n              \"data-framer-name\": \"Features\",\n              name: \"Features\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-10ksqfu\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 900,\n                        intrinsicWidth: 1440,\n                        loading: \"lazy\",\n                        pixelHeight: 900,\n                        pixelWidth: 1440,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png\").href} 1440w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 900,\n                        intrinsicWidth: 1440,\n                        loading: \"lazy\",\n                        pixelHeight: 900,\n                        pixelWidth: 1440,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png\").href} 1440w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 900,\n                      intrinsicWidth: 1440,\n                      loading: \"lazy\",\n                      pixelHeight: 900,\n                      pixelWidth: 1440,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Snv1B4tqJFzopb5OwcMbDS68.png\").href} 1440w`\n                    },\n                    className: \"framer-1d4fi0\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1m9bwhx\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Journal Log\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Journal Log\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Journal Log\"\n                        })\n                      }),\n                      className: \"framer-d6tzp2\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Log and measure your tasks on a daily basis to achieve your goals\"\n                      })\n                    }),\n                    className: \"framer-122ceoa\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1rq1836\"\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-f61krd\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1q8t1so\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.8px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Daily Reminders\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Daily Reminders\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Daily Reminders\"\n                        })\n                      }),\n                      className: \"framer-r4cq9y\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Never forget to log your accomplishments with automatic email prompts\"\n                      })\n                    }),\n                    className: \"framer-10lxuhn\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-tqz5ww\"\n                  })]\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 749,\n                        intrinsicWidth: 1440,\n                        loading: \"lazy\",\n                        pixelHeight: 749,\n                        pixelWidth: 1440,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png\").href} 1440w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 749,\n                        intrinsicWidth: 1440,\n                        loading: \"lazy\",\n                        pixelHeight: 749,\n                        pixelWidth: 1440,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png\").href} 1440w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 749,\n                      intrinsicWidth: 1440,\n                      loading: \"lazy\",\n                      pixelHeight: 749,\n                      pixelWidth: 1440,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kpGKLWSomZRCLHhvh6fGoAGA89w.png\").href} 1440w`\n                    },\n                    className: \"framer-1d8fmej\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-bvpigu\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 747,\n                        intrinsicWidth: 1368,\n                        loading: \"lazy\",\n                        pixelHeight: 747,\n                        pixelWidth: 1368,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png\").href} 1368w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 747,\n                        intrinsicWidth: 1368,\n                        loading: \"lazy\",\n                        pixelHeight: 747,\n                        pixelWidth: 1368,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png\").href} 1368w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 747,\n                      intrinsicWidth: 1368,\n                      loading: \"lazy\",\n                      pixelHeight: 747,\n                      pixelWidth: 1368,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/jMAQLBEKpepMIBDYQ4qb2eYXk6w.png\").href} 1368w`\n                    },\n                    className: \"framer-1sn769y\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-jt7wxn\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Progress Tracking\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Progress Tracking\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Progress Tracking\"\n                        })\n                      }),\n                      className: \"framer-1id6x6h\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Look back on your achievements and see how far you've come\"\n                      })\n                    }),\n                    className: \"framer-qk3d9x\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1vt7voz\"\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-nx033m\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-xl5jp0\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.8px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Searchable History\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Searchable History\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Searchable History\"\n                        })\n                      }),\n                      className: \"framer-1fdkepz\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Easily ask in natural language or use pre-defined template questions to better understand your productivity\"\n                      })\n                    }),\n                    className: \"framer-16s09ce\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-11binlz\"\n                  })]\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 453,\n                        intrinsicWidth: 520,\n                        loading: \"lazy\",\n                        pixelHeight: 453,\n                        pixelWidth: 520,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png\").href} 520w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 453,\n                        intrinsicWidth: 520,\n                        loading: \"lazy\",\n                        pixelHeight: 453,\n                        pixelWidth: 520,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png\").href} 520w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 453,\n                      intrinsicWidth: 520,\n                      loading: \"lazy\",\n                      pixelHeight: 453,\n                      pixelWidth: 520,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Cx24bsMbL227cqCI8L2IhKgIMc.png\").href} 520w`\n                    },\n                    className: \"framer-cjiu37\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-mmqamd\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 900,\n                        intrinsicWidth: 1440,\n                        loading: \"lazy\",\n                        pixelHeight: 900,\n                        pixelWidth: 1440,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png\").href} 1440w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 900,\n                        intrinsicWidth: 1440,\n                        loading: \"lazy\",\n                        pixelHeight: 900,\n                        pixelWidth: 1440,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png\").href} 1440w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 900,\n                      intrinsicWidth: 1440,\n                      loading: \"lazy\",\n                      pixelHeight: 900,\n                      pixelWidth: 1440,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/LSKKdflYwUHQKFK6aYNy3mIUR4o.png\").href} 1440w`\n                    },\n                    className: \"framer-1lyv05m\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-h9kroh\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Calendar View\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"Calendar View\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"Calendar View\"\n                        })\n                      }),\n                      className: \"framer-10anxxh\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"At-a-glance view across any timeframe to track how much you got done\"\n                      })\n                    }),\n                    className: \"framer-11mw4ld\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-ictd63\"\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-atbb3k\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-11pb1g6\",\n                  \"data-framer-name\": \"Content\",\n                  name: \"Content\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      HT9ZWLc5g: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"40px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.8px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"AI Reports\"\n                          })\n                        })\n                      },\n                      vE5baE5xf: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            style: {\n                              \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                              \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                              \"--framer-font-size\": \"30px\",\n                              \"--framer-font-weight\": \"700\",\n                              \"--framer-letter-spacing\": \"-1.2px\",\n                              \"--framer-text-alignment\": \"left\",\n                              \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                            },\n                            children: \"AI Reports\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7SW50ZXItNzAw\",\n                            \"--framer-font-family\": '\"Inter\", \"Inter Placeholder\", sans-serif',\n                            \"--framer-font-size\": \"50px\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-letter-spacing\": \"-2px\",\n                            \"--framer-text-alignment\": \"left\",\n                            \"--framer-text-color\": \"rgb(51, 51, 51)\"\n                          },\n                          children: \"AI Reports\"\n                        })\n                      }),\n                      className: \"framer-i9mk3r\",\n                      fonts: [\"GF;Inter-700\"],\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                        style: {\n                          \"--font-selector\": \"R0Y7SW50ZXItNTAw\",\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(136, 136, 136)\"\n                        },\n                        children: \"Summarize historical tasks to find insights and recommendations\"\n                      })\n                    }),\n                    className: \"framer-bq92oo\",\n                    fonts: [\"GF;Inter-500\"],\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-6jjovk\"\n                  })]\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 1260,\n                        intrinsicWidth: 1360,\n                        loading: \"lazy\",\n                        pixelHeight: 1260,\n                        pixelWidth: 1360,\n                        sizes: \"min(max(100vw - 80px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png\").href} 1360w`\n                      }\n                    },\n                    vE5baE5xf: {\n                      background: {\n                        alt: \"\",\n                        fit: \"fit\",\n                        intrinsicHeight: 1260,\n                        intrinsicWidth: 1360,\n                        loading: \"lazy\",\n                        pixelHeight: 1260,\n                        pixelWidth: 1360,\n                        sizes: \"min(max(100vw - 40px, 0px), 1000px)\",\n                        src: new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png\").href} 1360w`\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fit\",\n                      intrinsicHeight: 1260,\n                      intrinsicWidth: 1360,\n                      loading: \"lazy\",\n                      pixelHeight: 1260,\n                      pixelWidth: 1360,\n                      sizes: \"min(max(100vw, 0px), 1000px)\",\n                      src: new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/ilJTBSO5GJ261To62VPf84VOyQ.png\").href} 1360w`\n                    },\n                    className: \"framer-lc8bsh\",\n                    \"data-framer-name\": \"Image\",\n                    name: \"Image\"\n                  })\n                })]\n              })]\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1plpjm9\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-dqcto5\",\n              \"data-framer-name\": \"Banner\",\n              name: \"Banner\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-857obt\",\n                children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1m9bzi2\",\n                          \"data-styles-preset\": \"stylesPresetHeading2\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Start My 14-day Free Trial\"\n                        })\n                      })\n                    },\n                    vE5baE5xf: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1m9bzi2\",\n                          \"data-styles-preset\": \"stylesPresetHeading2\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Start My 14-day Free Trial\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-1m9bzi2\",\n                        \"data-styles-preset\": \"stylesPresetHeading2\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Start My 14-day Free Trial\"\n                      })\n                    }),\n                    className: \"framer-9zmd2u\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    HT9ZWLc5g: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-16bzrdu\",\n                          \"data-styles-preset\": \"stylesPresetParagraph\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Track Your Progress, Celebrate Your Wins\"\n                        })\n                      })\n                    },\n                    vE5baE5xf: {\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-16bzrdu\",\n                          \"data-styles-preset\": \"stylesPresetParagraph\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                          },\n                          children: \"Track Your Progress, Celebrate Your Wins\"\n                        })\n                      })\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-16bzrdu\",\n                        \"data-styles-preset\": \"stylesPresetParagraph\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"rgb(255, 255, 255)\"\n                        },\n                        children: \"Track Your Progress, Celebrate Your Wins\"\n                      })\n                    }),\n                    className: \"framer-12k9pfu\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1l7yfv4-container\",\n                children: /*#__PURE__*/_jsx(Button, {\n                  background: \"rgb(0, 0, 0)\",\n                  height: \"100%\",\n                  id: \"Zfs51Rmy8\",\n                  layoutId: \"Zfs51Rmy8\",\n                  title: \"Get started\",\n                  variant: \"WDDGcxJxU\",\n                  width: \"100%\"\n                })\n              })]\n            })\n          }), isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n            className: \"framer-17ig6kd-container hidden-pckgtm\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                HT9ZWLc5g: {\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"vUrCHDcI1\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Footer, {\n                height: \"100%\",\n                id: \"yCuzv27Sf\",\n                layoutId: \"yCuzv27Sf\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"H1mpamEnS\",\n                width: \"100%\"\n              })\n            })\n          }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n            className: \"framer-19kz52a-container hidden-yq3fgv hidden-1w7hm3c\",\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"wXg55WdLT\",\n              layoutId: \"wXg55WdLT\",\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              variant: \"vUrCHDcI1\",\n              width: \"100%\"\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-zxnAG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: white; }`, \".framer-zxnAG .framer-z7e6ps { display: block; }\", \".framer-zxnAG .framer-yq3fgv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 200px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-zxnAG .framer-9x8psy-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\", \".framer-zxnAG .framer-1rmshdu-container { flex: none; height: 214px; position: relative; width: 385px; }\", \".framer-zxnAG .framer-1pc4rvs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 136px; justify-content: center; max-width: 500px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-zxnAG .framer-sh63ul { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-zxnAG .framer-hft6cs-container { flex: none; height: 680px; position: relative; width: 1202px; }\", \".framer-zxnAG .framer-oz69gc, .framer-zxnAG .framer-u8pxj7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\", \".framer-zxnAG .framer-jljn7l, .framer-zxnAG .framer-1c7zmho { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-zxnAG .framer-ncvhpk, .framer-zxnAG .framer-1hgu864, .framer-zxnAG .framer-10ksqfu, .framer-zxnAG .framer-bvpigu, .framer-zxnAG .framer-mmqamd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-zxnAG .framer-uzecum, .framer-zxnAG .framer-1qv70rm, .framer-zxnAG .framer-1x04ft8, .framer-zxnAG .framer-1d8fmej, .framer-zxnAG .framer-lc8bsh { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-zxnAG .framer-1pc168b, .framer-zxnAG .framer-ofo80m, .framer-zxnAG .framer-1sghotb, .framer-zxnAG .framer-1m9bwhx, .framer-zxnAG .framer-1q8t1so, .framer-zxnAG .framer-jt7wxn, .framer-zxnAG .framer-xl5jp0, .framer-zxnAG .framer-h9kroh, .framer-zxnAG .framer-11pb1g6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-zxnAG .framer-qbbg5r, .framer-zxnAG .framer-wdly9y, .framer-zxnAG .framer-qsc9za, .framer-zxnAG .framer-d6tzp2, .framer-zxnAG .framer-r4cq9y, .framer-zxnAG .framer-1id6x6h, .framer-zxnAG .framer-1fdkepz, .framer-zxnAG .framer-10anxxh, .framer-zxnAG .framer-i9mk3r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\", \".framer-zxnAG .framer-krnp5s, .framer-zxnAG .framer-1wgzi23, .framer-zxnAG .framer-3dkke7, .framer-zxnAG .framer-122ceoa, .framer-zxnAG .framer-10lxuhn, .framer-zxnAG .framer-qk3d9x, .framer-zxnAG .framer-16s09ce, .framer-zxnAG .framer-11mw4ld, .framer-zxnAG .framer-bq92oo { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\", \".framer-zxnAG .framer-1x1mhd2, .framer-zxnAG .framer-13op6zx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 109px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-zxnAG .framer-jvu0d9, .framer-zxnAG .framer-f61krd, .framer-zxnAG .framer-nx033m, .framer-zxnAG .framer-atbb3k { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-zxnAG .framer-z93olt, .framer-zxnAG .framer-1rq1836, .framer-zxnAG .framer-tqz5ww, .framer-zxnAG .framer-1vt7voz, .framer-zxnAG .framer-11binlz, .framer-zxnAG .framer-ictd63, .framer-zxnAG .framer-6jjovk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 107px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-zxnAG .framer-1d4fi0, .framer-zxnAG .framer-1sn769y, .framer-zxnAG .framer-cjiu37, .framer-zxnAG .framer-1lyv05m { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-zxnAG .framer-1plpjm9 { 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 120px 0px 120px; position: relative; width: 100%; }\", \".framer-zxnAG .framer-dqcto5 { align-content: center; align-items: center; background-color: #dc3545; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 80px 80px 80px 80px; position: relative; width: 1px; }\", \".framer-zxnAG .framer-857obt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-zxnAG .framer-9zmd2u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 700px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-zxnAG .framer-12k9pfu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 700px; opacity: 0.9; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-zxnAG .framer-1l7yfv4-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-zxnAG .framer-17ig6kd-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-zxnAG .framer-19kz52a-container { flex: none; height: 1178px; position: relative; width: 390px; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zxnAG .framer-yq3fgv, .framer-zxnAG .framer-1pc4rvs, .framer-zxnAG .framer-oz69gc, .framer-zxnAG .framer-jljn7l, .framer-zxnAG .framer-ncvhpk, .framer-zxnAG .framer-uzecum, .framer-zxnAG .framer-1pc168b, .framer-zxnAG .framer-1x1mhd2, .framer-zxnAG .framer-jvu0d9, .framer-zxnAG .framer-ofo80m, .framer-zxnAG .framer-z93olt, .framer-zxnAG .framer-1qv70rm, .framer-zxnAG .framer-1hgu864, .framer-zxnAG .framer-1x04ft8, .framer-zxnAG .framer-1sghotb, .framer-zxnAG .framer-13op6zx, .framer-zxnAG .framer-u8pxj7, .framer-zxnAG .framer-1c7zmho, .framer-zxnAG .framer-10ksqfu, .framer-zxnAG .framer-1d4fi0, .framer-zxnAG .framer-1m9bwhx, .framer-zxnAG .framer-1rq1836, .framer-zxnAG .framer-f61krd, .framer-zxnAG .framer-1q8t1so, .framer-zxnAG .framer-tqz5ww, .framer-zxnAG .framer-1d8fmej, .framer-zxnAG .framer-bvpigu, .framer-zxnAG .framer-1sn769y, .framer-zxnAG .framer-jt7wxn, .framer-zxnAG .framer-1vt7voz, .framer-zxnAG .framer-nx033m, .framer-zxnAG .framer-xl5jp0, .framer-zxnAG .framer-11binlz, .framer-zxnAG .framer-cjiu37, .framer-zxnAG .framer-mmqamd, .framer-zxnAG .framer-1lyv05m, .framer-zxnAG .framer-h9kroh, .framer-zxnAG .framer-ictd63, .framer-zxnAG .framer-atbb3k, .framer-zxnAG .framer-11pb1g6, .framer-zxnAG .framer-6jjovk, .framer-zxnAG .framer-lc8bsh, .framer-zxnAG .framer-1plpjm9, .framer-zxnAG .framer-dqcto5, .framer-zxnAG .framer-857obt { gap: 0px; } .framer-zxnAG .framer-yq3fgv > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-zxnAG .framer-yq3fgv > :first-child, .framer-zxnAG .framer-jljn7l > :first-child, .framer-zxnAG .framer-uzecum > :first-child, .framer-zxnAG .framer-1pc168b > :first-child, .framer-zxnAG .framer-ofo80m > :first-child, .framer-zxnAG .framer-1qv70rm > :first-child, .framer-zxnAG .framer-1x04ft8 > :first-child, .framer-zxnAG .framer-1sghotb > :first-child, .framer-zxnAG .framer-1c7zmho > :first-child, .framer-zxnAG .framer-1d4fi0 > :first-child, .framer-zxnAG .framer-1m9bwhx > :first-child, .framer-zxnAG .framer-1q8t1so > :first-child, .framer-zxnAG .framer-1d8fmej > :first-child, .framer-zxnAG .framer-1sn769y > :first-child, .framer-zxnAG .framer-jt7wxn > :first-child, .framer-zxnAG .framer-xl5jp0 > :first-child, .framer-zxnAG .framer-cjiu37 > :first-child, .framer-zxnAG .framer-1lyv05m > :first-child, .framer-zxnAG .framer-h9kroh > :first-child, .framer-zxnAG .framer-11pb1g6 > :first-child, .framer-zxnAG .framer-lc8bsh > :first-child, .framer-zxnAG .framer-857obt > :first-child { margin-top: 0px; } .framer-zxnAG .framer-yq3fgv > :last-child, .framer-zxnAG .framer-jljn7l > :last-child, .framer-zxnAG .framer-uzecum > :last-child, .framer-zxnAG .framer-1pc168b > :last-child, .framer-zxnAG .framer-ofo80m > :last-child, .framer-zxnAG .framer-1qv70rm > :last-child, .framer-zxnAG .framer-1x04ft8 > :last-child, .framer-zxnAG .framer-1sghotb > :last-child, .framer-zxnAG .framer-1c7zmho > :last-child, .framer-zxnAG .framer-1d4fi0 > :last-child, .framer-zxnAG .framer-1m9bwhx > :last-child, .framer-zxnAG .framer-1q8t1so > :last-child, .framer-zxnAG .framer-1d8fmej > :last-child, .framer-zxnAG .framer-1sn769y > :last-child, .framer-zxnAG .framer-jt7wxn > :last-child, .framer-zxnAG .framer-xl5jp0 > :last-child, .framer-zxnAG .framer-cjiu37 > :last-child, .framer-zxnAG .framer-1lyv05m > :last-child, .framer-zxnAG .framer-h9kroh > :last-child, .framer-zxnAG .framer-11pb1g6 > :last-child, .framer-zxnAG .framer-lc8bsh > :last-child, .framer-zxnAG .framer-857obt > :last-child { margin-bottom: 0px; } .framer-zxnAG .framer-1pc4rvs > *, .framer-zxnAG .framer-oz69gc > *, .framer-zxnAG .framer-u8pxj7 > *, .framer-zxnAG .framer-1plpjm9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zxnAG .framer-1pc4rvs > :first-child, .framer-zxnAG .framer-oz69gc > :first-child, .framer-zxnAG .framer-ncvhpk > :first-child, .framer-zxnAG .framer-1x1mhd2 > :first-child, .framer-zxnAG .framer-jvu0d9 > :first-child, .framer-zxnAG .framer-z93olt > :first-child, .framer-zxnAG .framer-1hgu864 > :first-child, .framer-zxnAG .framer-13op6zx > :first-child, .framer-zxnAG .framer-u8pxj7 > :first-child, .framer-zxnAG .framer-10ksqfu > :first-child, .framer-zxnAG .framer-1rq1836 > :first-child, .framer-zxnAG .framer-f61krd > :first-child, .framer-zxnAG .framer-tqz5ww > :first-child, .framer-zxnAG .framer-bvpigu > :first-child, .framer-zxnAG .framer-1vt7voz > :first-child, .framer-zxnAG .framer-nx033m > :first-child, .framer-zxnAG .framer-11binlz > :first-child, .framer-zxnAG .framer-mmqamd > :first-child, .framer-zxnAG .framer-ictd63 > :first-child, .framer-zxnAG .framer-atbb3k > :first-child, .framer-zxnAG .framer-6jjovk > :first-child, .framer-zxnAG .framer-1plpjm9 > :first-child, .framer-zxnAG .framer-dqcto5 > :first-child { margin-left: 0px; } .framer-zxnAG .framer-1pc4rvs > :last-child, .framer-zxnAG .framer-oz69gc > :last-child, .framer-zxnAG .framer-ncvhpk > :last-child, .framer-zxnAG .framer-1x1mhd2 > :last-child, .framer-zxnAG .framer-jvu0d9 > :last-child, .framer-zxnAG .framer-z93olt > :last-child, .framer-zxnAG .framer-1hgu864 > :last-child, .framer-zxnAG .framer-13op6zx > :last-child, .framer-zxnAG .framer-u8pxj7 > :last-child, .framer-zxnAG .framer-10ksqfu > :last-child, .framer-zxnAG .framer-1rq1836 > :last-child, .framer-zxnAG .framer-f61krd > :last-child, .framer-zxnAG .framer-tqz5ww > :last-child, .framer-zxnAG .framer-bvpigu > :last-child, .framer-zxnAG .framer-1vt7voz > :last-child, .framer-zxnAG .framer-nx033m > :last-child, .framer-zxnAG .framer-11binlz > :last-child, .framer-zxnAG .framer-mmqamd > :last-child, .framer-zxnAG .framer-ictd63 > :last-child, .framer-zxnAG .framer-atbb3k > :last-child, .framer-zxnAG .framer-6jjovk > :last-child, .framer-zxnAG .framer-1plpjm9 > :last-child, .framer-zxnAG .framer-dqcto5 > :last-child { margin-right: 0px; } .framer-zxnAG .framer-jljn7l > *, .framer-zxnAG .framer-1c7zmho > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-zxnAG .framer-ncvhpk > *, .framer-zxnAG .framer-jvu0d9 > *, .framer-zxnAG .framer-1hgu864 > *, .framer-zxnAG .framer-10ksqfu > *, .framer-zxnAG .framer-f61krd > *, .framer-zxnAG .framer-bvpigu > *, .framer-zxnAG .framer-nx033m > *, .framer-zxnAG .framer-mmqamd > *, .framer-zxnAG .framer-atbb3k > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-zxnAG .framer-uzecum > *, .framer-zxnAG .framer-1pc168b > *, .framer-zxnAG .framer-ofo80m > *, .framer-zxnAG .framer-1qv70rm > *, .framer-zxnAG .framer-1x04ft8 > *, .framer-zxnAG .framer-1sghotb > *, .framer-zxnAG .framer-1d4fi0 > *, .framer-zxnAG .framer-1m9bwhx > *, .framer-zxnAG .framer-1q8t1so > *, .framer-zxnAG .framer-1d8fmej > *, .framer-zxnAG .framer-1sn769y > *, .framer-zxnAG .framer-jt7wxn > *, .framer-zxnAG .framer-xl5jp0 > *, .framer-zxnAG .framer-cjiu37 > *, .framer-zxnAG .framer-1lyv05m > *, .framer-zxnAG .framer-h9kroh > *, .framer-zxnAG .framer-11pb1g6 > *, .framer-zxnAG .framer-lc8bsh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-zxnAG .framer-1x1mhd2 > *, .framer-zxnAG .framer-z93olt > *, .framer-zxnAG .framer-13op6zx > *, .framer-zxnAG .framer-1rq1836 > *, .framer-zxnAG .framer-tqz5ww > *, .framer-zxnAG .framer-1vt7voz > *, .framer-zxnAG .framer-11binlz > *, .framer-zxnAG .framer-ictd63 > *, .framer-zxnAG .framer-6jjovk > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-zxnAG .framer-dqcto5 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-zxnAG .framer-857obt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \"@media (min-width: 1200px) { .framer-zxnAG .hidden-yq3fgv { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-zxnAG .hidden-1w7hm3c { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-zxnAG .framer-yq3fgv { width: 810px; } .framer-zxnAG .framer-hft6cs-container { height: 453px; width: 811px; } .framer-zxnAG .framer-oz69gc, .framer-zxnAG .framer-u8pxj7 { padding: 60px 40px 60px 40px; } .framer-zxnAG .framer-uzecum, .framer-zxnAG .framer-1qv70rm, .framer-zxnAG .framer-1d8fmej { height: var(--framer-aspect-ratio-supported, 270px); } .framer-zxnAG .framer-qbbg5r, .framer-zxnAG .framer-qsc9za, .framer-zxnAG .framer-3dkke7, .framer-zxnAG .framer-10lxuhn, .framer-zxnAG .framer-1id6x6h, .framer-zxnAG .framer-qk3d9x, .framer-zxnAG .framer-1fdkepz, .framer-zxnAG .framer-i9mk3r { width: 326px; } .framer-zxnAG .framer-krnp5s { width: 321px; } .framer-zxnAG .framer-wdly9y { width: 319px; } .framer-zxnAG .framer-1wgzi23, .framer-zxnAG .framer-16s09ce, .framer-zxnAG .framer-bq92oo { width: 324px; } .framer-zxnAG .framer-1x04ft8, .framer-zxnAG .framer-1d4fi0, .framer-zxnAG .framer-1sn769y, .framer-zxnAG .framer-cjiu37, .framer-zxnAG .framer-1lyv05m, .framer-zxnAG .framer-lc8bsh { height: var(--framer-aspect-ratio-supported, 271px); } .framer-zxnAG .framer-d6tzp2, .framer-zxnAG .framer-122ceoa { width: 323px; } .framer-zxnAG .framer-r4cq9y { width: 322px; } .framer-zxnAG .framer-10anxxh, .framer-zxnAG .framer-11mw4ld { width: 328px; } .framer-zxnAG .framer-1plpjm9 { padding: 0px 40px 0px 40px; } .framer-zxnAG .framer-dqcto5 { flex-direction: column; } .framer-zxnAG .framer-857obt { align-content: center; align-items: center; flex: none; width: 100%; } .framer-zxnAG .framer-17ig6kd-container { height: 1140px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zxnAG .framer-dqcto5 { gap: 0px; } .framer-zxnAG .framer-dqcto5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-zxnAG .framer-dqcto5 > :first-child { margin-top: 0px; } .framer-zxnAG .framer-dqcto5 > :last-child { margin-bottom: 0px; } }}`, `@media (max-width: 809px) { .framer-zxnAG .hidden-pckgtm { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-zxnAG .framer-yq3fgv { width: 390px; } .framer-zxnAG .framer-9x8psy-container { order: 0; } .framer-zxnAG .framer-1rmshdu-container { order: 2; } .framer-zxnAG .framer-1pc4rvs { order: 1; padding: 0px 20px 0px 20px; } .framer-zxnAG .framer-oz69gc { gap: 20px; order: 4; padding: 60px 20px 60px 20px; } .framer-zxnAG .framer-jljn7l, .framer-zxnAG .framer-1c7zmho { gap: 60px; } .framer-zxnAG .framer-ncvhpk, .framer-zxnAG .framer-jvu0d9, .framer-zxnAG .framer-1hgu864, .framer-zxnAG .framer-10ksqfu, .framer-zxnAG .framer-f61krd, .framer-zxnAG .framer-bvpigu, .framer-zxnAG .framer-nx033m, .framer-zxnAG .framer-mmqamd, .framer-zxnAG .framer-atbb3k { flex-direction: column; } .framer-zxnAG .framer-uzecum, .framer-zxnAG .framer-1x04ft8, .framer-zxnAG .framer-1sn769y, .framer-zxnAG .framer-1lyv05m { flex: none; height: var(--framer-aspect-ratio-supported, 292px); width: 100%; } .framer-zxnAG .framer-1pc168b, .framer-zxnAG .framer-1sghotb, .framer-zxnAG .framer-1m9bwhx, .framer-zxnAG .framer-jt7wxn, .framer-zxnAG .framer-h9kroh { flex: none; width: 100%; } .framer-zxnAG .framer-qbbg5r { width: 359px; } .framer-zxnAG .framer-krnp5s, .framer-zxnAG .framer-1wgzi23, .framer-zxnAG .framer-3dkke7 { width: 349px; } .framer-zxnAG .framer-ofo80m, .framer-zxnAG .framer-1q8t1so, .framer-zxnAG .framer-xl5jp0, .framer-zxnAG .framer-11pb1g6 { flex: none; order: 1; width: 100%; } .framer-zxnAG .framer-wdly9y, .framer-zxnAG .framer-qsc9za, .framer-zxnAG .framer-10lxuhn, .framer-zxnAG .framer-qk3d9x, .framer-zxnAG .framer-i9mk3r { width: 352px; } .framer-zxnAG .framer-1qv70rm, .framer-zxnAG .framer-cjiu37 { flex: none; height: var(--framer-aspect-ratio-supported, 291px); order: 0; width: 100%; } .framer-zxnAG .framer-u8pxj7 { gap: 20px; order: 5; padding: 60px 20px 60px 20px; } .framer-zxnAG .framer-1d4fi0 { flex: none; height: var(--framer-aspect-ratio-supported, 291px); width: 100%; } .framer-zxnAG .framer-d6tzp2, .framer-zxnAG .framer-122ceoa, .framer-zxnAG .framer-r4cq9y, .framer-zxnAG .framer-1id6x6h, .framer-zxnAG .framer-16s09ce, .framer-zxnAG .framer-bq92oo { width: 350px; } .framer-zxnAG .framer-1d8fmej, .framer-zxnAG .framer-lc8bsh { flex: none; height: var(--framer-aspect-ratio-supported, 292px); order: 0; width: 100%; } .framer-zxnAG .framer-1fdkepz, .framer-zxnAG .framer-11mw4ld { width: 348px; } .framer-zxnAG .framer-10anxxh { width: 346px; } .framer-zxnAG .framer-1plpjm9 { order: 7; padding: 0px 20px 0px 20px; } .framer-zxnAG .framer-dqcto5 { flex-direction: column; padding: 40px 40px 40px 40px; } .framer-zxnAG .framer-857obt { align-content: center; align-items: center; flex: none; width: 100%; } .framer-zxnAG .framer-19kz52a-container { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zxnAG .framer-oz69gc, .framer-zxnAG .framer-jljn7l, .framer-zxnAG .framer-ncvhpk, .framer-zxnAG .framer-jvu0d9, .framer-zxnAG .framer-1hgu864, .framer-zxnAG .framer-u8pxj7, .framer-zxnAG .framer-1c7zmho, .framer-zxnAG .framer-10ksqfu, .framer-zxnAG .framer-f61krd, .framer-zxnAG .framer-bvpigu, .framer-zxnAG .framer-nx033m, .framer-zxnAG .framer-mmqamd, .framer-zxnAG .framer-atbb3k, .framer-zxnAG .framer-dqcto5 { gap: 0px; } .framer-zxnAG .framer-oz69gc > *, .framer-zxnAG .framer-u8pxj7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-zxnAG .framer-oz69gc > :first-child, .framer-zxnAG .framer-u8pxj7 > :first-child { margin-left: 0px; } .framer-zxnAG .framer-oz69gc > :last-child, .framer-zxnAG .framer-u8pxj7 > :last-child { margin-right: 0px; } .framer-zxnAG .framer-jljn7l > *, .framer-zxnAG .framer-1c7zmho > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-zxnAG .framer-jljn7l > :first-child, .framer-zxnAG .framer-ncvhpk > :first-child, .framer-zxnAG .framer-jvu0d9 > :first-child, .framer-zxnAG .framer-1hgu864 > :first-child, .framer-zxnAG .framer-1c7zmho > :first-child, .framer-zxnAG .framer-10ksqfu > :first-child, .framer-zxnAG .framer-f61krd > :first-child, .framer-zxnAG .framer-bvpigu > :first-child, .framer-zxnAG .framer-nx033m > :first-child, .framer-zxnAG .framer-mmqamd > :first-child, .framer-zxnAG .framer-atbb3k > :first-child, .framer-zxnAG .framer-dqcto5 > :first-child { margin-top: 0px; } .framer-zxnAG .framer-jljn7l > :last-child, .framer-zxnAG .framer-ncvhpk > :last-child, .framer-zxnAG .framer-jvu0d9 > :last-child, .framer-zxnAG .framer-1hgu864 > :last-child, .framer-zxnAG .framer-1c7zmho > :last-child, .framer-zxnAG .framer-10ksqfu > :last-child, .framer-zxnAG .framer-f61krd > :last-child, .framer-zxnAG .framer-bvpigu > :last-child, .framer-zxnAG .framer-nx033m > :last-child, .framer-zxnAG .framer-mmqamd > :last-child, .framer-zxnAG .framer-atbb3k > :last-child, .framer-zxnAG .framer-dqcto5 > :last-child { margin-bottom: 0px; } .framer-zxnAG .framer-ncvhpk > *, .framer-zxnAG .framer-jvu0d9 > *, .framer-zxnAG .framer-1hgu864 > *, .framer-zxnAG .framer-10ksqfu > *, .framer-zxnAG .framer-f61krd > *, .framer-zxnAG .framer-bvpigu > *, .framer-zxnAG .framer-nx033m > *, .framer-zxnAG .framer-mmqamd > *, .framer-zxnAG .framer-atbb3k > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-zxnAG .framer-dqcto5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicHeight 7329\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HT9ZWLc5g\":{\"layout\":[\"fixed\",\"auto\"]},\"vE5baE5xf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       */\nconst FrameryXol5yR02 = withCSS(Component, css, \"framer-zxnAG\");\nexport default FrameryXol5yR02;\nFrameryXol5yR02.displayName = \"How It Works\";\nFrameryXol5yR02.defaultProps = {\n  height: 7329,\n  width: 1200\n};\naddFonts(FrameryXol5yR02, [{\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/yXol5yR02:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\n  weight: \"700\"\n}, {\n  family: \"Inter\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/yXol5yR02:default\",\n    url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",\n  weight: \"500\"\n}, ...NavigationBarFonts, ...VideoFonts, ...ButtonFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.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\": \"FrameryXol5yR02\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HT9ZWLc5g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vE5baE5xf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"7329\",\n        \"framerResponsiveScreen\": \"\"\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", "NavigationBarFonts", "getFonts", "uGGJCoIU8_default", "VideoFonts", "Video", "ButtonFonts", "P8dj6_5tK_default", "FooterFonts", "NNpgnq2bN_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "transformTemplate", "_", "t", "transition1", "animation", "animation1", "metadata", "yXol5yR02_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "uGGJCoIU8_default", "Video", "optimizeAppear", "x", "RichText", "Image2", "P8dj6_5tK_default", "NNpgnq2bN_default", "css", "FrameryXol5yR02", "withCSS", "addFonts", "NavigationBarFonts", "VideoFonts", "ButtonFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
