{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/RYUNY1hGm7wt6tQgKvxD/aFT5VAqGok6ppzItseRx/J0naHCQyW.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useReducer, useState } from \"react\";\nimport { ControlType, addPropertyControls } from \"framer\";\nimport { useIsOnCanvas, emptyStateStyle, containerStyles, defaultEvents, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nvar PlayOptions;\n(function (PlayOptions) {\n  PlayOptions[\"Normal\"] = \"Off\";\n  PlayOptions[\"Auto\"] = \"On\";\n  PlayOptions[\"Loop\"] = \"Loop\";\n})(PlayOptions || (PlayOptions = {}));\nvar ThumbnailOptions;\n(function (ThumbnailOptions) {\n  ThumbnailOptions[\"High\"] = \"High Quality\";\n  ThumbnailOptions[\"Medium\"] = \"Medium Quality\";\n  ThumbnailOptions[\"Low\"] = \"Low Quality\";\n  ThumbnailOptions[\"Off\"] = \"Off\";\n})(ThumbnailOptions || (ThumbnailOptions = {}));\nvar ThumbnailFormat;\n(function (ThumbnailFormat) {\n  ThumbnailFormat[\"WebP\"] = \"webp\";\n  ThumbnailFormat[\"JPG\"] = \"jpg\";\n})(ThumbnailFormat || (ThumbnailFormat = {})); /**\n                                               * @framerIntrinsicWidth 560\n                                               * @framerIntrinsicHeight 315\n                                               *\n                                               * @framerSupportedLayoutWidth fixed\n                                               * @framerSupportedLayoutHeight fixed\n                                               *\n                                               * @framerComponentPresetProps isRed, borderRadius\n                                               */\nexport function Youtube({\n  url,\n  play,\n  shouldMute,\n  thumbnail,\n  isRed,\n  onClick,\n  onMouseEnter,\n  onMouseLeave,\n  onMouseDown,\n  onMouseUp,\n  ...props\n}) {\n  const onCanvas = useIsOnCanvas();\n  const isAutoplay = play !== PlayOptions.Normal;\n  const showThumbnail = onCanvas || thumbnail !== ThumbnailOptions.Off && !isAutoplay;\n  const [isPreloading, preloadVideo] = useReducer(() => true, false);\n  const [showVideo, startVideo] = useReducer(() => true, !showThumbnail);\n  const [isHovered, setHovered] = useState(false);\n  const borderRadius = useRadius(props);\n  const hasBorderRadius = borderRadius !== \"0px 0px 0px 0px\" && borderRadius !== \"0px\";\n  if (url === \"\") {\n    return /*#__PURE__*/_jsx(Instructions, {});\n  }\n  const parsedURL = parseVideoURL(url);\n  if (parsedURL === undefined) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: \"Invalid Youtube URL.\"\n    });\n  }\n  const [videoId, embedURL] = parsedURL; // https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\n  const thumbnailURL = getThumbnailURL(videoId, thumbnail, getWebPSupported() ? ThumbnailFormat.WebP : ThumbnailFormat.JPG); // https://developers.google.com/youtube/player_parameters\n  const searchParams = embedURL.searchParams;\n  searchParams.set(\"iv_load_policy\", \"3\");\n  searchParams.set(\"rel\", \"0\");\n  searchParams.set(\"modestbranding\", \"1\");\n  searchParams.set(\"playsinline\", \"1\");\n  if (isAutoplay || showThumbnail) {\n    searchParams.set(\"autoplay\", \"1\");\n  }\n  if (isAutoplay && shouldMute) {\n    searchParams.set(\"mute\", \"1\");\n  }\n  if (play === PlayOptions.Loop) {\n    searchParams.set(\"loop\", \"1\");\n    searchParams.set(\"playlist\", videoId);\n  }\n  if (!isRed) {\n    searchParams.set(\"color\", \"white\");\n  }\n  return /*#__PURE__*/_jsxs(\"article\", {\n    onPointerEnter: () => setHovered(true),\n    onPointerLeave: () => setHovered(false),\n    onPointerOver: preloadVideo,\n    onClick: startVideo,\n    style: {\n      ...wrapperStyle,\n      borderRadius,\n      transform:\n      // Safari sometimes struggles to render border-radius:\n      // - on the canvas when changing from 0 to any other value\n      // - or when rendering an iframe\n      hasBorderRadius && (showVideo || onCanvas) ? \"translateZ(0.000001px)\" : \"unset\",\n      cursor: \"pointer\",\n      overflow: \"hidden\"\n    },\n    children: [isPreloading && /*#__PURE__*/_jsx(\"link\", {\n      rel: \"preconnect\",\n      href: \"https://www.youtube.com\"\n    }), isPreloading && /*#__PURE__*/_jsx(\"link\", {\n      rel: \"preconnect\",\n      href: \"https://www.google.com\"\n    }), /*#__PURE__*/_jsx(\"div\", {\n      style: {\n        ...videoStyle,\n        background: showThumbnail ? `center / cover url(${thumbnailURL}) no-repeat` : undefined\n      }\n    }), showVideo ? /*#__PURE__*/_jsx(\"iframe\", {\n      style: videoStyle,\n      src: embedURL.href,\n      frameBorder: \"0\",\n      allow: \"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",\n      onClick: onClick,\n      onMouseEnter: onMouseEnter,\n      onMouseLeave: onMouseLeave,\n      onMouseDown: onMouseDown,\n      onMouseUp: onMouseUp\n    }) : /*#__PURE__*/_jsx(PlayButton, {\n      onClick: startVideo,\n      isHovered: isHovered,\n      isRed: isRed\n    })]\n  });\n}\nYoutube.displayName = \"YouTube\";\naddPropertyControls(Youtube, {\n  url: {\n    type: ControlType.String,\n    title: \"Video\"\n  },\n  play: {\n    type: ControlType.Enum,\n    title: \"Autoplay\",\n    options: Object.values(PlayOptions)\n  },\n  shouldMute: {\n    title: \"Mute\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\",\n    hidden(props) {\n      return props.play === PlayOptions.Normal;\n    }\n  },\n  thumbnail: {\n    title: \"Thumbnail\",\n    description: \"Showing a thumbnail improves performance.\",\n    type: ControlType.Enum,\n    options: Object.values(ThumbnailOptions),\n    hidden(props) {\n      return props.play !== PlayOptions.Normal;\n    }\n  },\n  isRed: {\n    title: \"Color\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Red\",\n    disabledTitle: \"White\"\n  },\n  ...borderRadiusControl,\n  ...defaultEvents\n});\nconst defaultProps = {\n  url: \"https://youtu.be/smPos0mJvh8\",\n  play: PlayOptions.Normal,\n  shouldMute: true,\n  thumbnail: ThumbnailOptions.Medium,\n  isRed: true\n};\nYoutube.defaultProps = defaultProps;\nfunction parseVideoURL(urlString) {\n  let url;\n  try {\n    url = new URL(urlString);\n  } catch {\n    const embedURL = getEmbedURL(urlString);\n    return [urlString, embedURL];\n  }\n  if (url.hostname === \"youtube.com\" || url.hostname === \"www.youtube.com\" || url.hostname === \"youtube-nocookie.com\" || url.hostname === \"www.youtube-nocookie.com\") {\n    const pathSegments = url.pathname.slice(1).split(\"/\"); // https://www.youtube.com/watch?v=Fop2oskTug8\n    if (pathSegments[0] === \"watch\") {\n      const videoId = url.searchParams.get(\"v\");\n      const embedURL1 = getEmbedURL(videoId);\n      return [videoId, embedURL1];\n    } // https://www.youtube.com/embed/Fop2oskTug8\n    if (pathSegments[0] === \"embed\") {\n      const videoId1 = pathSegments[1];\n      return [videoId1, url];\n    }\n  } // https://youtu.be/Fop2oskTug8\n  if (url.hostname === \"youtu.be\") {\n    const videoId2 = url.pathname.slice(1);\n    const embedURL2 = getEmbedURL(videoId2);\n    return [videoId2, embedURL2];\n  }\n}\nfunction getEmbedURL(videoId) {\n  return new URL(`https://www.youtube.com/embed/${videoId}`);\n}\nfunction getThumbnailURL(videoId, res, format = ThumbnailFormat.JPG) {\n  // https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\n  const pre = ThumbnailFormat.WebP ? \"https://i.ytimg.com/vi_webp/\" : \"https://i.ytimg.com/vi/\";\n  const ext = ThumbnailFormat.WebP ? \"webp\" : \"jpg\";\n  switch (res) {\n    case ThumbnailOptions.Low:\n      return `${pre}${videoId}/hqdefault.${ext}`;\n    case ThumbnailOptions.Medium:\n      return `${pre}${videoId}/sddefault.${ext}`;\n    case ThumbnailOptions.High:\n      return `${pre}${videoId}/maxresdefault.${ext}`;\n    default:\n      return `${pre}${videoId}/0.${ext}`;\n  }\n}\nlet _getWebPSupported; // https://stackoverflow.com/a/27232658\nfunction getWebPSupported() {\n  // We're going to default to webp because it's pretty widely supported by now\n  if (!window) {\n    return true;\n  }\n  if (_getWebPSupported !== undefined) {\n    return _getWebPSupported;\n  }\n  const element = document.createElement(\"canvas\");\n  if (!!(element.getContext && element.getContext(\"2d\"))) {\n    // was able or not to get WebP representation\n    return element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\") == 0;\n  } else {\n    // very old browser like IE 8, canvas not supported\n    return false;\n  }\n} // Helper components\nfunction Instructions() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      ...emptyStateStyle,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"To embed a Youtube video, add the URL to the properties\\xa0panel.\"\n    })\n  });\n}\nfunction ErrorMessage({\n  message\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-errorPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsxs(\"div\", {\n      style: centerTextStyle,\n      children: [\"Error: \", message]\n    })\n  });\n}\nfunction PlayButton({\n  onClick,\n  isHovered,\n  isRed\n}) {\n  return /*#__PURE__*/_jsx(\"button\", {\n    onClick: onClick,\n    \"aria-label\": \"Play\",\n    style: buttonStyle,\n    children: /*#__PURE__*/_jsxs(\"svg\", {\n      height: \"100%\",\n      version: \"1.1\",\n      viewBox: \"0 0 68 48\",\n      width: \"100%\",\n      children: [/*#__PURE__*/_jsx(\"path\", {\n        d: \"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",\n        fill: isHovered ? isRed ? \"#f00\" : \"#000\" : \"#212121\",\n        fillOpacity: isHovered ? isRed ? 1 : .8 : .8,\n        style: {\n          transition: \"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"\n        }\n      }), /*#__PURE__*/_jsx(\"path\", {\n        d: \"M 45,24 27,14 27,34\",\n        fill: \"#fff\"\n      })]\n    })\n  });\n}\nconst buttonStyle = {\n  position: \"absolute\",\n  top: \"50%\",\n  left: \"50%\",\n  transform: \"translate(-50%, -50%)\",\n  width: 68,\n  height: 48,\n  padding: 0,\n  border: \"none\",\n  background: \"transparent\",\n  cursor: \"pointer\"\n};\nconst wrapperStyle = {\n  position: \"relative\",\n  width: \"100%\",\n  height: \"100%\"\n};\nconst centerTextStyle = {\n  textAlign: \"center\",\n  minWidth: 140\n};\nconst videoStyle = {\n  position: \"absolute\",\n  top: 0,\n  left: 0,\n  height: \"100%\",\n  width: \"100%\"\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Youtube\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Youtube\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerIntrinsicHeight\": \"315\",\n        \"framerIntrinsicWidth\": \"560\",\n        \"framerComponentPresetProps\": \"isRed, borderRadius\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (61bac00)\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, getWhereExpressionFromPathVariables, Image, NotFoundError, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useActiveVariantCallback, useCurrentPathVariables, useHydratedBreakpointVariants, useLocaleCode, useLocaleInfo, useOverlayState, useQueryData, useRouter, withCSS } from \"framer\";\nimport { AnimatePresence, LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as ReactDOM from \"react-dom\";\nimport { Icon as Material } from \"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";\nimport { Icon as Feather } from \"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";\nimport { Icon as Hero } from \"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";\nimport { Youtube as YouTube } from \"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";\nimport Header from \"https://framerusercontent.com/modules/xpEowz6CHTC9kFElhBJz/lZIoEdUiS2BxK0j54VQ4/avzGPuUAT.js\";\nimport FooterSection from \"https://framerusercontent.com/modules/NDOqClIipTUnG81Paj9P/fHgqL8RkeoNeeyO9KzAq/i3ZXF8MgS.js\";\nimport Button from \"https://framerusercontent.com/modules/mEVOvk9UKhkhcUVf1RnW/IjmeyGl2pV4RdHAFjIzR/pdheaWsfs.js\";\nimport CTA from \"https://framerusercontent.com/modules/oy7MzUVtyqfHENackyi8/sOUUJgSBLzMMEirboqgJ/VzUcDTe6N.js\";\nimport Blog from \"https://framerusercontent.com/modules/jAotjWvlnUql0m6rn1ed/RjZJWWA2rnPYnrxsBVuT/mj35UMyoZ.js\";\nimport * as sharedStyle9 from \"https://framerusercontent.com/modules/M6NeXJvbetWm9WqbnPLE/FHkFuqNGhP58TWgTA3e1/ESCrcjHLz.js\";\nimport * as sharedStyle5 from \"https://framerusercontent.com/modules/RWkHD7d6ETq6QBlDzXz5/GhwSApOkA306TumDMLwy/gOBBw64Ul.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/bT9Cxl6GruptHjUbK7qt/kwA1HbnYA6Ll3P1JTdpH/iv_MBhpzL.js\";\nimport * as sharedStyle8 from \"https://framerusercontent.com/modules/aXQqaRGLw0HXZdR6DXun/VJkNhLtof9vbPZX7ct8y/JMidCIDDB.js\";\nimport * as sharedStyle7 from \"https://framerusercontent.com/modules/dOleXcx3KaP20oepC8CY/bCvBv95CBsbc3mOZwcZv/l4xfYIaWw.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/NPDAxihhgVCd8UXOR6G1/dcMXULSbxcck6vM6T6Vx/OYTTB_b1j.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/vdmsvcIMMEcOtSMLxm0G/NiXuGMP8JaZUtuKQwHrn/pak0NYeLc.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/h28hcsHmda0xHgEUcduo/NSSsOga7hVSvd4YYjTml/raNjJOBgU.js\";\nimport * as sharedStyle6 from \"https://framerusercontent.com/modules/DE2Bm6fMZbvv820ODQMS/ZmsBS66dyJ5XVGlb7aeP/rKkAXdlZa.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/JnvW7TA8bDgozyqnHLaV/NDnVoy6OVtSr9zAHxKaY/u7vHXImvR.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/jDQyAJJq5GIM5DrKEZJP/qYBYOro4AtodERaGfhqU/J0naHCQyW.js\";\nconst HeaderFonts = getFonts(Header);\nconst FeatherFonts = getFonts(Feather);\nconst HeroFonts = getFonts(Hero);\nconst MaterialFonts = getFonts(Material);\nconst YouTubeFonts = getFonts(YouTube);\nconst ButtonFonts = getFonts(Button);\nconst CTAFonts = getFonts(CTA);\nconst FooterSectionFonts = getFonts(FooterSection);\nconst cycleOrder = [\"yixsR51N4\", \"T2U27R37O\", \"H5wsX5kHi\", \"RYFM2kF1Y\"];\nconst breakpoints = {\n  H5wsX5kHi: \"(min-width: 768px) and (max-width: 991px)\",\n  RYFM2kF1Y: \"(max-width: 767px)\",\n  T2U27R37O: \"(min-width: 992px) and (max-width: 1439px)\",\n  yixsR51N4: \"(min-width: 1440px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-rkR1L\";\nconst variantClassNames = {\n  H5wsX5kHi: \"framer-v-ijp6fo\",\n  RYFM2kF1Y: \"framer-v-1a5p87f\",\n  T2U27R37O: \"framer-v-15a4z8s\",\n  yixsR51N4: \"framer-v-130da0h\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"yixsR51N4\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst toDateString = (value, options = {}, activeLocale) => {\n  if (typeof value !== \"string\") return \"\";\n  const date = new Date(value);\n  if (isNaN(date.getTime())) return \"\";\n  const fallbackLocale = \"en-US\";\n  const locale = options.locale || activeLocale || fallbackLocale;\n  const dateStyle = options.dateStyle;\n  const timeZone = \"UTC\";\n  try {\n    return date.toLocaleDateString(locale, {\n      dateStyle,\n      timeZone\n    });\n  } catch {\n    return date.toLocaleDateString(fallbackLocale, {\n      dateStyle,\n      timeZone\n    });\n  }\n};\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst transformTemplate = (_, t) => `translate(-50%, -50%) ${t}`;\nconst Overlay = ({\n  children,\n  blockDocumentScrolling,\n  enabled = true\n}) => {\n  const [visible, setVisible] = useOverlayState({\n    blockDocumentScrolling\n  });\n  return children({\n    hide: () => setVisible(false),\n    show: () => setVisible(true),\n    toggle: () => setVisible(!visible),\n    visible: enabled && visible\n  });\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  \"Large Desktop\": \"yixsR51N4\",\n  Desktop: \"T2U27R37O\",\n  Phone: \"RYFM2kF1Y\",\n  Tablet: \"H5wsX5kHi\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"yixsR51N4\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const currentPathVariables = useCurrentPathVariables();\n  const [currentRouteData] = useQueryData({\n    from: {\n      data: Blog,\n      type: \"Collection\"\n    },\n    select: [{\n      name: \"H0DQKcz6e\",\n      type: \"Identifier\"\n    }, {\n      name: \"WcovOnfUm\",\n      type: \"Identifier\"\n    }, {\n      name: \"Rs_ScKuSb\",\n      type: \"Identifier\"\n    }, {\n      name: \"qImXMeZn1\",\n      type: \"Identifier\"\n    }, {\n      name: \"Qq8EVsnkY\",\n      type: \"Identifier\"\n    }, {\n      name: \"vvyZApqQ1\",\n      type: \"Identifier\"\n    }, {\n      name: \"xvufNaP3m\",\n      type: \"Identifier\"\n    }, {\n      name: \"jGW9ntpFa\",\n      type: \"Identifier\"\n    }, {\n      name: \"CAGl18nvs\",\n      type: \"Identifier\"\n    }],\n    where: getWhereExpressionFromPathVariables(currentPathVariables)\n  });\n  const getFromCurrentRouteData = key => {\n    if (!currentRouteData) throw new NotFoundError(`No data in \"Blog\" matches path variables: ${JSON.stringify(currentPathVariables)}`);\n    return currentRouteData[key];\n  };\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    H0DQKcz6e = getFromCurrentRouteData(\"H0DQKcz6e\"),\n    WcovOnfUm = getFromCurrentRouteData(\"WcovOnfUm\"),\n    Rs_ScKuSb = getFromCurrentRouteData(\"Rs_ScKuSb\"),\n    Qq8EVsnkY = getFromCurrentRouteData(\"Qq8EVsnkY\"),\n    qImXMeZn1 = getFromCurrentRouteData(\"qImXMeZn1\"),\n    vvyZApqQ1 = getFromCurrentRouteData(\"vvyZApqQ1\"),\n    xvufNaP3m = getFromCurrentRouteData(\"xvufNaP3m\"),\n    CAGl18nvs = getFromCurrentRouteData(\"CAGl18nvs\"),\n    jGW9ntpFa = getFromCurrentRouteData(\"jGW9ntpFa\"),\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(currentRouteData, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(`${metadata1.bodyClassName}-framer-rkR1L`);\n      return () => {\n        document.body.classList.remove(`${metadata1.bodyClassName}-framer-rkR1L`);\n      };\n    }\n  }, [currentRouteData, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(undefined);\n  const onTap42m929 = overlay => activeVariantCallback(async (...args) => {\n    overlay.toggle();\n  });\n  const onClickzn6atv = overlay => activeVariantCallback(async (...args) => {\n    overlay.hide();\n  });\n  const ref1 = React.useRef(null);\n  const activeLocaleCode = useLocaleCode();\n  const textContent = toDateString(WcovOnfUm, {\n    dateStyle: \"medium\",\n    locale: \"\"\n  }, activeLocaleCode);\n  const isDisplayed = () => {\n    if ([\"T2U27R37O\", \"H5wsX5kHi\", \"RYFM2kF1Y\"].includes(baseVariant)) return !isBrowser();\n    return true;\n  };\n  const router = useRouter();\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className, sharedStyle6.className, sharedStyle7.className, sharedStyle8.className, sharedStyle9.className];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"yixsR51N4\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsx(motion.div, {\n        style: {\n          display: \"contents\"\n        },\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(serializationHash, ...sharedStyleClassNames, \"framer-130da0h\", className),\n          ref: ref !== null && ref !== void 0 ? ref : ref1,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-1l7zick-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                H5wsX5kHi: {\n                  variant: \"FOm1dCVSk\"\n                },\n                RYFM2kF1Y: {\n                  variant: \"sFetcw4wY\"\n                },\n                T2U27R37O: {\n                  variant: \"LcxCTqD5c\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Header, {\n                height: \"100%\",\n                id: \"MjqpGnipz\",\n                layoutId: \"MjqpGnipz\",\n                M_mPoST4u: 'var(--token-4d1826a1-bbfd-476f-b57e-cf3f8a5990cc, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"yaa7F_p2u\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"section\", {\n            className: \"framer-1pxl0hq\",\n            \"data-framer-name\": \"Banner Section\",\n            name: \"Banner Section\",\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-5wfa4i\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-jemstq\",\n                \"data-framer-name\": \"Banner Content Wrapper\",\n                name: \"Banner Content Wrapper\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-izg74j\",\n                      \"data-styles-preset\": \"raNjJOBgU\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: \"The complete HTML & CSS bootcamp 2023 edition\"\n                    })\n                  }),\n                  className: \"framer-1aeynm7\",\n                  \"data-framer-name\": \"Banner Title\",\n                  name: \"Banner Title\",\n                  text: H0DQKcz6e,\n                  verticalAlignment: \"center\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(\"div\", {\n                  className: \"framer-129ydnh\",\n                  \"data-framer-name\": \"Date\",\n                  name: \"Date\",\n                  children: /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-qxphvg\",\n                        \"data-styles-preset\": \"pak0NYeLc\",\n                        style: {\n                          \"--framer-text-color\": \"var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, rgb(30, 30, 47))\"\n                        },\n                        children: \"Date\"\n                      })\n                    }),\n                    className: \"framer-n0r2pi\",\n                    \"data-framer-name\": \"Date\",\n                    name: \"Date\",\n                    text: textContent,\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"section\", {\n            className: \"framer-d6giyz\",\n            \"data-framer-name\": \"Contact Section\",\n            name: \"Contact Section\",\n            children: /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-cq54ot\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1tb28h2\",\n                \"data-framer-name\": \"Content Wrapper\",\n                name: \"Content Wrapper\",\n                children: [/*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-1h1l4xp\",\n                  \"data-framer-name\": \"Content Left\",\n                  name: \"Content Left\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      H5wsX5kHi: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 1050,\n                          intrinsicWidth: 1584,\n                          pixelHeight: 1050,\n                          pixelWidth: 1584,\n                          sizes: \"calc(max(min(100vw, 720px) - 60px, 0px) - 52px)\",\n                          ...toResponsiveImage(Rs_ScKuSb)\n                        }\n                      },\n                      RYFM2kF1Y: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 1050,\n                          intrinsicWidth: 1584,\n                          pixelHeight: 1050,\n                          pixelWidth: 1584,\n                          sizes: \"calc(min(max(min(100vw, 520px) - 48px, 0px), 400px) - 40px)\",\n                          ...toResponsiveImage(Rs_ScKuSb)\n                        }\n                      },\n                      T2U27R37O: {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 1050,\n                          intrinsicWidth: 1584,\n                          pixelHeight: 1050,\n                          pixelWidth: 1584,\n                          sizes: \"calc(min(max((max(min(100vw, 1000px) - 60px, 0px) - 30px) / 2, 0px), 856px) - 64px)\",\n                          ...toResponsiveImage(Rs_ScKuSb)\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        intrinsicHeight: 1050,\n                        intrinsicWidth: 1584,\n                        pixelHeight: 1050,\n                        pixelWidth: 1584,\n                        sizes: \"calc(min(max((max(min(100vw, 1356px) - 60px, 0px) - 40px) / 2, 0px), 856px) - 64px)\",\n                        ...toResponsiveImage(Rs_ScKuSb)\n                      },\n                      className: \"framer-op1kd7\",\n                      \"data-framer-name\": \"Image\",\n                      name: \"Image\"\n                    })\n                  }), /*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-13y7vlh\",\n                    \"data-framer-name\": \"Text Wrapper\",\n                    name: \"Text Wrapper\",\n                    children: [/*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-oywing\",\n                      \"data-framer-name\": \"Title Wrapper\",\n                      name: \"Title Wrapper\",\n                      children: [/*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-1liu0y\",\n                        \"data-framer-name\": \"Lesson Block\",\n                        name: \"Lesson Block\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-lc1vvb\",\n                          \"data-framer-name\": \"Card Meta Stack\",\n                          name: \"Card Meta Stack\",\n                          children: [/*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-ezqqxn\",\n                            \"data-framer-name\": \"Single Meta\",\n                            name: \"Single Meta\",\n                            children: [/*#__PURE__*/_jsx(Container, {\n                              className: \"framer-135xa9p-container\",\n                              \"data-framer-name\": \"Icon File\",\n                              name: \"Icon File\",\n                              children: /*#__PURE__*/_jsx(Feather, {\n                                color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                                height: \"100%\",\n                                iconSearch: \"file-text\",\n                                iconSelection: \"file-text\",\n                                id: \"JDtJ2LH_9\",\n                                layoutId: \"JDtJ2LH_9\",\n                                mirrored: false,\n                                name: \"Icon File\",\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  className: \"framer-styles-preset-14f0or7\",\n                                  \"data-styles-preset\": \"OYTTB_b1j\",\n                                  children: \"16 Lessons\"\n                                })\n                              }),\n                              className: \"framer-1ny3c8\",\n                              \"data-framer-name\": \"Text\",\n                              name: \"Text\",\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })]\n                          }), /*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-10j0blh\",\n                            \"data-framer-name\": \"Single Meta\",\n                            name: \"Single Meta\",\n                            children: [/*#__PURE__*/_jsx(Container, {\n                              className: \"framer-10yl47-container\",\n                              \"data-framer-name\": \"Icon File\",\n                              name: \"Icon File\",\n                              children: /*#__PURE__*/_jsx(Feather, {\n                                color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                                height: \"100%\",\n                                iconSearch: \"file-text\",\n                                iconSelection: \"user-plus\",\n                                id: \"M4LeUeVFe\",\n                                layoutId: \"M4LeUeVFe\",\n                                mirrored: false,\n                                name: \"Icon File\",\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  className: \"framer-styles-preset-14f0or7\",\n                                  \"data-styles-preset\": \"OYTTB_b1j\",\n                                  children: \"1K+ Students\"\n                                })\n                              }),\n                              className: \"framer-42tfgn\",\n                              \"data-framer-name\": \"Text\",\n                              name: \"Text\",\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })]\n                          })]\n                        }), /*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-g9fub\",\n                          \"data-framer-name\": \"Rating Stack\",\n                          name: \"Rating Stack\",\n                          children: [/*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-1ypwl1x\",\n                            \"data-framer-name\": \"Rating Star Wrapper\",\n                            name: \"Rating Star Wrapper\",\n                            children: [/*#__PURE__*/_jsx(Container, {\n                              className: \"framer-1yhia5o-container\",\n                              children: /*#__PURE__*/_jsx(Hero, {\n                                color: \"rgb(255, 182, 10)\",\n                                height: \"100%\",\n                                iconSearch: \"Home\",\n                                iconSelection: \"Star\",\n                                id: \"FOYuF54Po\",\n                                layoutId: \"FOYuF54Po\",\n                                mirrored: false,\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(Container, {\n                              className: \"framer-1x037p2-container\",\n                              children: /*#__PURE__*/_jsx(Hero, {\n                                color: \"rgb(255, 182, 10)\",\n                                height: \"100%\",\n                                iconSearch: \"Home\",\n                                iconSelection: \"Star\",\n                                id: \"nwn3vx35i\",\n                                layoutId: \"nwn3vx35i\",\n                                mirrored: false,\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(Container, {\n                              className: \"framer-p1ttkq-container\",\n                              children: /*#__PURE__*/_jsx(Hero, {\n                                color: \"rgb(255, 182, 10)\",\n                                height: \"100%\",\n                                iconSearch: \"Home\",\n                                iconSelection: \"Star\",\n                                id: \"N1YFMVICj\",\n                                layoutId: \"N1YFMVICj\",\n                                mirrored: false,\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(Container, {\n                              className: \"framer-18qlcs-container\",\n                              children: /*#__PURE__*/_jsx(Hero, {\n                                color: \"rgb(255, 182, 10)\",\n                                height: \"100%\",\n                                iconSearch: \"Home\",\n                                iconSelection: \"Star\",\n                                id: \"CQsQxW0gL\",\n                                layoutId: \"CQsQxW0gL\",\n                                mirrored: false,\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(Container, {\n                              className: \"framer-1djdd0a-container\",\n                              children: /*#__PURE__*/_jsx(Hero, {\n                                color: \"rgb(255, 182, 10)\",\n                                height: \"100%\",\n                                iconSearch: \"Home\",\n                                iconSelection: \"Star\",\n                                id: \"lj51xF6Qj\",\n                                layoutId: \"lj51xF6Qj\",\n                                mirrored: false,\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            })]\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-14f0or7\",\n                                \"data-styles-preset\": \"OYTTB_b1j\",\n                                style: {\n                                  \"--framer-text-color\": \"var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, rgb(30, 30, 47))\"\n                                },\n                                children: \"4.8\"\n                              })\n                            }),\n                            className: \"framer-1nrbe3r\",\n                            \"data-framer-name\": \"Rating\",\n                            name: \"Rating\",\n                            verticalAlignment: \"top\",\n                            withExternalLayout: true\n                          })]\n                        })]\n                      }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          RYFM2kF1Y: {\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"h4\", {\n                                className: \"framer-styles-preset-1w6qraq\",\n                                \"data-styles-preset\": \"iv_MBhpzL\",\n                                style: {\n                                  \"--framer-text-alignment\": \"center\"\n                                },\n                                children: \"Revolutionizing Education\"\n                              })\n                            })\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"h4\", {\n                              className: \"framer-styles-preset-1w6qraq\",\n                              \"data-styles-preset\": \"iv_MBhpzL\",\n                              children: \"Revolutionizing Education\"\n                            })\n                          }),\n                          className: \"framer-1dchm2x\",\n                          \"data-framer-name\": \"The complete HTML & CSS bootcamp 2023 edition\",\n                          name: \"The complete HTML & CSS bootcamp 2023 edition\",\n                          text: H0DQKcz6e,\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      }), /*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-1birj83\",\n                        \"data-framer-name\": \"Author Block\",\n                        name: \"Author Block\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-35b9my\",\n                          \"data-framer-name\": \"Author Block\",\n                          name: \"Author Block\",\n                          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              RYFM2kF1Y: {\n                                background: {\n                                  alt: \"\",\n                                  fit: \"fill\",\n                                  sizes: \"52px\",\n                                  ...toResponsiveImage(Qq8EVsnkY)\n                                }\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(Image, {\n                              background: {\n                                alt: \"\",\n                                fit: \"fill\",\n                                loading: \"lazy\",\n                                sizes: \"52px\",\n                                ...toResponsiveImage(Qq8EVsnkY)\n                              },\n                              className: \"framer-18lrsj4\",\n                              \"data-framer-name\": \"Author Image\",\n                              name: \"Author Image\"\n                            })\n                          }), /*#__PURE__*/_jsxs(\"div\", {\n                            className: \"framer-7wkpit\",\n                            \"data-framer-name\": \"Author Info\",\n                            name: \"Author Info\",\n                            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                              breakpoint: baseVariant,\n                              overrides: {\n                                RYFM2kF1Y: {\n                                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                                    children: /*#__PURE__*/_jsx(\"p\", {\n                                      className: \"framer-styles-preset-14f0or7\",\n                                      \"data-styles-preset\": \"OYTTB_b1j\",\n                                      style: {\n                                        \"--framer-text-alignment\": \"center\"\n                                      },\n                                      children: \"Instructor\"\n                                    })\n                                  })\n                                }\n                              },\n                              children: /*#__PURE__*/_jsx(RichText, {\n                                __fromCanvasComponent: true,\n                                children: /*#__PURE__*/_jsx(React.Fragment, {\n                                  children: /*#__PURE__*/_jsx(\"p\", {\n                                    className: \"framer-styles-preset-14f0or7\",\n                                    \"data-styles-preset\": \"OYTTB_b1j\",\n                                    children: \"Instructor\"\n                                  })\n                                }),\n                                className: \"framer-9jmw2c\",\n                                \"data-framer-name\": \"Instructor\",\n                                name: \"Instructor\",\n                                verticalAlignment: \"top\",\n                                withExternalLayout: true\n                              })\n                            }), /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  className: \"framer-styles-preset-15rqr5u\",\n                                  \"data-styles-preset\": \"u7vHXImvR\",\n                                  style: {\n                                    \"--framer-text-color\": \"var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, rgb(30, 30, 47))\"\n                                  },\n                                  children: \"Ronald Richards\"\n                                })\n                              }),\n                              className: \"framer-18mh8u9\",\n                              \"data-framer-name\": \"Ronald Richards\",\n                              name: \"Ronald Richards\",\n                              text: qImXMeZn1,\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })]\n                          })]\n                        }), isDisplayed() && /*#__PURE__*/_jsx(\"div\", {\n                          className: \"framer-s2f60s hidden-15a4z8s hidden-ijp6fo hidden-1a5p87f\"\n                        }), /*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-1vtweea\",\n                          \"data-framer-name\": \"Category Block\",\n                          name: \"Category Block\",\n                          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              RYFM2kF1Y: {\n                                children: /*#__PURE__*/_jsx(React.Fragment, {\n                                  children: /*#__PURE__*/_jsx(\"p\", {\n                                    className: \"framer-styles-preset-14f0or7\",\n                                    \"data-styles-preset\": \"OYTTB_b1j\",\n                                    style: {\n                                      \"--framer-text-alignment\": \"center\"\n                                    },\n                                    children: \"Category:\"\n                                  })\n                                })\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  className: \"framer-styles-preset-14f0or7\",\n                                  \"data-styles-preset\": \"OYTTB_b1j\",\n                                  children: \"Category:\"\n                                })\n                              }),\n                              className: \"framer-gx4duv\",\n                              \"data-framer-name\": \"Category:\",\n                              name: \"Category:\",\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-15rqr5u\",\n                                \"data-styles-preset\": \"u7vHXImvR\",\n                                style: {\n                                  \"--framer-text-color\": \"var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, rgb(30, 30, 47))\"\n                                },\n                                children: \"UI/UX Design\"\n                              })\n                            }),\n                            className: \"framer-k87q82\",\n                            \"data-framer-name\": \"UI/UX Design\",\n                            name: \"UI/UX Design\",\n                            text: vvyZApqQ1,\n                            verticalAlignment: \"top\",\n                            withExternalLayout: true\n                          })]\n                        }), isDisplayed() && /*#__PURE__*/_jsx(\"div\", {\n                          className: \"framer-14l0h7a hidden-15a4z8s hidden-ijp6fo hidden-1a5p87f\"\n                        }), /*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-xvrk6q\",\n                          \"data-framer-name\": \"Date Block\",\n                          name: \"Date Block\",\n                          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              RYFM2kF1Y: {\n                                children: /*#__PURE__*/_jsx(React.Fragment, {\n                                  children: /*#__PURE__*/_jsx(\"p\", {\n                                    className: \"framer-styles-preset-14f0or7\",\n                                    \"data-styles-preset\": \"OYTTB_b1j\",\n                                    style: {\n                                      \"--framer-text-alignment\": \"center\"\n                                    },\n                                    children: \"Last Update:\"\n                                  })\n                                })\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  className: \"framer-styles-preset-14f0or7\",\n                                  \"data-styles-preset\": \"OYTTB_b1j\",\n                                  children: \"Last Update:\"\n                                })\n                              }),\n                              className: \"framer-sucpk0\",\n                              \"data-framer-name\": \"Last Update:\",\n                              name: \"Last Update:\",\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-15rqr5u\",\n                                \"data-styles-preset\": \"u7vHXImvR\",\n                                style: {\n                                  \"--framer-text-color\": \"var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, rgb(30, 30, 47))\"\n                                },\n                                children: \"20 Jul, 2023\"\n                              })\n                            }),\n                            className: \"framer-nuy3r2\",\n                            \"data-framer-name\": \"20 Jul, 2023\",\n                            name: \"20 Jul, 2023\",\n                            text: textContent,\n                            verticalAlignment: \"top\",\n                            withExternalLayout: true\n                          })]\n                        }), isDisplayed() && /*#__PURE__*/_jsx(\"div\", {\n                          className: \"framer-13fdq6h hidden-15a4z8s hidden-ijp6fo hidden-1a5p87f\"\n                        }), /*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-18ver5p\",\n                          \"data-framer-name\": \"Level Block\",\n                          name: \"Level Block\",\n                          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                            breakpoint: baseVariant,\n                            overrides: {\n                              RYFM2kF1Y: {\n                                children: /*#__PURE__*/_jsx(React.Fragment, {\n                                  children: /*#__PURE__*/_jsx(\"p\", {\n                                    className: \"framer-styles-preset-14f0or7\",\n                                    \"data-styles-preset\": \"OYTTB_b1j\",\n                                    style: {\n                                      \"--framer-text-alignment\": \"center\"\n                                    },\n                                    children: \"Level:\"\n                                  })\n                                })\n                              }\n                            },\n                            children: /*#__PURE__*/_jsx(RichText, {\n                              __fromCanvasComponent: true,\n                              children: /*#__PURE__*/_jsx(React.Fragment, {\n                                children: /*#__PURE__*/_jsx(\"p\", {\n                                  className: \"framer-styles-preset-14f0or7\",\n                                  \"data-styles-preset\": \"OYTTB_b1j\",\n                                  children: \"Level:\"\n                                })\n                              }),\n                              className: \"framer-8lqsuk\",\n                              \"data-framer-name\": \"Level:\",\n                              name: \"Level:\",\n                              verticalAlignment: \"top\",\n                              withExternalLayout: true\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-15rqr5u\",\n                                \"data-styles-preset\": \"u7vHXImvR\",\n                                style: {\n                                  \"--framer-text-color\": \"var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, rgb(30, 30, 47))\"\n                                },\n                                children: \"Advance\"\n                              })\n                            }),\n                            className: \"framer-gztb5q\",\n                            \"data-framer-name\": \"Advance\",\n                            name: \"Advance\",\n                            text: xvufNaP3m,\n                            verticalAlignment: \"top\",\n                            withExternalLayout: true\n                          })]\n                        })]\n                      })]\n                    }), /*#__PURE__*/_jsx(\"div\", {\n                      className: \"framer-qa2g3y\"\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: CAGl18nvs,\n                      className: \"framer-ae5fv6\",\n                      \"data-framer-name\": \"Content\",\n                      fonts: [\"Inter\"],\n                      name: \"Content\",\n                      stylesPresetsClassNames: {\n                        a: \"framer-styles-preset-aexbeb\",\n                        h1: \"framer-styles-preset-4ahkmn\",\n                        h2: \"framer-styles-preset-izg74j\",\n                        h3: \"framer-styles-preset-1prnwge\",\n                        h4: \"framer-styles-preset-1w6qraq\",\n                        h5: \"framer-styles-preset-alr5lk\",\n                        p: \"framer-styles-preset-qxphvg\"\n                      },\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })]\n                }), /*#__PURE__*/_jsxs(\"div\", {\n                  className: \"framer-uk2taw\",\n                  \"data-border\": true,\n                  \"data-framer-name\": \"Sidebar\",\n                  name: \"Sidebar\",\n                  children: [/*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-1gdgae7\",\n                    \"data-framer-name\": \"Side Content Block\",\n                    name: \"Side Content Block\",\n                    children: [/*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-ok6mb6\",\n                      \"data-framer-name\": \"Sidebar Video Block\",\n                      name: \"Sidebar Video Block\",\n                      children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                        breakpoint: baseVariant,\n                        overrides: {\n                          H5wsX5kHi: {\n                            background: {\n                              alt: \"\",\n                              fit: \"fill\",\n                              loading: \"lazy\",\n                              sizes: \"calc(max(min(100vw, 720px) - 60px, 0px) - 48px)\",\n                              ...toResponsiveImage(Rs_ScKuSb)\n                            }\n                          },\n                          RYFM2kF1Y: {\n                            background: {\n                              alt: \"\",\n                              fit: \"fill\",\n                              sizes: \"calc(min(max(min(100vw, 520px) - 48px, 0px), 400px) - 40px)\",\n                              ...toResponsiveImage(Rs_ScKuSb)\n                            }\n                          },\n                          T2U27R37O: {\n                            background: {\n                              alt: \"\",\n                              fit: \"fill\",\n                              sizes: \"calc(min(max((max(min(100vw, 1000px) - 60px, 0px) - 30px) / 2, 0px), 340px) - 64px)\",\n                              ...toResponsiveImage(Rs_ScKuSb)\n                            }\n                          }\n                        },\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            sizes: \"calc(min(max((max(min(100vw, 1356px) - 60px, 0px) - 40px) / 2, 0px), 400px) - 64px)\",\n                            ...toResponsiveImage(Rs_ScKuSb)\n                          },\n                          className: \"framer-10n4549\",\n                          \"data-framer-name\": \"Thumbnail\",\n                          name: \"Thumbnail\"\n                        })\n                      }), /*#__PURE__*/_jsx(Overlay, {\n                        blockDocumentScrolling: false,\n                        children: overlay => /*#__PURE__*/_jsx(_Fragment, {\n                          children: /*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-a4kw94\",\n                            \"data-framer-name\": \"Playicon\",\n                            name: \"Playicon\",\n                            onTap: onTap42m929(overlay),\n                            transformTemplate: transformTemplate,\n                            children: [/*#__PURE__*/_jsx(Container, {\n                              className: \"framer-1tj31d4-container\",\n                              children: /*#__PURE__*/_jsx(Material, {\n                                color: 'var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(151, 198, 128)) /* {\"name\":\"Primary 2\"} */',\n                                height: \"100%\",\n                                iconSearch: \"Home\",\n                                iconSelection: \"PlayArrow\",\n                                iconStyle15: \"Filled\",\n                                iconStyle2: \"Filled\",\n                                iconStyle7: \"Filled\",\n                                id: \"eazXOGlUK\",\n                                layoutId: \"eazXOGlUK\",\n                                mirrored: false,\n                                selectByList: true,\n                                style: {\n                                  height: \"100%\",\n                                  width: \"100%\"\n                                },\n                                width: \"100%\"\n                              })\n                            }), /*#__PURE__*/_jsx(AnimatePresence, {\n                              children: overlay.visible && /*#__PURE__*/_jsx(_Fragment, {\n                                children: /*#__PURE__*/ReactDOM.createPortal( /*#__PURE__*/_jsxs(React.Fragment, {\n                                  children: [/*#__PURE__*/_jsx(motion.div, {\n                                    animate: {\n                                      opacity: 1,\n                                      transition: {\n                                        delay: 0,\n                                        duration: 0,\n                                        ease: [.5, 0, .88, .77],\n                                        type: \"tween\"\n                                      }\n                                    },\n                                    className: \"framer-1ngokuv\",\n                                    exit: {\n                                      opacity: 0,\n                                      transition: {\n                                        delay: 0,\n                                        duration: 0,\n                                        ease: [.12, .23, .5, 1],\n                                        type: \"tween\"\n                                      }\n                                    },\n                                    initial: {\n                                      opacity: 0\n                                    },\n                                    onTap: () => overlay.hide()\n                                  }, \"f2sKRkFsU\"), /*#__PURE__*/_jsx(Container, {\n                                    className: \"framer-nc0fcz-container\",\n                                    children: /*#__PURE__*/_jsx(Feather, {\n                                      color: 'var(--token-699c93d3-017a-4de6-9a72-000b574d587f, rgb(255, 255, 255)) /* {\"name\":\"Neutral / 01\"} */',\n                                      height: \"100%\",\n                                      iconSearch: \"Home\",\n                                      iconSelection: \"x\",\n                                      id: \"ECrIvsH3x\",\n                                      layoutId: \"ECrIvsH3x\",\n                                      mirrored: false,\n                                      onClick: onClickzn6atv(overlay),\n                                      selectByList: true,\n                                      style: {\n                                        height: \"100%\",\n                                        width: \"100%\"\n                                      },\n                                      width: \"100%\"\n                                    })\n                                  }), /*#__PURE__*/_jsx(Container, {\n                                    className: \"framer-1i13pvp-container\",\n                                    children: /*#__PURE__*/_jsx(YouTube, {\n                                      borderRadius: 0,\n                                      bottomLeftRadius: 0,\n                                      bottomRightRadius: 0,\n                                      height: \"100%\",\n                                      id: \"ndpVaLZ91\",\n                                      isMixedBorderRadius: false,\n                                      isRed: true,\n                                      layoutId: \"ndpVaLZ91\",\n                                      play: \"Off\",\n                                      shouldMute: true,\n                                      style: {\n                                        height: \"100%\",\n                                        width: \"100%\"\n                                      },\n                                      thumbnail: \"Medium Quality\",\n                                      topLeftRadius: 0,\n                                      topRightRadius: 0,\n                                      url: jGW9ntpFa,\n                                      width: \"100%\"\n                                    })\n                                  })]\n                                }), document.querySelector(\"#overlay\"))\n                              })\n                            })]\n                          })\n                        })\n                      }), /*#__PURE__*/_jsx(\"div\", {\n                        className: \"framer-p5c2o0\",\n                        \"data-framer-name\": \"Sidebar  Badge\",\n                        name: \"Sidebar  Badge\",\n                        children: /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              style: {\n                                \"--framer-font-size\": \"16px\",\n                                \"--framer-line-height\": \"20px\",\n                                \"--framer-text-alignment\": \"center\"\n                              },\n                              children: /*#__PURE__*/_jsx(\"span\", {\n                                style: {\n                                  \"--font-selector\": \"SW50ZXItTWVkaXVt\",\n                                  \"--framer-font-family\": '\"Inter-Medium\", \"Inter\", sans-serif',\n                                  \"--framer-font-size\": \"16px\",\n                                  \"--framer-font-weight\": \"500\",\n                                  \"--framer-text-color\": \"rgba(255, 255, 255, 1)\"\n                                },\n                                children: \"-10%\"\n                              })\n                            })\n                          }),\n                          className: \"framer-1cnxo70\",\n                          \"data-framer-name\": \"-10%\",\n                          fonts: [\"Inter-Medium\"],\n                          name: \"-10%\",\n                          verticalAlignment: \"top\",\n                          withExternalLayout: true\n                        })\n                      })]\n                    }), /*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-1e2gsgh\",\n                      \"data-framer-name\": \"Sidebar Price Block\",\n                      name: \"Sidebar Price Block\",\n                      children: [/*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-1dwb2gv\",\n                        \"data-framer-name\": \"Ammount\",\n                        name: \"Ammount\",\n                        children: [/*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"h4\", {\n                              className: \"framer-styles-preset-1w6qraq\",\n                              \"data-styles-preset\": \"iv_MBhpzL\",\n                              children: \"$50.00\"\n                            })\n                          }),\n                          className: \"framer-1j2a5nq\",\n                          \"data-framer-name\": \"$50.00\",\n                          name: \"$50.00\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-1hf153f\",\n                              \"data-styles-preset\": \"JMidCIDDB\",\n                              children: \"$65.00\"\n                            })\n                          }),\n                          className: \"framer-11rgyjx\",\n                          \"data-framer-name\": \"$65.00\",\n                          name: \"$65.00\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      }), /*#__PURE__*/_jsx(Container, {\n                        className: \"framer-lzq022-container\",\n                        children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            T2U27R37O: {\n                              qrUiEGAyP: resolveLink({\n                                webPageId: \"LFgphiR1c\"\n                              }, router)\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(Button, {\n                            BHDvvCrXl: true,\n                            height: \"100%\",\n                            id: \"G1BY4zbt2\",\n                            layoutId: \"G1BY4zbt2\",\n                            qrUiEGAyP: \"https://sailr.lemonsqueezy.com/checkout/buy/805251e3-279a-47e6-90c1-1633b12a6d52\",\n                            style: {\n                              width: \"100%\"\n                            },\n                            variant: \"yyGUuju_T\",\n                            vjM_GPumd: \"Add to Cart\",\n                            width: \"100%\"\n                          })\n                        })\n                      })]\n                    })]\n                  }), /*#__PURE__*/_jsx(\"div\", {\n                    className: \"framer-aonbs1\",\n                    \"data-framer-name\": \"Divider\",\n                    name: \"Divider\"\n                  }), /*#__PURE__*/_jsxs(\"div\", {\n                    className: \"framer-1d5h8i5\",\n                    \"data-framer-name\": \"Sidebar Info Block\",\n                    name: \"Sidebar Info Block\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h6\", {\n                          className: \"framer-styles-preset-1jqca0s\",\n                          \"data-styles-preset\": \"ESCrcjHLz\",\n                          children: \"Course Information\"\n                        })\n                      }),\n                      className: \"framer-16nbscc\",\n                      \"data-framer-name\": \"Course Information\",\n                      name: \"Course Information\",\n                      verticalAlignment: \"center\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsxs(\"div\", {\n                      className: \"framer-ac8r1s\",\n                      \"data-framer-name\": \"Frame 1215873421\",\n                      name: \"Frame 1215873421\",\n                      children: [/*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-qu4jvx\",\n                        \"data-framer-name\": \"Frame 1000011725\",\n                        name: \"Frame 1000011725\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-yd4w7f\",\n                          \"data-framer-name\": \"Frame 1000011723\",\n                          name: \"Frame 1000011723\",\n                          children: [/*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1rbadts-container\",\n                            \"data-framer-name\": \"Icon File\",\n                            name: \"Icon File\",\n                            children: /*#__PURE__*/_jsx(Feather, {\n                              color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                              height: \"100%\",\n                              iconSearch: \"file-text\",\n                              iconSelection: \"file-text\",\n                              id: \"IEPIT9fBC\",\n                              layoutId: \"IEPIT9fBC\",\n                              mirrored: false,\n                              name: \"Icon File\",\n                              selectByList: true,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              width: \"100%\"\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-qxphvg\",\n                                \"data-styles-preset\": \"pak0NYeLc\",\n                                children: \"Course level:\"\n                              })\n                            }),\n                            className: \"framer-pluivq\",\n                            \"data-framer-name\": \"Course level:\",\n                            name: \"Course level:\",\n                            verticalAlignment: \"center\",\n                            withExternalLayout: true\n                          })]\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-qxphvg\",\n                              \"data-styles-preset\": \"pak0NYeLc\",\n                              children: \"Advance\"\n                            })\n                          }),\n                          className: \"framer-40hmrb\",\n                          \"data-framer-name\": \"Advance\",\n                          name: \"Advance\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      }), /*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-4qv1oo\",\n                        \"data-framer-name\": \"Frame 1000011726\",\n                        name: \"Frame 1000011726\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-w3g89o\",\n                          \"data-framer-name\": \"Frame 1000011723\",\n                          name: \"Frame 1000011723\",\n                          children: [/*#__PURE__*/_jsx(Container, {\n                            className: \"framer-14olrff-container\",\n                            \"data-framer-name\": \"Icon File\",\n                            name: \"Icon File\",\n                            children: /*#__PURE__*/_jsx(Feather, {\n                              color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                              height: \"100%\",\n                              iconSearch: \"file-text\",\n                              iconSelection: \"file-text\",\n                              id: \"oU7gyaHKK\",\n                              layoutId: \"oU7gyaHKK\",\n                              mirrored: false,\n                              name: \"Icon File\",\n                              selectByList: true,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              width: \"100%\"\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-qxphvg\",\n                                \"data-styles-preset\": \"pak0NYeLc\",\n                                children: \"Instructor:\"\n                              })\n                            }),\n                            className: \"framer-1qxyxar\",\n                            \"data-framer-name\": \"Instructor:\",\n                            name: \"Instructor:\",\n                            verticalAlignment: \"center\",\n                            withExternalLayout: true\n                          })]\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-qxphvg\",\n                              \"data-styles-preset\": \"pak0NYeLc\",\n                              children: \"Ronald Richards\"\n                            })\n                          }),\n                          className: \"framer-m7hteb\",\n                          \"data-framer-name\": \"Ronald Richards\",\n                          name: \"Ronald Richards\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      }), /*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-1yka33b\",\n                        \"data-framer-name\": \"Frame 1000011727\",\n                        name: \"Frame 1000011727\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-1jlq7hw\",\n                          \"data-framer-name\": \"Frame 1000011723\",\n                          name: \"Frame 1000011723\",\n                          children: [/*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1z0u0vo-container\",\n                            \"data-framer-name\": \"Icon File\",\n                            name: \"Icon File\",\n                            children: /*#__PURE__*/_jsx(Feather, {\n                              color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                              height: \"100%\",\n                              iconSearch: \"file-text\",\n                              iconSelection: \"file-text\",\n                              id: \"vcAtvMsLY\",\n                              layoutId: \"vcAtvMsLY\",\n                              mirrored: false,\n                              name: \"Icon File\",\n                              selectByList: true,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              width: \"100%\"\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-qxphvg\",\n                                \"data-styles-preset\": \"pak0NYeLc\",\n                                children: \"Lesson:\"\n                              })\n                            }),\n                            className: \"framer-45zs4h\",\n                            \"data-framer-name\": \"Lesson:\",\n                            name: \"Lesson:\",\n                            verticalAlignment: \"center\",\n                            withExternalLayout: true\n                          })]\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-qxphvg\",\n                              \"data-styles-preset\": \"pak0NYeLc\",\n                              children: \"16 Lessons\"\n                            })\n                          }),\n                          className: \"framer-1m0qtx4\",\n                          \"data-framer-name\": \"16 Lessons\",\n                          name: \"16 Lessons\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      }), /*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-1qtuef5\",\n                        \"data-framer-name\": \"Frame 1000011728\",\n                        name: \"Frame 1000011728\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-3c1qgx\",\n                          \"data-framer-name\": \"Frame 1000011723\",\n                          name: \"Frame 1000011723\",\n                          children: [/*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1idths9-container\",\n                            \"data-framer-name\": \"Icon File\",\n                            name: \"Icon File\",\n                            children: /*#__PURE__*/_jsx(Feather, {\n                              color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                              height: \"100%\",\n                              iconSearch: \"file-text\",\n                              iconSelection: \"file-text\",\n                              id: \"T41W8F6b6\",\n                              layoutId: \"T41W8F6b6\",\n                              mirrored: false,\n                              name: \"Icon File\",\n                              selectByList: true,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              width: \"100%\"\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-qxphvg\",\n                                \"data-styles-preset\": \"pak0NYeLc\",\n                                children: \"Duration:\"\n                              })\n                            }),\n                            className: \"framer-q8nyds\",\n                            \"data-framer-name\": \"Duration:\",\n                            name: \"Duration:\",\n                            verticalAlignment: \"center\",\n                            withExternalLayout: true\n                          })]\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-qxphvg\",\n                              \"data-styles-preset\": \"pak0NYeLc\",\n                              children: \"8 Hour\"\n                            })\n                          }),\n                          className: \"framer-6i7gh\",\n                          \"data-framer-name\": \"8 Hour\",\n                          name: \"8 Hour\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      }), /*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-ir2ivn\",\n                        \"data-framer-name\": \"Frame 1000011729\",\n                        name: \"Frame 1000011729\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-1hvp844\",\n                          \"data-framer-name\": \"Frame 1000011723\",\n                          name: \"Frame 1000011723\",\n                          children: [/*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1v0y87m-container\",\n                            \"data-framer-name\": \"Icon File\",\n                            name: \"Icon File\",\n                            children: /*#__PURE__*/_jsx(Feather, {\n                              color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                              height: \"100%\",\n                              iconSearch: \"file-text\",\n                              iconSelection: \"file-text\",\n                              id: \"TYWfCEXK9\",\n                              layoutId: \"TYWfCEXK9\",\n                              mirrored: false,\n                              name: \"Icon File\",\n                              selectByList: true,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              width: \"100%\"\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-qxphvg\",\n                                \"data-styles-preset\": \"pak0NYeLc\",\n                                children: \"Last Updated:\"\n                              })\n                            }),\n                            className: \"framer-kpj8lx\",\n                            \"data-framer-name\": \"Last Updated:\",\n                            name: \"Last Updated:\",\n                            verticalAlignment: \"center\",\n                            withExternalLayout: true\n                          })]\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-qxphvg\",\n                              \"data-styles-preset\": \"pak0NYeLc\",\n                              children: \"20 Jul, 2023\"\n                            })\n                          }),\n                          className: \"framer-qr9io2\",\n                          \"data-framer-name\": \"20 Jul, 2023\",\n                          name: \"20 Jul, 2023\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      }), /*#__PURE__*/_jsxs(\"div\", {\n                        className: \"framer-lfa8b4\",\n                        \"data-framer-name\": \"Frame 1000011730\",\n                        name: \"Frame 1000011730\",\n                        children: [/*#__PURE__*/_jsxs(\"div\", {\n                          className: \"framer-9zxaf6\",\n                          \"data-framer-name\": \"Frame 1000011723\",\n                          name: \"Frame 1000011723\",\n                          children: [/*#__PURE__*/_jsx(Container, {\n                            className: \"framer-1hm44e5-container\",\n                            \"data-framer-name\": \"Icon File\",\n                            name: \"Icon File\",\n                            children: /*#__PURE__*/_jsx(Feather, {\n                              color: 'var(--token-745ef760-221d-4de4-9a3f-ff38048c2ceb, rgb(75, 75, 89)) /* {\"name\":\"Text 1\"} */',\n                              height: \"100%\",\n                              iconSearch: \"file-text\",\n                              iconSelection: \"file-text\",\n                              id: \"SICsQWg6w\",\n                              layoutId: \"SICsQWg6w\",\n                              mirrored: false,\n                              name: \"Icon File\",\n                              selectByList: true,\n                              style: {\n                                height: \"100%\",\n                                width: \"100%\"\n                              },\n                              width: \"100%\"\n                            })\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                className: \"framer-styles-preset-qxphvg\",\n                                \"data-styles-preset\": \"pak0NYeLc\",\n                                children: \"Quizze:\"\n                              })\n                            }),\n                            className: \"framer-1u9bfjs\",\n                            \"data-framer-name\": \"Quizze:\",\n                            name: \"Quizze:\",\n                            verticalAlignment: \"center\",\n                            withExternalLayout: true\n                          })]\n                        }), /*#__PURE__*/_jsx(RichText, {\n                          __fromCanvasComponent: true,\n                          children: /*#__PURE__*/_jsx(React.Fragment, {\n                            children: /*#__PURE__*/_jsx(\"p\", {\n                              className: \"framer-styles-preset-qxphvg\",\n                              \"data-styles-preset\": \"pak0NYeLc\",\n                              children: \"20\"\n                            })\n                          }),\n                          className: \"framer-1cbiqkp\",\n                          \"data-framer-name\": \"20\",\n                          name: \"20\",\n                          verticalAlignment: \"center\",\n                          withExternalLayout: true\n                        })]\n                      })]\n                    })]\n                  })]\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-n518bn\",\n            \"data-framer-name\": \"CTA Section\",\n            name: \"CTA Section\",\n            children: [/*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-4055o7\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1ptbq8r-container\",\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    H5wsX5kHi: {\n                      variant: \"uLAWWfz2t\"\n                    },\n                    RYFM2kF1Y: {\n                      variant: \"uLAWWfz2t\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(CTA, {\n                    G_mFanluK: \"Join the world largest online academic platform\",\n                    height: \"100%\",\n                    id: \"GHtZ2a4QI\",\n                    layoutId: \"GHtZ2a4QI\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"u1oyRWP93\",\n                    width: \"100%\"\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-1vpcoj\"\n            })]\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1srui8h-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                H5wsX5kHi: {\n                  variant: \"pdxbQuDVd\"\n                },\n                RYFM2kF1Y: {\n                  variant: \"a8f6HWIWL\"\n                },\n                T2U27R37O: {\n                  variant: \"x32i_CbVK\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(FooterSection, {\n                height: \"100%\",\n                id: \"Ll63_NOnU\",\n                layoutId: \"Ll63_NOnU\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"CDKlc_tQj\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(\"div\", {\n            id: \"overlay\"\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-rkR1L [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName}-framer-rkR1L { background: white; }`, \".framer-rkR1L .framer-1w1xq74 { display: block; }\", \".framer-rkR1L.framer-130da0h { 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: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\", \".framer-rkR1L .framer-1l7zick-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\", \".framer-rkR1L .framer-1pxl0hq { align-content: center; align-items: center; background-color: var(--token-41eb340a-8a3f-4d58-b724-9bb7f167f43e, #f8f8fb); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 80px 0px 72px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-5wfa4i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\", \".framer-rkR1L .framer-jemstq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-1aeynm7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 53%; word-break: break-word; word-wrap: break-word; }\", \".framer-rkR1L .framer-129ydnh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-n0r2pi { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 756px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\", \".framer-rkR1L .framer-d6giyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-cq54ot { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-1tb28h2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-rkR1L .framer-1h1l4xp { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 10px 20px 60px 0px rgba(30, 30, 47, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 856px; overflow: visible; padding: 32px 32px 32px 32px; position: relative; width: 1px; }\", \".framer-rkR1L .framer-op1kd7 { aspect-ratio: 1.4971644612476371 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 529px); overflow: hidden; position: relative; width: 100%; }\", \".framer-rkR1L .framer-13y7vlh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-oywing, .framer-rkR1L .framer-1gdgae7, .framer-rkR1L .framer-1d5h8i5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-1liu0y, .framer-rkR1L .framer-qu4jvx, .framer-rkR1L .framer-4qv1oo, .framer-rkR1L .framer-1yka33b, .framer-rkR1L .framer-1qtuef5, .framer-rkR1L .framer-ir2ivn, .framer-rkR1L .framer-lfa8b4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-lc1vvb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; max-width: 238px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-rkR1L .framer-ezqqxn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 4px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 42%; }\", \".framer-rkR1L .framer-135xa9p-container, .framer-rkR1L .framer-10yl47-container, .framer-rkR1L .framer-1rbadts-container, .framer-rkR1L .framer-14olrff-container, .framer-rkR1L .framer-1z0u0vo-container, .framer-rkR1L .framer-1idths9-container, .framer-rkR1L .framer-1v0y87m-container, .framer-rkR1L .framer-1hm44e5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 16px; }\", \".framer-rkR1L .framer-1ny3c8, .framer-rkR1L .framer-42tfgn, .framer-rkR1L .framer-1nrbe3r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-rkR1L .framer-10j0blh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 4px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 45%; }\", \".framer-rkR1L .framer-g9fub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: auto; }\", \".framer-rkR1L .framer-1ypwl1x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-rkR1L .framer-1yhia5o-container, .framer-rkR1L .framer-1x037p2-container, .framer-rkR1L .framer-p1ttkq-container, .framer-rkR1L .framer-18qlcs-container, .framer-rkR1L .framer-1djdd0a-container { flex: none; height: 20px; position: relative; width: 20px; }\", \".framer-rkR1L .framer-1dchm2x, .framer-rkR1L .framer-ae5fv6, .framer-rkR1L .framer-16nbscc { --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-rkR1L .framer-1birj83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-35b9my { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-rkR1L .framer-18lrsj4 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\", \".framer-rkR1L .framer-7wkpit, .framer-rkR1L .framer-1vtweea, .framer-rkR1L .framer-xvrk6q, .framer-rkR1L .framer-18ver5p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-rkR1L .framer-9jmw2c { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 140px; word-break: break-word; word-wrap: break-word; }\", \".framer-rkR1L .framer-18mh8u9, .framer-rkR1L .framer-k87q82, .framer-rkR1L .framer-nuy3r2, .framer-rkR1L .framer-gztb5q, .framer-rkR1L .framer-1cnxo70, .framer-rkR1L .framer-1j2a5nq, .framer-rkR1L .framer-40hmrb, .framer-rkR1L .framer-m7hteb, .framer-rkR1L .framer-1m0qtx4, .framer-rkR1L .framer-6i7gh, .framer-rkR1L .framer-qr9io2, .framer-rkR1L .framer-1cbiqkp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-rkR1L .framer-s2f60s, .framer-rkR1L .framer-14l0h7a, .framer-rkR1L .framer-13fdq6h { background-color: var(--token-976f4bc9-5f01-4af3-9c26-6396ff4ff685, #a5a5ac); flex: none; height: 28px; overflow: hidden; position: relative; width: 1px; }\", \".framer-rkR1L .framer-gx4duv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 117px; word-break: break-word; word-wrap: break-word; }\", \".framer-rkR1L .framer-sucpk0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 123px; word-break: break-word; word-wrap: break-word; }\", \".framer-rkR1L .framer-8lqsuk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 79px; word-break: break-word; word-wrap: break-word; }\", \".framer-rkR1L .framer-qa2g3y { background-color: var(--token-09022472-b984-4969-906c-d6ee19b7a1bd, #e8e8ea); flex: none; height: 3px; overflow: hidden; position: relative; width: 100%; }\", \".framer-rkR1L .framer-uk2taw { --border-bottom-width: 1px; --border-color: #e8e8ea; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 10px 20px 60px 0px rgba(30, 30, 47, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 32px 32px 32px 32px; position: relative; width: 1px; }\", \".framer-rkR1L .framer-ok6mb6 { aspect-ratio: 1.411764705882353 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 238px); overflow: visible; position: relative; width: 100%; }\", \".framer-rkR1L .framer-10n4549 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\", \".framer-rkR1L .framer-a4kw94 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 64px; will-change: var(--framer-will-change-override, transform); }\", \".framer-rkR1L .framer-1tj31d4-container { flex: none; height: 55%; position: relative; width: 55%; }\", \".framer-rkR1L .framer-1ngokuv { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\", \".framer-rkR1L .framer-nc0fcz-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: fixed; right: 40px; top: 40px; width: 32px; z-index: 10; }\", \".framer-rkR1L .framer-1i13pvp-container { aspect-ratio: 1.7638888888888888 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 698px); left: 51%; position: fixed; top: 54%; transform: translate(-50%, -50%); width: 1231px; z-index: 10; }\", \".framer-rkR1L .framer-p5c2o0 { align-content: center; align-items: center; background-color: #1e1e2f; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; overflow: visible; padding: 8px 12px 8px 12px; position: absolute; top: 20px; width: min-content; }\", \".framer-rkR1L .framer-1e2gsgh, .framer-rkR1L .framer-ac8r1s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-1dwb2gv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-11rgyjx, .framer-rkR1L .framer-pluivq, .framer-rkR1L .framer-1qxyxar, .framer-rkR1L .framer-45zs4h, .framer-rkR1L .framer-q8nyds, .framer-rkR1L .framer-kpj8lx, .framer-rkR1L .framer-1u9bfjs { --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-rkR1L .framer-lzq022-container, .framer-rkR1L .framer-1ptbq8r-container, .framer-rkR1L .framer-1srui8h-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-rkR1L .framer-aonbs1 { background-color: var(--token-09022472-b984-4969-906c-d6ee19b7a1bd, #e8e8ea); flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\", \".framer-rkR1L .framer-yd4w7f, .framer-rkR1L .framer-w3g89o, .framer-rkR1L .framer-1jlq7hw, .framer-rkR1L .framer-3c1qgx, .framer-rkR1L .framer-1hvp844, .framer-rkR1L .framer-9zxaf6 { 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: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-rkR1L .framer-n518bn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\", \".framer-rkR1L .framer-4055o7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\", \".framer-rkR1L .framer-1vpcoj { background-color: var(--token-0867723f-a9b7-40eb-b23e-2ad37a6955da, #1e1e2f); bottom: 0px; flex: none; height: 50%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: -1; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rkR1L.framer-130da0h, .framer-rkR1L .framer-1pxl0hq, .framer-rkR1L .framer-5wfa4i, .framer-rkR1L .framer-jemstq, .framer-rkR1L .framer-129ydnh, .framer-rkR1L .framer-d6giyz, .framer-rkR1L .framer-cq54ot, .framer-rkR1L .framer-1tb28h2, .framer-rkR1L .framer-1h1l4xp, .framer-rkR1L .framer-13y7vlh, .framer-rkR1L .framer-oywing, .framer-rkR1L .framer-lc1vvb, .framer-rkR1L .framer-ezqqxn, .framer-rkR1L .framer-10j0blh, .framer-rkR1L .framer-g9fub, .framer-rkR1L .framer-1ypwl1x, .framer-rkR1L .framer-35b9my, .framer-rkR1L .framer-7wkpit, .framer-rkR1L .framer-1vtweea, .framer-rkR1L .framer-xvrk6q, .framer-rkR1L .framer-18ver5p, .framer-rkR1L .framer-uk2taw, .framer-rkR1L .framer-1gdgae7, .framer-rkR1L .framer-a4kw94, .framer-rkR1L .framer-p5c2o0, .framer-rkR1L .framer-1e2gsgh, .framer-rkR1L .framer-1dwb2gv, .framer-rkR1L .framer-1d5h8i5, .framer-rkR1L .framer-ac8r1s, .framer-rkR1L .framer-yd4w7f, .framer-rkR1L .framer-w3g89o, .framer-rkR1L .framer-1jlq7hw, .framer-rkR1L .framer-3c1qgx, .framer-rkR1L .framer-1hvp844, .framer-rkR1L .framer-9zxaf6, .framer-rkR1L .framer-n518bn, .framer-rkR1L .framer-4055o7 { gap: 0px; } .framer-rkR1L.framer-130da0h > *, .framer-rkR1L .framer-5wfa4i > *, .framer-rkR1L .framer-d6giyz > *, .framer-rkR1L .framer-7wkpit > *, .framer-rkR1L .framer-1vtweea > *, .framer-rkR1L .framer-xvrk6q > *, .framer-rkR1L .framer-18ver5p > *, .framer-rkR1L .framer-4055o7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rkR1L.framer-130da0h > :first-child, .framer-rkR1L .framer-5wfa4i > :first-child, .framer-rkR1L .framer-jemstq > :first-child, .framer-rkR1L .framer-d6giyz > :first-child, .framer-rkR1L .framer-1h1l4xp > :first-child, .framer-rkR1L .framer-13y7vlh > :first-child, .framer-rkR1L .framer-oywing > :first-child, .framer-rkR1L .framer-7wkpit > :first-child, .framer-rkR1L .framer-1vtweea > :first-child, .framer-rkR1L .framer-xvrk6q > :first-child, .framer-rkR1L .framer-18ver5p > :first-child, .framer-rkR1L .framer-uk2taw > :first-child, .framer-rkR1L .framer-1gdgae7 > :first-child, .framer-rkR1L .framer-1e2gsgh > :first-child, .framer-rkR1L .framer-1d5h8i5 > :first-child, .framer-rkR1L .framer-ac8r1s > :first-child, .framer-rkR1L .framer-n518bn > :first-child, .framer-rkR1L .framer-4055o7 > :first-child { margin-top: 0px; } .framer-rkR1L.framer-130da0h > :last-child, .framer-rkR1L .framer-5wfa4i > :last-child, .framer-rkR1L .framer-jemstq > :last-child, .framer-rkR1L .framer-d6giyz > :last-child, .framer-rkR1L .framer-1h1l4xp > :last-child, .framer-rkR1L .framer-13y7vlh > :last-child, .framer-rkR1L .framer-oywing > :last-child, .framer-rkR1L .framer-7wkpit > :last-child, .framer-rkR1L .framer-1vtweea > :last-child, .framer-rkR1L .framer-xvrk6q > :last-child, .framer-rkR1L .framer-18ver5p > :last-child, .framer-rkR1L .framer-uk2taw > :last-child, .framer-rkR1L .framer-1gdgae7 > :last-child, .framer-rkR1L .framer-1e2gsgh > :last-child, .framer-rkR1L .framer-1d5h8i5 > :last-child, .framer-rkR1L .framer-ac8r1s > :last-child, .framer-rkR1L .framer-n518bn > :last-child, .framer-rkR1L .framer-4055o7 > :last-child { margin-bottom: 0px; } .framer-rkR1L .framer-1pxl0hq > *, .framer-rkR1L .framer-cq54ot > *, .framer-rkR1L .framer-1ypwl1x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rkR1L .framer-1pxl0hq > :first-child, .framer-rkR1L .framer-129ydnh > :first-child, .framer-rkR1L .framer-cq54ot > :first-child, .framer-rkR1L .framer-1tb28h2 > :first-child, .framer-rkR1L .framer-lc1vvb > :first-child, .framer-rkR1L .framer-ezqqxn > :first-child, .framer-rkR1L .framer-10j0blh > :first-child, .framer-rkR1L .framer-g9fub > :first-child, .framer-rkR1L .framer-1ypwl1x > :first-child, .framer-rkR1L .framer-35b9my > :first-child, .framer-rkR1L .framer-a4kw94 > :first-child, .framer-rkR1L .framer-p5c2o0 > :first-child, .framer-rkR1L .framer-1dwb2gv > :first-child, .framer-rkR1L .framer-yd4w7f > :first-child, .framer-rkR1L .framer-w3g89o > :first-child, .framer-rkR1L .framer-1jlq7hw > :first-child, .framer-rkR1L .framer-3c1qgx > :first-child, .framer-rkR1L .framer-1hvp844 > :first-child, .framer-rkR1L .framer-9zxaf6 > :first-child { margin-left: 0px; } .framer-rkR1L .framer-1pxl0hq > :last-child, .framer-rkR1L .framer-129ydnh > :last-child, .framer-rkR1L .framer-cq54ot > :last-child, .framer-rkR1L .framer-1tb28h2 > :last-child, .framer-rkR1L .framer-lc1vvb > :last-child, .framer-rkR1L .framer-ezqqxn > :last-child, .framer-rkR1L .framer-10j0blh > :last-child, .framer-rkR1L .framer-g9fub > :last-child, .framer-rkR1L .framer-1ypwl1x > :last-child, .framer-rkR1L .framer-35b9my > :last-child, .framer-rkR1L .framer-a4kw94 > :last-child, .framer-rkR1L .framer-p5c2o0 > :last-child, .framer-rkR1L .framer-1dwb2gv > :last-child, .framer-rkR1L .framer-yd4w7f > :last-child, .framer-rkR1L .framer-w3g89o > :last-child, .framer-rkR1L .framer-1jlq7hw > :last-child, .framer-rkR1L .framer-3c1qgx > :last-child, .framer-rkR1L .framer-1hvp844 > :last-child, .framer-rkR1L .framer-9zxaf6 > :last-child { margin-right: 0px; } .framer-rkR1L .framer-jemstq > *, .framer-rkR1L .framer-oywing > *, .framer-rkR1L .framer-1gdgae7 > *, .framer-rkR1L .framer-1d5h8i5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rkR1L .framer-129ydnh > *, .framer-rkR1L .framer-ezqqxn > *, .framer-rkR1L .framer-10j0blh > *, .framer-rkR1L .framer-g9fub > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-rkR1L .framer-1tb28h2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-rkR1L .framer-1h1l4xp > *, .framer-rkR1L .framer-13y7vlh > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-rkR1L .framer-lc1vvb > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-rkR1L .framer-35b9my > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-rkR1L .framer-uk2taw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rkR1L .framer-a4kw94 > *, .framer-rkR1L .framer-p5c2o0 > *, .framer-rkR1L .framer-1dwb2gv > *, .framer-rkR1L .framer-yd4w7f > *, .framer-rkR1L .framer-w3g89o > *, .framer-rkR1L .framer-1jlq7hw > *, .framer-rkR1L .framer-3c1qgx > *, .framer-rkR1L .framer-1hvp844 > *, .framer-rkR1L .framer-9zxaf6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rkR1L .framer-1e2gsgh > *, .framer-rkR1L .framer-ac8r1s > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rkR1L .framer-n518bn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \"@media (min-width: 1440px) { .framer-rkR1L .hidden-130da0h { display: none !important; } }\", `@media (min-width: 992px) and (max-width: 1439px) { .framer-rkR1L .hidden-15a4z8s { display: none !important; } .${metadata.bodyClassName}-framer-rkR1L { background: white; } .framer-rkR1L.framer-130da0h { width: 992px; } .framer-rkR1L .framer-5wfa4i, .framer-rkR1L .framer-cq54ot, .framer-rkR1L .framer-4055o7 { max-width: 1000px; } .framer-rkR1L .framer-1aeynm7 { width: 60%; } .framer-rkR1L .framer-n0r2pi { order: 1; } .framer-rkR1L .framer-d6giyz { padding: 100px 0px 100px 0px; } .framer-rkR1L .framer-1tb28h2 { gap: 30px; } .framer-rkR1L .framer-op1kd7 { height: var(--framer-aspect-ratio-supported, 333px); } .framer-rkR1L .framer-1birj83 { align-content: unset; align-items: unset; display: grid; gap: 26px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-rkR1L .framer-35b9my, .framer-rkR1L .framer-1vtweea, .framer-rkR1L .framer-xvrk6q, .framer-rkR1L .framer-18ver5p { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-rkR1L .framer-uk2taw { max-width: 340px; } .framer-rkR1L .framer-ok6mb6 { height: var(--framer-aspect-ratio-supported, 196px); } .framer-rkR1L .framer-a4kw94 { height: var(--framer-aspect-ratio-supported, 54px); width: 54px; } .framer-rkR1L .framer-1i13pvp-container { aspect-ratio: 1.7849462365591398 / 1; height: var(--framer-aspect-ratio-supported, 465px); left: unset; right: 66px; transform: translateY(-50%); width: 830px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rkR1L .framer-1tb28h2, .framer-rkR1L .framer-1birj83 { gap: 0px; } .framer-rkR1L .framer-1tb28h2 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-rkR1L .framer-1tb28h2 > :first-child { margin-left: 0px; } .framer-rkR1L .framer-1tb28h2 > :last-child { margin-right: 0px; } .framer-rkR1L .framer-1birj83 > *, .framer-rkR1L .framer-1birj83 > :first-child, .framer-rkR1L .framer-1birj83 > :last-child { margin: 0px; } }}`, `@media (min-width: 768px) and (max-width: 991px) { .framer-rkR1L .hidden-ijp6fo { display: none !important; } .${metadata.bodyClassName}-framer-rkR1L { background: white; } .framer-rkR1L.framer-130da0h { width: 768px; } .framer-rkR1L .framer-1pxl0hq { padding: 70px 0px 70px 0px; } .framer-rkR1L .framer-5wfa4i, .framer-rkR1L .framer-cq54ot { max-width: 720px; } .framer-rkR1L .framer-jemstq { gap: 16px; } .framer-rkR1L .framer-1aeynm7 { width: 90%; } .framer-rkR1L .framer-d6giyz { padding: 80px 0px 80px 0px; } .framer-rkR1L .framer-1tb28h2 { flex-direction: column; gap: 48px; } .framer-rkR1L .framer-1h1l4xp { flex: none; max-width: unset; padding: 26px 26px 26px 26px; width: 100%; } .framer-rkR1L .framer-op1kd7 { height: var(--framer-aspect-ratio-supported, 406px); } .framer-rkR1L .framer-1birj83 { align-content: unset; align-items: unset; display: grid; gap: 26px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-rkR1L .framer-35b9my, .framer-rkR1L .framer-1vtweea, .framer-rkR1L .framer-xvrk6q, .framer-rkR1L .framer-18ver5p { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-rkR1L .framer-uk2taw { flex: none; gap: 23px; max-width: unset; padding: 24px 24px 24px 24px; width: 100%; } .framer-rkR1L .framer-ok6mb6 { aspect-ratio: 1.8707692307692307 / 1; height: var(--framer-aspect-ratio-supported, 327px); } .framer-rkR1L .framer-a4kw94 { height: var(--framer-aspect-ratio-supported, 52px); width: 52px; } .framer-rkR1L .framer-1i13pvp-container { aspect-ratio: 1.7647058823529411 / 1; height: var(--framer-aspect-ratio-supported, 320px); left: 50%; width: 565px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rkR1L .framer-jemstq, .framer-rkR1L .framer-1tb28h2, .framer-rkR1L .framer-1birj83, .framer-rkR1L .framer-uk2taw { gap: 0px; } .framer-rkR1L .framer-jemstq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rkR1L .framer-jemstq > :first-child, .framer-rkR1L .framer-1tb28h2 > :first-child, .framer-rkR1L .framer-uk2taw > :first-child { margin-top: 0px; } .framer-rkR1L .framer-jemstq > :last-child, .framer-rkR1L .framer-1tb28h2 > :last-child, .framer-rkR1L .framer-uk2taw > :last-child { margin-bottom: 0px; } .framer-rkR1L .framer-1tb28h2 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-rkR1L .framer-1birj83 > *, .framer-rkR1L .framer-1birj83 > :first-child, .framer-rkR1L .framer-1birj83 > :last-child { margin: 0px; } .framer-rkR1L .framer-uk2taw > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } }}`, `@media (max-width: 767px) { .framer-rkR1L .hidden-1a5p87f { display: none !important; } .${metadata.bodyClassName}-framer-rkR1L { background: white; } .framer-rkR1L.framer-130da0h { width: 390px; } .framer-rkR1L .framer-1pxl0hq { padding: 80px 0px 60px 0px; } .framer-rkR1L .framer-5wfa4i, .framer-rkR1L .framer-cq54ot { max-width: 520px; padding: 0px 24px 0px 24px; } .framer-rkR1L .framer-jemstq, .framer-rkR1L .framer-ac8r1s { gap: 12px; } .framer-rkR1L .framer-1aeynm7 { width: 100%; } .framer-rkR1L .framer-d6giyz { padding: 60px 0px 60px 0px; } .framer-rkR1L .framer-1tb28h2 { align-content: center; align-items: center; flex-direction: column; max-width: 400px; } .framer-rkR1L .framer-1h1l4xp { flex: none; gap: 24px; max-width: unset; padding: 20px 20px 20px 20px; width: 100%; } .framer-rkR1L .framer-op1kd7 { height: var(--framer-aspect-ratio-supported, 134px); } .framer-rkR1L .framer-13y7vlh { gap: 25px; } .framer-rkR1L .framer-1liu0y { align-content: center; align-items: center; flex-direction: column; gap: 12px; justify-content: center; } .framer-rkR1L .framer-lc1vvb { flex: none; width: 100%; } .framer-rkR1L .framer-135xa9p-container { height: var(--framer-aspect-ratio-supported, 16px); } .framer-rkR1L .framer-1birj83 { flex-direction: column; gap: 20px; justify-content: center; } .framer-rkR1L .framer-35b9my { flex-direction: column; justify-content: center; } .framer-rkR1L .framer-uk2taw { flex: none; gap: 22px; max-width: unset; padding: 20px 20px 20px 20px; width: 100%; } .framer-rkR1L .framer-ok6mb6 { height: var(--framer-aspect-ratio-supported, 142px); } .framer-rkR1L .framer-a4kw94 { height: var(--framer-aspect-ratio-supported, 48px); width: 48px; } .framer-rkR1L .framer-1tj31d4-container { width: 40px; } .framer-rkR1L .framer-1i13pvp-container { aspect-ratio: unset; height: 160px; left: calc(50.97222222222224% - 280px / 2); top: calc(54.25000000000002% - 160px / 2); transform: unset; width: 280px; } .framer-rkR1L .framer-1d5h8i5 { gap: 16px; } .framer-rkR1L .framer-4055o7 { max-width: 524px; padding: 0px 24px 0px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rkR1L .framer-jemstq, .framer-rkR1L .framer-1tb28h2, .framer-rkR1L .framer-1h1l4xp, .framer-rkR1L .framer-13y7vlh, .framer-rkR1L .framer-1liu0y, .framer-rkR1L .framer-1birj83, .framer-rkR1L .framer-35b9my, .framer-rkR1L .framer-uk2taw, .framer-rkR1L .framer-1d5h8i5, .framer-rkR1L .framer-ac8r1s { gap: 0px; } .framer-rkR1L .framer-jemstq > *, .framer-rkR1L .framer-1liu0y > *, .framer-rkR1L .framer-35b9my > *, .framer-rkR1L .framer-ac8r1s > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-rkR1L .framer-jemstq > :first-child, .framer-rkR1L .framer-1tb28h2 > :first-child, .framer-rkR1L .framer-1h1l4xp > :first-child, .framer-rkR1L .framer-13y7vlh > :first-child, .framer-rkR1L .framer-1liu0y > :first-child, .framer-rkR1L .framer-1birj83 > :first-child, .framer-rkR1L .framer-35b9my > :first-child, .framer-rkR1L .framer-uk2taw > :first-child, .framer-rkR1L .framer-1d5h8i5 > :first-child, .framer-rkR1L .framer-ac8r1s > :first-child { margin-top: 0px; } .framer-rkR1L .framer-jemstq > :last-child, .framer-rkR1L .framer-1tb28h2 > :last-child, .framer-rkR1L .framer-1h1l4xp > :last-child, .framer-rkR1L .framer-13y7vlh > :last-child, .framer-rkR1L .framer-1liu0y > :last-child, .framer-rkR1L .framer-1birj83 > :last-child, .framer-rkR1L .framer-35b9my > :last-child, .framer-rkR1L .framer-uk2taw > :last-child, .framer-rkR1L .framer-1d5h8i5 > :last-child, .framer-rkR1L .framer-ac8r1s > :last-child { margin-bottom: 0px; } .framer-rkR1L .framer-1tb28h2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rkR1L .framer-1h1l4xp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rkR1L .framer-13y7vlh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-rkR1L .framer-1birj83 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-rkR1L .framer-uk2taw > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-rkR1L .framer-1d5h8i5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css, ...sharedStyle6.css, ...sharedStyle7.css, ...sharedStyle8.css, ...sharedStyle9.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicHeight 3309\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerIntrinsicWidth 1440\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"T2U27R37O\":{\"layout\":[\"fixed\",\"auto\"]},\"H5wsX5kHi\":{\"layout\":[\"fixed\",\"auto\"]},\"RYFM2kF1Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        */\nconst FramerJ0naHCQyW = withCSS(Component, css, \"framer-rkR1L\");\nexport default FramerJ0naHCQyW;\nFramerJ0naHCQyW.displayName = \"Course Detail\";\nFramerJ0naHCQyW.defaultProps = {\n  height: 3309,\n  width: 1440\n};\naddFonts(FramerJ0naHCQyW, [...HeaderFonts, ...FeatherFonts, ...HeroFonts, ...MaterialFonts, ...YouTubeFonts, ...ButtonFonts, ...CTAFonts, ...FooterSectionFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts, ...sharedStyle6.fonts, ...sharedStyle7.fonts, ...sharedStyle8.fonts, ...sharedStyle9.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\": \"FramerJ0naHCQyW\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"1440\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T2U27R37O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H5wsX5kHi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RYFM2kF1Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"3309\",\n        \"framerImmutableVariables\": \"true\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "HeaderFonts", "getFonts", "avzGPuUAT_default", "FeatherFonts", "Icon", "HeroFonts", "MaterialFonts", "YouTubeFonts", "Youtube", "ButtonFonts", "pdheaWsfs_default", "CTAFonts", "VzUcDTe6N_default", "FooterSectionFonts", "i3ZXF8MgS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "toDateString", "value", "options", "activeLocale", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "toResponsiveImage", "transformTemplate", "_", "t", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "mj35UMyoZ_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "H0DQKcz6e", "WcovOnfUm", "Rs_ScKuSb", "Qq8EVsnkY", "qImXMeZn1", "vvyZApqQ1", "xvufNaP3m", "CAGl18nvs", "jGW9ntpFa", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap42m929", "overlay", "args", "onClickzn6atv", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "motion", "u", "cx", "Container", "PropertyOverrides", "avzGPuUAT_default", "RichText", "x", "Image2", "Icon", "l", "AnimatePresence", "qa", "Youtube", "resolveLink", "pdheaWsfs_default", "VzUcDTe6N_default", "i3ZXF8MgS_default", "css", "FramerJ0naHCQyW", "withCSS", "J0naHCQyW_default", "addFonts", "HeaderFonts", "FeatherFonts", "HeroFonts", "MaterialFonts", "YouTubeFonts", "ButtonFonts", "CTAFonts", "FooterSectionFonts", "fonts", "__FramerMetadata__"]
}
