{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "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/534oB9Tn5cZB6VZbkWLJ/Video.js", "ssg:https://framerusercontent.com/modules/PKZHThPNb20LLZ5IyODS/AtODCV0egPfiUaypxHfv/Oc0OfPHWC.js", "ssg:https://framerusercontent.com/modules/bc2Stb2s1VxEo2rbbAGT/Y1p8EWWbl2pDBqUQoiIY/uJq8VfNCy.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n  const currentRenderTarget = useMemo(() => RenderTarget.current(), []);\n  return currentRenderTarget;\n}\nexport function useIsInPreview() {\n  const inPreview = useMemo(() => RenderTarget.current() === RenderTarget.preview, []);\n  return inPreview;\n}\nexport function useIsOnCanvas() {\n  const onCanvas = useMemo(() => RenderTarget.current() === RenderTarget.canvas, []);\n  return onCanvas;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"useIsInPreview\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useRenderTarget\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"useIsOnCanvas\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    }\n  }\n};\n//# sourceMappingURL=./useRenderTarget.map", "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 { useRef, useEffect, useMemo, useCallback, memo } from \"react\";\nimport { ControlType, addPropertyControls, useIsInCurrentNavigationTarget } from \"framer\";\nimport { useOnEnter, useOnExit, defaultEvents, useIsOnCanvas, useIsBrowserSafari, useOnChange, 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}\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    setProgress(startTime * .01);\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  useOnChange(videoProgress, val => {\n    if (isOnCanvas) return;\n    setProgress(val);\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        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerIntrinsicHeight\": \"112\",\n        \"framerContractVersion\": \"1\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerIntrinsicWidth\": \"200\"\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", "// Generated by Framer (a4dc481)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, RichText, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/3znGl5pe8qO0XuEeS1Cj/fZ4SdTm5XMK1DIfdMlK4/ko_yaPuLG.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/eDajaOFaKRSLWMcysIDa/C13Hnrz1TZ6KmUTTtH6d/stylesPresetHeading2.js\";\nimport Button from \"https://framerusercontent.com/modules/9KqOoxQiDb8IRcH5AARn/XdIouRgsWXfQRv37QFQr/P8dj6_5tK.js\";\nconst ButtonFonts = getFonts(Button);\nconst cycleOrder = [\"pddWuBRgu\", \"w9xsEgXzp\"];\nconst variantClassNames = {\n  pddWuBRgu: \"framer-v-j24yf3\",\n  w9xsEgXzp: \"framer-v-njfs4r\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  Desktop: \"pddWuBRgu\",\n  Mobile: \"w9xsEgXzp\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    duration: .3,\n    ease: [.44, 0, .56, 1],\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"pddWuBRgu\",\n  text: cp85yzYYT = \"Start training people with work-ready skills.\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"pddWuBRgu\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-0Gp2e\", sharedStyle.className, sharedStyle1.className, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(motion.div, {\n        ...restProps,\n        className: cx(\"framer-j24yf3\", className),\n        \"data-framer-name\": \"Desktop\",\n        layoutDependency: layoutDependency,\n        layoutId: \"pddWuBRgu\",\n        ref: ref,\n        style: {\n          background: \"linear-gradient(100deg, #383AF0 0%, rgb(23, 23, 103) 100%)\",\n          ...style\n        },\n        transition: transition,\n        ...addPropertyOverrides({\n          w9xsEgXzp: {\n            \"data-framer-name\": \"Mobile\"\n          }\n        }, baseVariant, gestureVariant),\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-1yuda73\",\n          \"data-framer-name\": \"Heading and CTA\",\n          layoutDependency: layoutDependency,\n          layoutId: \"z2JmGcGxy\",\n          transition: transition,\n          children: [/*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.h2, {\n                className: \"framer-styles-preset-1m9bzi2\",\n                \"data-styles-preset\": \"stylesPresetHeading2\",\n                style: {\n                  \"--framer-text-alignment\": \"center\",\n                  \"--framer-text-color\": \"var(--extracted-1of0zx5)\"\n                },\n                children: \"Start training people with work-ready skills.\"\n              })\n            }),\n            className: \"framer-1dnq44e\",\n            layoutDependency: layoutDependency,\n            layoutId: \"JSpfdF2EY\",\n            style: {\n              \"--extracted-1of0zx5\": \"rgb(255, 255, 255)\",\n              \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: cp85yzYYT,\n            transition: transition,\n            verticalAlignment: \"top\",\n            withExternalLayout: true,\n            ...addPropertyOverrides({\n              w9xsEgXzp: {\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.h2, {\n                    className: \"framer-styles-preset-1sapo8y\",\n                    \"data-styles-preset\": \"ko_yaPuLG\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"var(--extracted-1of0zx5)\"\n                    },\n                    children: \"Start training people with work-ready skills.\"\n                  })\n                })\n              }\n            }, baseVariant, gestureVariant)\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-ynufd4-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"MWixAmHZP-container\",\n            transition: transition,\n            children: /*#__PURE__*/_jsx(Button, {\n              height: \"100%\",\n              id: \"MWixAmHZP\",\n              layoutId: \"MWixAmHZP\",\n              link: \"https://app.trainwithqualify.com/admin-details\",\n              style: {\n                height: \"100%\"\n              },\n              title: \"Create a free account\",\n              variant: \"Mz_H2FuSJ\",\n              width: \"100%\"\n            })\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-0Gp2e [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-0Gp2e * { box-sizing: border-box; }\", \".framer-0Gp2e .framer-jxcyv7 { display: block; }\", \".framer-0Gp2e .framer-j24yf3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 60px 40px; position: relative; width: 1200px; }\", \".framer-0Gp2e .framer-1yuda73 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\", \".framer-0Gp2e .framer-1dnq44e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-0Gp2e .framer-ynufd4-container { flex: none; height: 40px; position: relative; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0Gp2e .framer-j24yf3, .framer-0Gp2e .framer-1yuda73 { gap: 0px; } .framer-0Gp2e .framer-j24yf3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0Gp2e .framer-j24yf3 > :first-child { margin-left: 0px; } .framer-0Gp2e .framer-j24yf3 > :last-child { margin-right: 0px; } .framer-0Gp2e .framer-1yuda73 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0Gp2e .framer-1yuda73 > :first-child { margin-top: 0px; } .framer-0Gp2e .framer-1yuda73 > :last-child { margin-bottom: 0px; } }\", \".framer-0Gp2e.framer-v-njfs4r .framer-j24yf3 { width: 430px; }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicHeight 286\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w9xsEgXzp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerVariables {\"cp85yzYYT\":\"text\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          */\nconst FramerOc0OfPHWC = withCSS(Component, css, \"framer-0Gp2e\");\nexport default FramerOc0OfPHWC;\nFramerOc0OfPHWC.displayName = \"CTA\";\nFramerOc0OfPHWC.defaultProps = {\n  height: 286,\n  width: 1200\n};\naddPropertyControls(FramerOc0OfPHWC, {\n  variant: {\n    options: [\"pddWuBRgu\", \"w9xsEgXzp\"],\n    optionTitles: [\"Desktop\", \"Mobile\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  cp85yzYYT: {\n    defaultValue: \"Start training people with work-ready skills.\",\n    displayTextArea: false,\n    title: \"Text\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerOc0OfPHWC, [...ButtonFonts, ...sharedStyle.fonts, ...sharedStyle1.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\": \"FramerOc0OfPHWC\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w9xsEgXzp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerVariables\": \"{\\\"cp85yzYYT\\\":\\\"text\\\"}\",\n        \"framerIntrinsicHeight\": \"286\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Oc0OfPHWC.map", "// Generated by Framer (a4dc481)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useHydratedBreakpointVariants, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/534oB9Tn5cZB6VZbkWLJ/Video.js\";\nimport TopBar from \"https://framerusercontent.com/modules/wXAwqF9XCxGPKnUMEzr4/0UKXiQC8juDsLslmh1tE/a8zaifG98.js\";\nimport Footer from \"https://framerusercontent.com/modules/xZMB8DJ1EIcEzv9LrRvD/VQZBZhOTYtkTGBhO4lYE/NNpgnq2bN.js\";\nimport CTA from \"https://framerusercontent.com/modules/PKZHThPNb20LLZ5IyODS/AtODCV0egPfiUaypxHfv/Oc0OfPHWC.js\";\nimport CTAPromo from \"https://framerusercontent.com/modules/9a9fdBJGATSuyUuVEA6Q/4EWBXIdV7uwj2UmdtZex/WuTTS2aV8.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/dSSaANImV97tFTdrlfur/pTipuYEsQrdAbYiSZBqw/ahLgTfCIP.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/a9uy8Adx843jU4jpxRRF/O3gNrJbfHu36PI4b6lEy/PJ34MGaut.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/A4GhpMGwij7r3KUI4Ru4/paxEU51e4tBkkxHEMB73/stylesPresetHeading1.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/eDajaOFaKRSLWMcysIDa/C13Hnrz1TZ6KmUTTtH6d/stylesPresetHeading2.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/iTOOMwb9w2h9nnBKZhWa/8sziZQJ271X925efqFhV/uJq8VfNCy.js\";\nconst TopBarFonts = getFonts(TopBar);\nconst VideoFonts = getFonts(Video);\nconst CTAPromoFonts = getFonts(CTAPromo);\nconst CTAFonts = getFonts(CTA);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"UbYFw_IGF\", \"ZtD7AX4oQ\", \"uhAugiDsl\", \"a6aI3HSOb\"];\nconst breakpoints = {\n  a6aI3HSOb: \"(max-width: 389px)\",\n  UbYFw_IGF: \"(min-width: 1200px)\",\n  uhAugiDsl: \"(min-width: 390px) and (max-width: 809px)\",\n  ZtD7AX4oQ: \"(min-width: 810px) and (max-width: 1199px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  a6aI3HSOb: \"framer-v-1pfck5g\",\n  UbYFw_IGF: \"framer-v-17nqecg\",\n  uhAugiDsl: \"framer-v-1bs3j9e\",\n  ZtD7AX4oQ: \"framer-v-kziyoq\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"UbYFw_IGF\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"UbYFw_IGF\",\n  Phone: \"uhAugiDsl\",\n  Tablet: \"ZtD7AX4oQ\",\n  VH: \"a6aI3HSOb\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `translate(-50%, -50%) ${t}`;\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"UbYFw_IGF\",\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"UbYFw_IGF\",\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-sXYcA\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-17nqecg\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-29d8ha\",\n            \"data-framer-name\": \"Nav Wrapper\",\n            name: \"Nav Wrapper\",\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-m2ighh-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  a6aI3HSOb: {\n                    variant: \"ANlim4K0k\"\n                  },\n                  uhAugiDsl: {\n                    variant: \"ANlim4K0k\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(TopBar, {\n                  height: \"100%\",\n                  id: \"LtZLnWp9o\",\n                  layoutId: \"LtZLnWp9o\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"VS11D3mbo\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.header, {\n            className: \"framer-12ovyn4\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: [/*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-11huylp\",\n              \"data-framer-name\": \"Heading and Subheading\",\n              name: \"Heading and Subheading\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  a6aI3HSOb: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        className: \"framer-styles-preset-o3e5h0\",\n                        \"data-styles-preset\": \"stylesPresetHeading1\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"Bridge the gap between theory and practice.\"\n                      })\n                    })\n                  },\n                  uhAugiDsl: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        className: \"framer-styles-preset-o3e5h0\",\n                        \"data-styles-preset\": \"stylesPresetHeading1\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"Bridge the gap between theory and practice.\"\n                      })\n                    })\n                  },\n                  ZtD7AX4oQ: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h1\", {\n                        className: \"framer-styles-preset-o3e5h0\",\n                        \"data-styles-preset\": \"stylesPresetHeading1\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\"\n                        },\n                        children: \"Bridge the gap between theory and practice.\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h1\", {\n                      className: \"framer-styles-preset-o3e5h0\",\n                      \"data-styles-preset\": \"stylesPresetHeading1\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Bridge the gap between theory and practice.\"\n                    })\n                  }),\n                  className: \"framer-1qpetjn\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  a6aI3HSOb: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS01MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", serif',\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(85, 85, 85)\"\n                        },\n                        children: [\"The Qualify learning management system goes beyond end of course quizzes, and provides users with practical tasks to build \", /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TWFucm9wZS03MDA=\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-text-color\": \"var(--token-3621d307-55e4-470c-9fe1-be4f7ac7b0c3, rgb(51, 48, 217))\"\n                          },\n                          children: \"work-ready\"\n                        }), \" people.\"]\n                      })\n                    })\n                  },\n                  uhAugiDsl: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS01MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", serif',\n                          \"--framer-font-size\": \"20px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(85, 85, 85)\"\n                        },\n                        children: [\"The Qualify learning management system goes beyond end of course quizzes, and provides users with practical tasks to build \", /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TWFucm9wZS03MDA=\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-text-color\": \"var(--token-3621d307-55e4-470c-9fe1-be4f7ac7b0c3, rgb(51, 48, 217))\"\n                          },\n                          children: \"work-ready\"\n                        }), \" people.\"]\n                      })\n                    })\n                  },\n                  ZtD7AX4oQ: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"h2\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS01MDA=\",\n                          \"--framer-font-family\": '\"Manrope\", serif',\n                          \"--framer-font-size\": \"24px\",\n                          \"--framer-font-weight\": \"500\",\n                          \"--framer-letter-spacing\": \"-0.5px\",\n                          \"--framer-line-height\": \"1.5em\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"rgb(85, 85, 85)\"\n                        },\n                        children: [\"The Qualify learning management system goes beyond end of course quizzes, and provides users with practical tasks to build \", /*#__PURE__*/_jsx(\"span\", {\n                          style: {\n                            \"--font-selector\": \"R0Y7TWFucm9wZS03MDA=\",\n                            \"--framer-font-weight\": \"700\",\n                            \"--framer-text-color\": \"var(--token-3621d307-55e4-470c-9fe1-be4f7ac7b0c3, rgb(51, 48, 217))\"\n                          },\n                          children: \"work-ready\"\n                        }), \" people.\"]\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsxs(\"h2\", {\n                      style: {\n                        \"--font-selector\": \"R0Y7TWFucm9wZS01MDA=\",\n                        \"--framer-font-family\": '\"Manrope\", serif',\n                        \"--framer-font-size\": \"24px\",\n                        \"--framer-font-weight\": \"500\",\n                        \"--framer-letter-spacing\": \"-0.5px\",\n                        \"--framer-line-height\": \"1.5em\",\n                        \"--framer-text-alignment\": \"left\",\n                        \"--framer-text-color\": \"rgb(85, 85, 85)\"\n                      },\n                      children: [\"The Qualify learning management system goes beyond end of course quizzes, and provides users with practical tasks to build \", /*#__PURE__*/_jsx(\"span\", {\n                        style: {\n                          \"--font-selector\": \"R0Y7TWFucm9wZS03MDA=\",\n                          \"--framer-font-weight\": \"700\",\n                          \"--framer-text-color\": \"var(--token-3621d307-55e4-470c-9fe1-be4f7ac7b0c3, rgb(51, 48, 217))\"\n                        },\n                        children: \"work-ready\"\n                      }), \" people.\"]\n                    })\n                  }),\n                  className: \"framer-j7aelh\",\n                  fonts: [\"GF;Manrope-500\", \"GF;Manrope-700\"],\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })]\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-v3klyb\",\n              \"data-framer-name\": \"Creative Wrapper\",\n              name: \"Creative Wrapper\",\n              children: /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-jnfrqg\",\n                \"data-framer-name\": \"Creative\",\n                name: \"Creative\",\n                children: [/*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 1217,\n                    intrinsicWidth: 1252,\n                    pixelHeight: 1217,\n                    pixelWidth: 1252,\n                    src: new URL(\"https://framerusercontent.com/images/u5Cl61BLowxHL878l9mhWBwp44.svg\").href\n                  },\n                  className: \"framer-1mxdn8s\",\n                  \"data-framer-name\": \"Gradient_Blob\",\n                  name: \"Gradient_Blob\"\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    a6aI3HSOb: {\n                      transformTemplate: optimizeAppearTransformTemplate(\"xr6lff\", transformTemplate)\n                    },\n                    uhAugiDsl: {\n                      transformTemplate: optimizeAppearTransformTemplate(\"bozo6v\", transformTemplate)\n                    },\n                    ZtD7AX4oQ: {\n                      transformTemplate: optimizeAppearTransformTemplate(\"1prfhbs\", transformTemplate)\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-18isr6m\",\n                    \"data-framer-name\": \"Glass Frame\",\n                    name: \"Glass Frame\",\n                    transformTemplate: optimizeAppearTransformTemplate(\"18isr6m\", transformTemplate),\n                    children: /*#__PURE__*/_jsx(SVG, {\n                      className: \"framer-4srdsi\",\n                      \"data-framer-name\": \"Glass_Frame_Phone\",\n                      fill: \"black\",\n                      intrinsicHeight: 958,\n                      intrinsicWidth: 504,\n                      name: \"Glass_Frame_Phone\",\n                      svg: '<svg width=\"504\" height=\"958\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\" shape-rendering=\"crispEdges\"><rect x=\"37\" y=\"27\" width=\"430\" height=\"884\" rx=\"20\" fill=\"#fff\" fill-opacity=\".2\"/><rect x=\"36\" y=\"26\" width=\"432\" height=\"886\" rx=\"21\" stroke=\"#fff\" stroke-width=\"2\"/></g><defs><filter id=\"a\" x=\"0\" y=\"0\" width=\"504\" height=\"958\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"12.5\"/><feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_369_7846\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"10\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_369_7846\"/><feOffset dy=\"10\"/><feGaussianBlur stdDeviation=\"12.5\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.00816666 0 0 0 0 0 0 0 0 0 0.0583333 0 0 0 0.1 0\"/><feBlend in2=\"effect1_backgroundBlur_369_7846\" result=\"effect2_dropShadow_369_7846\"/><feBlend in=\"SourceGraphic\" in2=\"effect2_dropShadow_369_7846\" result=\"shape\"/></filter></defs></svg>',\n                      withExternalLayout: true\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    a6aI3HSOb: {\n                      transformTemplate: optimizeAppearTransformTemplate(\"w7dtlf\", transformTemplate)\n                    },\n                    uhAugiDsl: {\n                      transformTemplate: optimizeAppearTransformTemplate(\"1547yma\", transformTemplate)\n                    },\n                    ZtD7AX4oQ: {\n                      transformTemplate: optimizeAppearTransformTemplate(\"kq55sm\", transformTemplate)\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-15uzdfa\",\n                    \"data-framer-name\": \"Video\",\n                    name: \"Video\",\n                    transformTemplate: optimizeAppearTransformTemplate(\"15uzdfa\", transformTemplate),\n                    children: /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-fnhltx-container\",\n                      children: /*#__PURE__*/_jsx(Video, {\n                        backgroundColor: \"rgba(0, 0, 0, 0)\",\n                        borderRadius: 10,\n                        bottomLeftRadius: 10,\n                        bottomRightRadius: 10,\n                        canvasPlay: false,\n                        controls: false,\n                        height: \"100%\",\n                        id: \"LXq3Q0N5G\",\n                        isMixedBorderRadius: false,\n                        layoutId: \"LXq3Q0N5G\",\n                        loop: true,\n                        muted: true,\n                        objectFit: \"cover\",\n                        playing: true,\n                        posterEnabled: false,\n                        srcFile: new URL(\"https://framerusercontent.com/modules/assets/gVD7eVYc6BBUiSd0yYBKSUce8~DMHCsgkqqZ8S4Iqir9PlltSF152PtpeIqWOYx8HavGU.mp4\").href,\n                        srcType: \"Upload\",\n                        srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n                        startTime: 0,\n                        style: {\n                          height: \"100%\",\n                          width: \"100%\"\n                        },\n                        topLeftRadius: 10,\n                        topRightRadius: 10,\n                        volume: 25,\n                        width: \"100%\"\n                      })\n                    })\n                  })\n                })]\n              })\n            })]\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1dygrlf-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                a6aI3HSOb: {\n                  variant: \"fJzd6o_0W\"\n                },\n                uhAugiDsl: {\n                  variant: \"fJzd6o_0W\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(CTAPromo, {\n                height: \"100%\",\n                id: \"kSrIxncBe\",\n                layoutId: \"kSrIxncBe\",\n                style: {\n                  width: \"100%\"\n                },\n                title: \"Welcome, early adopters.\",\n                variant: \"BA4wAbUGW\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-15nikw\",\n            \"data-framer-name\": \"Features Section\",\n            name: \"Features Section\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1nahbrf\",\n              \"data-framer-name\": \"Features Heading\",\n              name: \"Features Heading\",\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h3\", {\n                    className: \"framer-styles-preset-1jkzk3b\",\n                    \"data-styles-preset\": \"PJ34MGaut\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"rgb(85, 85, 85)\"\n                    },\n                    children: \"Tools for every step in your training cycle.\"\n                  })\n                }),\n                className: \"framer-xexql9\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-8ozw4u\",\n              \"data-framer-name\": \"Features\",\n              name: \"Features\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1qbe8u9\",\n                \"data-framer-name\": \"Learner Engagement\",\n                name: \"Learner Engagement\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-aufyku\",\n                  \"data-framer-name\": \"Text and CTA\",\n                  name: \"Text and CTA\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Engage Learners.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Engage Learners.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1m9bzi2\",\n                          \"data-styles-preset\": \"stylesPresetHeading2\",\n                          children: \"Engage Learners.\"\n                        })\n                      }),\n                      className: \"framer-1bigzda\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Short micro lessons keep learners' attention and boost completion rates, while personalised topic revision delivered at smart intervals optimises knowledge retention resulting in highly capable people.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Short micro lessons keep learners' attention and boost completion rates, while personalised topic revision delivered at smart intervals optimises knowledge retention resulting in highly capable people.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          className: \"framer-styles-preset-1c3fawt\",\n                          \"data-styles-preset\": \"ahLgTfCIP\",\n                          children: \"Short micro lessons keep learners' attention and boost completion rates, while personalised topic revision delivered at smart intervals optimises knowledge retention resulting in highly capable people.\"\n                        })\n                      }),\n                      className: \"framer-1g2ohou\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-vee5ko\",\n                  \"data-framer-name\": \"Media\",\n                  name: \"Media\",\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1252,\n                      intrinsicWidth: 1252,\n                      loading: \"lazy\",\n                      pixelHeight: 1252,\n                      pixelWidth: 1252,\n                      src: new URL(\"https://framerusercontent.com/images/3GtoNt2SmPofPz0yZzGKLMxfx0M.svg\").href\n                    },\n                    className: \"framer-f9jh5l\",\n                    \"data-framer-name\": \"Engage_Learners\",\n                    name: \"Engage_Learners\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-16g6jhf\",\n                \"data-framer-name\": \"Skills assessment\",\n                name: \"Skills assessment\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-c4zbol\",\n                  \"data-framer-name\": \"Media\",\n                  name: \"Media\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      ZtD7AX4oQ: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 1252,\n                          intrinsicWidth: 1252,\n                          loading: \"lazy\",\n                          pixelHeight: 1252,\n                          pixelWidth: 1252,\n                          sizes: \"600px\",\n                          src: new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg\").href} 1252w`\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 1252,\n                        intrinsicWidth: 1252,\n                        loading: \"lazy\",\n                        pixelHeight: 1252,\n                        pixelWidth: 1252,\n                        sizes: \"800px\",\n                        src: new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg\").href,\n                        srcSet: `${new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/lQr50fUK4oBFgNwkMqE1YIrSGBg.jpg\").href} 1252w`\n                      },\n                      className: \"framer-1rajqy5\",\n                      \"data-framer-name\": \"Evaluate_Skills\",\n                      name: \"Evaluate_Skills\"\n                    })\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1aupz3b\",\n                  \"data-framer-name\": \"Text and CTA\",\n                  name: \"Text and CTA\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Assess Skills.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Assess Skills.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1m9bzi2\",\n                          \"data-styles-preset\": \"stylesPresetHeading2\",\n                          children: \"Assess Skills.\"\n                        })\n                      }),\n                      className: \"framer-anahzu\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Qualify's practical assessment tools enable work-specific tasks to be evaluated, capturing rich evidence and performance feedback.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Qualify's practical assessment tools enable work-specific tasks to be evaluated, capturing rich evidence and performance feedback.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          className: \"framer-styles-preset-1c3fawt\",\n                          \"data-styles-preset\": \"ahLgTfCIP\",\n                          children: \"Qualify's practical assessment tools enable work-specific tasks to be evaluated, capturing rich evidence and performance feedback.\"\n                        })\n                      }),\n                      className: \"framer-j3gor8\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })]\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-8v5qz7\",\n                \"data-framer-name\": \"Quality assurance\",\n                name: \"Quality assurance\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-geij6r\",\n                  \"data-framer-name\": \"Text and CTA\",\n                  name: \"Text and CTA\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Assure Quality.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Assure Quality.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1m9bzi2\",\n                          \"data-styles-preset\": \"stylesPresetHeading2\",\n                          children: \"Assure Quality.\"\n                        })\n                      }),\n                      className: \"framer-f4kf5m\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Breeze through quality and compliance workflows with auto-generated learner assessment samples and audit notes.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Breeze through quality and compliance workflows with auto-generated learner assessment samples and audit notes.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          className: \"framer-styles-preset-1c3fawt\",\n                          \"data-styles-preset\": \"ahLgTfCIP\",\n                          children: \"Breeze through quality and compliance workflows with auto-generated learner assessment samples and audit notes.\"\n                        })\n                      }),\n                      className: \"framer-dka5c1\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })]\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-70yedj\",\n                  \"data-framer-name\": \"Media\",\n                  name: \"Media\",\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1252,\n                      intrinsicWidth: 1252,\n                      loading: \"lazy\",\n                      pixelHeight: 1252,\n                      pixelWidth: 1252,\n                      src: new URL(\"https://framerusercontent.com/images/lqKudODcuZt2FVm7lfsPQ1lCoQ.svg\").href\n                    },\n                    className: \"framer-1e4o953\",\n                    \"data-framer-name\": \"Assure_Quality\",\n                    name: \"Assure_Quality\"\n                  })\n                })]\n              }), /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-g70fpq\",\n                \"data-framer-name\": \"Analytics and reporting\",\n                name: \"Analytics and reporting\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1nn5uyb\",\n                  \"data-framer-name\": \"Media\",\n                  name: \"Media\",\n                  children: /*#__PURE__*/_jsx(Image, {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 1252,\n                      intrinsicWidth: 1252,\n                      loading: \"lazy\",\n                      pixelHeight: 1252,\n                      pixelWidth: 1252,\n                      src: new URL(\"https://framerusercontent.com/images/a7Rb48BFEezxwsB1QpwREvZg.svg\").href\n                    },\n                    className: \"framer-1aedw3z\",\n                    \"data-framer-name\": \"Analyse_and_Report\",\n                    name: \"Analyse_and_Report\"\n                  })\n                }), /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1hij5ru\",\n                  \"data-framer-name\": \"Text and CTA\",\n                  name: \"Text and CTA\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Report and Certify.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1m9bzi2\",\n                            \"data-styles-preset\": \"stylesPresetHeading2\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Report and Certify.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1m9bzi2\",\n                          \"data-styles-preset\": \"stylesPresetHeading2\",\n                          children: \"Report and Certify.\"\n                        })\n                      }),\n                      className: \"framer-14u9lij\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      a6aI3HSOb: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Progress, results, impact and learner feedback are all tracked and monitored for reporting and analytics. Manage certification rules and issue learner certificates.\"\n                          })\n                        })\n                      },\n                      uhAugiDsl: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h3\", {\n                            className: \"framer-styles-preset-1c3fawt\",\n                            \"data-styles-preset\": \"ahLgTfCIP\",\n                            style: {\n                              \"--framer-text-alignment\": \"center\"\n                            },\n                            children: \"Progress, results, impact and learner feedback are all tracked and monitored for reporting and analytics. Manage certification rules and issue learner certificates.\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          className: \"framer-styles-preset-1c3fawt\",\n                          \"data-styles-preset\": \"ahLgTfCIP\",\n                          children: \"Progress, results, impact and learner feedback are all tracked and monitored for reporting and analytics. Manage certification rules and issue learner certificates.\"\n                        })\n                      }),\n                      className: \"framer-y023sn\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })]\n                })]\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-qs0no2\",\n            \"data-framer-name\": \"CTA\",\n            name: \"CTA\",\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-jz67ay-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  a6aI3HSOb: {\n                    variant: \"w9xsEgXzp\"\n                  },\n                  uhAugiDsl: {\n                    variant: \"w9xsEgXzp\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(CTA, {\n                  height: \"100%\",\n                  id: \"VABONU8hl\",\n                  layoutId: \"VABONU8hl\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  text: \"Start training people with work-ready skills.\",\n                  variant: \"pddWuBRgu\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-kp4jmo-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                a6aI3HSOb: {\n                  variant: \"vUrCHDcI1\"\n                },\n                uhAugiDsl: {\n                  variant: \"vUrCHDcI1\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Footer, {\n                height: \"100%\",\n                id: \"dSSvuQf26\",\n                layoutId: \"dSSvuQf26\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"H1mpamEnS\",\n                width: \"100%\"\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-sXYcA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: white; }`, \".framer-sXYcA .framer-15ozs8r { display: block; }\", \".framer-sXYcA .framer-17nqecg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-sXYcA .framer-29d8ha { flex: none; height: 80px; max-width: 1280px; overflow: visible; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 2; }\", \".framer-sXYcA .framer-m2ighh-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\", \".framer-sXYcA .framer-12ovyn4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; max-width: 1200px; min-height: 600px; overflow: visible; padding: 60px 60px 60px 60px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-11huylp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-sXYcA .framer-1qpetjn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\", \".framer-sXYcA .framer-j7aelh { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-sXYcA .framer-v3klyb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 640px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-sXYcA .framer-jnfrqg { align-content: center; align-items: center; aspect-ratio: 0.46208530805687204 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 640px); justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 296px; z-index: 1; }\", \".framer-sXYcA .framer-1mxdn8s { aspect-ratio: 1.028759244042728 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 576px); overflow: visible; position: relative; width: 200%; z-index: 1; }\", \".framer-sXYcA .framer-18isr6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 1; }\", \".framer-sXYcA .framer-4srdsi { aspect-ratio: 0.5260960334029228 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 741px); position: relative; width: 390px; }\", \".framer-sXYcA .framer-15uzdfa { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: min-content; will-change: transform; z-index: 1; }\", \".framer-sXYcA .framer-fnhltx-container { aspect-ratio: 0.46208530805687204 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 649px); position: relative; width: 300px; }\", \".framer-sXYcA .framer-1dygrlf-container { flex: none; height: auto; position: relative; width: 1200px; }\", \".framer-sXYcA .framer-15nikw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-1nahbrf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-xexql9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-sXYcA .framer-8ozw4u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-1qbe8u9, .framer-sXYcA .framer-16g6jhf, .framer-sXYcA .framer-8v5qz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-evenly; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-aufyku, .framer-sXYcA .framer-1aupz3b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\", \".framer-sXYcA .framer-1bigzda, .framer-sXYcA .framer-anahzu, .framer-sXYcA .framer-f4kf5m, .framer-sXYcA .framer-14u9lij { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-sXYcA .framer-1g2ohou { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-sXYcA .framer-16t35w3-container, .framer-sXYcA .framer-6kuejx-container, .framer-sXYcA .framer-1jgqfxk-container, .framer-sXYcA .framer-mpn6os-container { flex: none; height: 40px; position: relative; width: auto; }\", \".framer-sXYcA .framer-vee5ko, .framer-sXYcA .framer-c4zbol, .framer-sXYcA .framer-70yedj, .framer-sXYcA .framer-1nn5uyb { 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: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-sXYcA .framer-f9jh5l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); overflow: visible; position: relative; width: 800px; z-index: 0; }\", \".framer-sXYcA .framer-1rajqy5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); overflow: visible; position: relative; width: 800px; }\", \".framer-sXYcA .framer-j3gor8, .framer-sXYcA .framer-dka5c1, .framer-sXYcA .framer-y023sn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-sXYcA .framer-geij6r { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\", \".framer-sXYcA .framer-1e4o953, .framer-sXYcA .framer-1aedw3z { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 700px); overflow: visible; position: relative; width: 700px; z-index: 0; }\", \".framer-sXYcA .framer-g70fpq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-1hij5ru { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 20px 0px 20px; position: relative; width: 1px; z-index: 1; }\", \".framer-sXYcA .framer-qs0no2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-sXYcA .framer-jz67ay-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\", \".framer-sXYcA .framer-kp4jmo-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sXYcA .framer-17nqecg, .framer-sXYcA .framer-12ovyn4, .framer-sXYcA .framer-11huylp, .framer-sXYcA .framer-v3klyb, .framer-sXYcA .framer-jnfrqg, .framer-sXYcA .framer-18isr6m, .framer-sXYcA .framer-15uzdfa, .framer-sXYcA .framer-15nikw, .framer-sXYcA .framer-1nahbrf, .framer-sXYcA .framer-8ozw4u, .framer-sXYcA .framer-aufyku, .framer-sXYcA .framer-vee5ko, .framer-sXYcA .framer-c4zbol, .framer-sXYcA .framer-1aupz3b, .framer-sXYcA .framer-geij6r, .framer-sXYcA .framer-70yedj, .framer-sXYcA .framer-1nn5uyb, .framer-sXYcA .framer-1hij5ru, .framer-sXYcA .framer-qs0no2 { gap: 0px; } .framer-sXYcA .framer-17nqecg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sXYcA .framer-17nqecg > :first-child, .framer-sXYcA .framer-11huylp > :first-child, .framer-sXYcA .framer-jnfrqg > :first-child, .framer-sXYcA .framer-15nikw > :first-child, .framer-sXYcA .framer-8ozw4u > :first-child, .framer-sXYcA .framer-aufyku > :first-child, .framer-sXYcA .framer-1aupz3b > :first-child, .framer-sXYcA .framer-geij6r > :first-child, .framer-sXYcA .framer-1hij5ru > :first-child { margin-top: 0px; } .framer-sXYcA .framer-17nqecg > :last-child, .framer-sXYcA .framer-11huylp > :last-child, .framer-sXYcA .framer-jnfrqg > :last-child, .framer-sXYcA .framer-15nikw > :last-child, .framer-sXYcA .framer-8ozw4u > :last-child, .framer-sXYcA .framer-aufyku > :last-child, .framer-sXYcA .framer-1aupz3b > :last-child, .framer-sXYcA .framer-geij6r > :last-child, .framer-sXYcA .framer-1hij5ru > :last-child { margin-bottom: 0px; } .framer-sXYcA .framer-12ovyn4 > * { margin: 0px; margin-left: calc(150px / 2); margin-right: calc(150px / 2); } .framer-sXYcA .framer-12ovyn4 > :first-child, .framer-sXYcA .framer-v3klyb > :first-child, .framer-sXYcA .framer-18isr6m > :first-child, .framer-sXYcA .framer-15uzdfa > :first-child, .framer-sXYcA .framer-1nahbrf > :first-child, .framer-sXYcA .framer-vee5ko > :first-child, .framer-sXYcA .framer-c4zbol > :first-child, .framer-sXYcA .framer-70yedj > :first-child, .framer-sXYcA .framer-1nn5uyb > :first-child, .framer-sXYcA .framer-qs0no2 > :first-child { margin-left: 0px; } .framer-sXYcA .framer-12ovyn4 > :last-child, .framer-sXYcA .framer-v3klyb > :last-child, .framer-sXYcA .framer-18isr6m > :last-child, .framer-sXYcA .framer-15uzdfa > :last-child, .framer-sXYcA .framer-1nahbrf > :last-child, .framer-sXYcA .framer-vee5ko > :last-child, .framer-sXYcA .framer-c4zbol > :last-child, .framer-sXYcA .framer-70yedj > :last-child, .framer-sXYcA .framer-1nn5uyb > :last-child, .framer-sXYcA .framer-qs0no2 > :last-child { margin-right: 0px; } .framer-sXYcA .framer-11huylp > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sXYcA .framer-v3klyb > *, .framer-sXYcA .framer-18isr6m > *, .framer-sXYcA .framer-15uzdfa > *, .framer-sXYcA .framer-1nahbrf > *, .framer-sXYcA .framer-vee5ko > *, .framer-sXYcA .framer-c4zbol > *, .framer-sXYcA .framer-70yedj > *, .framer-sXYcA .framer-1nn5uyb > *, .framer-sXYcA .framer-qs0no2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sXYcA .framer-jnfrqg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sXYcA .framer-15nikw > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-sXYcA .framer-8ozw4u > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sXYcA .framer-aufyku > *, .framer-sXYcA .framer-1aupz3b > *, .framer-sXYcA .framer-geij6r > *, .framer-sXYcA .framer-1hij5ru > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\", \"@media (min-width: 1200px) { .framer-sXYcA .hidden-17nqecg { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-sXYcA .hidden-kziyoq { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-sXYcA .framer-17nqecg { width: 810px; } .framer-sXYcA .framer-12ovyn4 { flex-direction: column; gap: 100px; min-height: 400px; padding: 60px 20px 60px 20px; } .framer-sXYcA .framer-11huylp { flex: none; gap: 40px; max-width: 560px; width: 100%; } .framer-sXYcA .framer-v3klyb { flex: none; width: 100%; } .framer-sXYcA .framer-1dygrlf-container { width: 100%; } .framer-sXYcA .framer-8ozw4u { gap: 60px; } .framer-sXYcA .framer-1qbe8u9 { padding: 0px 40px 0px 40px; } .framer-sXYcA .framer-aufyku { flex: none; width: 390px; } .framer-sXYcA .framer-f9jh5l, .framer-sXYcA .framer-1rajqy5, .framer-sXYcA .framer-1e4o953, .framer-sXYcA .framer-1aedw3z { height: var(--framer-aspect-ratio-supported, 600px); width: 600px; } .framer-sXYcA .framer-8v5qz7 { gap: 40px; justify-content: center; } .framer-sXYcA .framer-g70fpq { padding: 0px 0px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sXYcA .framer-12ovyn4, .framer-sXYcA .framer-11huylp, .framer-sXYcA .framer-8ozw4u, .framer-sXYcA .framer-8v5qz7 { gap: 0px; } .framer-sXYcA .framer-12ovyn4 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-sXYcA .framer-12ovyn4 > :first-child, .framer-sXYcA .framer-11huylp > :first-child, .framer-sXYcA .framer-8ozw4u > :first-child { margin-top: 0px; } .framer-sXYcA .framer-12ovyn4 > :last-child, .framer-sXYcA .framer-11huylp > :last-child, .framer-sXYcA .framer-8ozw4u > :last-child { margin-bottom: 0px; } .framer-sXYcA .framer-11huylp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sXYcA .framer-8ozw4u > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sXYcA .framer-8v5qz7 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-sXYcA .framer-8v5qz7 > :first-child { margin-left: 0px; } .framer-sXYcA .framer-8v5qz7 > :last-child { margin-right: 0px; } }}`, `@media (min-width: 390px) and (max-width: 809px) { .framer-sXYcA .hidden-1bs3j9e { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-sXYcA .framer-17nqecg { width: 390px; } .framer-sXYcA .framer-29d8ha { order: 0; } .framer-sXYcA .framer-12ovyn4 { flex-direction: column; gap: 100px; order: 1; padding: 20px 20px 60px 20px; } .framer-sXYcA .framer-11huylp { flex: none; gap: 40px; width: 100%; } .framer-sXYcA .framer-v3klyb { flex: none; width: 100%; } .framer-sXYcA .framer-1dygrlf-container { order: 2; width: 100%; } .framer-sXYcA .framer-15nikw { gap: 60px; order: 3; padding: 60px 20px 60px 20px; } .framer-sXYcA .framer-1nahbrf { padding: 0px 20px 0px 20px; } .framer-sXYcA .framer-8ozw4u { gap: 0px; } .framer-sXYcA .framer-1qbe8u9 { flex-direction: column; padding: 0px 0px 0px 0px; } .framer-sXYcA .framer-aufyku, .framer-sXYcA .framer-1aupz3b, .framer-sXYcA .framer-geij6r, .framer-sXYcA .framer-1hij5ru { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-sXYcA .framer-vee5ko, .framer-sXYcA .framer-c4zbol, .framer-sXYcA .framer-70yedj, .framer-sXYcA .framer-1nn5uyb { flex: none; order: 1; width: min-content; } .framer-sXYcA .framer-16g6jhf, .framer-sXYcA .framer-8v5qz7, .framer-sXYcA .framer-g70fpq { flex-direction: column; padding: 20px 20px 20px 20px; } .framer-sXYcA .framer-1e4o953, .framer-sXYcA .framer-1aedw3z { height: var(--framer-aspect-ratio-supported, 450px); width: 450px; } .framer-sXYcA .framer-qs0no2 { order: 4; } .framer-sXYcA .framer-kp4jmo-container { order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sXYcA .framer-12ovyn4, .framer-sXYcA .framer-11huylp, .framer-sXYcA .framer-15nikw, .framer-sXYcA .framer-8ozw4u, .framer-sXYcA .framer-1qbe8u9, .framer-sXYcA .framer-16g6jhf, .framer-sXYcA .framer-8v5qz7, .framer-sXYcA .framer-g70fpq { gap: 0px; } .framer-sXYcA .framer-12ovyn4 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-sXYcA .framer-12ovyn4 > :first-child, .framer-sXYcA .framer-11huylp > :first-child, .framer-sXYcA .framer-15nikw > :first-child, .framer-sXYcA .framer-8ozw4u > :first-child { margin-top: 0px; } .framer-sXYcA .framer-12ovyn4 > :last-child, .framer-sXYcA .framer-11huylp > :last-child, .framer-sXYcA .framer-15nikw > :last-child, .framer-sXYcA .framer-8ozw4u > :last-child { margin-bottom: 0px; } .framer-sXYcA .framer-11huylp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sXYcA .framer-15nikw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sXYcA .framer-8ozw4u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sXYcA .framer-1qbe8u9 > *, .framer-sXYcA .framer-1qbe8u9 > :first-child, .framer-sXYcA .framer-1qbe8u9 > :last-child, .framer-sXYcA .framer-16g6jhf > *, .framer-sXYcA .framer-16g6jhf > :first-child, .framer-sXYcA .framer-16g6jhf > :last-child, .framer-sXYcA .framer-8v5qz7 > *, .framer-sXYcA .framer-8v5qz7 > :first-child, .framer-sXYcA .framer-8v5qz7 > :last-child, .framer-sXYcA .framer-g70fpq > *, .framer-sXYcA .framer-g70fpq > :first-child, .framer-sXYcA .framer-g70fpq > :last-child { margin: 0px; } }}`, `@media (max-width: 389px) { .framer-sXYcA .hidden-1pfck5g { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-sXYcA .framer-17nqecg { height: 844px; width: 390px; } .framer-sXYcA .framer-29d8ha { order: 0; } .framer-sXYcA .framer-12ovyn4 { flex-direction: column; gap: 100px; order: 1; padding: 20px 20px 60px 20px; } .framer-sXYcA .framer-11huylp { flex: none; gap: 40px; width: 100%; } .framer-sXYcA .framer-v3klyb { flex: none; width: 100%; } .framer-sXYcA .framer-1dygrlf-container { order: 2; width: 100%; } .framer-sXYcA .framer-15nikw { order: 3; } .framer-sXYcA .framer-1nahbrf { padding: 0px 20px 0px 20px; } .framer-sXYcA .framer-8ozw4u { gap: 20px; } .framer-sXYcA .framer-1qbe8u9 { flex-direction: column; padding: 0px 0px 0px 0px; } .framer-sXYcA .framer-aufyku, .framer-sXYcA .framer-geij6r, .framer-sXYcA .framer-1hij5ru { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-sXYcA .framer-vee5ko, .framer-sXYcA .framer-70yedj, .framer-sXYcA .framer-1nn5uyb { flex: none; order: 0; width: min-content; } .framer-sXYcA .framer-16g6jhf, .framer-sXYcA .framer-8v5qz7, .framer-sXYcA .framer-g70fpq { flex-direction: column; padding: 20px 20px 20px 20px; } .framer-sXYcA .framer-c4zbol { flex: none; order: 1; width: min-content; } .framer-sXYcA .framer-1aupz3b { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-sXYcA .framer-1e4o953, .framer-sXYcA .framer-1aedw3z { height: var(--framer-aspect-ratio-supported, 450px); width: 450px; } .framer-sXYcA .framer-qs0no2 { order: 5; } .framer-sXYcA .framer-kp4jmo-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sXYcA .framer-12ovyn4, .framer-sXYcA .framer-11huylp, .framer-sXYcA .framer-8ozw4u, .framer-sXYcA .framer-1qbe8u9, .framer-sXYcA .framer-16g6jhf, .framer-sXYcA .framer-8v5qz7, .framer-sXYcA .framer-g70fpq { gap: 0px; } .framer-sXYcA .framer-12ovyn4 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-sXYcA .framer-12ovyn4 > :first-child, .framer-sXYcA .framer-11huylp > :first-child, .framer-sXYcA .framer-8ozw4u > :first-child { margin-top: 0px; } .framer-sXYcA .framer-12ovyn4 > :last-child, .framer-sXYcA .framer-11huylp > :last-child, .framer-sXYcA .framer-8ozw4u > :last-child { margin-bottom: 0px; } .framer-sXYcA .framer-11huylp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sXYcA .framer-8ozw4u > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sXYcA .framer-1qbe8u9 > *, .framer-sXYcA .framer-1qbe8u9 > :first-child, .framer-sXYcA .framer-1qbe8u9 > :last-child, .framer-sXYcA .framer-16g6jhf > *, .framer-sXYcA .framer-16g6jhf > :first-child, .framer-sXYcA .framer-16g6jhf > :last-child, .framer-sXYcA .framer-8v5qz7 > *, .framer-sXYcA .framer-8v5qz7 > :first-child, .framer-sXYcA .framer-8v5qz7 > :last-child, .framer-sXYcA .framer-g70fpq > *, .framer-sXYcA .framer-g70fpq > :first-child, .framer-sXYcA .framer-g70fpq > :last-child { margin: 0px; } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicHeight 5474\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZtD7AX4oQ\":{\"layout\":[\"fixed\",\"auto\"]},\"uhAugiDsl\":{\"layout\":[\"fixed\",\"auto\"]},\"a6aI3HSOb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        */\nconst FrameruJq8VfNCy = withCSS(Component, css, \"framer-sXYcA\");\nexport default FrameruJq8VfNCy;\nFrameruJq8VfNCy.displayName = \"Home\";\nFrameruJq8VfNCy.defaultProps = {\n  height: 5474,\n  width: 1200\n};\naddFonts(FrameruJq8VfNCy, [{\n  family: \"Manrope\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/uJq8VfNCy:default\",\n    url: \"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\",\n  weight: \"500\"\n}, {\n  family: \"Manrope\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/uJq8VfNCy:default\",\n    url: \"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\",\n  weight: \"700\"\n}, ...TopBarFonts, ...VideoFonts, ...CTAPromoFonts, ...CTAFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameruJq8VfNCy\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZtD7AX4oQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uhAugiDsl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a6aI3HSOb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"5474\",\n        \"framerContractVersion\": \"1\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicWidth\": \"1200\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "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", "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", "useOnChange", "val", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ButtonFonts", "getFonts", "P8dj6_5tK_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "cp85yzYYT", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramerOc0OfPHWC", "withCSS", "Oc0OfPHWC_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "TopBarFonts", "getFonts", "a8zaifG98_default", "VideoFonts", "Video", "CTAPromoFonts", "WuTTS2aV8_default", "CTAFonts", "Oc0OfPHWC_default", "FooterFonts", "NNpgnq2bN_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "metadata", "uJq8VfNCy_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "a8zaifG98_default", "x", "RichText", "Image2", "optimizeAppearTransformTemplate", "SVG", "Video", "WuTTS2aV8_default", "Oc0OfPHWC_default", "NNpgnq2bN_default", "css", "FrameruJq8VfNCy", "withCSS", "addFonts", "TopBarFonts", "VideoFonts", "CTAPromoFonts", "CTAFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
