{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js", "ssg:https://framerusercontent.com/modules/cIKrykR5sqbKYLtn1Ea1/69p6NfORsJ6PCwRD9xbL/ASazNX8F5.js", "ssg:https://framerusercontent.com/modules/VFeh5f5cAa9gvkNnnHEu/mLW89cy2hsg5AWUOpfyt/AlzGRPwR9.js"],
  "sourcesContent": ["import { MotionValue } from \"framer\"; // Basic MotionValue check\nexport const isMotionValue = v => v instanceof MotionValue;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"isMotionValue\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useMotionValueEvent } from \"framer-motion\";\nimport { useRef, useEffect, useMemo, useCallback, memo } from \"react\";\nimport { ControlType, addPropertyControls, useIsInCurrentNavigationTarget } from \"framer\";\nimport { useOnEnter, useOnExit, defaultEvents, useIsOnCanvas, useIsBrowserSafari, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useAutoMotionValue } from \"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";\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} /**\n  * For the useEffect hook to change progress of the video on state change.\n  * It was causing the video to restart on hydration\n  */\nlet isMountedAndReadyForProgressChanges = false;\nconst VideoMemo = /*#__PURE__*/memo(function VideoInner(props) {\n  const {\n    srcType,\n    srcFile,\n    srcUrl,\n    playing,\n    canvasPlay,\n    muted,\n    playsinline,\n    controls,\n    progress,\n    objectFit,\n    backgroundColor,\n    radius,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    isMixed,\n    onSeeked,\n    onPause,\n    onPlay,\n    onEnd,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster,\n    restartOnEnter,\n    posterEnabled,\n    startTime: startTimeProp,\n    volume,\n    loop\n  } = props;\n  const isInCurrentNavigationTarget = useIsInCurrentNavigationTarget();\n  const videoRef = useRef();\n  const isSafari = useIsBrowserSafari();\n  const requestingPlay = useRef(false);\n  const wasPausedOnLeave = useRef(null);\n  const wasEndedOnLeave = useRef(null);\n  const isOnCanvas = useIsOnCanvas();\n  const borderRadius = useRadius(props); // Video elements behave oddly at 100% duration\n  const startTime = startTimeProp === 100 ? 99.9 : startTimeProp;\n  const shouldPlay = !isOnCanvas || canvasPlay;\n  const autoPlay = useMemo(() => playing, []);\n  const isMuted = useMemo(() => isOnCanvas ? true : muted, [isOnCanvas, muted]);\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  }, []); // Pause/play via props\n  useEffect(() => {\n    if (playing && shouldPlay) play();else pause();\n  }, [playing, canvasPlay]); // Change progress via prop\n  useEffect(() => {\n    if (isMountedAndReadyForProgressChanges) setProgress(startTime * .01);else isMountedAndReadyForProgressChanges = true;\n  }, [startTimeProp, srcFile, srcUrl]);\n  const videoProgress = useAutoMotionValue(progress, {\n    transform: value => value * .01,\n    onChange: newValue => {\n      setProgress(newValue);\n    }\n  }); // Allow scrubbing with MotionValue\n  useMotionValueEvent(videoProgress, \"change\", latest => {\n    if (!isOnCanvas) setProgress(latest);\n  }); // (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    if (srcType === SrcType.Url) return srcUrl;\n    if (srcType === SrcType.Video) return srcFile;\n  }, [srcType, srcFile, srcUrl]); // Autoplay via JS to work in Safari\n  useEffect(() => {\n    if (isSafari && videoRef.current && autoPlay) {\n      setTimeout(() => play(), 50);\n    }\n  }, []); // Volume Control\n  useEffect(() => {\n    if (videoRef.current && !muted) videoRef.current.volume = volume / 100;\n  }, [volume]); // When video is ready, set start-time, then autoplay if needed\n  const handleReady = () => {\n    if (videoRef.current && videoRef.current.currentTime < .3) setProgress(startTime * .01);\n    if (shouldPlay && videoRef.current && autoPlay) 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: autoPlay && shouldPlay,\n    poster: posterEnabled ? poster : undefined,\n    onLoadedData: handleReady,\n    controls: controls,\n    muted: isMuted,\n    playsInline: playsinline,\n    style: {\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  autoPlay: true,\n  canvasPlay: false,\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};\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: [ObjectFitType.Cover, ObjectFitType.Fill, ObjectFitType.Contain, ObjectFitType.ScaleDown, ObjectFitType.None]\n  },\n  canvasPlay: {\n    type: ControlType.Boolean,\n    title: \"On Canvas\",\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n    hidden(props) {\n      return props.autoPlay === false;\n    }\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    \"Video\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Video\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"112\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"VideoProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Video.map", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"CUSTOM;SF Pro Text Regular\"]);\nexport const fonts = [{\n  family: \"SF Pro Text Regular\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/ASazNX8F5:default\",\n    url: \"assets/nBTqkRqUvLAXnLiEsHruI3kmoQ.otf\"\n  },\n  url: new URL(\"https://framerusercontent.com/modules/assets/nBTqkRqUvLAXnLiEsHruI3kmoQ~0ZQr80NPE1G7eHdPEhLQcpdbnEcDQHAQidlxVZq60qc.otf\").href\n}];\nexport const css = ['.framer-MAoWd .framer-styles-preset-a3gt5n:not(.rich-text-wrapper), .framer-MAoWd .framer-styles-preset-a3gt5n.rich-text-wrapper p, .framer-MAoWd .framer-styles-preset-a3gt5n.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"SF Pro Text Regular\", \"-apple-system\", \"BlinkMacSystemFont\", serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-e250f693-c7b4-442c-97d3-2ba6bf27a624, #4b5563); --framer-text-decoration: none; --framer-text-transform: none; }', '@media (max-width: 1199px) and (min-width: 810px) { .framer-MAoWd .framer-styles-preset-a3gt5n:not(.rich-text-wrapper), .framer-MAoWd .framer-styles-preset-a3gt5n.rich-text-wrapper p, .framer-MAoWd .framer-styles-preset-a3gt5n.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"SF Pro Text Regular\", \"-apple-system\", \"BlinkMacSystemFont\", serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-e250f693-c7b4-442c-97d3-2ba6bf27a624, #4b5563); --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 809px) and (min-width: 0px) { .framer-MAoWd .framer-styles-preset-a3gt5n:not(.rich-text-wrapper), .framer-MAoWd .framer-styles-preset-a3gt5n.rich-text-wrapper p, .framer-MAoWd .framer-styles-preset-a3gt5n.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"SF Pro Text Regular\", \"-apple-system\", \"BlinkMacSystemFont\", serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-e250f693-c7b4-442c-97d3-2ba6bf27a624, #4b5563); --framer-text-decoration: none; --framer-text-transform: none; } }'];\nexport const className = \"framer-MAoWd\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (68ea020)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, getWhereExpressionFromPathVariables, Link, NotFoundError, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useCurrentPathVariables, useHydratedBreakpointVariants, useQueryData, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js\";\nimport NavbarDark from \"https://framerusercontent.com/modules/UbYRDGsfoOzT0CZX3Pk3/weWPJmK9W607fwYbbguC/NOddcwc54.js\";\nimport FooterSection from \"https://framerusercontent.com/modules/eTvEBFpRYo69nrAitXg3/TjYTG4UMlAkh64PgfaMV/o1QSYiIhX.js\";\nimport Terms from \"https://framerusercontent.com/modules/N87YE9CsHgRCu1GHLcZD/qAzM22f6eruidijU8mu6/zdOBDC00x.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/cIKrykR5sqbKYLtn1Ea1/69p6NfORsJ6PCwRD9xbL/ASazNX8F5.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/HJ8nUBadWrfud7Sivoyq/xB8Eldd1jFICyXLyBmUN/AlzGRPwR9.js\";\nconst NavbarDarkFonts = getFonts(NavbarDark);\nconst VideoFonts = getFonts(Video);\nconst FooterSectionFonts = getFonts(FooterSection);\nconst cycleOrder = [\"WQ7GKfZjA\", \"rWXjPwVd7\", \"UTCWy43Ah\"];\nconst breakpoints = {\n  rWXjPwVd7: \"(min-width: 810px) and (max-width: 1199px)\",\n  UTCWy43Ah: \"(max-width: 809px)\",\n  WQ7GKfZjA: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  rWXjPwVd7: \"framer-v-14dceah\",\n  UTCWy43Ah: \"framer-v-tch6s4\",\n  WQ7GKfZjA: \"framer-v-1rom533\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQ7GKfZjA\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"WQ7GKfZjA\",\n  Phone: \"UTCWy43Ah\",\n  Tablet: \"rWXjPwVd7\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst isSet = value => {\n  return value !== undefined && value !== null && value !== \"\";\n};\nconst negate = value => {\n  return !value;\n};\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"WQ7GKfZjA\",\n  XWn1pFy1I,\n  HOldV_MOy,\n  IElNxyBuL,\n  H7rwf5vPx,\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const currentPathVariables = useCurrentPathVariables();\n  const [currentRouteData] = useQueryData({\n    from: {\n      type: \"Collection\",\n      data: Terms\n    },\n    select: [{\n      name: \"XWn1pFy1I\",\n      type: \"Identifier\"\n    }, {\n      name: \"HOldV_MOy\",\n      type: \"Identifier\"\n    }, {\n      name: \"IElNxyBuL\",\n      type: \"Identifier\"\n    }, {\n      name: \"H7rwf5vPx\",\n      type: \"Identifier\"\n    }],\n    where: getWhereExpressionFromPathVariables(currentPathVariables)\n  });\n  const getFromCurrentRouteData = key => {\n    if (!currentRouteData) throw new NotFoundError(`No data in \"Terms\" matches path variables: ${JSON.stringify(currentPathVariables)}`);\n    return currentRouteData[key];\n  };\n  if (XWn1pFy1I === undefined) XWn1pFy1I = getFromCurrentRouteData(\"XWn1pFy1I\");\n  if (HOldV_MOy === undefined) HOldV_MOy = getFromCurrentRouteData(\"HOldV_MOy\");\n  if (IElNxyBuL === undefined) IElNxyBuL = getFromCurrentRouteData(\"IElNxyBuL\");\n  if (H7rwf5vPx === undefined) H7rwf5vPx = getFromCurrentRouteData(\"H7rwf5vPx\");\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(currentRouteData);\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  }, [currentRouteData]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"WQ7GKfZjA\",\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-sgyF1\", sharedStyle.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1rom533\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-1wz9iem-container\",\n            layoutScroll: true,\n            transformTemplate: transformTemplate,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                rWXjPwVd7: {\n                  variant: \"KR_Mn7fjh\"\n                },\n                UTCWy43Ah: {\n                  variant: \"wYSkbDkk7\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(NavbarDark, {\n                height: \"100%\",\n                id: \"pqHVtfhM5LAmhzXf0K\",\n                layoutId: \"pqHVtfhM5LAmhzXf0K\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"HktfNiU1D\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-8bir0d\",\n            transformTemplate: transformTemplate\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-q9qh1z\",\n            \"data-framer-name\": \"Page-wrapper\",\n            name: \"Page-wrapper\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1xl72p1\",\n              \"data-framer-name\": \"Hero-section\",\n              name: \"Hero-section\",\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-oxs4pj\",\n                \"data-framer-name\": \"Padding-global\",\n                name: \"Padding-global\",\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-e1x4o8\",\n                  \"data-framer-name\": \"Padding-section\",\n                  name: \"Padding-section\",\n                  children: /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1vnhf6r\",\n                    \"data-framer-name\": \"Container\",\n                    name: \"Container\",\n                    children: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-rlzgko\"\n                    }), /*#__PURE__*/_jsx(Link, {\n                      href: {\n                        webPageId: \"augiA20Il\"\n                      },\n                      children: /*#__PURE__*/_jsxs(motion.a, {\n                        className: \"framer-17sq6v6 framer-1up91on\",\n                        \"data-framer-name\": \"Back\",\n                        name: \"Back\",\n                        children: [/*#__PURE__*/_jsx(SVG, {\n                          className: \"framer-l831ha\",\n                          \"data-framer-name\": \"Line\",\n                          layout: \"position\",\n                          name: \"Line\",\n                          opacity: 1,\n                          svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 34\"><g transform=\"translate(0 7)\" id=\"ss2303709777_1\"><path d=\"M 0 27 L 34 27 L 34 61 L 0 61 Z\" fill=\"transparent\"></path><path d=\"M 28 10 L 6.488 10 M 6.488 10 C 9.822 9.961 16.488 7.907 16.488 0 M 6.488 10 C 9.822 10 16.488 12 16.488 20\" fill=\"transparent\" stroke-width=\"4\" stroke=\"var(--token-8f82eed8-4377-4d61-9bff-ab7ef77752df, rgba(34, 34, 34, 0.5)) /* {&quot;name&quot;:&quot;header-opacity&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',\n                          svgContentId: 2303709777,\n                          withExternalLayout: true\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                                \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"500\",\n                                \"--framer-line-height\": \"16px\",\n                                \"--framer-text-color\": \"var(--token-8f82eed8-4377-4d61-9bff-ab7ef77752df, rgba(34, 34, 34, 0.5))\",\n                                \"--framer-text-transform\": \"uppercase\"\n                              },\n                              children: \"Back\"\n                            })\n                          }),\n                          className: \"framer-ycqefy\",\n                          \"data-framer-name\": \"Back\",\n                          fonts: [\"Inter-Medium\"],\n                          name: \"Back\",\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })]\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-8xiegl\"\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1amoees\",\n                      children: [/*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            style: {\n                              \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFNlbWlib2xk\",\n                              \"--framer-font-family\": '\"SF Pro Display Semibold\", \"-apple-system\", \"BlinkMacSystemFont\", serif',\n                              \"--framer-font-size\": \"48px\",\n                              \"--framer-line-height\": \"58px\",\n                              \"--framer-text-color\": \"var(--token-56511fec-ca48-47b3-a3a5-e8c484d1ddf8, rgb(34, 34, 34))\"\n                            },\n                            children: \"Background Blur\"\n                          })\n                        }),\n                        className: \"framer-1818f7l\",\n                        \"data-framer-name\": \"Background Blur\",\n                        fonts: [\"CUSTOM;SF Pro Display Semibold\"],\n                        name: \"Background Blur\",\n                        text: XWn1pFy1I,\n                        verticalAlignment: \"center\",\n                        withExternalLayout: true\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-1esljxm\",\n                        \"data-framer-name\": \"Frame 71\",\n                        name: \"Frame 71\",\n                        children: [/*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-line-height\": \"16px\"\n                              },\n                              children: /*#__PURE__*/_jsx(\"span\", {\n                                style: {\n                                  \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                                  \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", sans-serif',\n                                  \"--framer-font-size\": \"14px\",\n                                  \"--framer-font-weight\": \"500\",\n                                  \"--framer-text-color\": \"rgba(75, 85, 99, 1)\",\n                                  \"--framer-text-transform\": \"uppercase\"\n                                },\n                                children: \"meaning\"\n                              })\n                            })\n                          }),\n                          className: \"framer-17du9fp\",\n                          \"data-framer-name\": \"meaning\",\n                          fonts: [\"Inter-Medium\"],\n                          name: \"meaning\",\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: HOldV_MOy,\n                          className: \"framer-1qepz1o\",\n                          \"data-framer-name\": \"Background blur is a special kind of blur extensively used on macOS that takes the contents of what's drawn behind it and applies a special kind of blur. The effect is much like a frosted window. The effect is implemented in browsers as css backdrop filter.\",\n                          fonts: [\"CUSTOM;SF Pro Text Regular\"],\n                          name: \"Background blur is a special kind of blur extensively used on macOS that takes the contents of what's drawn behind it and applies a special kind of blur. The effect is much like a frosted window. The effect is implemented in browsers as css backdrop filter.\",\n                          stylesPresetsClassNames: {\n                            a: \"framer-styles-preset-aexbeb\",\n                            h1: \"framer-styles-preset-o3e5h0\",\n                            h2: \"framer-styles-preset-1m9bzi2\",\n                            h3: \"framer-styles-preset-ci2ngw\",\n                            p: \"framer-styles-preset-a3gt5n\"\n                          },\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })]\n                      })]\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-fxjuw5\"\n                    }), /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-lcz6dj\",\n                      children: [/*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-qsvu0u\",\n                        \"data-framer-name\": \"Frame 71\",\n                        name: \"Frame 71\",\n                        children: [/*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                                \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"500\",\n                                \"--framer-line-height\": \"16px\",\n                                \"--framer-text-color\": \"rgb(75, 85, 99)\",\n                                \"--framer-text-transform\": \"uppercase\"\n                              },\n                              children: \"Shortcut\"\n                            })\n                          }),\n                          className: \"framer-1dshaj4\",\n                          \"data-framer-name\": \"meaning\",\n                          fonts: [\"Inter-Medium\"],\n                          name: \"meaning\",\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        }), /*#__PURE__*/_jsx(motion.div, {\n                          className: \"framer-b9qpht\",\n                          \"data-border\": true,\n                          \"data-framer-name\": \"shortcut\",\n                          name: \"shortcut\",\n                          children: /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-9oo0jm\",\n                            children: [isSet(IElNxyBuL) && /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  style: {\n                                    \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\n                                    \"--framer-font-family\": '\"SF Pro Text Regular\", \"-apple-system\", \"BlinkMacSystemFont\", serif',\n                                    \"--framer-font-size\": \"14px\",\n                                    \"--framer-text-color\": \"var(--token-56511fec-ca48-47b3-a3a5-e8c484d1ddf8, rgb(34, 34, 34))\"\n                                  },\n                                  children: \"Shift\"\n                                })\n                              }),\n                              className: \"framer-11mar5g\",\n                              fonts: [\"CUSTOM;SF Pro Text Regular\"],\n                              text: IElNxyBuL,\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            }), negate(isSet(IElNxyBuL)) && /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  style: {\n                                    \"--font-selector\": \"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\n                                    \"--framer-font-family\": '\"SF Pro Text Regular\", \"-apple-system\", \"BlinkMacSystemFont\", serif',\n                                    \"--framer-font-size\": \"14px\",\n                                    \"--framer-text-color\": \"var(--token-56511fec-ca48-47b3-a3a5-e8c484d1ddf8, rgb(34, 34, 34))\"\n                                  },\n                                  children: \"None\"\n                                })\n                              }),\n                              className: \"framer-183mlrn\",\n                              fonts: [\"CUSTOM;SF Pro Text Regular\"],\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })]\n                          })\n                        })]\n                      }), /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-xy503z\",\n                        \"data-framer-name\": \"Frame 71\",\n                        name: \"Frame 71\",\n                        children: [/*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                                \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", sans-serif',\n                                \"--framer-font-size\": \"14px\",\n                                \"--framer-font-weight\": \"500\",\n                                \"--framer-line-height\": \"16px\",\n                                \"--framer-text-color\": \"rgb(75, 85, 99)\",\n                                \"--framer-text-transform\": \"uppercase\"\n                              },\n                              children: \"USAGE\"\n                            })\n                          }),\n                          className: \"framer-19l1a1m\",\n                          \"data-framer-name\": \"meaning\",\n                          fonts: [\"Inter-Medium\"],\n                          name: \"meaning\",\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        }), /*#__PURE__*/_jsx(Container, {\n                          className: \"framer-1gu9d70-container\",\n                          children: /*#__PURE__*/_jsx(Video, {\n                            backgroundColor: \"rgba(0, 0, 0, 0)\",\n                            borderRadius: 0,\n                            bottomLeftRadius: 0,\n                            bottomRightRadius: 0,\n                            canvasPlay: false,\n                            controls: false,\n                            height: \"100%\",\n                            id: \"QNLp46pIg\",\n                            isMixedBorderRadius: false,\n                            layoutId: \"QNLp46pIg\",\n                            loop: true,\n                            muted: true,\n                            objectFit: \"cover\",\n                            playing: true,\n                            posterEnabled: false,\n                            srcType: \"URL\",\n                            srcUrl: H7rwf5vPx,\n                            startTime: 0,\n                            style: {\n                              height: \"100%\",\n                              width: \"100%\"\n                            },\n                            topLeftRadius: 0,\n                            topRightRadius: 0,\n                            volume: 25,\n                            width: \"100%\"\n                          })\n                        })]\n                      })]\n                    })]\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-1t34qhb-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  rWXjPwVd7: {\n                    variant: \"yVQICpY_t\"\n                  },\n                  UTCWy43Ah: {\n                    variant: \"yIRbr16pd\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(FooterSection, {\n                  height: \"100%\",\n                  id: \"pqHVtfhM5Vuq3fJVrt\",\n                  layoutId: \"pqHVtfhM5Vuq3fJVrt\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"lRJinJoUR\",\n                  width: \"100%\"\n                })\n              })\n            })]\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-sgyF1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: var(--token-7db8e258-3b60-4654-9d32-d39ea01f6550, rgb(255, 255, 255)); }`, \".framer-sgyF1 .framer-1up91on { display: block; }\", \".framer-sgyF1 .framer-1rom533 { align-content: center; align-items: center; background-color: var(--token-7db8e258-3b60-4654-9d32-d39ea01f6550, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-sgyF1 .framer-1wz9iem-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 6; }\", \".framer-sgyF1 .framer-8bir0d { -webkit-filter: blur(100px); align-content: center; align-items: center; bottom: 0px; display: flex; filter: blur(100px); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 1246px; min-width: 1440px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; }\", \".framer-sgyF1 .framer-wt0nxd { flex: none; height: 1246px; position: relative; width: 1440px; }\", \".framer-sgyF1 .framer-q9qh1z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 5; }\", \".framer-sgyF1 .framer-1xl72p1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-sgyF1 .framer-oxs4pj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 56px 0px 56px; position: relative; width: 100%; z-index: 6; }\", \".framer-sgyF1 .framer-e1x4o8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 32px 0px; position: relative; width: 1px; }\", \".framer-sgyF1 .framer-1vnhf6r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 2; }\", \".framer-sgyF1 .framer-rlzgko { flex: none; height: 16px; overflow: hidden; position: relative; width: 336px; }\", \".framer-sgyF1 .framer-17sq6v6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\", \".framer-sgyF1 .framer-l831ha { flex: none; height: 34px; position: relative; width: 34px; }\", \".framer-sgyF1 .framer-ycqefy, .framer-sgyF1 .framer-1818f7l, .framer-sgyF1 .framer-17du9fp, .framer-sgyF1 .framer-1dshaj4, .framer-sgyF1 .framer-19l1a1m { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-sgyF1 .framer-8xiegl { flex: none; height: 24px; overflow: hidden; position: relative; width: 100%; }\", \".framer-sgyF1 .framer-1amoees { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-sgyF1 .framer-1esljxm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-sgyF1 .framer-1qepz1o { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 680px; word-break: break-word; word-wrap: break-word; }\", \".framer-sgyF1 .framer-fxjuw5 { flex: none; height: 56px; overflow: hidden; position: relative; width: 100%; }\", \".framer-sgyF1 .framer-lcz6dj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-sgyF1 .framer-qsvu0u, .framer-sgyF1 .framer-xy503z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", '.framer-sgyF1 .framer-b9qpht { --border-bottom-width: 1px; --border-color: var(--token-2167e824-4dfe-4a86-ba52-d4be11aeb94e, #d8dcdf) /* {\"name\":\"Border-shortcut\"} */; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: var(--token-1a72ac9b-dab8-4822-8cdb-02e8f9204621, #f7f7f7); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 8px 8px 8px; position: relative; width: min-content; will-change: transform; }', \".framer-sgyF1 .framer-1239zcf { align-content: center; align-items: center; background-color: var(--token-cd8427f7-73bd-4f09-bac9-f9523d9df2fd, #c9c9c9); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: transform; }\", \".framer-sgyF1 .framer-9oo0jm { align-content: center; align-items: center; background-color: var(--token-cd8427f7-73bd-4f09-bac9-f9523d9df2fd, #f0f0f0); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: transform; }\", \".framer-sgyF1 .framer-11mar5g, .framer-sgyF1 .framer-183mlrn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-sgyF1 .framer-1gu9d70-container { aspect-ratio: 1.6319018404907975 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 331px); position: relative; width: 100%; }\", \".framer-sgyF1 .framer-1t34qhb-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sgyF1 .framer-1rom533, .framer-sgyF1 .framer-8bir0d, .framer-sgyF1 .framer-q9qh1z, .framer-sgyF1 .framer-1xl72p1, .framer-sgyF1 .framer-oxs4pj, .framer-sgyF1 .framer-e1x4o8, .framer-sgyF1 .framer-1vnhf6r, .framer-sgyF1 .framer-17sq6v6, .framer-sgyF1 .framer-1amoees, .framer-sgyF1 .framer-1esljxm, .framer-sgyF1 .framer-lcz6dj, .framer-sgyF1 .framer-qsvu0u, .framer-sgyF1 .framer-b9qpht, .framer-sgyF1 .framer-1239zcf, .framer-sgyF1 .framer-9oo0jm, .framer-sgyF1 .framer-xy503z { gap: 0px; } .framer-sgyF1 .framer-1rom533 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sgyF1 .framer-1rom533 > :first-child, .framer-sgyF1 .framer-8bir0d > :first-child, .framer-sgyF1 .framer-q9qh1z > :first-child, .framer-sgyF1 .framer-1xl72p1 > :first-child, .framer-sgyF1 .framer-1vnhf6r > :first-child, .framer-sgyF1 .framer-1amoees > :first-child, .framer-sgyF1 .framer-1esljxm > :first-child, .framer-sgyF1 .framer-qsvu0u > :first-child, .framer-sgyF1 .framer-xy503z > :first-child { margin-top: 0px; } .framer-sgyF1 .framer-1rom533 > :last-child, .framer-sgyF1 .framer-8bir0d > :last-child, .framer-sgyF1 .framer-q9qh1z > :last-child, .framer-sgyF1 .framer-1xl72p1 > :last-child, .framer-sgyF1 .framer-1vnhf6r > :last-child, .framer-sgyF1 .framer-1amoees > :last-child, .framer-sgyF1 .framer-1esljxm > :last-child, .framer-sgyF1 .framer-qsvu0u > :last-child, .framer-sgyF1 .framer-xy503z > :last-child { margin-bottom: 0px; } .framer-sgyF1 .framer-8bir0d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sgyF1 .framer-q9qh1z > *, .framer-sgyF1 .framer-1xl72p1 > *, .framer-sgyF1 .framer-1vnhf6r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sgyF1 .framer-oxs4pj > *, .framer-sgyF1 .framer-e1x4o8 > *, .framer-sgyF1 .framer-1239zcf > *, .framer-sgyF1 .framer-9oo0jm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sgyF1 .framer-oxs4pj > :first-child, .framer-sgyF1 .framer-e1x4o8 > :first-child, .framer-sgyF1 .framer-17sq6v6 > :first-child, .framer-sgyF1 .framer-lcz6dj > :first-child, .framer-sgyF1 .framer-b9qpht > :first-child, .framer-sgyF1 .framer-1239zcf > :first-child, .framer-sgyF1 .framer-9oo0jm > :first-child { margin-left: 0px; } .framer-sgyF1 .framer-oxs4pj > :last-child, .framer-sgyF1 .framer-e1x4o8 > :last-child, .framer-sgyF1 .framer-17sq6v6 > :last-child, .framer-sgyF1 .framer-lcz6dj > :last-child, .framer-sgyF1 .framer-b9qpht > :last-child, .framer-sgyF1 .framer-1239zcf > :last-child, .framer-sgyF1 .framer-9oo0jm > :last-child { margin-right: 0px; } .framer-sgyF1 .framer-17sq6v6 > *, .framer-sgyF1 .framer-b9qpht > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-sgyF1 .framer-1amoees > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sgyF1 .framer-1esljxm > *, .framer-sgyF1 .framer-qsvu0u > *, .framer-sgyF1 .framer-xy503z > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-sgyF1 .framer-lcz6dj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\", \"@media (min-width: 1200px) { .framer-sgyF1 .hidden-1rom533 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-sgyF1 .hidden-14dceah { display: none !important; } .${metadata.bodyClassName} { background: var(--token-7db8e258-3b60-4654-9d32-d39ea01f6550, rgb(255, 255, 255)); } .framer-sgyF1 .framer-1rom533 { width: 810px; } .framer-sgyF1 .framer-oxs4pj { padding: 0px 40px 0px 40px; } .framer-sgyF1 .framer-1gu9d70-container { height: var(--framer-aspect-ratio-supported, 220px); }}`, `@media (max-width: 809px) { .framer-sgyF1 .hidden-tch6s4 { display: none !important; } .${metadata.bodyClassName} { background: var(--token-7db8e258-3b60-4654-9d32-d39ea01f6550, rgb(255, 255, 255)); } .framer-sgyF1 .framer-1rom533 { width: 390px; } .framer-sgyF1 .framer-oxs4pj { padding: 0px 20px 0px 20px; } .framer-sgyF1 .framer-lcz6dj { flex-direction: column; gap: 40px; } .framer-sgyF1 .framer-qsvu0u, .framer-sgyF1 .framer-xy503z { flex: none; width: 100%; } .framer-sgyF1 .framer-1gu9d70-container { height: var(--framer-aspect-ratio-supported, 218px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sgyF1 .framer-lcz6dj { gap: 0px; } .framer-sgyF1 .framer-lcz6dj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sgyF1 .framer-lcz6dj > :first-child { margin-top: 0px; } .framer-sgyF1 .framer-lcz6dj > :last-child { margin-bottom: 0px; } }}`, ...sharedStyle.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerIntrinsicHeight 1352\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rWXjPwVd7\":{\"layout\":[\"fixed\",\"auto\"]},\"UTCWy43Ah\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           */\nconst FramerAlzGRPwR9 = withCSS(Component, css, \"framer-sgyF1\");\nexport default FramerAlzGRPwR9;\nFramerAlzGRPwR9.displayName = \"Terms\";\nFramerAlzGRPwR9.defaultProps = {\n  height: 1352,\n  width: 1200\n};\naddFonts(FramerAlzGRPwR9, [{\n  family: \"SF Pro Display Semibold\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/AlzGRPwR9:default\",\n    url: \"assets/VswZaeGSdJGrUGNaDRbUgnu85jw.otf\"\n  },\n  url: new URL(\"https://framerusercontent.com/modules/assets/VswZaeGSdJGrUGNaDRbUgnu85jw~K5URhezht-HQfJfeuJg8aIeyqzIFXGNaHuwhSb_3tlk.otf\").href\n}, {\n  family: \"SF Pro Text Regular\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/AlzGRPwR9:default\",\n    url: \"assets/nBTqkRqUvLAXnLiEsHruI3kmoQ.otf\"\n  },\n  url: new URL(\"https://framerusercontent.com/modules/assets/nBTqkRqUvLAXnLiEsHruI3kmoQ~0ZQr80NPE1G7eHdPEhLQcpdbnEcDQHAQidlxVZq60qc.otf\").href\n}, ...NavbarDarkFonts, ...VideoFonts, ...FooterSectionFonts, ...sharedStyle.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\": \"FramerAlzGRPwR9\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rWXjPwVd7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UTCWy43Ah\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"1352\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "NavbarDarkFonts", "getFonts", "NOddcwc54_default", "VideoFonts", "Video", "FooterSectionFonts", "o1QSYiIhX_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "isSet", "value", "negate", "metadata", "AlzGRPwR9_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "XWn1pFy1I", "HOldV_MOy", "IElNxyBuL", "H7rwf5vPx", "restProps", "ref", "variant", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "zdOBDC00x_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "NOddcwc54_default", "Link", "SVG", "RichText", "x", "Video", "o1QSYiIhX_default", "css", "FramerAlzGRPwR9", "withCSS", "addFonts", "NavbarDarkFonts", "VideoFonts", "FooterSectionFonts", "fonts", "__FramerMetadata__"]
}
