{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/zBcIuopHxtbQzZc4SYWU/EwJZWk5RnQoXAvVoJdXr/GSSHYk75I.js", "ssg:https://framerusercontent.com/modules/yXJHDPW0j9KKJ6MCN8cK/XWvy2MOtBcHKu0HoX142/lqmLTbfUW.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: hasBorderRadius && showVideo ? \"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        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"315\",\n        \"framerComponentPresetProps\": \"isRed, borderRadius\",\n        \"framerIntrinsicWidth\": \"560\",\n        \"framerSupportedLayoutHeight\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./YouTube.map", "import { addPropertyControls, ControlType } from \"framer\"; /**\n                                                           * @framerRecordIdKey id\n                                                           * @framerSlug Z0fSHDz_z\n                                                           * @framerEnumToDisplayNameUtils 1\n                                                           * @framerData\n                                                           */\nconst data = [{\n  alf2z0J3X: \"https://www.morningbrew.com/daily\",\n  egefidExw: \"https://www.tiktok.com/@morningbrew?lang=en\",\n  fAUfn6B7P: \"Making the news enjoyable every day.\",\n  hdu6Kg4j6: \"Morning Brew\",\n  id: \"TT5xG87cV\",\n  RDJDE9sZL: \"https://www.youtube.com/@morning-brew\",\n  UDnQLtOws: \"https://twitter.com/MorningBrew\",\n  UdWwtTMAa: \"https://www.instagram.com/morningbrew/\",\n  yBRQYuX9Q: \"https://www.mbdailyshow.com/\",\n  yCTnwUmJG: {\n    alt: \"Morning Brew logo\",\n    src: new URL(\"https://framerusercontent.com/images/gDhh6Ytq9lLUj5JHSJUulKysajM.svg\").href\n  },\n  Z0fSHDz_z: \"morning-brew\"\n}, {\n  alf2z0J3X: \"https://www.morningbrew.com/money-with-katie\",\n  egefidExw: \"https://www.tiktok.com/@moneywithkatie?lang=en\",\n  fAUfn6B7P: \"Build the life you want with a #richpeople mindset and strategy.\",\n  hdu6Kg4j6: \"Money with Katie\",\n  id: \"HlX9zNtaA\",\n  RDJDE9sZL: \"https://www.youtube.com/@MoneywithKatie\",\n  UDnQLtOws: \"https://twitter.com/moneywithkatie\",\n  UdWwtTMAa: \"https://www.instagram.com/moneywithkatie/\",\n  yBRQYuX9Q: \"https://podcast.moneywithkatie.com/\",\n  yCTnwUmJG: {\n    alt: \"Money with Katie logo\",\n    src: new URL(\"https://framerusercontent.com/images/efcJWzXAiIuZ836y6oBDaRSXB4.svg\").href\n  },\n  Z0fSHDz_z: \"money-with-katie\"\n}, {\n  alf2z0J3X: \"\",\n  egefidExw: \"https://www.tiktok.com/@goodworkmb?lang=en\",\n  fAUfn6B7P: \"Investigating America\u2019s burning questions about work.\",\n  hdu6Kg4j6: \"Good Work\",\n  id: \"WqI5qG9qc\",\n  RDJDE9sZL: \"https://www.youtube.com/@GoodWorkMB\",\n  UDnQLtOws: \"https://twitter.com/goodworkmb\",\n  UdWwtTMAa: \"https://www.instagram.com/goodworkmb/\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"Good Work logo\",\n    src: new URL(\"https://framerusercontent.com/images/hu3IPiYlkObLyirIu3qMN8Y6l4.svg\").href\n  },\n  Z0fSHDz_z: \"good-work\"\n}, {\n  alf2z0J3X: \"\",\n  egefidExw: \"https://www.tiktok.com/@businessbarista?lang=en\",\n  fAUfn6B7P: \"Entrepreneurs have 60 seconds to pitch their startup to Alex Lieberman.\",\n  hdu6Kg4j6: \"60 Second Start-up\",\n  id: \"OyczdHrA3\",\n  RDJDE9sZL: \"https://www.youtube.com/shorts/6NeY1EC8GU8\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"https://www.instagram.com/p/CgzUKR4A0Qa/\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"60 Second Start-up logo\",\n    src: new URL(\"https://framerusercontent.com/images/gO8GPMnHDzhIVbuYEvABfpaoXTk.svg\").href\n  },\n  Z0fSHDz_z: \"60-second-start-up\"\n}, {\n  fAUfn6B7P: \"A backstage pass into how the Brew\u2019s co-founder and executive chairman, Alex Lieberman, built Morning Brew.\",\n  hdu6Kg4j6: \"Founder's Journal\",\n  id: \"X01W22aR0\",\n  RDJDE9sZL: \"https://www.youtube.com/channel/UCdfhf_vuxMbgjSowJkQk-dA\",\n  UdWwtTMAa: \"https://www.instagram.com/crazyonesshow/\",\n  yBRQYuX9Q: \"https://www.podpage.com/the-crazy-ones/\",\n  yCTnwUmJG: {\n    alt: \"\",\n    src: new URL(\"https://framerusercontent.com/images/S0Fay2zzQDGbcl026Eel4jFiQA.svg\").href\n  },\n  Z0fSHDz_z: \"founder-s-journal\"\n}, {\n  alf2z0J3X: \"\",\n  egefidExw: \"https://www.tiktok.com/@ourfuturestories?lang=en\",\n  fAUfn6B7P: \"Where Gen Z learns about business.\",\n  hdu6Kg4j6: \"Our Future\",\n  id: \"ATdTimVpQ\",\n  RDJDE9sZL: \"https://www.youtube.com/@OurFuture\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"https://www.instagram.com/ourfuturehq/\",\n  yBRQYuX9Q: \"https://www.ourfuturehq.com/podcast\",\n  yCTnwUmJG: {\n    alt: \"Our Future logo\",\n    src: new URL(\"https://framerusercontent.com/images/CNUqMAeLn5WIMzxdih4mgPMxFyI.svg\").href\n  },\n  Z0fSHDz_z: \"our-future\"\n}, {\n  alf2z0J3X: \"https://www.marketingbrew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"The latest marketing news, trends, and stories influencing the advertising world.\",\n  hdu6Kg4j6: \"Marketing Brew\",\n  id: \"ruId668lb\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"Marketing Brew logo\",\n    src: new URL(\"https://framerusercontent.com/images/wPixG8wM7KOqir1vHw92h8AUL1Y.svg\").href\n  },\n  Z0fSHDz_z: \"marketing-brew\"\n}, {\n  alf2z0J3X: \"https://www.retailbrew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"Covering the ever-evolving retail industry.\",\n  hdu6Kg4j6: \"Retail Brew\",\n  id: \"h3LbWaQAM\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"Retail Brew logo\",\n    src: new URL(\"https://framerusercontent.com/images/6y1aWe3e3UhGDBW5sddCPFxSM.svg\").href\n  },\n  Z0fSHDz_z: \"retail-brew\"\n}, {\n  alf2z0J3X: \"https://www.hr-brew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"HR is challenging. HR news doesn\u2019t have to be.\",\n  hdu6Kg4j6: \"HR Brew\",\n  id: \"LQczBO5tv\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"HR Brew logo\",\n    src: new URL(\"https://framerusercontent.com/images/ocXNtKspk1YL4tjb2rnKnV2aPJ8.svg\").href\n  },\n  Z0fSHDz_z: \"hr-brew\"\n}, {\n  alf2z0J3X: \"https://www.emergingtechbrew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"Covering the technologies shaping the future of business.\",\n  hdu6Kg4j6: \"Tech Brew\",\n  id: \"aKxqNSXV7\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"Tech Brew logo\",\n    src: new URL(\"https://framerusercontent.com/images/NFHrzOzI7Rb51QdlaDSgDg70fI.svg\").href\n  },\n  Z0fSHDz_z: \"tech-brew\"\n}, {\n  alf2z0J3X: \"https://www.cfobrew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"News and insights for corporate finance professionals.\",\n  hdu6Kg4j6: \"CFO Brew\",\n  id: \"mCAq1yxHd\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"CFO Brew\",\n    src: new URL(\"https://framerusercontent.com/images/ERK7iaPVjcKtYOGzwnjXn9i4STI.svg\").href\n  },\n  Z0fSHDz_z: \"cfo-brew\"\n}, {\n  alf2z0J3X: \"https://www.healthcare-brew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"Navigate the complex healthcare industry with news, trends, and deep dives.\",\n  hdu6Kg4j6: \"Healthcare Brew\",\n  id: \"B839vYTgz\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"Healthcare Brew\",\n    src: new URL(\"https://framerusercontent.com/images/2h9hZf2M4VAOLLSsnJdTR3IxilU.svg\").href\n  },\n  Z0fSHDz_z: \"healthcare-brew\"\n}, {\n  alf2z0J3X: \"https://www.itbrew.com/\",\n  egefidExw: \"\",\n  fAUfn6B7P: \"Industry analysis and news for IT professionals.\",\n  hdu6Kg4j6: \"IT Brew\",\n  id: \"lBcevd8k7\",\n  RDJDE9sZL: \"\",\n  UDnQLtOws: \"\",\n  UdWwtTMAa: \"\",\n  yBRQYuX9Q: \"\",\n  yCTnwUmJG: {\n    alt: \"\",\n    src: new URL(\"https://framerusercontent.com/images/87OaXEVLNcHjJ03sjXlWMWVPsOo.svg\").href\n  },\n  Z0fSHDz_z: \"it-brew\"\n}];\ndata.forEach(item => Object.freeze(item));\naddPropertyControls(data, {\n  hdu6Kg4j6: {\n    defaultValue: \"\",\n    title: \"Name\",\n    type: ControlType.String\n  },\n  Z0fSHDz_z: {\n    title: \"Slug\",\n    type: ControlType.String\n  },\n  yCTnwUmJG: {\n    title: \"Image\",\n    type: ControlType.ResponsiveImage\n  },\n  fAUfn6B7P: {\n    defaultValue: \"\",\n    title: \"Description\",\n    type: ControlType.String\n  },\n  alf2z0J3X: {\n    title: \"Newsletter\",\n    type: ControlType.Link\n  },\n  yBRQYuX9Q: {\n    title: \"Podcast\",\n    type: ControlType.Link\n  },\n  UDnQLtOws: {\n    title: \"Twitter\",\n    type: ControlType.Link\n  },\n  UdWwtTMAa: {\n    title: \"Instagram\",\n    type: ControlType.Link\n  },\n  egefidExw: {\n    title: \"TikTok\",\n    type: ControlType.Link\n  },\n  RDJDE9sZL: {\n    title: \"YouTube\",\n    type: ControlType.Link\n  }\n});\ndata[\"displayName\"] = \"Brands\";\nexport default data;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"data\",\n      \"name\": \"data\",\n      \"annotations\": {\n        \"framerData\": \"\",\n        \"framerRecordIdKey\": \"id\",\n        \"framerContractVersion\": \"1\",\n        \"framerSlug\": \"Z0fSHDz_z\",\n        \"framerEnumToDisplayNameUtils\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (68ea020)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, Link, optimizeAppear, optimizeAppearTransformTemplate, PathVariablesContext, PropertyOverrides, removeHiddenBreakpointLayers, RichText, SVG, useHydratedBreakpointVariants, useQueryData, useRouteElementId, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Youtube as YouTube } from \"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";\nimport Embed from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";\nimport Footer from \"https://framerusercontent.com/modules/6cllI6asg2WoueyfJLqN/i6rw32Jp11ozl1rbxK2H/oetjN3pPu.js\";\nimport Navigation from \"https://framerusercontent.com/modules/oAfYKCPVAz4pK4MToyen/SpaJhxZ7gcFRBmCUUzDD/QY1XK6j6_.js\";\nimport Brands from \"https://framerusercontent.com/modules/zBcIuopHxtbQzZc4SYWU/EwJZWk5RnQoXAvVoJdXr/GSSHYk75I.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/kyTWcK4GQRwE46Wo2pDM/UU8kH1vfVksvCrEoMVqV/EN1OteL_p.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/9ElCAWZZB37QaClVfEBH/YMWHM9kx1qtRkacVlBvl/h8yg2QcEs.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/er3LR2CNUBcaHnJXZWL8/zd7C05akiGWUNKG4auMX/URI3b4N49.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/9Kgbc1eMqtDdWtkH1imy/aJ4sp2rR22QspKNXgIGE/xZndidUCt.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/xJ043A4QGZT4JuI1c49n/TVI5JBZdZI2liIQjL6Um/lqmLTbfUW.js\";\nconst YouTubeFonts = getFonts(YouTube);\nconst EmbedFonts = getFonts(Embed);\nconst FooterFonts = getFonts(Footer);\nconst NavigationFonts = getFonts(Navigation);\nconst cycleOrder = [\"c3_M1q5FP\", \"ausDMfCD8\", \"wpqWRBLMK\"];\nconst breakpoints = {\n  ausDMfCD8: \"(min-width: 810px) and (max-width: 1199px)\",\n  c3_M1q5FP: \"(min-width: 1200px)\",\n  wpqWRBLMK: \"(max-width: 809px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  ausDMfCD8: \"framer-v-d46ia2\",\n  c3_M1q5FP: \"framer-v-3dzh65\",\n  wpqWRBLMK: \"framer-v-qh5xc4\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"c3_M1q5FP\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"c3_M1q5FP\",\n  Phone: \"wpqWRBLMK\",\n  Tablet: \"ausDMfCD8\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  delay: 0,\n  duration: 1.2,\n  ease: [.16, 1, .3, 1],\n  type: \"tween\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: .95,\n  transition: transition1,\n  x: 0,\n  y: 48\n};\nconst transformTemplate = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  scale: .95,\n  x: 0,\n  y: 48\n};\nconst transition2 = {\n  delay: .1,\n  duration: 1.2,\n  ease: [.16, 1, .3, 1],\n  type: \"tween\"\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  scale: .95,\n  transition: transition2,\n  x: 0,\n  y: 48\n};\nconst animation4 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\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 isSet = value => {\n  return value !== undefined && value !== null && value !== \"\";\n};\nconst QueryData = ({\n  query,\n  children\n}) => {\n  const data = useQueryData(query);\n  return children(data);\n};\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"c3_M1q5FP\",\n  yCTnwUmJGU9Go6uJ3V,\n  alf2z0J3XU9Go6uJ3V,\n  yBRQYuX9QU9Go6uJ3V,\n  UDnQLtOwsU9Go6uJ3V,\n  UdWwtTMAaU9Go6uJ3V,\n  egefidExwU9Go6uJ3V,\n  RDJDE9sZLU9Go6uJ3V,\n  fAUfn6B7PU9Go6uJ3V,\n  Z0fSHDz_zU9Go6uJ3V,\n  idU9Go6uJ3V,\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const id1 = useRouteElementId(\"azXC3dZZZ\");\n  const ref1 = React.useRef(null);\n  const id2 = useRouteElementId(\"CKPkdOyMs\");\n  const ref2 = React.useRef(null);\n  const id3 = useRouteElementId(\"EuWi4lwoK\");\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"c3_M1q5FP\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-bEtGd\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-3dzh65\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-up1rq7\",\n            \"data-framer-name\": \"Hero\",\n            name: \"Hero\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                wpqWRBLMK: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 2e3,\n                    intrinsicWidth: 3e3,\n                    pixelHeight: 2e3,\n                    pixelWidth: 3e3,\n                    sizes: \"calc(min(100vw, 1200px) - 48px)\",\n                    src: new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg\").href} 3000w`\n                  }\n                }\n              },\n              children: /*#__PURE__*/_jsx(Image, {\n                background: {\n                  alt: \"\",\n                  fit: \"fill\",\n                  intrinsicHeight: 2e3,\n                  intrinsicWidth: 3e3,\n                  pixelHeight: 2e3,\n                  pixelWidth: 3e3,\n                  sizes: \"calc(min(100vw, 1200px) - 64px)\",\n                  src: new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg\").href,\n                  srcSet: `${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/CjoXDw0pSkPUrSrZbibOd7Zqp0g.jpg\").href} 3000w`\n                },\n                className: \"framer-i40qlk\",\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-g7513n\",\n                  \"data-framer-name\": \"Hero Inner\",\n                  name: \"Hero Inner\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      ausDMfCD8: {\n                        \"data-framer-appear-id\": \"4ej46b\",\n                        animate: optimizeAppear(\"animate\", \"4ej46b\", animation1, \"d46ia2\"),\n                        initial: optimizeAppear(\"initial\", \"4ej46b\", animation2, \"d46ia2\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"4ej46b\", transformTemplate)\n                      },\n                      wpqWRBLMK: {\n                        \"data-framer-appear-id\": \"1sqih7j\",\n                        animate: optimizeAppear(\"animate\", \"1sqih7j\", animation1, \"qh5xc4\"),\n                        initial: optimizeAppear(\"initial\", \"1sqih7j\", animation2, \"qh5xc4\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"1sqih7j\", transformTemplate)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      animate: optimizeAppear(\"animate\", \"9d5c9h\", animation1, \"3dzh65\"),\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          className: \"framer-styles-preset-me6hej\",\n                          \"data-styles-preset\": \"EN1OteL_p\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245))\"\n                          },\n                          children: \"INFORM. EDUCATE. CONNECT.\"\n                        })\n                      }),\n                      className: \"framer-9d5c9h\",\n                      \"data-framer-appear-id\": \"9d5c9h\",\n                      exit: animation,\n                      initial: optimizeAppear(\"initial\", \"9d5c9h\", animation2, \"3dzh65\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"9d5c9h\", transformTemplate),\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      ausDMfCD8: {\n                        \"data-framer-appear-id\": \"13dlwf9\",\n                        animate: optimizeAppear(\"animate\", \"13dlwf9\", animation4, \"d46ia2\"),\n                        initial: optimizeAppear(\"initial\", \"13dlwf9\", animation2, \"d46ia2\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"13dlwf9\", transformTemplate)\n                      },\n                      wpqWRBLMK: {\n                        \"data-framer-appear-id\": \"1sslv4b\",\n                        animate: optimizeAppear(\"animate\", \"1sslv4b\", animation4, \"qh5xc4\"),\n                        initial: optimizeAppear(\"initial\", \"1sslv4b\", animation2, \"qh5xc4\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"1sslv4b\", transformTemplate)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      animate: optimizeAppear(\"animate\", \"9adf73\", animation4, \"3dzh65\"),\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-1c5z7ms\",\n                          \"data-styles-preset\": \"h8yg2QcEs\",\n                          style: {\n                            \"--framer-text-alignment\": \"center\",\n                            \"--framer-text-color\": \"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245))\"\n                          },\n                          children: \"Our audience trusts us to deliver what they need to know in a way that feels authentic. Whether it helps them own their finances, define their career, understand the business world, or connect with the industry they\u2019re passionate about, our content is smart, never boring, and always easy to access.\"\n                        })\n                      }),\n                      className: \"framer-9adf73\",\n                      \"data-framer-appear-id\": \"9adf73\",\n                      exit: animation3,\n                      initial: optimizeAppear(\"initial\", \"9adf73\", animation2, \"3dzh65\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"9adf73\", transformTemplate),\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })]\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-cka98g\",\n            \"data-framer-name\": \"Facts\",\n            name: \"Facts\",\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-13tmw52\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ausDMfCD8: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                          \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                          \"--framer-font-size\": \"28px\",\n                          \"--framer-line-height\": \"36px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"44% are 18\u201334\"\n                      })\n                    })\n                  },\n                  wpqWRBLMK: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                          \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                          \"--framer-line-height\": \"16px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"44% are 18\u201334\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                        \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                        \"--framer-font-size\": \"36px\",\n                        \"--framer-line-height\": \"46px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                      },\n                      children: \"44% are 18\u201334\"\n                    })\n                  }),\n                  className: \"framer-eveeqz\",\n                  fonts: [\"CUSTOM;Tiempos Text Not Licensed for Desktop Use\"],\n                  verticalAlignment: \"center\",\n                  withExternalLayout: true\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-6w13jy\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ausDMfCD8: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                          \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                          \"--framer-font-size\": \"28px\",\n                          \"--framer-line-height\": \"36px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"1.7x more likely to have a HHI of $150k+\"\n                      })\n                    })\n                  },\n                  wpqWRBLMK: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                          \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                          \"--framer-line-height\": \"16px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"1.7x more likely to have a HHI of $150k+\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                        \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                        \"--framer-font-size\": \"36px\",\n                        \"--framer-line-height\": \"46px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                      },\n                      children: \"1.7x more likely to have a HHI of $150k+\"\n                    })\n                  }),\n                  className: \"framer-ax7pdg\",\n                  fonts: [\"CUSTOM;Tiempos Text Not Licensed for Desktop Use\"],\n                  verticalAlignment: \"center\",\n                  withExternalLayout: true\n                })\n              })\n            }), /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-jjpv89\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ausDMfCD8: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                          \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                          \"--framer-font-size\": \"28px\",\n                          \"--framer-line-height\": \"36px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"56% identify as men, 44% identify as women\"\n                      })\n                    })\n                  },\n                  wpqWRBLMK: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        style: {\n                          \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                          \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                          \"--framer-line-height\": \"16px\",\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"56% identify as men, 44% identify as women\"\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      style: {\n                        \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                        \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                        \"--framer-font-size\": \"36px\",\n                        \"--framer-line-height\": \"46px\",\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                      },\n                      children: \"56% identify as men, 44% identify as women\"\n                    })\n                  }),\n                  className: \"framer-16ltnks\",\n                  fonts: [\"CUSTOM;Tiempos Text Not Licensed for Desktop Use\"],\n                  verticalAlignment: \"center\",\n                  withExternalLayout: true\n                })\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-m66f5p\",\n            \"data-framer-name\": \"Info\",\n            name: \"Info\",\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-ki443d\",\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1nmdygt\",\n                \"data-framer-name\": \"Video Embed\",\n                name: \"Video Embed\",\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1gg030z-container\",\n                  children: /*#__PURE__*/_jsx(YouTube, {\n                    borderRadius: 12,\n                    bottomLeftRadius: 12,\n                    bottomRightRadius: 12,\n                    height: \"100%\",\n                    id: \"esfGPvRpQ\",\n                    isMixedBorderRadius: false,\n                    isRed: false,\n                    layoutId: \"esfGPvRpQ\",\n                    play: \"Off\",\n                    shouldMute: true,\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    thumbnail: \"High Quality\",\n                    topLeftRadius: 12,\n                    topRightRadius: 12,\n                    url: \"https://youtu.be/OzuPi63GCI0\",\n                    width: \"100%\"\n                  })\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.section, {\n            className: \"framer-91akk9\",\n            \"data-framer-name\": \"Work with us\",\n            id: id1,\n            name: \"Work with us\",\n            ref: ref1,\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-18ijvuf\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-14h15xf\",\n                children: /*#__PURE__*/_jsx(QueryData, {\n                  query: {\n                    from: {\n                      data: Brands,\n                      type: \"Collection\"\n                    },\n                    select: [{\n                      name: \"yCTnwUmJG\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"alf2z0J3X\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"yBRQYuX9Q\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"UDnQLtOws\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"UdWwtTMAa\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"egefidExw\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"RDJDE9sZL\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"fAUfn6B7P\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"Z0fSHDz_z\",\n                      type: \"Identifier\"\n                    }, {\n                      name: \"id\",\n                      type: \"Identifier\"\n                    }]\n                  },\n                  children: collection => collection.map(({\n                    yCTnwUmJG: yCTnwUmJGU9Go6uJ3V,\n                    alf2z0J3X: alf2z0J3XU9Go6uJ3V,\n                    yBRQYuX9Q: yBRQYuX9QU9Go6uJ3V,\n                    UDnQLtOws: UDnQLtOwsU9Go6uJ3V,\n                    UdWwtTMAa: UdWwtTMAaU9Go6uJ3V,\n                    egefidExw: egefidExwU9Go6uJ3V,\n                    RDJDE9sZL: RDJDE9sZLU9Go6uJ3V,\n                    fAUfn6B7P: fAUfn6B7PU9Go6uJ3V,\n                    Z0fSHDz_z: Z0fSHDz_zU9Go6uJ3V,\n                    id: idU9Go6uJ3V\n                  }, i) => /*#__PURE__*/_jsx(LayoutGroup, {\n                    id: `U9Go6uJ3V-${idU9Go6uJ3V}`,\n                    children: /*#__PURE__*/_jsx(PathVariablesContext.Provider, {\n                      value: {\n                        Z0fSHDz_z: Z0fSHDz_zU9Go6uJ3V\n                      },\n                      children: /*#__PURE__*/_jsxs(motion.div, {\n                        className: \"framer-z7xdku\",\n                        \"data-framer-name\": \"Brand Teaser\",\n                        name: \"Brand Teaser\",\n                        children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                          breakpoint: baseVariant,\n                          overrides: {\n                            ausDMfCD8: {\n                              background: {\n                                alt: \"\",\n                                fit: \"fill\",\n                                loading: \"lazy\",\n                                sizes: \"max((min(100vw, 1080px) - 72px) / 2, 200px)\",\n                                ...toResponsiveImage(yCTnwUmJGU9Go6uJ3V)\n                              }\n                            },\n                            wpqWRBLMK: {\n                              background: {\n                                alt: \"\",\n                                fit: \"fill\",\n                                loading: \"lazy\",\n                                sizes: \"calc(min(100vw, 1080px) - 48px)\",\n                                ...toResponsiveImage(yCTnwUmJGU9Go6uJ3V)\n                              }\n                            }\n                          },\n                          children: /*#__PURE__*/_jsx(Image, {\n                            background: {\n                              alt: \"\",\n                              fit: \"fill\",\n                              loading: \"lazy\",\n                              sizes: \"max((min(100vw, 1080px) - 128px) / 3, 200px)\",\n                              ...toResponsiveImage(yCTnwUmJGU9Go6uJ3V)\n                            },\n                            className: \"framer-17fkcgv\",\n                            \"data-framer-name\": \"Teaser Image\",\n                            name: \"Teaser Image\"\n                          })\n                        }), /*#__PURE__*/_jsxs(motion.div, {\n                          className: \"framer-7ufqhr\",\n                          \"data-framer-name\": \"Teaser Bottom\",\n                          name: \"Teaser Bottom\",\n                          children: [/*#__PURE__*/_jsxs(motion.div, {\n                            className: \"framer-1ci6eau\",\n                            \"data-framer-name\": \"Social Icons\",\n                            name: \"Social Icons\",\n                            children: [isSet(alf2z0J3XU9Go6uJ3V) && /*#__PURE__*/_jsx(Link, {\n                              href: alf2z0J3XU9Go6uJ3V,\n                              openInNewTab: true,\n                              children: /*#__PURE__*/_jsx(motion.a, {\n                                className: \"framer-1f6prxt framer-16cxk4k\",\n                                \"data-framer-name\": \"Newsletter\",\n                                name: \"Newsletter\",\n                                children: /*#__PURE__*/_jsx(SVG, {\n                                  className: \"framer-btx4zp\",\n                                  \"data-framer-name\": \"Page-1\",\n                                  layout: \"position\",\n                                  name: \"Page-1\",\n                                  opacity: 1,\n                                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 18\"><path d=\"M 2.281 0.793 C 1.457 0.793 0.75 1.278 0.438 1.974 C 0.329 2.218 0.269 2.489 0.269 2.771 L 11.001 9.587 L 21.732 2.771 C 21.732 2.485 21.672 2.211 21.559 1.965 C 21.247 1.275 20.54 0.793 19.721 0.793 Z M 0.269 4.53 L 0.269 13.471 L 7.306 9 Z M 0.438 16.024 C 0.75 16.721 1.457 17.207 2.281 17.207 L 19.721 17.207 C 20.54 17.207 21.247 16.726 21.559 16.035 C 21.672 15.788 21.732 15.515 21.732 15.229 L 13.307 9.879 L 11.001 11.345 L 8.693 9.879 L 0.269 15.229 C 0.269 15.511 0.329 15.783 0.438 16.024 Z M 21.732 13.471 L 21.732 4.53 L 14.694 9 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',\n                                  svgContentId: 1784929982,\n                                  withExternalLayout: true\n                                })\n                              })\n                            }), isSet(yBRQYuX9QU9Go6uJ3V) && /*#__PURE__*/_jsx(Link, {\n                              href: yBRQYuX9QU9Go6uJ3V,\n                              openInNewTab: true,\n                              children: /*#__PURE__*/_jsx(motion.a, {\n                                className: \"framer-2wi3mg framer-16cxk4k\",\n                                \"data-framer-name\": \"Podcast\",\n                                name: \"Podcast\",\n                                children: /*#__PURE__*/_jsx(SVG, {\n                                  className: \"framer-1rglauf\",\n                                  \"data-framer-name\": \"Group 231\",\n                                  layout: \"position\",\n                                  name: \"Group 231\",\n                                  opacity: 1,\n                                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 22\"><path d=\"M 9.986 3.728 C 8.962 3.729 7.956 4.004 7.074 4.524 C 6.192 5.045 5.465 5.791 4.969 6.687 C 4.472 7.583 4.224 8.595 4.25 9.619 C 4.276 10.642 4.575 11.64 5.117 12.51 C 5.174 12.618 5.254 12.713 5.35 12.79 C 5.446 12.866 5.557 12.922 5.675 12.953 C 5.794 12.985 5.917 12.992 6.039 12.974 C 6.16 12.955 6.276 12.912 6.38 12.847 C 6.484 12.782 6.574 12.696 6.643 12.595 C 6.712 12.493 6.76 12.379 6.783 12.258 C 6.806 12.138 6.804 12.014 6.777 11.894 C 6.75 11.775 6.699 11.662 6.627 11.563 C 6.25 10.964 6.041 10.275 6.021 9.568 C 6.001 8.861 6.17 8.161 6.513 7.542 C 6.855 6.923 7.356 6.407 7.966 6.047 C 8.575 5.688 9.269 5.498 9.977 5.498 C 10.684 5.498 11.379 5.688 11.988 6.047 C 12.597 6.407 13.099 6.923 13.441 7.542 C 13.783 8.161 13.953 8.861 13.933 9.568 C 13.913 10.275 13.703 10.964 13.327 11.563 C 13.2 11.763 13.158 12.005 13.21 12.237 C 13.262 12.468 13.403 12.669 13.604 12.796 C 13.804 12.922 14.046 12.964 14.277 12.912 C 14.509 12.861 14.71 12.719 14.837 12.519 C 15.38 11.651 15.681 10.653 15.709 9.63 C 15.737 8.606 15.491 7.593 14.996 6.697 C 14.501 5.8 13.776 5.052 12.895 4.53 C 12.014 4.008 11.01 3.731 9.986 3.728 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 9.986 0.28 C 8.165 0.281 6.384 0.811 4.86 1.807 C 3.336 2.803 2.134 4.221 1.402 5.888 C 0.67 7.555 0.439 9.399 0.737 11.195 C 1.035 12.991 1.849 14.661 3.08 16.003 C 3.244 16.16 3.461 16.248 3.688 16.251 C 3.915 16.253 4.135 16.169 4.302 16.015 C 4.469 15.862 4.572 15.65 4.588 15.424 C 4.605 15.198 4.536 14.973 4.393 14.797 C 3.398 13.71 2.741 12.357 2.502 10.903 C 2.263 9.45 2.451 7.958 3.045 6.609 C 3.639 5.261 4.612 4.115 5.846 3.31 C 7.08 2.505 8.521 2.076 9.995 2.076 C 11.468 2.076 12.909 2.505 14.143 3.31 C 15.377 4.115 16.351 5.261 16.944 6.609 C 17.538 7.958 17.727 9.45 17.487 10.903 C 17.248 12.357 16.591 13.71 15.596 14.797 C 15.517 14.883 15.455 14.985 15.415 15.096 C 15.376 15.206 15.358 15.323 15.363 15.441 C 15.369 15.558 15.397 15.673 15.447 15.78 C 15.497 15.886 15.567 15.982 15.654 16.061 C 15.741 16.14 15.842 16.201 15.953 16.241 C 16.063 16.281 16.181 16.299 16.298 16.294 C 16.416 16.288 16.531 16.26 16.637 16.21 C 16.743 16.16 16.839 16.09 16.918 16.003 C 18.151 14.66 18.965 12.987 19.262 11.188 C 19.559 9.39 19.326 7.543 18.59 5.875 C 17.855 4.208 16.649 2.79 15.121 1.796 C 13.593 0.802 11.809 0.275 9.986 0.28 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 11.12 13.68 L 8.851 13.68 C 8.599 13.679 8.349 13.73 8.118 13.832 C 7.888 13.934 7.681 14.084 7.512 14.271 C 7.344 14.458 7.217 14.679 7.139 14.919 C 7.062 15.159 7.036 15.413 7.064 15.663 L 7.564 20.13 C 7.613 20.569 7.822 20.975 8.152 21.268 C 8.482 21.562 8.909 21.723 9.351 21.72 L 10.62 21.72 C 11.061 21.723 11.488 21.562 11.818 21.268 C 12.148 20.975 12.358 20.569 12.406 20.13 L 12.907 15.663 C 12.934 15.413 12.909 15.159 12.832 14.919 C 12.754 14.679 12.627 14.458 12.458 14.271 C 12.29 14.084 12.083 13.934 11.852 13.832 C 11.622 13.73 11.372 13.679 11.12 13.68 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 9.985 11.893 C 11.219 11.893 12.219 10.893 12.219 9.66 C 12.219 8.426 11.219 7.427 9.985 7.427 C 8.752 7.427 7.752 8.426 7.752 9.66 C 7.752 10.893 8.752 11.893 9.985 11.893 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',\n                                  svgContentId: 2572205631,\n                                  withExternalLayout: true\n                                })\n                              })\n                            }), isSet(UDnQLtOwsU9Go6uJ3V) && /*#__PURE__*/_jsx(Link, {\n                              href: UDnQLtOwsU9Go6uJ3V,\n                              openInNewTab: true,\n                              children: /*#__PURE__*/_jsx(motion.a, {\n                                className: \"framer-17zmed4 framer-16cxk4k\",\n                                \"data-framer-name\": \"Twitter\",\n                                name: \"Twitter\",\n                                children: /*#__PURE__*/_jsx(SVG, {\n                                  className: \"framer-5x8445\",\n                                  \"data-framer-name\": \"Vector\",\n                                  layout: \"position\",\n                                  name: \"Vector\",\n                                  opacity: 1,\n                                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19 16\"><path d=\"M 6.3 15.172 C 13.097 15.172 16.813 9.54 16.813 4.659 C 16.813 4.498 16.813 4.337 16.806 4.184 C 17.526 3.663 18.154 3.011 18.652 2.268 C 17.993 2.559 17.281 2.758 16.53 2.85 C 17.296 2.391 17.878 1.67 18.154 0.804 C 17.442 1.226 16.652 1.532 15.809 1.701 C 15.135 0.981 14.177 0.536 13.112 0.536 C 11.074 0.536 9.419 2.191 9.419 4.23 C 9.419 4.521 9.449 4.804 9.518 5.073 C 6.445 4.919 3.725 3.448 1.901 1.21 C 1.587 1.755 1.403 2.391 1.403 3.065 C 1.403 4.345 2.055 5.479 3.051 6.138 C 2.445 6.122 1.878 5.954 1.38 5.678 C 1.38 5.693 1.38 5.709 1.38 5.724 C 1.38 7.517 2.652 9.004 4.346 9.348 C 4.039 9.433 3.71 9.479 3.373 9.479 C 3.135 9.479 2.905 9.456 2.675 9.41 C 3.143 10.881 4.507 11.946 6.124 11.977 C 4.859 12.965 3.265 13.555 1.534 13.555 C 1.235 13.555 0.944 13.54 0.652 13.502 C 2.269 14.559 4.216 15.172 6.3 15.172 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',\n                                  svgContentId: 1027418937,\n                                  withExternalLayout: true\n                                })\n                              })\n                            }), isSet(UdWwtTMAaU9Go6uJ3V) && /*#__PURE__*/_jsx(Link, {\n                              href: UdWwtTMAaU9Go6uJ3V,\n                              openInNewTab: true,\n                              children: /*#__PURE__*/_jsx(motion.a, {\n                                className: \"framer-nhl8qs framer-16cxk4k\",\n                                \"data-framer-name\": \"Instagram\",\n                                name: \"Instagram\",\n                                children: /*#__PURE__*/_jsx(SVG, {\n                                  className: \"framer-1c4mp0r\",\n                                  \"data-framer-name\": \"glyph-logo_May2016 1\",\n                                  layout: \"position\",\n                                  name: \"glyph-logo_May2016 1\",\n                                  opacity: 1,\n                                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 19\"><g transform=\"translate(0 0.985)\" id=\"ss3716113955_1\"><path d=\"M 9 1.623 C 11.403 1.623 11.688 1.632 12.637 1.676 C 13.514 1.716 13.991 1.862 14.308 1.985 C 14.7 2.129 15.054 2.36 15.344 2.659 C 15.643 2.949 15.873 3.303 16.018 3.695 C 16.141 4.012 16.287 4.489 16.327 5.366 C 16.371 6.315 16.38 6.6 16.38 9.003 C 16.38 11.406 16.371 11.69 16.327 12.64 C 16.287 13.517 16.141 13.994 16.018 14.311 C 15.868 14.699 15.638 15.051 15.344 15.346 C 15.05 15.64 14.698 15.869 14.31 16.019 C 13.992 16.142 13.516 16.289 12.638 16.329 C 11.689 16.372 11.405 16.381 9.001 16.381 C 6.598 16.381 6.313 16.372 5.365 16.329 C 4.487 16.289 4.011 16.142 3.693 16.019 C 3.302 15.875 2.948 15.645 2.657 15.346 C 2.358 15.055 2.128 14.701 1.984 14.31 C 1.861 13.992 1.714 13.516 1.674 12.638 C 1.631 11.689 1.622 11.405 1.622 9.001 C 1.622 6.598 1.631 6.314 1.674 5.365 C 1.714 4.487 1.861 4.011 1.984 3.693 C 2.128 3.302 2.358 2.948 2.657 2.657 C 2.948 2.358 3.302 2.128 3.693 1.984 C 4.011 1.861 4.487 1.714 5.365 1.674 C 6.314 1.631 6.598 1.622 9.001 1.622 Z M 9.001 -0 C 6.557 -0 6.251 0.01 5.291 0.054 C 4.331 0.098 3.677 0.252 3.105 0.474 C 2.505 0.7 1.96 1.054 1.51 1.512 C 1.053 1.962 0.698 2.506 0.472 3.107 C 0.25 3.678 0.098 4.334 0.054 5.291 C 0.011 6.249 0 6.557 0 9.001 C 0 11.446 0.01 11.752 0.054 12.712 C 0.098 13.672 0.25 14.325 0.472 14.896 C 0.699 15.497 1.053 16.041 1.51 16.49 C 1.96 16.948 2.504 17.303 3.105 17.529 C 3.677 17.751 4.332 17.904 5.29 17.947 C 6.248 17.991 6.556 18.001 9.001 18.001 C 11.445 18.001 11.752 17.991 12.711 17.947 C 13.671 17.903 14.323 17.751 14.895 17.529 C 15.493 17.298 16.036 16.944 16.489 16.491 C 16.943 16.037 17.296 15.494 17.527 14.896 C 17.75 14.325 17.902 13.669 17.946 12.712 C 17.989 11.754 18 11.445 18 9.001 C 18 6.556 17.99 6.25 17.946 5.29 C 17.902 4.33 17.75 3.678 17.527 3.107 C 17.301 2.506 16.947 1.962 16.489 1.513 C 16.04 1.055 15.495 0.7 14.895 0.474 C 14.323 0.252 13.668 0.099 12.71 0.056 C 11.752 0.012 11.444 0.001 9 0.001 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 9 4.38 C 8.086 4.38 7.192 4.651 6.432 5.159 C 5.672 5.666 5.08 6.388 4.73 7.233 C 4.38 8.077 4.289 9.006 4.467 9.903 C 4.646 10.799 5.086 11.623 5.732 12.269 C 6.378 12.915 7.202 13.355 8.098 13.534 C 8.995 13.712 9.924 13.621 10.768 13.271 C 11.613 12.921 12.335 12.329 12.842 11.569 C 13.35 10.809 13.621 9.915 13.621 9.001 C 13.621 8.394 13.502 7.793 13.27 7.232 C 13.037 6.672 12.697 6.162 12.268 5.733 C 11.839 5.304 11.329 4.964 10.768 4.731 C 10.208 4.499 9.607 4.38 9 4.38 Z M 9 12.002 C 8.406 12.002 7.826 11.826 7.333 11.496 C 6.839 11.167 6.455 10.698 6.227 10.149 C 6 9.601 5.941 8.998 6.057 8.416 C 6.172 7.834 6.458 7.299 6.878 6.879 C 7.298 6.459 7.832 6.174 8.414 6.058 C 8.997 5.942 9.6 6.001 10.148 6.229 C 10.697 6.456 11.165 6.84 11.495 7.334 C 11.825 7.827 12.001 8.408 12.001 9.001 C 12.001 9.797 11.685 10.56 11.122 11.123 C 10.559 11.686 9.796 12.002 9 12.002 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 13.804 5.277 C 14.401 5.277 14.884 4.793 14.884 4.197 C 14.884 3.6 14.401 3.117 13.804 3.117 C 13.208 3.117 12.724 3.6 12.724 4.197 C 12.724 4.793 13.208 5.277 13.804 5.277 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></g></svg>',\n                                  svgContentId: 3716113955,\n                                  withExternalLayout: true\n                                })\n                              })\n                            }), isSet(egefidExwU9Go6uJ3V) && /*#__PURE__*/_jsx(Link, {\n                              href: egefidExwU9Go6uJ3V,\n                              openInNewTab: true,\n                              children: /*#__PURE__*/_jsx(motion.a, {\n                                className: \"framer-1ety4zo framer-16cxk4k\",\n                                \"data-framer-name\": \"TikTok\",\n                                name: \"TikTok\",\n                                children: /*#__PURE__*/_jsx(SVG, {\n                                  className: \"framer-1wmdxbr\",\n                                  \"data-framer-name\": \"Vector\",\n                                  fill: \"rgba(0,0,0,1)\",\n                                  intrinsicHeight: 22,\n                                  intrinsicWidth: 18,\n                                  name: \"Vector\",\n                                  svg: '<svg width=\"18\" height=\"22\" viewBox=\"0 0 18 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.3123 5.12393C14.1996 4.39873 13.3969 3.23895 13.1478 1.88542C13.0924 1.59479 13.0647 1.29308 13.0647 0.98584H9.51622L9.51069 15.2076C9.44979 16.7992 8.14055 18.0779 6.53237 18.0779C6.03414 18.0779 5.56359 17.9534 5.14839 17.7347C4.19899 17.2337 3.54852 16.24 3.54852 15.0941C3.54852 13.4499 4.88544 12.1102 6.53237 12.1102C6.83961 12.1102 7.13302 12.1601 7.41258 12.2486V9.46685V8.62539C7.12471 8.58664 6.83131 8.56173 6.53237 8.56173C2.93126 8.5645 0 11.493 0 15.0969C0 17.3057 1.10441 19.2626 2.78733 20.4445C3.84746 21.1891 5.14009 21.6292 6.5296 21.6292C10.1307 21.6292 13.062 18.698 13.062 15.0969V7.88358C14.4543 8.88281 16.1593 9.47238 18 9.47238V6.7155V5.92387C17.0091 5.92387 16.0873 5.6277 15.3123 5.12393Z\" fill=\"white\"/>\\n</svg>\\n',\n                                  withExternalLayout: true\n                                })\n                              })\n                            }), isSet(RDJDE9sZLU9Go6uJ3V) && /*#__PURE__*/_jsx(Link, {\n                              href: RDJDE9sZLU9Go6uJ3V,\n                              openInNewTab: true,\n                              children: /*#__PURE__*/_jsx(motion.a, {\n                                className: \"framer-1qaoged framer-16cxk4k\",\n                                \"data-framer-name\": \"YouTube\",\n                                name: \"YouTube\",\n                                children: /*#__PURE__*/_jsx(SVG, {\n                                  className: \"framer-dmzyq1\",\n                                  \"data-framer-name\": \"Vector\",\n                                  layout: \"position\",\n                                  name: \"Vector\",\n                                  opacity: 1,\n                                  svg: '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 16\"><path d=\"M 21.542 3.189 C 21.416 2.742 21.17 2.335 20.829 2.007 C 20.488 1.68 20.063 1.445 19.597 1.324 C 17.88 0.876 11 0.876 11 0.876 C 11 0.876 4.118 0.876 2.405 1.317 C 1.938 1.438 1.512 1.674 1.171 2.003 C 0.829 2.331 0.584 2.74 0.46 3.189 C -0 4.832 -0 8.264 -0 8.264 C -0 8.264 -0 11.696 0.46 13.34 C 0.585 13.787 0.831 14.195 1.172 14.522 C 1.514 14.849 1.939 15.084 2.405 15.205 C 4.12 15.646 11 15.646 11 15.646 C 11 15.646 17.882 15.646 19.597 15.205 C 20.063 15.084 20.488 14.849 20.829 14.521 C 21.17 14.194 21.416 13.787 21.542 13.34 C 22 11.696 22 8.264 22 8.264 C 22 8.264 21.995 4.832 21.542 3.189 Z M 8.8 11.427 L 8.8 5.102 L 14.515 8.264 Z\" fill=\"var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',\n                                  svgContentId: 2298190798,\n                                  withExternalLayout: true\n                                })\n                              })\n                            })]\n                          }), /*#__PURE__*/_jsx(RichText, {\n                            __fromCanvasComponent: true,\n                            children: /*#__PURE__*/_jsx(React.Fragment, {\n                              children: /*#__PURE__*/_jsx(\"p\", {\n                                style: {\n                                  \"--font-selector\": \"Q1VTVE9NO1RpZW1wb3MgVGV4dCBOb3QgTGljZW5zZWQgZm9yIERlc2t0b3AgVXNl\",\n                                  \"--framer-font-family\": '\"Tiempos Text Not Licensed for Desktop Use\", serif',\n                                  \"--framer-line-height\": \"22px\",\n                                  \"--framer-text-color\": \"rgb(35, 31, 32)\"\n                                },\n                                children: \"Quick description of this archetype. Et netus et malesuada fames ac. Donec adipiscing tristique risus nec feugiat in fermentum.\"\n                              })\n                            }),\n                            className: \"framer-1adfhb2\",\n                            \"data-framer-name\": \"Quick description of this archetype. Et netus et malesuada fames ac. Donec adipiscing tristique risus nec feugiat in fermentum.\",\n                            fonts: [\"CUSTOM;Tiempos Text Not Licensed for Desktop Use\"],\n                            name: \"Quick description of this archetype. Et netus et malesuada fames ac. Donec adipiscing tristique risus nec feugiat in fermentum.\",\n                            text: fAUfn6B7PU9Go6uJ3V,\n                            verticalAlignment: \"top\",\n                            withExternalLayout: true\n                          })]\n                        })]\n                      })\n                    })\n                  }, idU9Go6uJ3V))\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.section, {\n            className: \"framer-11osb49\",\n            \"data-framer-name\": \"Work with us\",\n            id: id2,\n            name: \"Work with us\",\n            ref: ref2,\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1tn410a\",\n              \"data-framer-name\": \"Container\",\n              name: \"Container\",\n              children: /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-2fwdzc\",\n                \"data-framer-name\": \"Heading\",\n                name: \"Heading\",\n                children: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1ugjj40\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-16vbni6\",\n                        \"data-styles-preset\": \"URI3b4N49\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\",\n                          \"--framer-text-color\": \"var(--token-607bda0a-64d5-4d8e-819d-5abd50136efc, rgb(35, 31, 32))\"\n                        },\n                        children: \"Work with us\"\n                      })\n                    }),\n                    className: \"framer-4w17w1\",\n                    \"data-framer-name\": \"h2\",\n                    name: \"h2\",\n                    verticalAlignment: \"top\",\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-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"We connect brands to our audience through information and inspiration, telling your brand stories in our voice. Let us know your details and someone from our Client Solutions team will be in touch.\"\n                      })\n                    }),\n                    className: \"framer-1qryuer\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                }), /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1l6kyj3-container\",\n                  children: /*#__PURE__*/_jsx(Embed, {\n                    height: \"100%\",\n                    html: '<div data-tf-widget=\"st8enzek\" data-tf-opacity=\"100\" data-tf-iframe-props=\"title=Direct contact form\" data-tf-transitive-search-params data-tf-medium=\"snippet\" style=\"width:100%;height:600px;\"></div><script src=\"//embed.typeform.com/next/embed.js\"></script>',\n                    id: \"wwdyGsJxl\",\n                    layoutId: \"wwdyGsJxl\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    type: \"html\",\n                    url: \"\",\n                    width: \"100%\"\n                  })\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-h08gfz-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ausDMfCD8: {\n                  variant: \"gRnwIsqmQ\"\n                },\n                wpqWRBLMK: {\n                  variant: \"LEJ2LZVfj\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Footer, {\n                height: \"100%\",\n                id: \"XPfNtXq4h\",\n                layoutId: \"XPfNtXq4h\",\n                link: \"https://www.morningbrew.com/\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"dLXL0aVBs\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1bmk2vt-container\",\n            layoutScroll: true,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                wpqWRBLMK: {\n                  variant: \"p3IkjsYLU\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Navigation, {\n                height: \"100%\",\n                id: \"oVFUze1JW\",\n                layoutId: \"oVFUze1JW\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"DqzUZmQw0\",\n                width: \"100%\"\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-bEtGd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {\"name\":\"White\"} */; }`, \".framer-bEtGd .framer-16cxk4k { display: block; }\", \".framer-bEtGd .framer-3dzh65 { align-content: center; align-items: center; background-color: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, #faf9f5); 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: 1200px; }\", \".framer-bEtGd .framer-up1rq7 { align-content: center; align-items: center; background-color: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, #faf9f5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 989px; justify-content: center; max-width: 1200px; min-height: 92vh; overflow: hidden; padding: 96px 32px 40px 32px; position: relative; width: 100%; will-change: transform; }\", \".framer-bEtGd .framer-i40qlk { 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; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 24px 24px 24px 24px; position: relative; width: 100%; will-change: transform; }\", \".framer-bEtGd .framer-g7513n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 520px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-bEtGd .framer-9d5c9h, .framer-bEtGd .framer-9adf73 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-bEtGd .framer-cka98g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-13tmw52, .framer-bEtGd .framer-6w13jy, .framer-bEtGd .framer-jjpv89 { align-content: center; align-items: center; background-color: #eaf2f7; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 1px; will-change: transform; }\", \".framer-bEtGd .framer-eveeqz, .framer-bEtGd .framer-ax7pdg, .framer-bEtGd .framer-16ltnks { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\", \".framer-bEtGd .framer-m66f5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 100px 32px 100px 32px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-ki443d, .framer-bEtGd .framer-1ugjj40 { 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%; }\", \".framer-bEtGd .framer-1nmdygt { 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; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: transform; }\", \".framer-bEtGd .framer-1gg030z-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); position: relative; width: 100%; }\", \".framer-bEtGd .framer-91akk9 { align-content: center; align-items: center; background-color: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, #faf9f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 120px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\", \".framer-bEtGd .framer-18ijvuf, .framer-bEtGd .framer-1tn410a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1080px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-14h15xf { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-z7xdku { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-17fkcgv { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 220px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-7ufqhr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-1ci6eau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 32px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 252px; }\", \".framer-bEtGd .framer-1f6prxt, .framer-bEtGd .framer-2wi3mg, .framer-bEtGd .framer-17zmed4, .framer-bEtGd .framer-nhl8qs, .framer-bEtGd .framer-1ety4zo, .framer-bEtGd .framer-1qaoged { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-47958874-0950-462b-a4fe-0cedc0d0d879, #3f3f3f); 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: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 32px; will-change: transform; }\", \".framer-bEtGd .framer-btx4zp { flex: none; height: 18px; position: relative; width: 22px; }\", \".framer-bEtGd .framer-1rglauf { flex: none; height: 22px; position: relative; width: 20px; }\", \".framer-bEtGd .framer-5x8445 { flex: none; height: 16px; position: relative; width: 19px; }\", \".framer-bEtGd .framer-1c4mp0r { flex: none; height: 19px; position: relative; width: 18px; }\", \".framer-bEtGd .framer-1wmdxbr { aspect-ratio: 0.8181818181818182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 16px; }\", \".framer-bEtGd .framer-dmzyq1 { flex: none; height: 16px; position: relative; width: 22px; }\", \".framer-bEtGd .framer-1adfhb2 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-bEtGd .framer-11osb49 { align-content: center; align-items: center; background-color: var(--token-da0be779-8274-4df7-ad00-2cb8249863c2, #acd7ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\", \".framer-bEtGd .framer-2fwdzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-4w17w1, .framer-bEtGd .framer-1qryuer { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-bEtGd .framer-1l6kyj3-container { flex: none; height: 600px; position: relative; width: 100%; }\", \".framer-bEtGd .framer-1u7zyc2 { align-content: center; align-items: center; background-color: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, #faf9f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\", \".framer-bEtGd .framer-h08gfz-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-bEtGd .framer-1bmk2vt-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bEtGd .framer-3dzh65, .framer-bEtGd .framer-up1rq7, .framer-bEtGd .framer-i40qlk, .framer-bEtGd .framer-g7513n, .framer-bEtGd .framer-cka98g, .framer-bEtGd .framer-13tmw52, .framer-bEtGd .framer-6w13jy, .framer-bEtGd .framer-jjpv89, .framer-bEtGd .framer-m66f5p, .framer-bEtGd .framer-ki443d, .framer-bEtGd .framer-1nmdygt, .framer-bEtGd .framer-91akk9, .framer-bEtGd .framer-18ijvuf, .framer-bEtGd .framer-z7xdku, .framer-bEtGd .framer-7ufqhr, .framer-bEtGd .framer-1ci6eau, .framer-bEtGd .framer-1f6prxt, .framer-bEtGd .framer-2wi3mg, .framer-bEtGd .framer-17zmed4, .framer-bEtGd .framer-nhl8qs, .framer-bEtGd .framer-1ety4zo, .framer-bEtGd .framer-1qaoged, .framer-bEtGd .framer-11osb49, .framer-bEtGd .framer-1tn410a, .framer-bEtGd .framer-2fwdzc, .framer-bEtGd .framer-1ugjj40, .framer-bEtGd .framer-1u7zyc2 { gap: 0px; } .framer-bEtGd .framer-3dzh65 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bEtGd .framer-3dzh65 > :first-child, .framer-bEtGd .framer-up1rq7 > :first-child, .framer-bEtGd .framer-g7513n > :first-child, .framer-bEtGd .framer-m66f5p > :first-child, .framer-bEtGd .framer-ki443d > :first-child, .framer-bEtGd .framer-1nmdygt > :first-child, .framer-bEtGd .framer-91akk9 > :first-child, .framer-bEtGd .framer-18ijvuf > :first-child, .framer-bEtGd .framer-z7xdku > :first-child, .framer-bEtGd .framer-7ufqhr > :first-child, .framer-bEtGd .framer-1f6prxt > :first-child, .framer-bEtGd .framer-2wi3mg > :first-child, .framer-bEtGd .framer-17zmed4 > :first-child, .framer-bEtGd .framer-nhl8qs > :first-child, .framer-bEtGd .framer-1ety4zo > :first-child, .framer-bEtGd .framer-1qaoged > :first-child, .framer-bEtGd .framer-11osb49 > :first-child, .framer-bEtGd .framer-1tn410a > :first-child, .framer-bEtGd .framer-2fwdzc > :first-child, .framer-bEtGd .framer-1ugjj40 > :first-child, .framer-bEtGd .framer-1u7zyc2 > :first-child { margin-top: 0px; } .framer-bEtGd .framer-3dzh65 > :last-child, .framer-bEtGd .framer-up1rq7 > :last-child, .framer-bEtGd .framer-g7513n > :last-child, .framer-bEtGd .framer-m66f5p > :last-child, .framer-bEtGd .framer-ki443d > :last-child, .framer-bEtGd .framer-1nmdygt > :last-child, .framer-bEtGd .framer-91akk9 > :last-child, .framer-bEtGd .framer-18ijvuf > :last-child, .framer-bEtGd .framer-z7xdku > :last-child, .framer-bEtGd .framer-7ufqhr > :last-child, .framer-bEtGd .framer-1f6prxt > :last-child, .framer-bEtGd .framer-2wi3mg > :last-child, .framer-bEtGd .framer-17zmed4 > :last-child, .framer-bEtGd .framer-nhl8qs > :last-child, .framer-bEtGd .framer-1ety4zo > :last-child, .framer-bEtGd .framer-1qaoged > :last-child, .framer-bEtGd .framer-11osb49 > :last-child, .framer-bEtGd .framer-1tn410a > :last-child, .framer-bEtGd .framer-2fwdzc > :last-child, .framer-bEtGd .framer-1ugjj40 > :last-child, .framer-bEtGd .framer-1u7zyc2 > :last-child { margin-bottom: 0px; } .framer-bEtGd .framer-up1rq7 > *, .framer-bEtGd .framer-m66f5p > *, .framer-bEtGd .framer-91akk9 > *, .framer-bEtGd .framer-18ijvuf > *, .framer-bEtGd .framer-11osb49 > *, .framer-bEtGd .framer-1tn410a > *, .framer-bEtGd .framer-1u7zyc2 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-bEtGd .framer-i40qlk > *, .framer-bEtGd .framer-13tmw52 > *, .framer-bEtGd .framer-6w13jy > *, .framer-bEtGd .framer-jjpv89 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bEtGd .framer-i40qlk > :first-child, .framer-bEtGd .framer-cka98g > :first-child, .framer-bEtGd .framer-13tmw52 > :first-child, .framer-bEtGd .framer-6w13jy > :first-child, .framer-bEtGd .framer-jjpv89 > :first-child, .framer-bEtGd .framer-1ci6eau > :first-child { margin-left: 0px; } .framer-bEtGd .framer-i40qlk > :last-child, .framer-bEtGd .framer-cka98g > :last-child, .framer-bEtGd .framer-13tmw52 > :last-child, .framer-bEtGd .framer-6w13jy > :last-child, .framer-bEtGd .framer-jjpv89 > :last-child, .framer-bEtGd .framer-1ci6eau > :last-child { margin-right: 0px; } .framer-bEtGd .framer-g7513n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bEtGd .framer-cka98g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-bEtGd .framer-ki443d > *, .framer-bEtGd .framer-1nmdygt > *, .framer-bEtGd .framer-1f6prxt > *, .framer-bEtGd .framer-2wi3mg > *, .framer-bEtGd .framer-17zmed4 > *, .framer-bEtGd .framer-nhl8qs > *, .framer-bEtGd .framer-1ety4zo > *, .framer-bEtGd .framer-1qaoged > *, .framer-bEtGd .framer-1ugjj40 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bEtGd .framer-z7xdku > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bEtGd .framer-7ufqhr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bEtGd .framer-1ci6eau > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-bEtGd .framer-2fwdzc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\", \"@media (min-width: 1200px) { .framer-bEtGd .hidden-3dzh65 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-bEtGd .hidden-d46ia2 { display: none !important; } .${metadata.bodyClassName} { background: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {\"name\":\"White\"} */; } .framer-bEtGd .framer-3dzh65 { width: 810px; } .framer-bEtGd .framer-1gg030z-container { height: var(--framer-aspect-ratio-supported, 420px); } .framer-bEtGd .framer-14h15xf { gap: 24px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bEtGd .framer-14h15xf { gap: 0px; } .framer-bEtGd .framer-14h15xf > *, .framer-bEtGd .framer-14h15xf > :first-child, .framer-bEtGd .framer-14h15xf > :last-child { margin: 0px; } }}`, `@media (max-width: 809px) { .framer-bEtGd .hidden-qh5xc4 { display: none !important; } .${metadata.bodyClassName} { background: var(--token-7e62f283-9e79-4d58-bd38-e32cb4262b5f, rgb(250, 249, 245)) /* {\"name\":\"White\"} */; } .framer-bEtGd .framer-3dzh65 { width: 390px; } .framer-bEtGd .framer-up1rq7 { gap: 32px; padding: 120px 24px 24px 24px; } .framer-bEtGd .framer-g7513n { gap: 16px; } .framer-bEtGd .framer-cka98g { flex-direction: column; gap: 12px; padding: 0px 24px 0px 24px; } .framer-bEtGd .framer-13tmw52, .framer-bEtGd .framer-6w13jy, .framer-bEtGd .framer-jjpv89 { flex: none; height: min-content; padding: 24px 24px 24px 24px; width: 100%; } .framer-bEtGd .framer-m66f5p { padding: 48px 24px 24px 24px; } .framer-bEtGd .framer-1gg030z-container { height: var(--framer-aspect-ratio-supported, 193px); } .framer-bEtGd .framer-91akk9, .framer-bEtGd .framer-11osb49 { padding: 40px 0px 40px 0px; } .framer-bEtGd .framer-18ijvuf { gap: 40px; } .framer-bEtGd .framer-14h15xf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: flex-start; } .framer-bEtGd .framer-z7xdku { align-self: unset; } .framer-bEtGd .framer-2fwdzc { gap: 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bEtGd .framer-up1rq7, .framer-bEtGd .framer-g7513n, .framer-bEtGd .framer-cka98g, .framer-bEtGd .framer-18ijvuf, .framer-bEtGd .framer-14h15xf, .framer-bEtGd .framer-2fwdzc { gap: 0px; } .framer-bEtGd .framer-up1rq7 > *, .framer-bEtGd .framer-2fwdzc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bEtGd .framer-up1rq7 > :first-child, .framer-bEtGd .framer-g7513n > :first-child, .framer-bEtGd .framer-cka98g > :first-child, .framer-bEtGd .framer-18ijvuf > :first-child, .framer-bEtGd .framer-14h15xf > :first-child, .framer-bEtGd .framer-2fwdzc > :first-child { margin-top: 0px; } .framer-bEtGd .framer-up1rq7 > :last-child, .framer-bEtGd .framer-g7513n > :last-child, .framer-bEtGd .framer-cka98g > :last-child, .framer-bEtGd .framer-18ijvuf > :last-child, .framer-bEtGd .framer-14h15xf > :last-child, .framer-bEtGd .framer-2fwdzc > :last-child { margin-bottom: 0px; } .framer-bEtGd .framer-g7513n > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bEtGd .framer-cka98g > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bEtGd .framer-18ijvuf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bEtGd .framer-14h15xf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicHeight 5202\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ausDMfCD8\":{\"layout\":[\"fixed\",\"auto\"]},\"wpqWRBLMK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       */\nconst FramerlqmLTbfUW = withCSS(Component, css, \"framer-bEtGd\");\nexport default FramerlqmLTbfUW;\nFramerlqmLTbfUW.displayName = \"About\";\nFramerlqmLTbfUW.defaultProps = {\n  height: 5202,\n  width: 1200\n};\naddFonts(FramerlqmLTbfUW, [{\n  family: \"Tiempos Text Not Licensed for Desktop Use\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:screen/lqmLTbfUW:default\",\n    url: \"assets/QHpSwrz3PpyZGybgaxmahKOa8I.woff2\"\n  },\n  url: new URL(\"https://framerusercontent.com/modules/assets/QHpSwrz3PpyZGybgaxmahKOa8I~ah9V8JTMdSmJWwrb91EP5c_u9-m1W9As_fcH7ahtM-M.woff2\").href\n}, ...YouTubeFonts, ...EmbedFonts, ...FooterFonts, ...NavigationFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerlqmLTbfUW\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"5202\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ausDMfCD8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wpqWRBLMK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerResponsiveScreen\": \"\"\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", "data", "item", "addPropertyControls", "ControlType", "GSSHYk75I_default", "YouTubeFonts", "getFonts", "Youtube", "EmbedFonts", "Embed", "FooterFonts", "oetjN3pPu_default", "NavigationFonts", "QY1XK6j6_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "transition2", "animation3", "animation4", "toResponsiveImage", "value", "isSet", "QueryData", "query", "children", "data", "useQueryData", "metadata", "lqmLTbfUW_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "yCTnwUmJGU9Go6uJ3V", "alf2z0J3XU9Go6uJ3V", "yBRQYuX9QU9Go6uJ3V", "UDnQLtOwsU9Go6uJ3V", "UdWwtTMAaU9Go6uJ3V", "egefidExwU9Go6uJ3V", "RDJDE9sZLU9Go6uJ3V", "fAUfn6B7PU9Go6uJ3V", "Z0fSHDz_zU9Go6uJ3V", "idU9Go6uJ3V", "restProps", "ref", "variant", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "id1", "useRouteElementId", "ref1", "pe", "id2", "ref2", "id3", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "Image2", "optimizeAppear", "optimizeAppearTransformTemplate", "RichText", "x", "Container", "Youtube", "GSSHYk75I_default", "collection", "i", "PathVariablesContext", "Link", "SVG", "Embed", "oetjN3pPu_default", "QY1XK6j6_default", "css", "FramerlqmLTbfUW", "withCSS", "addFonts", "YouTubeFonts", "EmbedFonts", "FooterFonts", "NavigationFonts", "fonts", "__FramerMetadata__"]
}
