@syscore/ui-library 1.11.2 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/client/components/icons/achievement-badges/BadgeCertificationBronze.tsx +103 -0
  2. package/client/components/icons/achievement-badges/BadgeCertificationGold.tsx +103 -0
  3. package/client/components/icons/achievement-badges/BadgeCertificationPlatinum.tsx +103 -0
  4. package/client/components/icons/achievement-badges/BadgeCertificationSilver.tsx +103 -0
  5. package/client/components/icons/achievement-badges/BadgeRatingCoworking.tsx +59 -0
  6. package/client/components/icons/achievement-badges/BadgeRatingDesign.tsx +59 -0
  7. package/client/components/icons/achievement-badges/BadgeRatingEquity.tsx +59 -0
  8. package/client/components/icons/achievement-badges/BadgeRatingHealthySafety.tsx +63 -0
  9. package/client/components/icons/achievement-badges/BadgeRatingOperations.tsx +63 -0
  10. package/client/components/icons/achievement-badges/BadgeRatingPerformance.tsx +63 -0
  11. package/client/components/icons/achievement-badges/BadgeRatingRealEstate.tsx +63 -0
  12. package/client/components/icons/achievement-badges/BadgeRatingResidential.tsx +63 -0
  13. package/client/components/icons/achievement-badges/BadgeRatingWorkforce.tsx +59 -0
  14. package/client/components/icons/achievement-badges/index.tsx +13 -0
  15. package/client/components/icons/provider-badges/BadgeEnterpriseProvider.tsx +72 -0
  16. package/client/components/icons/provider-badges/BadgePerformanceTestingProvider.tsx +76 -0
  17. package/client/components/icons/provider-badges/BadgeProductProvider.tsx +72 -0
  18. package/client/components/icons/provider-badges/BadgeSurveyProvider.tsx +72 -0
  19. package/client/components/icons/provider-badges/index.tsx +4 -0
  20. package/client/components/icons/provider-seals/SealEnterpriseProvider.tsx +67 -0
  21. package/client/components/icons/provider-seals/SealPerformanceTestingProvider.tsx +67 -0
  22. package/client/components/icons/provider-seals/SealProductProvider.tsx +63 -0
  23. package/client/components/icons/provider-seals/SealProviders.tsx +63 -0
  24. package/client/components/icons/provider-seals/SealSurveyProvider.tsx +63 -0
  25. package/client/components/icons/provider-seals/index.tsx +5 -0
  26. package/client/components/icons/seals/IWBILogo.tsx +169 -0
  27. package/client/components/icons/{SealIwbiMember.tsx → seals/SealIwbiMember.tsx} +1 -1
  28. package/client/components/icons/{SealWell.tsx → seals/SealWell.tsx} +1 -1
  29. package/client/components/icons/{SealWellCertification.tsx → seals/SealWellCertification.tsx} +1 -1
  30. package/client/components/icons/{SealWellCommunity.tsx → seals/SealWellCommunity.tsx} +1 -1
  31. package/client/components/icons/{SealWellResidence.tsx → seals/SealWellResidence.tsx} +1 -1
  32. package/client/components/icons/{SealWorksWithWell.tsx → seals/SealWorksWithWell.tsx} +1 -1
  33. package/client/components/icons/{WellSeal.tsx → seals/WellSeal.tsx} +1 -1
  34. package/client/components/icons/seals/index.tsx +8 -0
  35. package/client/components/icons/{WaterMarkWWWProducts.tsx → watermarks/WaterMarkWWWProducts.tsx} +1 -1
  36. package/client/components/icons/{WaterMarkWellProjects.tsx → watermarks/WaterMarkWellProjects.tsx} +1 -1
  37. package/client/components/icons/{WatermarkMemberOrg.tsx → watermarks/WatermarkMemberOrg.tsx} +1 -1
  38. package/client/components/icons/watermarks/index.tsx +3 -0
  39. package/client/components/ui/accordion.tsx +46 -32
  40. package/client/components/ui/navigation.tsx +32 -56
  41. package/client/global.css +13 -14
  42. package/client/ui/Icons.stories.tsx +105 -16
  43. package/client/ui/PageHeader.stories.tsx +1 -1
  44. package/dist/index.cjs.js +1 -1
  45. package/dist/index.d.ts +59 -23
  46. package/dist/index.es.js +1822 -243
  47. package/package.json +1 -1
  48. package/client/components/icons/AchievementBadges.tsx +0 -33
  49. package/client/components/icons/ProviderBadges.tsx +0 -295
  50. package/client/components/icons/ProviderSeals.tsx +0 -319
  51. package/client/components/icons/SealHealthSafetyRating.tsx +0 -65
package/dist/index.es.js CHANGED
@@ -285,7 +285,16 @@ const AccordionSectionHeader = React.forwardRef(({ title, hasExpanded, onToggleA
285
285
  {
286
286
  animate: { rotate: hasExpanded ? 180 : 0 },
287
287
  transition: { duration: 0.2 },
288
- children: /* @__PURE__ */ jsx(Button, { size: "icon", onClick: onToggleAll, children: /* @__PURE__ */ jsx(UtilityChevronDown, {}) })
288
+ children: /* @__PURE__ */ jsx(
289
+ Button,
290
+ {
291
+ size: "icon",
292
+ variant: "clear",
293
+ onClick: onToggleAll,
294
+ "aria-label": hasExpanded ? "Collapse all" : "Expand all",
295
+ children: /* @__PURE__ */ jsx(UtilityChevronDown, {})
296
+ }
297
+ )
289
298
  }
290
299
  )
291
300
  ] });
@@ -308,7 +317,16 @@ const AccordionHeaderRow = React.forwardRef(({ title, className }, ref) => {
308
317
  animate: { rotate: hasAnyExpanded ? 180 : 0 },
309
318
  transition: { duration: 0.2 },
310
319
  style: { willChange: "transform" },
311
- children: /* @__PURE__ */ jsx(Button, { size: "icon", onClick: handleToggleAll, children: /* @__PURE__ */ jsx(UtilityChevronDown, {}) })
320
+ children: /* @__PURE__ */ jsx(
321
+ Button,
322
+ {
323
+ size: "icon",
324
+ variant: "clear",
325
+ onClick: handleToggleAll,
326
+ "aria-label": hasAnyExpanded ? "Collapse all" : "Expand all",
327
+ children: /* @__PURE__ */ jsx(UtilityChevronDown, {})
328
+ }
329
+ )
312
330
  }
313
331
  )
314
332
  ] });
@@ -377,6 +395,8 @@ const AccordionTrigger = React.forwardRef(({ className, onClick, ...props }, ref
377
395
  variant: "clear",
378
396
  onClick: handleClick,
379
397
  className: cn(className),
398
+ "aria-expanded": isExpanded,
399
+ "aria-label": isExpanded ? "Collapse" : "Expand",
380
400
  ...props,
381
401
  children: /* @__PURE__ */ jsx(UtilityChevronDown, {})
382
402
  }
@@ -385,26 +405,24 @@ const AccordionTrigger = React.forwardRef(({ className, onClick, ...props }, ref
385
405
  );
386
406
  });
387
407
  AccordionTrigger.displayName = "AccordionTrigger";
388
- const AccordionContent = React.forwardRef(
389
- ({ children, className, ...props }, ref) => {
390
- const { isExpanded, noBorderOnOpen } = useAccordionItem();
391
- return /* @__PURE__ */ jsx(AnimatePresence, { initial: false, children: isExpanded && /* @__PURE__ */ jsx(
392
- motion.div,
393
- {
394
- initial: { height: 0, opacity: 0 },
395
- animate: { height: "auto", opacity: 1 },
396
- exit: { height: 0, opacity: 0 },
397
- transition: { duration: 0.3, ease: [0.25, 0.46, 0.45, 0.94] },
398
- className: cn(className),
399
- style: {
400
- willChange: "opacity",
401
- ...noBorderOnOpen ? { borderTop: "none" } : {}
402
- },
403
- children: /* @__PURE__ */ jsx("div", { ref, ...props, children })
404
- }
405
- ) });
406
- }
407
- );
408
+ const AccordionContent = React.forwardRef(({ children, className, ...props }, ref) => {
409
+ const { isExpanded, noBorderOnOpen } = useAccordionItem();
410
+ return /* @__PURE__ */ jsx(AnimatePresence, { initial: false, children: isExpanded && /* @__PURE__ */ jsx(
411
+ motion.div,
412
+ {
413
+ initial: { height: 0, opacity: 0 },
414
+ animate: { height: "auto", opacity: 1 },
415
+ exit: { height: 0, opacity: 0 },
416
+ transition: { duration: 0.3, ease: [0.25, 0.46, 0.45, 0.94] },
417
+ className: cn(className),
418
+ style: {
419
+ willChange: "opacity",
420
+ ...noBorderOnOpen ? { borderTop: "none" } : {}
421
+ },
422
+ children: /* @__PURE__ */ jsx("div", { ref, ...props, children })
423
+ }
424
+ ) });
425
+ });
408
426
  AccordionContent.displayName = "AccordionContent";
409
427
  const AccordionListRow = React.forwardRef(
410
428
  ({
@@ -4476,22 +4494,31 @@ const NavigationTray = React.forwardRef(
4476
4494
  _index === 1 && !light && /* @__PURE__ */ jsx("div", { className: "navigation-tray-trigger__static-indicator", children: /* @__PURE__ */ jsx("div", { className: "navigation-tray-trigger__static-indicator-shape" }) })
4477
4495
  ] });
4478
4496
  }
4479
- return /* @__PURE__ */ jsxs("div", { ref, className: cn("navigation-tray", className), ...props, "data-open": isOpen, children: [
4480
- /* @__PURE__ */ jsx(
4481
- "h2",
4482
- {
4483
- className: "heading-xsmall navigation-tray__title",
4484
- style: {
4485
- background: "linear-gradient(90deg, #41D5F6 0%, #3EECD1 25%, #66FCD9 50%, #66FCD9 75%, #3EECD1 100%)",
4486
- WebkitBackgroundClip: "text",
4487
- WebkitTextFillColor: "transparent",
4488
- backgroundClip: "text"
4489
- },
4490
- children: title
4491
- }
4492
- ),
4493
- /* @__PURE__ */ jsx("div", { className: "navigation-tray__content", children })
4494
- ] });
4497
+ return /* @__PURE__ */ jsxs(
4498
+ "div",
4499
+ {
4500
+ ref,
4501
+ className: cn("navigation-tray", className),
4502
+ ...props,
4503
+ "data-open": isOpen,
4504
+ children: [
4505
+ /* @__PURE__ */ jsx(
4506
+ "h2",
4507
+ {
4508
+ className: "heading-xsmall navigation-tray__title",
4509
+ style: {
4510
+ background: "linear-gradient(90deg, #41D5F6 0%, #3EECD1 25%, #66FCD9 50%, #66FCD9 75%, #3EECD1 100%)",
4511
+ WebkitBackgroundClip: "text",
4512
+ WebkitTextFillColor: "transparent",
4513
+ backgroundClip: "text"
4514
+ },
4515
+ children: title
4516
+ }
4517
+ ),
4518
+ /* @__PURE__ */ jsx("div", { className: "navigation-tray__content", children })
4519
+ ]
4520
+ }
4521
+ );
4495
4522
  }
4496
4523
  );
4497
4524
  NavigationTray.displayName = "NavigationTray";
@@ -4532,7 +4559,16 @@ const NavigationLink = React.forwardRef(
4532
4559
  const bulletElement = bullet ? /* @__PURE__ */ jsx(NavBullet, { color: bullet }) : /* @__PURE__ */ jsx("div", { className: "navigation-link__bullet" });
4533
4560
  return /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-link__container", children: [
4534
4561
  bulletElement,
4535
- /* @__PURE__ */ jsx(Comp, { ref, className: cn(baseClassName, className), onClick: handleClick, ...props, children })
4562
+ /* @__PURE__ */ jsx(
4563
+ Comp,
4564
+ {
4565
+ ref,
4566
+ className: cn(baseClassName, className),
4567
+ onClick: handleClick,
4568
+ ...props,
4569
+ children
4570
+ }
4571
+ )
4536
4572
  ] }) });
4537
4573
  }
4538
4574
  const linkClassName = cn(
@@ -4542,11 +4578,29 @@ const NavigationLink = React.forwardRef(
4542
4578
  );
4543
4579
  if (badge) {
4544
4580
  return /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("span", { className: "navigation-link__badge-wrapper", children: [
4545
- /* @__PURE__ */ jsx(Comp, { ref, className: cn(baseClassName, className), onClick: handleClick, ...props, children }),
4581
+ /* @__PURE__ */ jsx(
4582
+ Comp,
4583
+ {
4584
+ ref,
4585
+ className: cn(baseClassName, className),
4586
+ onClick: handleClick,
4587
+ ...props,
4588
+ children
4589
+ }
4590
+ ),
4546
4591
  /* @__PURE__ */ jsx("span", { className: "overline-small navigation-link__badge", children: badge })
4547
4592
  ] }) });
4548
4593
  }
4549
- return /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Comp, { ref, className: linkClassName, onClick: handleClick, ...props, children }) });
4594
+ return /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
4595
+ Comp,
4596
+ {
4597
+ ref,
4598
+ className: linkClassName,
4599
+ onClick: handleClick,
4600
+ ...props,
4601
+ children
4602
+ }
4603
+ ) });
4550
4604
  }
4551
4605
  );
4552
4606
  NavigationLink.displayName = "NavigationLink";
@@ -7489,7 +7543,7 @@ const SealWellResidence = ({
7489
7543
  }
7490
7544
  );
7491
7545
  };
7492
- const SealIwbiMember$1 = ({
7546
+ const SealIwbiMember = ({
7493
7547
  className
7494
7548
  }) => {
7495
7549
  return /* @__PURE__ */ jsxs(
@@ -7959,315 +8013,320 @@ const WellSeal = ({ className }) => {
7959
8013
  }
7960
8014
  );
7961
8015
  };
7962
- const SealProviders = ({ className }) => {
8016
+ const IWBILogo = ({ className }) => {
7963
8017
  return /* @__PURE__ */ jsxs(
7964
8018
  "svg",
7965
8019
  {
7966
- width: "55",
7967
- height: "55",
7968
- viewBox: "0 0 55 55",
8020
+ width: "277",
8021
+ height: "180",
8022
+ viewBox: "0 0 277 180",
7969
8023
  fill: "none",
7970
8024
  xmlns: "http://www.w3.org/2000/svg",
7971
- className: cn(className),
8025
+ className,
7972
8026
  children: [
7973
8027
  /* @__PURE__ */ jsx(
7974
8028
  "path",
7975
8029
  {
7976
- d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
7977
- fill: "white",
7978
- stroke: "#EEDEC9",
7979
- strokeWidth: "1.5"
8030
+ d: "M102.502 65.5561C102.502 65.4009 102.605 65.3077 102.75 65.3077H103.05C103.205 65.3077 103.299 65.4112 103.299 65.5561V78.9803C103.299 79.1355 103.195 79.2287 103.05 79.2287H102.75C102.595 79.2287 102.502 79.1252 102.502 78.9803V65.5561Z",
8031
+ fill: "#3E4049"
7980
8032
  }
7981
8033
  ),
7982
8034
  /* @__PURE__ */ jsx(
7983
8035
  "path",
7984
8036
  {
7985
- d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
7986
- stroke: "#CBCDD2",
7987
- strokeWidth: "1.5",
7988
- strokeMiterlimit: "10"
8037
+ d: "M108.546 65.2972H108.815C108.919 65.2972 109.064 65.38 109.146 65.4628L119.051 77.7588V65.5456C119.051 65.3904 119.155 65.2972 119.3 65.2972H119.579C119.693 65.2972 119.828 65.4007 119.828 65.5456V78.9905C119.828 79.1457 119.724 79.2285 119.59 79.2285H119.341C119.238 79.2285 119.093 79.1457 119.01 79.0629L109.105 66.7669V78.9801C109.105 79.1354 109.001 79.2285 108.857 79.2285H108.577C108.422 79.2285 108.329 79.125 108.329 78.9801V65.5249C108.329 65.38 108.411 65.2972 108.546 65.2972Z",
8038
+ fill: "#3E4049"
7989
8039
  }
7990
8040
  ),
7991
8041
  /* @__PURE__ */ jsx(
7992
8042
  "path",
7993
8043
  {
7994
- d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
7995
- stroke: "#CBCDD2",
7996
- strokeWidth: "1.5",
7997
- strokeMiterlimit: "10"
8044
+ d: "M129.047 65.9512C126.905 65.9512 125.28 67.1725 125.28 68.8493C125.28 70.6709 127.226 71.2091 129.296 71.7163C131.542 72.182 133.964 72.9065 133.964 75.4216C133.964 77.7297 131.883 79.365 129.079 79.365C126.563 79.365 124.659 78.0713 124.173 76.26C124.141 76.1461 124.204 76.0116 124.359 75.9702L124.69 75.8563C124.711 75.8563 124.721 75.8563 124.721 75.8563C124.825 75.8563 124.907 75.9184 124.959 76.0219C125.332 77.5124 126.946 78.5888 129.079 78.5888C131.407 78.5888 133.167 77.295 133.167 75.4734C133.167 73.6 131.273 72.979 129.13 72.5236C126.988 72.0164 124.493 71.3644 124.493 68.87C124.493 66.6964 126.398 65.1853 129.027 65.1853C131.356 65.1853 133.146 66.3756 133.612 68.0523C133.643 68.1662 133.581 68.3007 133.426 68.3421L133.074 68.456C132.97 68.4767 132.877 68.4249 132.805 68.2904C132.473 66.9448 130.952 65.9512 129.047 65.9512Z",
8045
+ fill: "#3E4049"
7998
8046
  }
7999
8047
  ),
8000
8048
  /* @__PURE__ */ jsx(
8001
8049
  "path",
8002
8050
  {
8003
- d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8004
- stroke: "#CBCDD2",
8005
- strokeWidth: "1.5",
8006
- strokeMiterlimit: "10"
8051
+ d: "M136.675 65.2972H148.743C148.888 65.2972 148.992 65.4007 148.992 65.5456V65.8147C148.992 65.97 148.888 66.0631 148.743 66.0631H143.102V78.9698C143.102 79.125 142.999 79.2182 142.854 79.2182H142.575C142.419 79.2182 142.326 79.1147 142.326 78.9698V66.0735H136.685C136.53 66.0735 136.437 65.97 136.437 65.8251V65.556C136.427 65.4214 136.53 65.2972 136.675 65.2972Z",
8052
+ fill: "#3E4049"
8007
8053
  }
8008
8054
  ),
8009
8055
  /* @__PURE__ */ jsx(
8010
8056
  "path",
8011
8057
  {
8012
- d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8013
- fill: "#8AEFDB"
8058
+ d: "M152.598 65.5561C152.598 65.4009 152.701 65.3077 152.846 65.3077H153.146C153.291 65.3077 153.395 65.4112 153.395 65.5561V78.9803C153.395 79.1355 153.291 79.2287 153.146 79.2287H152.846C152.701 79.2287 152.598 79.1252 152.598 78.9803V65.5561Z",
8059
+ fill: "#3E4049"
8014
8060
  }
8015
8061
  ),
8016
8062
  /* @__PURE__ */ jsx(
8017
8063
  "path",
8018
8064
  {
8019
- d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8020
- fill: "#0F748A"
8065
+ d: "M157.254 65.2972H169.322C169.477 65.2972 169.57 65.4007 169.57 65.5456V65.8147C169.57 65.97 169.467 66.0631 169.322 66.0631H163.681V78.9698C163.681 79.125 163.578 79.2182 163.433 79.2182H163.153C162.998 79.2182 162.905 79.1147 162.905 78.9698V66.0735H157.254C157.109 66.0735 157.005 65.97 157.005 65.8251V65.556C157.005 65.4214 157.109 65.2972 157.254 65.2972Z",
8066
+ fill: "#3E4049"
8021
8067
  }
8022
8068
  ),
8023
8069
  /* @__PURE__ */ jsx(
8024
8070
  "path",
8025
8071
  {
8026
- d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8027
- fill: "#0A4F41"
8072
+ d: "M172.632 73.6639V65.5701C172.632 65.4149 172.736 65.3217 172.881 65.3217H173.181C173.326 65.3217 173.429 65.4252 173.429 65.5701V73.6639C173.429 76.4585 175.52 78.5906 178.346 78.5906C181.171 78.5906 183.272 76.4585 183.272 73.6639V65.5701C183.272 65.4149 183.386 65.3217 183.521 65.3217H183.821C183.976 65.3217 184.069 65.4252 184.069 65.5701V73.6639C184.069 76.8932 181.627 79.3772 178.346 79.3772C175.075 79.3669 172.632 76.9035 172.632 73.6639Z",
8073
+ fill: "#3E4049"
8028
8074
  }
8029
8075
  ),
8030
8076
  /* @__PURE__ */ jsx(
8031
8077
  "path",
8032
8078
  {
8033
- d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8034
- fill: "#87DFF2"
8079
+ d: "M187.407 65.2972H199.475C199.63 65.2972 199.724 65.4007 199.724 65.5456V65.8147C199.724 65.97 199.62 66.0631 199.475 66.0631H193.834V78.9698C193.834 79.125 193.731 79.2182 193.586 79.2182H193.307C193.162 79.2182 193.058 79.1147 193.058 78.9698V66.0735H187.417C187.272 66.0735 187.169 65.97 187.169 65.8251V65.556C187.148 65.4214 187.252 65.2972 187.407 65.2972Z",
8080
+ fill: "#3E4049"
8035
8081
  }
8036
8082
  ),
8037
8083
  /* @__PURE__ */ jsx(
8038
8084
  "path",
8039
8085
  {
8040
- d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8041
- fill: "#17AA8D"
8086
+ d: "M203.549 65.2972H212.792C212.947 65.2972 213.04 65.4007 213.04 65.5456V65.8147C213.04 65.97 212.937 66.0631 212.792 66.0631H204.108V71.7764H211.87C212.015 71.7764 212.119 71.8799 212.119 72.0248V72.3146C212.119 72.4699 212.015 72.563 211.87 72.563H204.108V78.4626H212.895C213.04 78.4626 213.144 78.5661 213.144 78.711V78.9801C213.144 79.1354 213.04 79.2285 212.895 79.2285H203.559C203.414 79.2285 203.311 79.125 203.311 78.9801V65.5663C203.3 65.4214 203.404 65.2972 203.549 65.2972Z",
8087
+ fill: "#3E4049"
8042
8088
  }
8043
8089
  ),
8044
8090
  /* @__PURE__ */ jsx(
8045
8091
  "path",
8046
8092
  {
8047
- d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8048
- fill: "#39C9EA"
8093
+ d: "M102.502 58.7254V45.3012C102.502 45.146 102.605 45.0528 102.75 45.0528H108.929C110.989 45.0528 112.531 46.5432 112.531 48.4891C112.531 49.8657 111.765 51.0042 110.627 51.5527C112.22 52.0599 113.318 53.4261 113.318 55.1442C113.318 57.3074 111.589 58.9634 109.312 58.9634H102.75C102.605 58.9738 102.502 58.8599 102.502 58.7254ZM103.309 45.8187V51.2629H108.929C110.523 51.2629 111.724 50.0934 111.724 48.5512C111.724 47.009 110.502 45.8394 108.929 45.8394H103.309V45.8187ZM103.309 52.0392V58.2079H109.322C111.134 58.2079 112.469 56.8831 112.469 55.1235C112.469 53.364 111.134 52.0599 109.322 52.0599H103.309V52.0392Z",
8094
+ fill: "#3E4049"
8049
8095
  }
8050
- )
8051
- ]
8052
- }
8053
- );
8054
- };
8055
- const SealProductProvider = ({ className }) => {
8056
- return /* @__PURE__ */ jsxs(
8057
- "svg",
8058
- {
8059
- width: "55",
8060
- height: "55",
8061
- viewBox: "0 0 55 55",
8062
- fill: "none",
8063
- xmlns: "http://www.w3.org/2000/svg",
8064
- className: cn(className),
8065
- children: [
8096
+ ),
8066
8097
  /* @__PURE__ */ jsx(
8067
8098
  "path",
8068
8099
  {
8069
- d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8070
- fill: "#16ADCF",
8071
- stroke: "#95E2F4",
8072
- strokeWidth: "1.5"
8100
+ d: "M117.253 53.4196V45.3257C117.253 45.1705 117.357 45.0773 117.502 45.0773H117.802C117.957 45.0773 118.05 45.1808 118.05 45.3257V53.4196C118.05 56.2141 120.141 58.3462 122.967 58.3462C125.792 58.3462 127.883 56.2141 127.883 53.4196V45.3257C127.883 45.1705 127.997 45.0773 128.131 45.0773H128.432C128.587 45.0773 128.68 45.1808 128.68 45.3257V53.4196C128.68 56.6592 126.237 59.1328 122.956 59.1328C119.696 59.1121 117.253 56.6488 117.253 53.4196Z",
8101
+ fill: "#3E4049"
8073
8102
  }
8074
8103
  ),
8075
8104
  /* @__PURE__ */ jsx(
8076
8105
  "path",
8077
8106
  {
8078
- d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8079
- stroke: "#95E2F4",
8080
- strokeWidth: "1.5",
8081
- strokeMiterlimit: "10"
8107
+ d: "M133.523 45.3012C133.523 45.146 133.627 45.0528 133.772 45.0528H134.072C134.227 45.0528 134.32 45.1563 134.32 45.3012V58.7254C134.32 58.8806 134.217 58.9738 134.072 58.9738H133.772C133.616 58.9738 133.523 58.8703 133.523 58.7254V45.3012Z",
8108
+ fill: "#3E4049"
8082
8109
  }
8083
8110
  ),
8084
8111
  /* @__PURE__ */ jsx(
8085
8112
  "path",
8086
8113
  {
8087
- d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8088
- stroke: "#95E2F4",
8089
- strokeWidth: "1.5",
8090
- strokeMiterlimit: "10"
8114
+ d: "M139.577 45.0528H139.877C140.032 45.0528 140.125 45.1563 140.125 45.3012V58.2079H147.971C148.115 58.2079 148.219 58.3114 148.219 58.4563V58.7254C148.219 58.8806 148.115 58.9738 147.971 58.9738H139.566C139.411 58.9738 139.318 58.8703 139.318 58.7254V45.3012C139.349 45.1667 139.442 45.0528 139.577 45.0528Z",
8115
+ fill: "#3E4049"
8091
8116
  }
8092
8117
  ),
8093
8118
  /* @__PURE__ */ jsx(
8094
8119
  "path",
8095
8120
  {
8096
- d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8097
- stroke: "#95E2F4",
8098
- strokeWidth: "1.5",
8099
- strokeMiterlimit: "10"
8121
+ d: "M151.992 45.3012C151.992 45.146 152.095 45.0528 152.24 45.0528H157.332C161.369 45.0528 164.412 48.0854 164.412 52.0081C164.412 55.9308 161.369 58.9841 157.332 58.9841H152.24C152.095 58.9841 151.992 58.8806 151.992 58.7357V45.3012ZM152.799 45.8187V58.2079H157.332C160.893 58.2079 163.594 55.5065 163.594 52.0081C163.594 48.5408 160.903 45.8291 157.332 45.8291H152.799V45.8187Z",
8122
+ fill: "#3E4049"
8100
8123
  }
8101
8124
  ),
8102
8125
  /* @__PURE__ */ jsx(
8103
8126
  "path",
8104
8127
  {
8105
- d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8106
- fill: "white"
8128
+ d: "M168.723 45.3012C168.723 45.146 168.827 45.0528 168.972 45.0528H169.272C169.417 45.0528 169.52 45.1563 169.52 45.3012V58.7254C169.52 58.8806 169.417 58.9738 169.272 58.9738H168.972C168.827 58.9738 168.723 58.8703 168.723 58.7254V45.3012Z",
8129
+ fill: "#3E4049"
8107
8130
  }
8108
8131
  ),
8109
8132
  /* @__PURE__ */ jsx(
8110
8133
  "path",
8111
8134
  {
8112
- d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8113
- fill: "white"
8135
+ d: "M174.744 45.0528H175.013C175.117 45.0528 175.262 45.1356 175.344 45.2184L185.25 57.5144V45.3012C185.25 45.146 185.353 45.0528 185.498 45.0528H185.788C185.902 45.0528 186.036 45.1563 186.036 45.3012V58.7461C186.036 58.9013 185.933 58.9841 185.798 58.9841H185.55C185.446 58.9841 185.301 58.9013 185.218 58.8185L175.313 46.5018V58.715C175.313 58.8703 175.21 58.9634 175.065 58.9634H174.785C174.641 58.9634 174.537 58.8599 174.537 58.715V45.2598C174.547 45.1356 174.63 45.0528 174.744 45.0528Z",
8136
+ fill: "#3E4049"
8114
8137
  }
8115
8138
  ),
8116
8139
  /* @__PURE__ */ jsx(
8117
8140
  "path",
8118
8141
  {
8119
- d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8120
- fill: "white"
8142
+ d: "M197.363 59.1101C193.398 59.1101 190.345 56.0465 190.345 51.9996C190.345 47.9526 193.44 44.9304 197.559 44.9304C200.136 44.9304 202.3 46.1 203.531 47.994C203.614 48.0975 203.604 48.2424 203.449 48.2942L203.148 48.408C203.117 48.4287 203.086 48.4287 203.045 48.4287C202.941 48.4287 202.859 48.3666 202.796 48.2735C201.658 46.6692 199.764 45.6549 197.57 45.6549C193.957 45.6549 191.194 48.3666 191.194 51.9582C191.194 55.56 193.885 58.2925 197.373 58.2925C200.685 58.2925 203.293 55.8912 203.552 52.6309H196.907C196.752 52.6309 196.659 52.5274 196.659 52.3825V52.1134C196.659 51.9582 196.762 51.865 196.907 51.865H204.152C204.297 51.865 204.401 51.9685 204.401 52.1134C204.204 56.3466 201.192 59.1101 197.363 59.1101Z",
8143
+ fill: "#3E4049"
8121
8144
  }
8122
8145
  ),
8123
8146
  /* @__PURE__ */ jsx(
8124
8147
  "path",
8125
8148
  {
8126
- d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8127
- fill: "white"
8149
+ d: "M104.955 20.1505C105.555 20.1505 106.155 20.5645 106.331 21.1648L109.612 31.7013L112.81 21.0923C112.966 20.5438 113.514 20.1505 114.063 20.1505H115.16C115.729 20.1505 116.278 20.5438 116.433 21.0923L119.662 31.7013L122.912 21.1751C123.067 20.5748 123.668 20.1608 124.289 20.1608H125.955C126.555 20.1608 126.866 20.6059 126.659 21.1751L121.432 36.8143C121.246 37.3318 120.708 37.7561 120.128 37.7561H119.031C118.482 37.7561 117.934 37.3628 117.778 36.8143L114.632 26.6711L111.454 36.8143C111.299 37.3628 110.751 37.7561 110.181 37.7561H109.084C108.536 37.7561 107.987 37.3421 107.811 36.8143L102.553 21.1751C102.346 20.6059 102.657 20.1608 103.278 20.1608H104.955V20.1505Z",
8150
+ fill: "#3E4049"
8128
8151
  }
8129
8152
  ),
8130
8153
  /* @__PURE__ */ jsx(
8131
8154
  "path",
8132
8155
  {
8133
- d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8134
- fill: "white"
8156
+ d: "M130.084 20.1505H140.982C141.603 20.1505 142.049 20.5955 142.049 21.2165V22.5206C142.049 23.1209 141.603 23.5867 140.982 23.5867H132.733V27.1575H139.575C140.175 27.1575 140.641 27.6026 140.641 28.2029V29.507C140.641 30.128 140.175 30.5731 139.575 30.5731H132.733V34.3302H141.107C141.728 34.3302 142.173 34.7752 142.173 35.3755V36.6796C142.173 37.2799 141.728 37.7457 141.107 37.7457H130.084C129.483 37.7457 129.018 37.2799 129.018 36.6796V21.2269C129.018 20.5955 129.483 20.1505 130.084 20.1505Z",
8157
+ fill: "#3E4049"
8135
8158
  }
8136
8159
  ),
8137
8160
  /* @__PURE__ */ jsx(
8138
8161
  "path",
8139
8162
  {
8140
- d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8141
- fill: "white"
8163
+ d: "M145.817 20.1505H147.4C148 20.1505 148.466 20.5955 148.466 21.2165V34.3302H156.032C156.633 34.3302 157.098 34.7752 157.098 35.3755V36.6796C157.098 37.2799 156.633 37.7457 156.032 37.7457H145.817C145.216 37.7457 144.75 37.2799 144.75 36.6796V21.2269C144.75 20.5955 145.216 20.1505 145.817 20.1505Z",
8164
+ fill: "#3E4049"
8142
8165
  }
8143
- )
8144
- ]
8145
- }
8146
- );
8147
- };
8148
- const SealEnterpriseProvider = ({
8149
- className
8150
- }) => {
8151
- return /* @__PURE__ */ jsxs(
8152
- "svg",
8153
- {
8154
- width: "55",
8155
- height: "55",
8156
- viewBox: "0 0 55 55",
8157
- fill: "none",
8158
- xmlns: "http://www.w3.org/2000/svg",
8159
- className: cn(className),
8160
- children: [
8166
+ ),
8161
8167
  /* @__PURE__ */ jsx(
8162
8168
  "path",
8163
8169
  {
8164
- d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8165
- fill: "#3481C1",
8166
- stroke: "#CBE0F1",
8167
- strokeWidth: "1.5"
8170
+ d: "M160.557 20.1505H162.14C162.741 20.1505 163.206 20.5955 163.206 21.2165V34.3302H170.772C171.373 34.3302 171.839 34.7752 171.839 35.3755V36.6796C171.839 37.2799 171.373 37.7457 170.772 37.7457H160.557C159.957 37.7457 159.491 37.2799 159.491 36.6796V21.2269C159.491 20.5955 159.967 20.1505 160.557 20.1505Z",
8171
+ fill: "#3E4049"
8168
8172
  }
8169
8173
  ),
8170
8174
  /* @__PURE__ */ jsx(
8171
8175
  "path",
8172
8176
  {
8173
- d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8174
- stroke: "#CBE0F1",
8175
- strokeWidth: "1.5",
8176
- strokeMiterlimit: "10"
8177
+ d: "M102.502 0.381338C102.502 0.226086 102.605 0.132935 102.75 0.132935H103.05C103.206 0.132935 103.299 0.236436 103.299 0.381338V13.8055C103.299 13.9607 103.195 14.0539 103.05 14.0539H102.75C102.595 14.0539 102.502 13.9504 102.502 13.8055V0.381338Z",
8178
+ fill: "#3E4049"
8177
8179
  }
8178
8180
  ),
8179
8181
  /* @__PURE__ */ jsx(
8180
8182
  "path",
8181
8183
  {
8182
- d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8183
- stroke: "#CBE0F1",
8184
- strokeWidth: "1.5",
8185
- strokeMiterlimit: "10"
8184
+ d: "M108.546 0.132935H108.815C108.919 0.132935 109.064 0.215736 109.147 0.298537L119.052 12.5945V0.381338C119.052 0.226086 119.155 0.132935 119.3 0.132935H119.58C119.693 0.132935 119.828 0.236436 119.828 0.381338V13.8262C119.828 13.9814 119.724 14.0642 119.59 14.0642H119.341C119.238 14.0642 119.093 13.9814 119.01 13.8986L109.105 1.58196V13.7951C109.105 13.9504 109.002 14.0435 108.857 14.0435H108.577C108.422 14.0435 108.329 13.94 108.329 13.7951V0.350288C108.329 0.215736 108.412 0.132935 108.546 0.132935Z",
8185
+ fill: "#3E4049"
8186
8186
  }
8187
8187
  ),
8188
8188
  /* @__PURE__ */ jsx(
8189
8189
  "path",
8190
8190
  {
8191
- d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8192
- stroke: "#CBE0F1",
8193
- strokeWidth: "1.5",
8194
- strokeMiterlimit: "10"
8191
+ d: "M123.68 0.132935H135.748C135.903 0.132935 135.996 0.236436 135.996 0.381338V0.650442C135.996 0.805695 135.893 0.898846 135.748 0.898846H130.107V13.8055C130.107 13.9607 130.004 14.0539 129.859 14.0539H129.579C129.424 14.0539 129.331 13.9504 129.331 13.8055V0.898846H123.69C123.535 0.898846 123.442 0.795344 123.442 0.650442V0.381338C123.431 0.246786 123.524 0.132935 123.68 0.132935Z",
8192
+ fill: "#3E4049"
8195
8193
  }
8196
8194
  ),
8197
8195
  /* @__PURE__ */ jsx(
8198
8196
  "path",
8199
8197
  {
8200
- d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8201
- fill: "white"
8198
+ d: "M139.82 0.132935H149.063C149.218 0.132935 149.311 0.236436 149.311 0.381338V0.650442C149.311 0.805695 149.208 0.898846 149.063 0.898846H140.379V6.61213H148.141C148.286 6.61213 148.39 6.71563 148.39 6.86054V7.15034C148.39 7.30559 148.286 7.39874 148.141 7.39874H140.379V13.2983H149.166C149.321 13.2983 149.415 13.4018 149.415 13.5467V13.8158C149.415 13.9711 149.311 14.0642 149.166 14.0642H139.83C139.675 14.0642 139.582 13.9607 139.582 13.8158V0.381338C139.571 0.246786 139.696 0.132935 139.82 0.132935Z",
8199
+ fill: "#3E4049"
8202
8200
  }
8203
8201
  ),
8204
8202
  /* @__PURE__ */ jsx(
8205
8203
  "path",
8206
8204
  {
8207
- d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8208
- fill: "white"
8205
+ d: "M153.572 0.132935H159.451C161.863 0.132935 163.653 1.89246 163.653 4.1902C163.653 6.18778 162.329 7.761 160.455 8.16466L164.005 13.8262C164.067 13.9297 164.026 14.0228 163.891 14.0228H163.477C163.333 14.0228 163.146 13.9193 163.094 13.8262L159.596 8.25781C159.565 8.25781 159.513 8.25781 159.482 8.25781H154.173V13.7848C154.173 13.94 154.069 14.0332 153.924 14.0332H153.624C153.469 14.0332 153.376 13.9297 153.376 13.7848V0.381338C153.324 0.246786 153.427 0.132935 153.572 0.132935ZM154.131 0.898846V7.50225H159.441C161.387 7.50225 162.825 6.09463 162.825 4.20055C162.825 2.32717 161.387 0.898846 159.441 0.898846H154.131Z",
8206
+ fill: "#3E4049"
8209
8207
  }
8210
8208
  ),
8211
8209
  /* @__PURE__ */ jsx(
8212
8210
  "path",
8213
8211
  {
8214
- d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8215
- fill: "white"
8212
+ d: "M168.079 0.132935H168.348C168.451 0.132935 168.596 0.215736 168.679 0.298537L178.584 12.5945V0.381338C178.584 0.226086 178.687 0.132935 178.832 0.132935H179.122C179.236 0.132935 179.371 0.236436 179.371 0.381338V13.8262C179.371 13.9814 179.267 14.0642 179.133 14.0642H178.884C178.781 14.0642 178.636 13.9814 178.553 13.8986L168.648 1.58196V13.7951C168.648 13.9504 168.544 14.0435 168.399 14.0435H168.12C167.975 14.0435 167.872 13.94 167.872 13.7951V0.350288C167.861 0.215736 167.944 0.132935 168.079 0.132935Z",
8213
+ fill: "#3E4049"
8216
8214
  }
8217
8215
  ),
8218
8216
  /* @__PURE__ */ jsx(
8219
8217
  "path",
8220
8218
  {
8221
- d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8222
- fill: "white"
8219
+ d: "M189.11 0.30523C189.141 0.201728 189.276 0.118927 189.389 0.118927H189.576C189.69 0.118927 189.824 0.201728 189.855 0.30523L195.931 13.8122C196.014 13.9674 195.931 14.0502 195.775 14.0502H195.424C195.279 14.0502 195.144 13.9674 195.072 13.8122L193.519 10.3449H185.436L183.883 13.8122C183.821 13.9674 183.686 14.0502 183.531 14.0502H183.179C183.024 14.0502 182.941 13.9674 183.024 13.8122L189.11 0.30523ZM185.788 9.58932H193.198L189.503 1.38165L185.788 9.58932Z",
8220
+ fill: "#3E4049"
8223
8221
  }
8224
8222
  ),
8225
8223
  /* @__PURE__ */ jsx(
8226
8224
  "path",
8227
8225
  {
8228
- d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8229
- fill: "white"
8226
+ d: "M196.282 0.132935H208.35C208.505 0.132935 208.598 0.236436 208.598 0.381338V0.650442C208.598 0.805695 208.495 0.898846 208.35 0.898846H202.709V13.8055C202.709 13.9607 202.606 14.0539 202.461 14.0539H202.181C202.036 14.0539 201.933 13.9504 201.933 13.8055V0.898846H196.292C196.147 0.898846 196.044 0.795344 196.044 0.650442V0.381338C196.033 0.246786 196.137 0.132935 196.282 0.132935Z",
8227
+ fill: "#3E4049"
8230
8228
  }
8231
8229
  ),
8232
8230
  /* @__PURE__ */ jsx(
8233
8231
  "path",
8234
8232
  {
8235
- d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8236
- fill: "white"
8233
+ d: "M212.212 0.381338C212.212 0.226086 212.316 0.132935 212.461 0.132935H212.761C212.916 0.132935 213.009 0.236436 213.009 0.381338V13.8055C213.009 13.9607 212.906 14.0539 212.761 14.0539H212.461C212.305 14.0539 212.212 13.9504 212.212 13.8055V0.381338Z",
8234
+ fill: "#3E4049"
8237
8235
  }
8238
- )
8239
- ]
8240
- }
8241
- );
8242
- };
8243
- const SealPerformanceTestingProvider = ({
8244
- className
8245
- }) => {
8246
- return /* @__PURE__ */ jsxs(
8247
- "svg",
8248
- {
8249
- width: "55",
8250
- height: "55",
8251
- viewBox: "0 0 55 55",
8252
- fill: "none",
8253
- xmlns: "http://www.w3.org/2000/svg",
8254
- className: cn(className),
8255
- children: [
8236
+ ),
8256
8237
  /* @__PURE__ */ jsx(
8257
8238
  "path",
8258
8239
  {
8259
- d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8260
- fill: "#ED896F",
8261
- stroke: "#F8DFD8",
8262
- strokeWidth: "1.5"
8240
+ d: "M224.395 0C228.431 0 231.474 3.0326 231.474 7.06916C231.474 11.1057 228.431 14.1797 224.395 14.1797C220.358 14.1797 217.315 11.1161 217.315 7.06916C217.315 3.0326 220.358 0 224.395 0ZM224.395 13.4138C227.976 13.4138 230.657 10.7021 230.657 7.07951C230.657 3.48801 227.976 0.776263 224.395 0.776263C220.834 0.776263 218.133 3.48801 218.133 7.07951C218.133 10.6814 220.824 13.4138 224.395 13.4138Z",
8241
+ fill: "#3E4049"
8263
8242
  }
8264
8243
  ),
8265
8244
  /* @__PURE__ */ jsx(
8266
8245
  "path",
8267
8246
  {
8268
- d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8269
- stroke: "#F8DFD8",
8270
- strokeWidth: "1.5",
8247
+ d: "M236.006 0.132935H236.275C236.379 0.132935 236.524 0.215736 236.606 0.298537L246.511 12.5945V0.381338C246.511 0.226086 246.615 0.132935 246.76 0.132935H247.05C247.164 0.132935 247.298 0.236436 247.298 0.381338V13.8262C247.298 13.9814 247.195 14.0642 247.06 14.0642H246.812C246.708 14.0642 246.563 13.9814 246.48 13.8986L236.565 1.58196V13.7951C236.565 13.9504 236.461 14.0435 236.317 14.0435H236.037C235.882 14.0435 235.789 13.94 235.789 13.7951V0.350288C235.789 0.215736 235.871 0.132935 236.006 0.132935Z",
8248
+ fill: "#3E4049"
8249
+ }
8250
+ ),
8251
+ /* @__PURE__ */ jsx(
8252
+ "path",
8253
+ {
8254
+ d: "M257.019 0.30523C257.05 0.201728 257.185 0.118927 257.299 0.118927H257.485C257.599 0.118927 257.734 0.201728 257.765 0.30523L263.84 13.8122C263.923 13.9674 263.84 14.0502 263.685 14.0502H263.333C263.188 14.0502 263.054 13.9674 262.981 13.8122L261.429 10.3449H253.345L251.792 13.8122C251.73 13.9674 251.596 14.0502 251.441 14.0502H251.089C250.933 14.0502 250.851 13.9674 250.933 13.8122L257.019 0.30523ZM253.707 9.58932H261.118L257.423 1.38165L253.707 9.58932Z",
8255
+ fill: "#3E4049"
8256
+ }
8257
+ ),
8258
+ /* @__PURE__ */ jsx(
8259
+ "path",
8260
+ {
8261
+ d: "M267.762 0.132935H268.062C268.217 0.132935 268.31 0.236436 268.31 0.381338V13.288H276.156C276.3 13.288 276.404 13.3915 276.404 13.5364V13.8055C276.404 13.9607 276.3 14.0539 276.156 14.0539H267.751C267.606 14.0539 267.503 13.9504 267.503 13.8055V0.381338C267.524 0.246786 267.627 0.132935 267.762 0.132935Z",
8262
+ fill: "#3E4049"
8263
+ }
8264
+ ),
8265
+ /* @__PURE__ */ jsx(
8266
+ "path",
8267
+ {
8268
+ d: "M91.5061 180C83.476 180 75.5042 178.961 67.8125 176.907C60.0976 174.841 52.6627 171.76 45.7414 167.756C38.8317 163.753 32.459 158.863 26.7982 153.202C21.1374 147.541 16.247 141.168 12.2436 134.259C8.22854 127.326 5.15889 119.903 3.093 112.188C1.03878 104.496 0 96.5244 0 88.4943C0 80.4642 1.03878 72.4924 3.093 64.8008C5.15889 57.0859 8.24022 49.651 12.2436 42.7297C16.247 35.8201 21.1374 29.4474 26.7982 23.7866C32.459 18.1259 38.8317 13.2355 45.7414 9.2321C52.6744 5.21705 60.0976 2.14741 67.8125 0.081524C69.0614 -0.256954 70.3336 0.490031 70.6721 1.7389C71.0106 2.98776 70.2636 4.25997 69.0147 4.59845C61.7082 6.54762 54.6585 9.4772 48.0874 13.2822C41.5279 17.0754 35.482 21.7208 30.113 27.1014C24.744 32.4704 20.0987 38.5163 16.2937 45.0757C12.4887 51.6469 9.57079 58.6966 7.60994 66.0147C5.66077 73.3095 4.66868 80.8727 4.66868 88.4943C4.66868 96.1159 5.66077 103.679 7.60994 110.974C9.57079 118.292 12.4887 125.342 16.2937 131.913C20.087 138.472 24.7323 144.518 30.113 149.887C35.482 155.256 41.5279 159.901 48.0874 163.706C54.6585 167.511 61.7083 170.429 69.0264 172.39C76.3212 174.339 83.8845 175.331 91.5061 175.331C99.1277 175.331 106.691 174.339 113.986 172.39C121.304 170.429 128.354 167.511 134.925 163.706C141.484 159.913 147.53 155.268 152.899 149.887C158.268 144.518 162.914 138.461 166.718 131.913C170.523 125.342 173.441 118.292 175.402 110.974C175.741 109.725 177.013 108.99 178.262 109.316C179.511 109.655 180.246 110.927 179.919 112.176C177.853 119.891 174.772 127.326 170.769 134.247C166.765 141.157 161.875 147.529 156.214 153.19C150.553 158.851 144.18 163.741 137.271 167.745C130.338 171.76 122.915 174.829 115.2 176.895C107.508 178.961 99.5362 180 91.5061 180Z",
8269
+ fill: "#DEDEE5"
8270
+ }
8271
+ ),
8272
+ /* @__PURE__ */ jsx(
8273
+ "path",
8274
+ {
8275
+ d: "M11.3219 90.8207C10.038 90.8207 8.98758 89.7703 8.98758 88.4864C8.98758 81.25 9.92131 74.0602 11.7771 67.1273C13.6329 60.171 16.4108 53.4714 20.029 47.2154C23.6356 40.9828 28.0475 35.2403 33.148 30.1281C38.2485 25.0276 44.0027 20.6041 50.2353 17.0092C56.4797 13.391 63.1793 10.6131 70.1473 8.75736C77.0802 6.90157 84.27 5.96783 91.5065 5.96783C92.7903 5.96783 93.8408 7.01828 93.8408 8.30216C93.8408 9.58605 92.7903 10.6365 91.5065 10.6365C84.6668 10.6365 77.8856 11.5235 71.3494 13.2743C64.7899 15.025 58.4756 17.6512 52.5697 21.0593C46.6872 24.4557 41.2715 28.6225 36.4511 33.4429C31.6307 38.2633 27.4639 43.6789 24.0674 49.5614C20.6593 55.4556 18.0448 61.77 16.2941 68.3294C14.5433 74.8656 13.6563 81.6468 13.6563 88.4864C13.6563 89.7703 12.6058 90.8207 11.3219 90.8207Z",
8276
+ fill: "#DEDEE5"
8277
+ }
8278
+ ),
8279
+ /* @__PURE__ */ jsx(
8280
+ "path",
8281
+ {
8282
+ d: "M91.5046 171.019C84.2682 171.019 77.0784 170.085 70.1454 168.229C63.1891 166.374 56.4895 163.596 50.2335 159.978C44.0008 156.371 38.2584 151.959 33.1462 146.859C28.0456 141.758 23.6221 136.004 20.0272 129.771C19.3852 128.651 19.7587 127.227 20.8792 126.585C21.9997 125.943 23.4236 126.317 24.0656 127.437C27.462 133.32 31.6288 138.735 36.4492 143.556C41.2697 148.376 46.6853 152.543 52.5679 155.939C58.4621 159.347 64.7764 161.973 71.3476 163.724C77.8838 165.475 84.665 166.362 91.5046 166.362C98.3442 166.362 105.126 165.475 111.662 163.724C118.221 161.973 124.536 159.347 130.441 155.939C136.324 152.543 141.74 148.376 146.56 143.556C151.38 138.735 155.547 133.32 158.944 127.437C162.352 121.543 164.978 115.228 166.729 108.657C168.479 102.121 169.367 95.34 169.367 88.5004C169.367 87.2165 170.417 86.166 171.701 86.166C172.985 86.166 174.035 87.2165 174.035 88.5004C174.035 95.7368 173.101 102.927 171.246 109.859C169.39 116.816 166.612 123.515 162.994 129.771C159.387 136.004 154.975 141.746 149.875 146.859C144.774 151.971 139.02 156.383 132.787 159.978C126.543 163.596 119.844 166.374 112.876 168.229C105.931 170.085 98.7411 171.019 91.5046 171.019Z",
8283
+ fill: "#DEDEE5"
8284
+ }
8285
+ ),
8286
+ /* @__PURE__ */ jsx(
8287
+ "path",
8288
+ {
8289
+ d: "M91.5051 162.026C85.0507 162.026 78.6429 161.185 72.4686 159.54C66.2709 157.882 60.295 155.408 54.7276 152.187C49.1719 148.977 44.048 145.043 39.5077 140.492C34.9558 135.94 31.0224 130.827 27.8127 125.272C24.5913 119.704 22.1169 113.74 20.4595 107.531C18.8138 101.356 17.9734 94.9488 17.9734 88.4943C17.9734 82.0399 18.8138 75.6322 20.4595 69.4579C22.1169 63.2602 24.5913 57.2843 27.8127 51.717C28.4546 50.5965 29.8902 50.223 30.9991 50.8649C32.1195 51.5069 32.493 52.9425 31.8511 54.0513C28.8398 59.2685 26.5171 64.8476 24.9648 70.6601C23.4241 76.4492 22.6305 82.4484 22.6305 88.4943C22.6305 94.5402 23.4125 100.539 24.9648 106.329C26.5171 112.129 28.8281 117.72 31.8511 122.937C34.8624 128.143 38.5506 132.94 42.8108 137.2C47.071 141.46 51.868 145.149 57.0736 148.16C62.2909 151.171 67.8699 153.494 73.6824 155.046C79.4716 156.587 85.4592 157.38 91.5168 157.38C97.5744 157.38 103.562 156.598 109.351 155.046C115.152 153.494 120.743 151.183 125.96 148.16C131.166 145.149 135.963 141.46 140.223 137.2C141.133 136.29 142.615 136.29 143.526 137.2C144.436 138.111 144.436 139.593 143.526 140.503C138.974 145.055 133.862 148.989 128.306 152.198C122.739 155.42 116.763 157.894 110.565 159.551C104.367 161.185 97.9596 162.026 91.5051 162.026Z",
8290
+ fill: "#DEDEE5"
8291
+ }
8292
+ ),
8293
+ /* @__PURE__ */ jsx(
8294
+ "path",
8295
+ {
8296
+ d: "M91.5046 153.037C85.8438 153.037 80.2181 152.301 74.8024 150.854C69.3634 149.395 64.1228 147.224 59.2324 144.4C54.3536 141.575 49.86 138.12 45.8683 134.129C41.8766 130.137 38.4217 125.643 35.6089 120.765C32.7843 115.874 30.6134 110.634 29.1544 105.195C27.6955 99.7789 26.9601 94.1532 26.9601 88.4924C26.9601 82.8317 27.6955 77.206 29.1428 71.7903C30.6017 66.3513 32.7726 61.1107 35.5972 56.2203C38.4217 51.3416 41.8766 46.848 45.8566 42.8563C46.767 41.9459 48.2493 41.9459 49.1597 42.8563C50.0701 43.7667 50.0701 45.249 49.1597 46.1594C45.4598 49.8593 42.2501 54.0377 39.6356 58.5547C37.0095 63.0833 35.0019 67.9503 33.648 72.9925C32.3058 78.023 31.6288 83.2402 31.6288 88.4924C31.6288 93.7447 32.3058 98.9619 33.6597 103.992C35.0136 109.035 37.0211 113.902 39.6473 118.43C42.2617 122.947 45.4714 127.126 49.1714 130.826C52.8713 134.525 57.0498 137.735 61.5667 140.35C66.0953 142.976 70.9624 144.983 76.0046 146.337C81.0351 147.679 86.2523 148.368 91.5046 148.368C96.7569 148.368 101.974 147.691 107.005 146.337C112.047 144.983 116.914 142.976 121.442 140.35C125.959 137.735 130.138 134.525 133.838 130.826C137.538 127.126 140.747 122.947 143.362 118.43C144.004 117.31 145.439 116.936 146.548 117.578C147.669 118.22 148.042 119.656 147.4 120.765C144.576 125.643 141.121 130.137 137.141 134.129C133.149 138.12 128.656 141.575 123.777 144.388C118.886 147.213 113.646 149.383 108.207 150.842C102.791 152.301 97.1654 153.037 91.5046 153.037Z",
8297
+ fill: "#DEDEE5"
8298
+ }
8299
+ )
8300
+ ]
8301
+ }
8302
+ );
8303
+ };
8304
+ const SealProviders = ({ className }) => {
8305
+ return /* @__PURE__ */ jsxs(
8306
+ "svg",
8307
+ {
8308
+ width: "55",
8309
+ height: "55",
8310
+ viewBox: "0 0 55 55",
8311
+ fill: "none",
8312
+ xmlns: "http://www.w3.org/2000/svg",
8313
+ className: cn(className),
8314
+ children: [
8315
+ /* @__PURE__ */ jsx(
8316
+ "path",
8317
+ {
8318
+ d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8319
+ fill: "white",
8320
+ stroke: "#EEDEC9",
8321
+ strokeWidth: "1.5"
8322
+ }
8323
+ ),
8324
+ /* @__PURE__ */ jsx(
8325
+ "path",
8326
+ {
8327
+ d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8328
+ stroke: "#CBCDD2",
8329
+ strokeWidth: "1.5",
8271
8330
  strokeMiterlimit: "10"
8272
8331
  }
8273
8332
  ),
@@ -8275,7 +8334,7 @@ const SealPerformanceTestingProvider = ({
8275
8334
  "path",
8276
8335
  {
8277
8336
  d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8278
- stroke: "#F8DFD8",
8337
+ stroke: "#CBCDD2",
8279
8338
  strokeWidth: "1.5",
8280
8339
  strokeMiterlimit: "10"
8281
8340
  }
@@ -8284,7 +8343,7 @@ const SealPerformanceTestingProvider = ({
8284
8343
  "path",
8285
8344
  {
8286
8345
  d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8287
- stroke: "#F8DFD8",
8346
+ stroke: "#CBCDD2",
8288
8347
  strokeWidth: "1.5",
8289
8348
  strokeMiterlimit: "10"
8290
8349
  }
@@ -8293,49 +8352,49 @@ const SealPerformanceTestingProvider = ({
8293
8352
  "path",
8294
8353
  {
8295
8354
  d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8296
- fill: "white"
8355
+ fill: "#8AEFDB"
8297
8356
  }
8298
8357
  ),
8299
8358
  /* @__PURE__ */ jsx(
8300
8359
  "path",
8301
8360
  {
8302
8361
  d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8303
- fill: "white"
8362
+ fill: "#0F748A"
8304
8363
  }
8305
8364
  ),
8306
8365
  /* @__PURE__ */ jsx(
8307
8366
  "path",
8308
8367
  {
8309
8368
  d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8310
- fill: "white"
8369
+ fill: "#0A4F41"
8311
8370
  }
8312
8371
  ),
8313
8372
  /* @__PURE__ */ jsx(
8314
8373
  "path",
8315
8374
  {
8316
8375
  d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8317
- fill: "white"
8376
+ fill: "#87DFF2"
8318
8377
  }
8319
8378
  ),
8320
8379
  /* @__PURE__ */ jsx(
8321
8380
  "path",
8322
8381
  {
8323
8382
  d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8324
- fill: "white"
8383
+ fill: "#17AA8D"
8325
8384
  }
8326
8385
  ),
8327
8386
  /* @__PURE__ */ jsx(
8328
8387
  "path",
8329
8388
  {
8330
8389
  d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8331
- fill: "white"
8390
+ fill: "#39C9EA"
8332
8391
  }
8333
8392
  )
8334
8393
  ]
8335
8394
  }
8336
8395
  );
8337
8396
  };
8338
- const SealSurveyProvider = ({ className }) => {
8397
+ const SealProductProvider = ({ className }) => {
8339
8398
  return /* @__PURE__ */ jsxs(
8340
8399
  "svg",
8341
8400
  {
@@ -8350,8 +8409,8 @@ const SealSurveyProvider = ({ className }) => {
8350
8409
  "path",
8351
8410
  {
8352
8411
  d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8353
- fill: "#52545D",
8354
- stroke: "#9FA2AB",
8412
+ fill: "#16ADCF",
8413
+ stroke: "#95E2F4",
8355
8414
  strokeWidth: "1.5"
8356
8415
  }
8357
8416
  ),
@@ -8359,7 +8418,7 @@ const SealSurveyProvider = ({ className }) => {
8359
8418
  "path",
8360
8419
  {
8361
8420
  d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8362
- stroke: "#9FA2AB",
8421
+ stroke: "#95E2F4",
8363
8422
  strokeWidth: "1.5",
8364
8423
  strokeMiterlimit: "10"
8365
8424
  }
@@ -8368,7 +8427,7 @@ const SealSurveyProvider = ({ className }) => {
8368
8427
  "path",
8369
8428
  {
8370
8429
  d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8371
- stroke: "#9FA2AB",
8430
+ stroke: "#95E2F4",
8372
8431
  strokeWidth: "1.5",
8373
8432
  strokeMiterlimit: "10"
8374
8433
  }
@@ -8377,7 +8436,7 @@ const SealSurveyProvider = ({ className }) => {
8377
8436
  "path",
8378
8437
  {
8379
8438
  d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8380
- stroke: "#9FA2AB",
8439
+ stroke: "#95E2F4",
8381
8440
  strokeWidth: "1.5",
8382
8441
  strokeMiterlimit: "10"
8383
8442
  }
@@ -8428,92 +8487,189 @@ const SealSurveyProvider = ({ className }) => {
8428
8487
  }
8429
8488
  );
8430
8489
  };
8431
- const SealIwbiMember = ({
8490
+ const SealEnterpriseProvider = ({
8432
8491
  className
8433
8492
  }) => {
8434
8493
  return /* @__PURE__ */ jsxs(
8435
8494
  "svg",
8436
8495
  {
8437
- width: "180",
8438
- height: "180",
8439
- viewBox: "0 0 180 180",
8496
+ width: "55",
8497
+ height: "55",
8498
+ viewBox: "0 0 55 55",
8440
8499
  fill: "none",
8441
8500
  xmlns: "http://www.w3.org/2000/svg",
8501
+ className: cn(className),
8442
8502
  children: [
8443
8503
  /* @__PURE__ */ jsx(
8444
8504
  "path",
8445
8505
  {
8446
- d: "M90 180C139.706 180 180 139.706 180 90C180 40.2944 139.706 0 90 0C40.2944 0 0 40.2944 0 90C0 139.706 40.2944 180 90 180Z",
8447
- fill: "#72ABD9"
8506
+ d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8507
+ fill: "#3481C1",
8508
+ stroke: "#CBE0F1",
8509
+ strokeWidth: "1.5"
8510
+ }
8511
+ ),
8512
+ /* @__PURE__ */ jsx(
8513
+ "path",
8514
+ {
8515
+ d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8516
+ stroke: "#CBE0F1",
8517
+ strokeWidth: "1.5",
8518
+ strokeMiterlimit: "10"
8519
+ }
8520
+ ),
8521
+ /* @__PURE__ */ jsx(
8522
+ "path",
8523
+ {
8524
+ d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8525
+ stroke: "#CBE0F1",
8526
+ strokeWidth: "1.5",
8527
+ strokeMiterlimit: "10"
8528
+ }
8529
+ ),
8530
+ /* @__PURE__ */ jsx(
8531
+ "path",
8532
+ {
8533
+ d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8534
+ stroke: "#CBE0F1",
8535
+ strokeWidth: "1.5",
8536
+ strokeMiterlimit: "10"
8537
+ }
8538
+ ),
8539
+ /* @__PURE__ */ jsx(
8540
+ "path",
8541
+ {
8542
+ d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8543
+ fill: "white"
8448
8544
  }
8449
8545
  ),
8450
8546
  /* @__PURE__ */ jsx(
8451
8547
  "path",
8452
8548
  {
8453
- d: "M8.93994 89.9849C8.93994 89.115 9.64509 88.4099 10.5149 88.4099C11.3848 88.4099 12.0899 89.115 12.0899 89.9849C12.0899 96.957 13.0018 103.72 14.7215 110.158L14.8056 110.47C16.5824 117.011 19.1975 123.197 22.5126 128.945L22.6737 129.222C26.0696 135.026 30.1902 140.358 34.9087 145.076C39.7017 149.869 45.1273 154.045 51.0384 157.471L51.3117 157.629C57.0585 160.921 63.2722 163.513 69.8263 165.263H69.8265L70.1284 165.343C76.4758 167.011 83.1368 167.895 90 167.895C96.9721 167.895 103.736 166.983 110.174 165.263L110.485 165.179C117.027 163.402 123.214 160.786 128.963 157.47C134.873 154.044 140.299 149.869 145.091 145.076C149.885 140.283 154.061 134.857 157.487 128.945C160.854 123.122 163.5 116.816 165.278 110.158L165.358 109.856C167.026 103.509 167.91 96.8481 167.91 89.9849C167.91 83.0127 166.998 76.2493 165.278 69.8113V69.8112C163.5 63.155 160.855 56.8635 157.487 51.0246L157.326 50.7478C153.93 44.9436 149.81 39.612 145.091 34.8936C140.298 30.1002 134.872 25.9238 128.96 22.4975V22.4973C123.229 19.183 117.028 16.5677 110.485 14.7905L110.174 14.7064C103.836 13.0135 97.1977 12.1036 90.3272 12.0755L90 12.0748L89.9188 12.0728C89.0867 12.0305 88.425 11.3425 88.425 10.4998C88.425 9.62996 89.1301 8.9248 90 8.9248L90.3403 8.92554C97.4823 8.95468 104.389 9.90094 110.986 11.6632L111.311 11.7506C118.015 13.5716 124.371 16.2372 130.254 19.6078L130.538 19.7714L130.54 19.7721L130.828 19.9397C136.864 23.4716 142.41 27.7574 147.319 32.6661C152.227 37.5748 156.513 43.1204 160.045 49.1572L160.213 49.445L160.213 49.4465L160.214 49.4478C163.716 55.518 166.47 62.0656 168.322 68.9983L168.405 69.3127C170.141 75.9203 171.06 82.8503 171.06 89.9849C171.06 97.1194 170.141 104.049 168.405 110.657L168.322 110.971C166.47 117.903 163.716 124.466 160.213 130.523L160.213 130.525C156.649 136.673 152.305 142.317 147.319 147.303C142.332 152.29 136.688 156.634 130.54 160.197L130.538 160.198L130.537 160.199C124.562 163.646 118.124 166.368 111.311 168.219L110.986 168.306C104.284 170.097 97.2478 171.045 90 171.045C82.8654 171.045 75.9354 170.126 69.3278 168.39L69.0135 168.306C62.0817 166.455 55.5185 163.701 49.4615 160.198L49.4602 160.197C43.3117 156.634 37.6679 152.29 32.6812 147.303C27.6946 142.317 23.3509 136.673 19.7873 130.525L19.7865 130.523L19.7856 130.522C16.3389 124.546 13.6164 118.109 11.7658 111.296L11.6783 110.971C9.88807 104.269 8.93995 97.2327 8.93994 89.9849Z",
8549
+ d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8550
+ fill: "white"
8551
+ }
8552
+ ),
8553
+ /* @__PURE__ */ jsx(
8554
+ "path",
8555
+ {
8556
+ d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8454
8557
  fill: "white"
8455
8558
  }
8456
8559
  ),
8457
8560
  /* @__PURE__ */ jsx(
8458
8561
  "path",
8459
8562
  {
8460
- d: "M71.372 159.488C72.2124 159.713 72.7115 160.576 72.4869 161.417C72.2623 162.257 71.3989 162.756 70.5586 162.532L71.372 159.488ZM14.9253 90.0001C14.9253 83.2757 15.8138 76.7642 17.4684 70.5593C17.6925 69.7188 18.5557 69.2191 19.3961 69.4432C20.2366 69.6673 20.7362 70.5303 20.5121 71.3708C18.9267 77.3158 18.0753 83.5546 18.0753 90.0001C18.0753 96.4453 18.9266 102.684 20.5118 108.628C22.1553 114.777 24.5917 120.589 27.7042 125.977C30.8606 131.424 34.7066 136.429 39.139 140.861C43.558 145.28 48.5637 149.141 54.0231 152.296L54.276 152.442C59.5929 155.485 65.3195 157.871 71.372 159.488L70.5586 162.532C64.1372 160.815 58.0693 158.271 52.4474 155.024L52.4471 155.024C46.7467 151.729 41.5225 147.7 36.9116 143.089C32.2845 138.462 28.271 133.238 24.9776 127.555L24.9771 127.554L24.9765 127.553C21.7797 122.019 19.2648 116.053 17.5497 109.743L17.4687 109.442L17.4684 109.441C15.8138 103.236 14.9253 96.7245 14.9253 90.0001Z",
8563
+ d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8461
8564
  fill: "white"
8462
8565
  }
8463
8566
  ),
8464
8567
  /* @__PURE__ */ jsx(
8465
8568
  "path",
8466
8569
  {
8467
- d: "M90.0001 14.9248C96.6195 14.9248 103.032 15.7858 109.15 17.391L109.441 17.4679L109.442 17.4682L109.743 17.5492C115.953 19.2371 121.829 21.6995 127.289 24.8242L127.553 24.976L127.553 24.9761L127.82 25.1311C133.417 28.3968 138.55 32.3722 143.089 36.9111C147.643 41.4658 151.604 46.599 154.868 52.179L155.023 52.445L155.062 52.5162C155.442 53.2574 155.179 54.1749 154.45 54.5975C153.721 55.02 152.793 54.7924 152.34 54.0936L152.297 54.0246L152.149 53.7695C149.02 48.4212 145.225 43.5022 140.861 39.1385C136.442 34.7195 131.437 30.8589 125.977 27.7035V27.7037C120.589 24.5912 114.777 22.155 108.628 20.5114V20.5113C102.684 18.9261 96.4453 18.0748 90.0001 18.0748C83.5546 18.0748 77.3158 18.9262 71.3708 20.5116C70.5303 20.7357 69.6673 20.2361 69.4432 19.3957C69.2191 18.5552 69.7188 17.692 70.5593 17.4679C76.7642 15.8133 83.2757 14.9248 90.0001 14.9248Z",
8570
+ d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8468
8571
  fill: "white"
8469
8572
  }
8470
8573
  ),
8471
8574
  /* @__PURE__ */ jsx(
8472
8575
  "path",
8473
8576
  {
8474
- d: "M155.925 89.9993C155.925 84.0943 155.149 78.3814 153.699 72.9323L153.628 72.6689C152.12 67.1402 149.919 61.8976 147.107 57.0385L146.833 56.5699C144.077 51.8971 140.769 47.6007 136.995 43.7651L136.616 43.383L136.561 43.3243C136.002 42.706 136.02 41.7515 136.616 41.1556C137.212 40.5598 138.167 40.5412 138.785 41.0998L138.844 41.1556L139.043 41.3553C143.144 45.4906 146.726 50.1429 149.69 55.2144L149.833 55.4602L149.833 55.4605L149.973 55.7033C152.853 60.7277 155.112 66.1395 156.667 71.8403L156.741 72.1162L156.742 72.1177L156.742 72.1193C158.262 77.8293 159.075 83.8155 159.075 89.9993C159.075 96.1832 158.262 102.169 156.742 107.879L156.742 107.881C155.161 113.791 152.827 119.38 149.832 124.54L149.832 124.54C146.794 129.772 143.096 134.59 138.844 138.843C134.592 143.094 129.788 146.793 124.539 149.832L124.539 149.833C119.365 152.826 113.777 155.16 107.883 156.741L107.882 156.741L107.88 156.741C102.17 158.261 96.1839 159.074 90 159.074C83.8161 159.074 77.83 158.261 72.12 156.741L72.1179 156.741C66.3007 155.185 60.7942 152.899 55.7016 149.971L55.4595 149.831L55.3905 149.789C54.6918 149.335 54.4649 148.408 54.8879 147.679C55.3108 146.95 56.2285 146.687 56.9694 147.068L57.0406 147.107L57.5031 147.373C62.2941 150.101 67.4679 152.236 72.9321 153.698H72.932C78.3814 155.148 84.0946 155.924 90 155.924C95.905 155.924 101.618 155.148 107.067 153.698L107.33 153.627C112.859 152.119 118.102 149.918 122.961 147.106C127.972 144.205 132.558 140.674 136.616 136.616C140.674 132.558 144.206 127.957 147.108 122.958C149.963 118.039 152.19 112.708 153.699 107.067C155.149 101.618 155.925 95.9047 155.925 89.9993Z",
8577
+ d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8475
8578
  fill: "white"
8476
8579
  }
8580
+ )
8581
+ ]
8582
+ }
8583
+ );
8584
+ };
8585
+ const SealPerformanceTestingProvider = ({
8586
+ className
8587
+ }) => {
8588
+ return /* @__PURE__ */ jsxs(
8589
+ "svg",
8590
+ {
8591
+ width: "55",
8592
+ height: "55",
8593
+ viewBox: "0 0 55 55",
8594
+ fill: "none",
8595
+ xmlns: "http://www.w3.org/2000/svg",
8596
+ className: cn(className),
8597
+ children: [
8598
+ /* @__PURE__ */ jsx(
8599
+ "path",
8600
+ {
8601
+ d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8602
+ fill: "#ED896F",
8603
+ stroke: "#F8DFD8",
8604
+ strokeWidth: "1.5"
8605
+ }
8606
+ ),
8607
+ /* @__PURE__ */ jsx(
8608
+ "path",
8609
+ {
8610
+ d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8611
+ stroke: "#F8DFD8",
8612
+ strokeWidth: "1.5",
8613
+ strokeMiterlimit: "10"
8614
+ }
8615
+ ),
8616
+ /* @__PURE__ */ jsx(
8617
+ "path",
8618
+ {
8619
+ d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8620
+ stroke: "#F8DFD8",
8621
+ strokeWidth: "1.5",
8622
+ strokeMiterlimit: "10"
8623
+ }
8624
+ ),
8625
+ /* @__PURE__ */ jsx(
8626
+ "path",
8627
+ {
8628
+ d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8629
+ stroke: "#F8DFD8",
8630
+ strokeWidth: "1.5",
8631
+ strokeMiterlimit: "10"
8632
+ }
8477
8633
  ),
8478
8634
  /* @__PURE__ */ jsx(
8479
8635
  "path",
8480
8636
  {
8481
- d: "M41.5144 105.206V98.7065C41.5144 98.5385 41.6509 98.4125 41.8189 98.4125H42.2704C42.4384 98.4125 42.5644 98.5385 42.5644 98.7065V101.426H46.5439V98.7065C46.5439 98.5385 46.6699 98.4125 46.8484 98.4125H47.2999C47.4679 98.4125 47.5939 98.5385 47.5939 98.7065V105.206C47.5939 105.374 47.4679 105.5 47.2999 105.5H46.8484C46.6699 105.5 46.5439 105.374 46.5439 105.206V102.402H42.5644V105.206C42.5644 105.374 42.4384 105.5 42.2704 105.5H41.8189C41.6509 105.5 41.5144 105.374 41.5144 105.206ZM50.311 98.7065C50.311 98.5385 50.4475 98.4125 50.6155 98.4125H55.1515C55.33 98.4125 55.456 98.5385 55.456 98.7065V99.0845C55.456 99.2525 55.33 99.389 55.1515 99.389H51.361V101.426H54.6265C54.7945 101.426 54.9205 101.552 54.9205 101.73V102.098C54.9205 102.276 54.7945 102.402 54.6265 102.402H51.361V104.523H55.204C55.3825 104.523 55.5085 104.66 55.5085 104.828V105.206C55.5085 105.374 55.3825 105.5 55.204 105.5H50.6155C50.4475 105.5 50.311 105.374 50.311 105.206V98.7065ZM57.4154 105.227L60.2714 98.6645C60.3344 98.5175 60.4919 98.4125 60.6494 98.4125H60.9539C61.1009 98.4125 61.2689 98.5175 61.3319 98.6645L64.1879 105.227C64.2614 105.384 64.1774 105.5 64.0094 105.5H63.5054C63.3374 105.5 63.1589 105.384 63.0854 105.227L62.5499 103.988H59.0429L58.5074 105.227C58.4444 105.384 58.2659 105.5 58.0979 105.5H57.5939C57.4259 105.5 57.3419 105.384 57.4154 105.227ZM60.8069 99.9035L59.4629 103.022H62.1404L60.8069 99.9035ZM66.4482 98.7065C66.4482 98.5385 66.5847 98.4125 66.7527 98.4125H67.2042C67.3722 98.4125 67.4982 98.5385 67.4982 98.7065V104.523H70.9527C71.1207 104.523 71.2572 104.66 71.2572 104.828V105.206C71.2572 105.374 71.1207 105.5 70.9527 105.5H66.7527C66.5847 105.5 66.4482 105.374 66.4482 105.206V98.7065ZM71.9937 98.7065C71.9937 98.5385 72.1302 98.4125 72.2982 98.4125H77.8632C78.0417 98.4125 78.1677 98.5385 78.1677 98.7065V99.0845C78.1677 99.2525 78.0417 99.389 77.8632 99.389H75.6057V105.206C75.6057 105.374 75.4797 105.5 75.3012 105.5H74.8602C74.6817 105.5 74.5557 105.374 74.5557 105.206V99.389H72.2982C72.1302 99.389 71.9937 99.2525 71.9937 99.0845V98.7065ZM80.4115 105.206V98.7065C80.4115 98.5385 80.548 98.4125 80.716 98.4125H81.1675C81.3355 98.4125 81.4615 98.5385 81.4615 98.7065V101.426H85.441V98.7065C85.441 98.5385 85.567 98.4125 85.7455 98.4125H86.197C86.365 98.4125 86.491 98.5385 86.491 98.7065V105.206C86.491 105.374 86.365 105.5 86.197 105.5H85.7455C85.567 105.5 85.441 105.374 85.441 105.206V102.402H81.4615V105.206C81.4615 105.374 81.3355 105.5 81.1675 105.5H80.716C80.548 105.5 80.4115 105.374 80.4115 105.206ZM89.4286 102.696H91.5916C91.7491 102.696 91.8751 102.822 91.8751 102.98V103.295C91.8751 103.452 91.7491 103.568 91.5916 103.568H89.4286C89.2711 103.568 89.1451 103.452 89.1451 103.295V102.98C89.1451 102.822 89.2711 102.696 89.4286 102.696ZM98.1934 99.9875C97.9939 99.599 97.4899 99.2945 96.8599 99.2945C96.1039 99.2945 95.5054 99.7145 95.5054 100.281C95.5054 100.932 96.3034 101.153 97.4164 101.457C98.3089 101.688 99.5479 102.045 99.5479 103.463C99.5479 104.765 98.4664 105.626 96.9544 105.626C95.6944 105.626 94.7389 105.027 94.3819 104.208C94.3084 104.061 94.3924 103.893 94.5604 103.841L95.1064 103.673C95.1274 103.662 95.1484 103.662 95.1694 103.662C95.2534 103.662 95.3374 103.715 95.3899 103.809C95.5894 104.271 96.1774 104.618 96.9649 104.618C97.8259 104.618 98.4979 104.177 98.4979 103.547C98.4979 102.875 97.7314 102.633 97.1119 102.476C95.8309 102.108 94.4659 101.783 94.4659 100.355C94.4659 99.116 95.4529 98.2865 96.8389 98.2865C97.9729 98.2865 98.8549 98.843 99.2014 99.5885C99.2749 99.7355 99.2014 99.9035 99.0229 99.956L98.4664 100.113C98.4454 100.124 98.4244 100.124 98.4034 100.124C98.3299 100.124 98.2459 100.071 98.1934 99.9875ZM101.377 105.227L104.233 98.6645C104.296 98.5175 104.453 98.4125 104.611 98.4125H104.915C105.062 98.4125 105.23 98.5175 105.293 98.6645L108.149 105.227C108.223 105.384 108.139 105.5 107.971 105.5H107.467C107.299 105.5 107.12 105.384 107.047 105.227L106.511 103.988H103.004L102.469 105.227C102.406 105.384 102.227 105.5 102.059 105.5H101.555C101.387 105.5 101.303 105.384 101.377 105.227ZM104.768 99.9035L103.424 103.022H106.102L104.768 99.9035ZM110.41 105.206V98.7065C110.41 98.5385 110.546 98.4125 110.714 98.4125H115.25C115.429 98.4125 115.555 98.5385 115.555 98.7065V99.0845C115.555 99.2525 115.429 99.389 115.25 99.389H111.46V101.405H114.725C114.893 101.405 115.019 101.531 115.019 101.699V102.077C115.019 102.245 114.893 102.371 114.725 102.371H111.46V105.206C111.46 105.374 111.334 105.5 111.166 105.5H110.714C110.546 105.5 110.41 105.374 110.41 105.206ZM117.883 98.7065C117.883 98.5385 118.02 98.4125 118.188 98.4125H122.724C122.902 98.4125 123.028 98.5385 123.028 98.7065V99.0845C123.028 99.2525 122.902 99.389 122.724 99.389H118.933V101.426H122.199C122.367 101.426 122.493 101.552 122.493 101.73V102.098C122.493 102.276 122.367 102.402 122.199 102.402H118.933V104.523H122.776C122.955 104.523 123.081 104.66 123.081 104.828V105.206C123.081 105.374 122.955 105.5 122.776 105.5H118.188C118.02 105.5 117.883 105.374 117.883 105.206V98.7065ZM124.977 98.7065C124.977 98.5385 125.114 98.4125 125.282 98.4125H130.847C131.025 98.4125 131.151 98.5385 131.151 98.7065V99.0845C131.151 99.2525 131.025 99.389 130.847 99.389H128.589V105.206C128.589 105.374 128.463 105.5 128.285 105.5H127.844C127.665 105.5 127.539 105.374 127.539 105.206V99.389H125.282C125.114 99.389 124.977 99.2525 124.977 99.0845V98.7065ZM133.122 98.4125H133.731C133.899 98.4125 134.088 98.528 134.183 98.6645L136.073 101.625L137.994 98.6645C138.078 98.528 138.278 98.4125 138.456 98.4125H139.055C139.233 98.4125 139.286 98.5175 139.191 98.6645L136.598 102.591V105.206C136.598 105.374 136.472 105.5 136.304 105.5H135.852C135.684 105.5 135.558 105.374 135.558 105.206V102.623L132.986 98.6645C132.891 98.528 132.954 98.4125 133.122 98.4125Z",
8637
+ d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8482
8638
  fill: "white"
8483
8639
  }
8484
8640
  ),
8485
8641
  /* @__PURE__ */ jsx(
8486
8642
  "path",
8487
8643
  {
8488
- d: "M68.5701 114.756C68.5701 114.588 68.7066 114.462 68.8746 114.462H71.8041C73.1376 114.462 74.1456 115.418 74.1456 116.678C74.1456 117.633 73.5786 118.41 72.7281 118.736L74.2611 121.298C74.3556 121.445 74.2926 121.55 74.1246 121.55H73.5471C73.3686 121.55 73.1796 121.445 73.0851 121.298L71.6361 118.904H69.6201V121.256C69.6201 121.424 69.4941 121.55 69.3261 121.55H68.8746C68.7066 121.55 68.5701 121.424 68.5701 121.256V114.756ZM71.8041 115.439H69.6201V117.927H71.8041C72.5181 117.927 73.0536 117.392 73.0536 116.678C73.0536 115.974 72.5181 115.439 71.8041 115.439ZM76.2385 121.277L79.0945 114.714C79.1575 114.567 79.315 114.462 79.4725 114.462H79.777C79.924 114.462 80.092 114.567 80.155 114.714L83.011 121.277C83.0845 121.434 83.0005 121.55 82.8325 121.55H82.3285C82.1605 121.55 81.982 121.434 81.9085 121.277L81.373 120.038H77.866L77.3305 121.277C77.2675 121.434 77.089 121.55 76.921 121.55H76.417C76.249 121.55 76.165 121.434 76.2385 121.277ZM79.63 115.953L78.286 119.072H80.9635L79.63 115.953ZM83.9172 114.756C83.9172 114.588 84.0537 114.462 84.2217 114.462H89.7867C89.9652 114.462 90.0912 114.588 90.0912 114.756V115.134C90.0912 115.302 89.9652 115.439 89.7867 115.439H87.5292V121.256C87.5292 121.424 87.4032 121.55 87.2247 121.55H86.7837C86.6052 121.55 86.4792 121.424 86.4792 121.256V115.439H84.2217C84.0537 115.439 83.9172 115.302 83.9172 115.134V114.756ZM92.335 121.256V114.756C92.335 114.588 92.4715 114.462 92.6395 114.462H93.091C93.259 114.462 93.385 114.588 93.385 114.756V121.256C93.385 121.424 93.259 121.55 93.091 121.55H92.6395C92.4715 121.55 92.335 121.424 92.335 121.256ZM96.1072 114.756C96.1072 114.588 96.2437 114.462 96.4117 114.462H96.7582C96.9157 114.462 97.1047 114.557 97.2097 114.683L101.221 119.744V114.756C101.221 114.588 101.347 114.462 101.515 114.462H101.924C102.103 114.462 102.229 114.588 102.229 114.756V121.256C102.229 121.424 102.103 121.55 101.935 121.55H101.578C101.42 121.55 101.231 121.455 101.137 121.34L97.1257 116.279V121.256C97.1257 121.424 96.9892 121.55 96.8212 121.55H96.4117C96.2437 121.55 96.1072 121.424 96.1072 121.256V114.756ZM111.97 118.032C111.959 120.09 110.405 121.676 108.337 121.676C106.268 121.676 104.693 120.101 104.693 118.001C104.693 115.911 106.289 114.336 108.421 114.336C109.765 114.336 110.909 114.977 111.55 115.964C111.634 116.111 111.581 116.279 111.413 116.331L110.951 116.51C110.909 116.52 110.878 116.531 110.836 116.531C110.72 116.531 110.594 116.468 110.521 116.363C110.059 115.733 109.303 115.344 108.421 115.344C106.919 115.344 105.775 116.489 105.775 118.001C105.775 119.523 106.888 120.668 108.305 120.668C109.502 120.668 110.531 119.87 110.783 118.715H108.452C108.284 118.715 108.148 118.578 108.148 118.41V118.032C108.148 117.864 108.284 117.738 108.452 117.738H111.665C111.833 117.738 111.97 117.875 111.97 118.032Z",
8644
+ d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8489
8645
  fill: "white"
8490
8646
  }
8491
8647
  ),
8492
8648
  /* @__PURE__ */ jsx(
8493
8649
  "path",
8494
8650
  {
8495
- d: "M43.305 64.1546C44.175 64.1546 45.045 64.7546 45.3 65.6246L50.055 80.8797L54.69 65.5046C54.915 64.7096 55.71 64.1396 56.505 64.1396H58.095C58.92 64.1396 59.715 64.7096 59.94 65.5046L64.62 80.8797L69.33 65.6246C69.555 64.7546 70.425 64.1546 71.325 64.1546H73.74C74.61 64.1546 75.06 64.7996 74.76 65.6246L67.185 88.2896C66.915 89.0396 66.135 89.6547 65.295 89.6547H63.705C62.91 89.6547 62.115 89.0846 61.89 88.2896L57.33 73.5896L52.725 88.2896C52.5 89.0846 51.705 89.6547 50.88 89.6547H49.29C48.495 89.6547 47.7 89.0546 47.445 88.2896L39.825 65.6246C39.525 64.7996 39.975 64.1546 40.875 64.1546H43.29H43.305Z",
8651
+ d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8496
8652
  fill: "white"
8497
8653
  }
8498
8654
  ),
8499
8655
  /* @__PURE__ */ jsx(
8500
8656
  "path",
8501
8657
  {
8502
- d: "M79.7252 64.1543H95.5202C96.4202 64.1543 97.0652 64.7993 97.0652 65.6993V67.5893C97.0652 68.4593 96.4202 69.1343 95.5202 69.1343H83.5652V74.3093H93.4802C94.3502 74.3093 95.0252 74.9543 95.0252 75.8243V77.7143C95.0252 78.6143 94.3502 79.2593 93.4802 79.2593H83.5652V84.7043H95.7002C96.6002 84.7043 97.2452 85.3493 97.2452 86.2193V88.1093C97.2452 88.9793 96.6002 89.6543 95.7002 89.6543H79.7252C78.8552 89.6543 78.1802 88.9793 78.1802 88.1093V65.7143C78.1802 64.8143 78.8552 64.1693 79.7252 64.1693V64.1543Z",
8658
+ d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8503
8659
  fill: "white"
8504
8660
  }
8505
8661
  ),
8506
8662
  /* @__PURE__ */ jsx(
8507
8663
  "path",
8508
8664
  {
8509
- d: "M102.525 64.1543H104.82C105.69 64.1543 106.365 64.7993 106.365 65.6993V84.7043H117.33C118.2 84.7043 118.875 85.3493 118.875 86.2193V88.1093C118.875 88.9793 118.2 89.6543 117.33 89.6543H102.525C101.655 89.6543 100.98 88.9793 100.98 88.1093V65.7143C100.98 64.8143 101.655 64.1693 102.525 64.1693V64.1543Z",
8665
+ d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8510
8666
  fill: "white"
8511
8667
  }
8512
8668
  ),
8513
8669
  /* @__PURE__ */ jsx(
8514
8670
  "path",
8515
8671
  {
8516
- d: "M123.885 64.1543H126.18C127.05 64.1543 127.725 64.7993 127.725 65.6993V84.7043H138.69C139.56 84.7043 140.235 85.3493 140.235 86.2193V88.1093C140.235 88.9793 139.56 89.6543 138.69 89.6543H123.885C123.015 89.6543 122.34 88.9793 122.34 88.1093V65.7143C122.34 64.8143 123.015 64.1693 123.885 64.1693V64.1543Z",
8672
+ d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8517
8673
  fill: "white"
8518
8674
  }
8519
8675
  )
@@ -8521,27 +8677,1438 @@ const SealIwbiMember = ({
8521
8677
  }
8522
8678
  );
8523
8679
  };
8524
- const BadgeCertificationBronze = () => {
8525
- return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "54", height: "54", viewBox: "0 0 54 54", fill: "none", className: "size-[52px]", children: [
8526
- /* @__PURE__ */ jsx("path", { d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z", fill: "#BB833A" }),
8527
- /* @__PURE__ */ jsx("path", { d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z", fill: "url(#paint0_linear_9834_265)", "fill-opacity": "0.8" }),
8528
- /* @__PURE__ */ jsx("path", { d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0492 46.8021 8.43566 45.1886C6.82216 43.5752 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43566 8.43562C10.0492 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8068 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5752 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8068 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8529
- /* @__PURE__ */ jsx("path", { d: "M32.6923 48.7839C30.8081 49.3362 28.7723 49.5636 26.8123 49.5636C24.8523 49.5636 22.8164 49.3254 20.9322 48.7839C19.048 48.2425 17.1638 47.5278 15.442 46.5099C13.7202 45.4919 12.1501 44.3116 10.7423 42.9039C9.33456 41.4961 8.15422 39.9259 7.13631 38.2041C6.1184 36.4824 5.41453 34.674 4.86226 32.7139C4.30999 30.8297 4.08258 28.7939 4.08258 26.8339C4.08258 24.8739 4.32081 22.8381 4.86226 20.9538C5.4037 19.0696 6.1184 17.1854 7.13631 15.4636C8.15422 13.7418 9.33456 12.1717 10.7423 10.7639", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8530
- /* @__PURE__ */ jsx("path", { d: "M49.5526 26.8231C49.5526 28.7831 49.3144 30.819 48.773 32.7032C48.2315 34.5874 47.5168 36.4716 46.4989 38.1934C45.481 39.9152 44.3007 41.4853 42.8929 42.8931", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8531
- /* @__PURE__ */ jsx("path", { d: "M20.9323 4.86219C22.8165 4.30992 24.8523 4.08252 26.8124 4.08252C28.7724 4.08252 30.8082 4.32075 32.6924 4.86219C34.5766 5.40364 36.4608 6.11834 38.1826 7.13625C39.9044 8.15416 41.4746 9.3345 42.8823 10.7422C44.2901 12.15 45.4704 13.7202 46.4883 15.442", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8532
- /* @__PURE__ */ jsx("path", { d: "M17.0661 43.6944C15.5825 42.8173 14.2397 41.8102 13.0377 40.5974C11.8249 39.3846 10.8178 38.0418 9.9407 36.5691C9.06357 35.0855 8.45716 33.5478 7.99152 31.8694C7.52588 30.2559 7.32013 28.5124 7.32013 26.8231", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8533
- /* @__PURE__ */ jsx("path", { d: "M45.6327 21.7767C46.0983 23.3902 46.3041 25.1337 46.3041 26.823C46.3041 28.5123 46.0983 30.2557 45.6327 31.8692C45.167 33.4827 44.5606 35.0962 43.6835 36.5689C42.8064 38.0525 41.7993 39.3952 40.5864 40.5972C39.3736 41.8101 38.0308 42.8171 36.5581 43.6943C35.0746 44.5714 33.5369 45.1778 31.8584 45.6435", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8534
- /* @__PURE__ */ jsx("path", { d: "M9.94115 17.0771C10.8183 15.5936 11.8254 14.2508 13.0382 13.0488C14.251 11.836 15.5938 10.8289 17.0665 9.95175C18.5501 9.07462 20.0878 8.4682 21.7662 8.00256C23.3797 7.53692 25.1232 7.33118 26.8125 7.33118C28.5017 7.33118 30.2452 7.53692 31.8587 8.00256C33.4722 8.4682 35.0857 9.07462 36.5584 9.95175C38.0419 10.8289 39.3847 11.836 40.5867 13.0488", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8535
- /* @__PURE__ */ jsx("path", { d: "M40.8678 34.9447C40.1423 36.1792 39.2977 37.2946 38.2906 38.3016C37.2835 39.3087 36.1573 40.1534 34.9337 40.8789C33.6992 41.6044 32.4105 42.1134 31.0136 42.5032C29.6708 42.8931 28.209 43.0663 26.812 43.0663C25.4151 43.0663 23.9532 42.8931 22.6105 42.5032C21.2677 42.1134 19.9249 41.6044 18.6904 40.8789C17.4559 40.1534 16.3406 39.3087 15.3335 38.3016C14.3264 37.2946 13.4818 36.1684 12.7562 34.9447", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8536
- /* @__PURE__ */ jsx("path", { d: "M31.014 11.1429C32.3568 11.5328 33.6995 12.0417 34.934 12.7673C36.1685 13.4928 37.2839 14.3374 38.291 15.3445C39.298 16.3516 40.1427 17.4778 40.8682 18.7015C41.5938 19.9359 42.1027 21.2246 42.4925 22.6215C42.8824 23.9643 43.0556 25.4262 43.0556 26.8231", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8537
- /* @__PURE__ */ jsx("path", { d: "M10.5688 26.8231C10.5688 25.4262 10.742 23.9643 11.1319 22.6216C11.5217 21.2788 12.0307 19.936 12.7562 18.7015C13.4817 17.467 14.3264 16.3517 15.3335 15.3446C16.3405 14.3375 17.4667 13.4929 18.6904 12.7673", stroke: "white", "stroke-width": "1.62432", "stroke-linecap": "round" }),
8538
- /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs("linearGradient", { id: "paint0_linear_9834_265", x1: "53.3446", y1: "52.8013", x2: "0.283412", y2: "0.822974", gradientUnits: "userSpaceOnUse", children: [
8539
- /* @__PURE__ */ jsx("stop", { offset: "0.173077", "stop-color": "#DCBA8E" }),
8540
- /* @__PURE__ */ jsx("stop", { offset: "0.324306", "stop-color": "#ECDDBA" }),
8541
- /* @__PURE__ */ jsx("stop", { offset: "0.484968", "stop-color": "#F2E9C9" }),
8542
- /* @__PURE__ */ jsx("stop", { offset: "0.826923", "stop-color": "#DFC196" })
8543
- ] }) })
8544
- ] });
8680
+ const SealSurveyProvider = ({ className }) => {
8681
+ return /* @__PURE__ */ jsxs(
8682
+ "svg",
8683
+ {
8684
+ width: "55",
8685
+ height: "55",
8686
+ viewBox: "0 0 55 55",
8687
+ fill: "none",
8688
+ xmlns: "http://www.w3.org/2000/svg",
8689
+ className: cn(className),
8690
+ children: [
8691
+ /* @__PURE__ */ jsx(
8692
+ "path",
8693
+ {
8694
+ d: "M27.5 0.75C42.2736 0.75 54.25 12.7264 54.25 27.5C54.25 42.2736 42.2736 54.25 27.5 54.25C12.7264 54.25 0.75 42.2736 0.75 27.5C0.75 12.7264 12.7264 0.75 27.5 0.75Z",
8695
+ fill: "#52545D",
8696
+ stroke: "#9FA2AB",
8697
+ strokeWidth: "1.5"
8698
+ }
8699
+ ),
8700
+ /* @__PURE__ */ jsx(
8701
+ "path",
8702
+ {
8703
+ d: "M43.3533 27.4994C43.3533 28.9184 43.1666 30.2945 42.8171 31.6037C42.4549 32.9587 41.918 34.2417 41.2317 35.4276C40.5356 36.6304 39.6865 37.7338 38.71 38.7097C37.7334 39.6855 36.6307 40.5353 35.4279 41.2314C34.242 41.9177 32.959 42.4546 31.604 42.8168C30.249 43.179 28.9194 43.353 27.4997 43.353C26.0799 43.353 24.7045 43.1663 23.3953 42.8168C22.0404 42.4546 20.7573 41.9177 19.5714 41.2314C18.3687 40.5353 17.2652 39.6862 16.2894 38.7097C15.3135 37.7338 14.4637 36.6304 13.7676 35.4276C13.0813 34.2417 12.5444 32.9587 12.1822 31.6037C11.832 30.2945 11.646 28.9191 11.646 27.4994C11.646 26.0796 11.8327 24.7042 12.1822 23.395C12.5444 22.0401 13.0813 20.757 13.7676 19.5711C14.4637 18.3684 15.3128 17.2649 16.2894 16.2891",
8704
+ stroke: "#9FA2AB",
8705
+ strokeWidth: "1.5",
8706
+ strokeMiterlimit: "10"
8707
+ }
8708
+ ),
8709
+ /* @__PURE__ */ jsx(
8710
+ "path",
8711
+ {
8712
+ d: "M6.94081 33.0085C6.47154 31.2512 6.2207 29.4051 6.2207 27.4998C6.2207 25.5946 6.47084 23.7478 6.94081 21.9912C7.42699 20.1726 8.1478 18.4506 9.06872 16.8589C10.003 15.2446 11.1431 13.7642 12.4537 12.4537C13.7642 11.1431 15.2446 10.003 16.8589 9.06872C18.4506 8.1478 20.1733 7.42699 21.9912 6.94081C23.7485 6.47154 25.5946 6.2207 27.4998 6.2207",
8713
+ stroke: "#9FA2AB",
8714
+ strokeWidth: "1.5",
8715
+ strokeMiterlimit: "10"
8716
+ }
8717
+ ),
8718
+ /* @__PURE__ */ jsx(
8719
+ "path",
8720
+ {
8721
+ d: "M45.9309 38.1416C44.9966 39.7559 43.8565 41.2362 42.546 42.5468C41.2354 43.8574 39.755 44.9974 38.1408 45.9317C36.5491 46.8527 34.8263 47.5735 33.0084 48.0596C31.2511 48.5289 29.405 48.7798 27.4998 48.7798C25.5945 48.7798 23.7478 48.5296 21.9912 48.0596C20.1726 47.5735 18.4505 46.8527 16.8588 45.9317C15.2446 44.9974 13.7642 43.8574 12.4536 42.5468",
8722
+ stroke: "#9FA2AB",
8723
+ strokeWidth: "1.5",
8724
+ strokeMiterlimit: "10"
8725
+ }
8726
+ ),
8727
+ /* @__PURE__ */ jsx(
8728
+ "path",
8729
+ {
8730
+ d: "M16.2898 18.2622C17.3794 18.2622 18.2627 17.3789 18.2627 16.2893C18.2627 15.1997 17.3794 14.3164 16.2898 14.3164C15.2002 14.3164 14.3169 15.1997 14.3169 16.2893C14.3169 17.3789 15.2002 18.2622 16.2898 18.2622Z",
8731
+ fill: "white"
8732
+ }
8733
+ ),
8734
+ /* @__PURE__ */ jsx(
8735
+ "path",
8736
+ {
8737
+ d: "M27.5002 8.19385C28.5898 8.19385 29.4731 7.31055 29.4731 6.22095C29.4731 5.13134 28.5898 4.24805 27.5002 4.24805C26.4106 4.24805 25.5273 5.13134 25.5273 6.22095C25.5273 7.31055 26.4106 8.19385 27.5002 8.19385Z",
8738
+ fill: "white"
8739
+ }
8740
+ ),
8741
+ /* @__PURE__ */ jsx(
8742
+ "path",
8743
+ {
8744
+ d: "M6.94116 34.9819C8.03076 34.9819 8.91406 34.0986 8.91406 33.009C8.91406 31.9194 8.03076 31.0361 6.94116 31.0361C5.85156 31.0361 4.96826 31.9194 4.96826 33.009C4.96826 34.0986 5.85156 34.9819 6.94116 34.9819Z",
8745
+ fill: "white"
8746
+ }
8747
+ ),
8748
+ /* @__PURE__ */ jsx(
8749
+ "path",
8750
+ {
8751
+ d: "M12.4534 44.52C13.543 44.52 14.4263 43.6367 14.4263 42.5471C14.4263 41.4575 13.543 40.5742 12.4534 40.5742C11.3638 40.5742 10.4805 41.4575 10.4805 42.5471C10.4805 43.6367 11.3638 44.52 12.4534 44.52Z",
8752
+ fill: "white"
8753
+ }
8754
+ ),
8755
+ /* @__PURE__ */ jsx(
8756
+ "path",
8757
+ {
8758
+ d: "M43.3538 29.4731C44.4434 29.4731 45.3267 28.5898 45.3267 27.5002C45.3267 26.4106 44.4434 25.5273 43.3538 25.5273C42.2642 25.5273 41.3809 26.4106 41.3809 27.5002C41.3809 28.5898 42.2642 29.4731 43.3538 29.4731Z",
8759
+ fill: "white"
8760
+ }
8761
+ ),
8762
+ /* @__PURE__ */ jsx(
8763
+ "path",
8764
+ {
8765
+ d: "M45.9314 40.1147C47.021 40.1147 47.9043 39.2314 47.9043 38.1418C47.9043 37.0522 47.021 36.1689 45.9314 36.1689C44.8418 36.1689 43.9585 37.0522 43.9585 38.1418C43.9585 39.2314 44.8418 40.1147 45.9314 40.1147Z",
8766
+ fill: "white"
8767
+ }
8768
+ )
8769
+ ]
8770
+ }
8771
+ );
8772
+ };
8773
+ const BadgeCertificationBronze = ({
8774
+ className
8775
+ }) => {
8776
+ return /* @__PURE__ */ jsxs(
8777
+ "svg",
8778
+ {
8779
+ xmlns: "http://www.w3.org/2000/svg",
8780
+ width: "54",
8781
+ height: "54",
8782
+ viewBox: "0 0 54 54",
8783
+ fill: "none",
8784
+ className: cn("size-[52px]", className),
8785
+ children: [
8786
+ /* @__PURE__ */ jsx(
8787
+ "path",
8788
+ {
8789
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
8790
+ fill: "#BB833A"
8791
+ }
8792
+ ),
8793
+ /* @__PURE__ */ jsx(
8794
+ "path",
8795
+ {
8796
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
8797
+ fill: "url(#paint0_linear_9834_265)",
8798
+ "fill-opacity": "0.8"
8799
+ }
8800
+ ),
8801
+ /* @__PURE__ */ jsx(
8802
+ "path",
8803
+ {
8804
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0492 46.8021 8.43566 45.1886C6.82216 43.5752 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43566 8.43562C10.0492 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8068 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5752 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8068 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
8805
+ stroke: "white",
8806
+ strokeWidth: "1.62432",
8807
+ strokeLinecap: "round"
8808
+ }
8809
+ ),
8810
+ /* @__PURE__ */ jsx(
8811
+ "path",
8812
+ {
8813
+ d: "M32.6923 48.7839C30.8081 49.3362 28.7723 49.5636 26.8123 49.5636C24.8523 49.5636 22.8164 49.3254 20.9322 48.7839C19.048 48.2425 17.1638 47.5278 15.442 46.5099C13.7202 45.4919 12.1501 44.3116 10.7423 42.9039C9.33456 41.4961 8.15422 39.9259 7.13631 38.2041C6.1184 36.4824 5.41453 34.674 4.86226 32.7139C4.30999 30.8297 4.08258 28.7939 4.08258 26.8339C4.08258 24.8739 4.32081 22.8381 4.86226 20.9538C5.4037 19.0696 6.1184 17.1854 7.13631 15.4636C8.15422 13.7418 9.33456 12.1717 10.7423 10.7639",
8814
+ stroke: "white",
8815
+ strokeWidth: "1.62432",
8816
+ strokeLinecap: "round"
8817
+ }
8818
+ ),
8819
+ /* @__PURE__ */ jsx(
8820
+ "path",
8821
+ {
8822
+ d: "M49.5526 26.8231C49.5526 28.7831 49.3144 30.819 48.773 32.7032C48.2315 34.5874 47.5168 36.4716 46.4989 38.1934C45.481 39.9152 44.3007 41.4853 42.8929 42.8931",
8823
+ stroke: "white",
8824
+ strokeWidth: "1.62432",
8825
+ strokeLinecap: "round"
8826
+ }
8827
+ ),
8828
+ /* @__PURE__ */ jsx(
8829
+ "path",
8830
+ {
8831
+ d: "M20.9323 4.86219C22.8165 4.30992 24.8523 4.08252 26.8124 4.08252C28.7724 4.08252 30.8082 4.32075 32.6924 4.86219C34.5766 5.40364 36.4608 6.11834 38.1826 7.13625C39.9044 8.15416 41.4746 9.3345 42.8823 10.7422C44.2901 12.15 45.4704 13.7202 46.4883 15.442",
8832
+ stroke: "white",
8833
+ strokeWidth: "1.62432",
8834
+ strokeLinecap: "round"
8835
+ }
8836
+ ),
8837
+ /* @__PURE__ */ jsx(
8838
+ "path",
8839
+ {
8840
+ d: "M17.0661 43.6944C15.5825 42.8173 14.2397 41.8102 13.0377 40.5974C11.8249 39.3846 10.8178 38.0418 9.9407 36.5691C9.06357 35.0855 8.45716 33.5478 7.99152 31.8694C7.52588 30.2559 7.32013 28.5124 7.32013 26.8231",
8841
+ stroke: "white",
8842
+ strokeWidth: "1.62432",
8843
+ strokeLinecap: "round"
8844
+ }
8845
+ ),
8846
+ /* @__PURE__ */ jsx(
8847
+ "path",
8848
+ {
8849
+ d: "M45.6327 21.7767C46.0983 23.3902 46.3041 25.1337 46.3041 26.823C46.3041 28.5123 46.0983 30.2557 45.6327 31.8692C45.167 33.4827 44.5606 35.0962 43.6835 36.5689C42.8064 38.0525 41.7993 39.3952 40.5864 40.5972C39.3736 41.8101 38.0308 42.8171 36.5581 43.6943C35.0746 44.5714 33.5369 45.1778 31.8584 45.6435",
8850
+ stroke: "white",
8851
+ strokeWidth: "1.62432",
8852
+ strokeLinecap: "round"
8853
+ }
8854
+ ),
8855
+ /* @__PURE__ */ jsx(
8856
+ "path",
8857
+ {
8858
+ d: "M9.94115 17.0771C10.8183 15.5936 11.8254 14.2508 13.0382 13.0488C14.251 11.836 15.5938 10.8289 17.0665 9.95175C18.5501 9.07462 20.0878 8.4682 21.7662 8.00256C23.3797 7.53692 25.1232 7.33118 26.8125 7.33118C28.5017 7.33118 30.2452 7.53692 31.8587 8.00256C33.4722 8.4682 35.0857 9.07462 36.5584 9.95175C38.0419 10.8289 39.3847 11.836 40.5867 13.0488",
8859
+ stroke: "white",
8860
+ strokeWidth: "1.62432",
8861
+ strokeLinecap: "round"
8862
+ }
8863
+ ),
8864
+ /* @__PURE__ */ jsx(
8865
+ "path",
8866
+ {
8867
+ d: "M40.8678 34.9447C40.1423 36.1792 39.2977 37.2946 38.2906 38.3016C37.2835 39.3087 36.1573 40.1534 34.9337 40.8789C33.6992 41.6044 32.4105 42.1134 31.0136 42.5032C29.6708 42.8931 28.209 43.0663 26.812 43.0663C25.4151 43.0663 23.9532 42.8931 22.6105 42.5032C21.2677 42.1134 19.9249 41.6044 18.6904 40.8789C17.4559 40.1534 16.3406 39.3087 15.3335 38.3016C14.3264 37.2946 13.4818 36.1684 12.7562 34.9447",
8868
+ stroke: "white",
8869
+ strokeWidth: "1.62432",
8870
+ strokeLinecap: "round"
8871
+ }
8872
+ ),
8873
+ /* @__PURE__ */ jsx(
8874
+ "path",
8875
+ {
8876
+ d: "M31.014 11.1429C32.3568 11.5328 33.6995 12.0417 34.934 12.7673C36.1685 13.4928 37.2839 14.3374 38.291 15.3445C39.298 16.3516 40.1427 17.4778 40.8682 18.7015C41.5938 19.9359 42.1027 21.2246 42.4925 22.6215C42.8824 23.9643 43.0556 25.4262 43.0556 26.8231",
8877
+ stroke: "white",
8878
+ strokeWidth: "1.62432",
8879
+ strokeLinecap: "round"
8880
+ }
8881
+ ),
8882
+ /* @__PURE__ */ jsx(
8883
+ "path",
8884
+ {
8885
+ d: "M10.5688 26.8231C10.5688 25.4262 10.742 23.9643 11.1319 22.6216C11.5217 21.2788 12.0307 19.936 12.7562 18.7015C13.4817 17.467 14.3264 16.3517 15.3335 15.3446C16.3405 14.3375 17.4667 13.4929 18.6904 12.7673",
8886
+ stroke: "white",
8887
+ strokeWidth: "1.62432",
8888
+ strokeLinecap: "round"
8889
+ }
8890
+ ),
8891
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
8892
+ "linearGradient",
8893
+ {
8894
+ id: "paint0_linear_9834_265",
8895
+ x1: "53.3446",
8896
+ y1: "52.8013",
8897
+ x2: "0.283412",
8898
+ y2: "0.822974",
8899
+ gradientUnits: "userSpaceOnUse",
8900
+ children: [
8901
+ /* @__PURE__ */ jsx("stop", { offset: "0.173077", "stop-color": "#DCBA8E" }),
8902
+ /* @__PURE__ */ jsx("stop", { offset: "0.324306", "stop-color": "#ECDDBA" }),
8903
+ /* @__PURE__ */ jsx("stop", { offset: "0.484968", "stop-color": "#F2E9C9" }),
8904
+ /* @__PURE__ */ jsx("stop", { offset: "0.826923", "stop-color": "#DFC196" })
8905
+ ]
8906
+ }
8907
+ ) })
8908
+ ]
8909
+ }
8910
+ );
8911
+ };
8912
+ const BadgeCertificationSilver = ({
8913
+ className
8914
+ }) => {
8915
+ return /* @__PURE__ */ jsxs(
8916
+ "svg",
8917
+ {
8918
+ xmlns: "http://www.w3.org/2000/svg",
8919
+ width: "54",
8920
+ height: "54",
8921
+ viewBox: "0 0 54 54",
8922
+ fill: "none",
8923
+ className: cn("size-[54px]", className),
8924
+ children: [
8925
+ /* @__PURE__ */ jsx(
8926
+ "path",
8927
+ {
8928
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
8929
+ fill: "#8190A1"
8930
+ }
8931
+ ),
8932
+ /* @__PURE__ */ jsx(
8933
+ "path",
8934
+ {
8935
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
8936
+ fill: "url(#paint0_linear_9834_296)",
8937
+ "fill-opacity": "0.8"
8938
+ }
8939
+ ),
8940
+ /* @__PURE__ */ jsx(
8941
+ "path",
8942
+ {
8943
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0492 46.8021 8.43566 45.1886C6.82216 43.5752 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43566 8.43562C10.0492 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8068 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5752 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8068 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
8944
+ stroke: "white",
8945
+ strokeWidth: "1.62432",
8946
+ strokeLinecap: "round"
8947
+ }
8948
+ ),
8949
+ /* @__PURE__ */ jsx(
8950
+ "path",
8951
+ {
8952
+ d: "M32.6923 48.7839C30.8081 49.3362 28.7723 49.5636 26.8123 49.5636C24.8523 49.5636 22.8164 49.3254 20.9322 48.7839C19.048 48.2425 17.1638 47.5278 15.442 46.5099C13.7202 45.4919 12.1501 44.3116 10.7423 42.9039C9.33456 41.4961 8.15422 39.9259 7.13631 38.2041C6.1184 36.4824 5.41453 34.674 4.86226 32.7139C4.30999 30.8297 4.08258 28.7939 4.08258 26.8339C4.08258 24.8739 4.32081 22.8381 4.86226 20.9538C5.4037 19.0696 6.1184 17.1854 7.13631 15.4636C8.15422 13.7418 9.33456 12.1717 10.7423 10.7639",
8953
+ stroke: "white",
8954
+ strokeWidth: "1.62432",
8955
+ strokeLinecap: "round"
8956
+ }
8957
+ ),
8958
+ /* @__PURE__ */ jsx(
8959
+ "path",
8960
+ {
8961
+ d: "M49.5526 26.8231C49.5526 28.7831 49.3144 30.819 48.773 32.7032C48.2315 34.5874 47.5168 36.4716 46.4989 38.1934C45.481 39.9152 44.3007 41.4853 42.8929 42.8931",
8962
+ stroke: "white",
8963
+ strokeWidth: "1.62432",
8964
+ strokeLinecap: "round"
8965
+ }
8966
+ ),
8967
+ /* @__PURE__ */ jsx(
8968
+ "path",
8969
+ {
8970
+ d: "M20.9323 4.86219C22.8165 4.30992 24.8523 4.08252 26.8124 4.08252C28.7724 4.08252 30.8082 4.32075 32.6924 4.86219C34.5766 5.40364 36.4608 6.11834 38.1826 7.13625C39.9044 8.15416 41.4746 9.3345 42.8823 10.7422C44.2901 12.15 45.4704 13.7202 46.4883 15.442",
8971
+ stroke: "white",
8972
+ strokeWidth: "1.62432",
8973
+ strokeLinecap: "round"
8974
+ }
8975
+ ),
8976
+ /* @__PURE__ */ jsx(
8977
+ "path",
8978
+ {
8979
+ d: "M17.0661 43.6944C15.5825 42.8173 14.2397 41.8102 13.0377 40.5974C11.8249 39.3846 10.8178 38.0418 9.9407 36.5691C9.06357 35.0855 8.45716 33.5478 7.99152 31.8694C7.52588 30.2559 7.32013 28.5124 7.32013 26.8231",
8980
+ stroke: "white",
8981
+ strokeWidth: "1.62432",
8982
+ strokeLinecap: "round"
8983
+ }
8984
+ ),
8985
+ /* @__PURE__ */ jsx(
8986
+ "path",
8987
+ {
8988
+ d: "M45.6327 21.7767C46.0983 23.3902 46.3041 25.1337 46.3041 26.823C46.3041 28.5123 46.0983 30.2557 45.6327 31.8692C45.167 33.4827 44.5606 35.0962 43.6835 36.5689C42.8064 38.0525 41.7993 39.3952 40.5864 40.5972C39.3736 41.8101 38.0308 42.8171 36.5581 43.6943C35.0746 44.5714 33.5369 45.1778 31.8584 45.6435",
8989
+ stroke: "white",
8990
+ strokeWidth: "1.62432",
8991
+ strokeLinecap: "round"
8992
+ }
8993
+ ),
8994
+ /* @__PURE__ */ jsx(
8995
+ "path",
8996
+ {
8997
+ d: "M9.94115 17.0771C10.8183 15.5936 11.8254 14.2508 13.0382 13.0488C14.251 11.836 15.5938 10.8289 17.0665 9.95175C18.5501 9.07462 20.0878 8.4682 21.7662 8.00256C23.3797 7.53692 25.1232 7.33118 26.8125 7.33118C28.5017 7.33118 30.2452 7.53692 31.8587 8.00256C33.4722 8.4682 35.0857 9.07462 36.5584 9.95175C38.0419 10.8289 39.3847 11.836 40.5867 13.0488",
8998
+ stroke: "white",
8999
+ strokeWidth: "1.62432",
9000
+ strokeLinecap: "round"
9001
+ }
9002
+ ),
9003
+ /* @__PURE__ */ jsx(
9004
+ "path",
9005
+ {
9006
+ d: "M40.8678 34.9447C40.1423 36.1792 39.2977 37.2946 38.2906 38.3016C37.2835 39.3087 36.1573 40.1534 34.9337 40.8789C33.6992 41.6044 32.4105 42.1134 31.0136 42.5032C29.6708 42.8931 28.209 43.0663 26.812 43.0663C25.4151 43.0663 23.9532 42.8931 22.6105 42.5032C21.2677 42.1134 19.9249 41.6044 18.6904 40.8789C17.4559 40.1534 16.3406 39.3087 15.3335 38.3016C14.3264 37.2946 13.4818 36.1684 12.7562 34.9447",
9007
+ stroke: "white",
9008
+ strokeWidth: "1.62432",
9009
+ strokeLinecap: "round"
9010
+ }
9011
+ ),
9012
+ /* @__PURE__ */ jsx(
9013
+ "path",
9014
+ {
9015
+ d: "M31.014 11.1429C32.3568 11.5328 33.6995 12.0417 34.934 12.7673C36.1685 13.4928 37.2839 14.3374 38.291 15.3445C39.298 16.3516 40.1427 17.4778 40.8682 18.7015C41.5938 19.9359 42.1027 21.2246 42.4925 22.6215C42.8824 23.9643 43.0556 25.4262 43.0556 26.8231",
9016
+ stroke: "white",
9017
+ strokeWidth: "1.62432",
9018
+ strokeLinecap: "round"
9019
+ }
9020
+ ),
9021
+ /* @__PURE__ */ jsx(
9022
+ "path",
9023
+ {
9024
+ d: "M10.5688 26.8231C10.5688 25.4262 10.742 23.9643 11.1319 22.6216C11.5217 21.2788 12.0307 19.936 12.7562 18.7015C13.4817 17.467 14.3264 16.3517 15.3335 15.3446C16.3405 14.3375 17.4667 13.4929 18.6904 12.7673",
9025
+ stroke: "white",
9026
+ strokeWidth: "1.62432",
9027
+ strokeLinecap: "round"
9028
+ }
9029
+ ),
9030
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
9031
+ "linearGradient",
9032
+ {
9033
+ id: "paint0_linear_9834_296",
9034
+ x1: "53.3446",
9035
+ y1: "52.8013",
9036
+ x2: "0.283412",
9037
+ y2: "0.822974",
9038
+ gradientUnits: "userSpaceOnUse",
9039
+ children: [
9040
+ /* @__PURE__ */ jsx("stop", { offset: "0.173077", "stop-color": "#BCC4CD" }),
9041
+ /* @__PURE__ */ jsx("stop", { offset: "0.324306", "stop-color": "#FCFCFD" }),
9042
+ /* @__PURE__ */ jsx("stop", { offset: "0.484968", "stop-color": "#FCFCFD" }),
9043
+ /* @__PURE__ */ jsx("stop", { offset: "0.826923", "stop-color": "#BCC4CD" })
9044
+ ]
9045
+ }
9046
+ ) })
9047
+ ]
9048
+ }
9049
+ );
9050
+ };
9051
+ const BadgeCertificationGold = ({
9052
+ className
9053
+ }) => {
9054
+ return /* @__PURE__ */ jsxs(
9055
+ "svg",
9056
+ {
9057
+ xmlns: "http://www.w3.org/2000/svg",
9058
+ width: "54",
9059
+ height: "54",
9060
+ viewBox: "0 0 54 54",
9061
+ fill: "none",
9062
+ className: cn("size-[54px]", className),
9063
+ children: [
9064
+ /* @__PURE__ */ jsx(
9065
+ "path",
9066
+ {
9067
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
9068
+ fill: "#CDAE28"
9069
+ }
9070
+ ),
9071
+ /* @__PURE__ */ jsx(
9072
+ "path",
9073
+ {
9074
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
9075
+ fill: "url(#paint0_linear_9834_327)",
9076
+ "fill-opacity": "0.8"
9077
+ }
9078
+ ),
9079
+ /* @__PURE__ */ jsx(
9080
+ "path",
9081
+ {
9082
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0492 46.8021 8.43566 45.1886C6.82216 43.5752 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43566 8.43562C10.0492 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8068 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5752 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8068 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
9083
+ stroke: "white",
9084
+ "stroke-width": "1.62432",
9085
+ "stroke-linecap": "round"
9086
+ }
9087
+ ),
9088
+ /* @__PURE__ */ jsx(
9089
+ "path",
9090
+ {
9091
+ d: "M32.6923 48.7839C30.8081 49.3362 28.7723 49.5636 26.8123 49.5636C24.8523 49.5636 22.8165 49.3254 20.9322 48.7839C19.048 48.2425 17.1638 47.5278 15.442 46.5099C13.7202 45.4919 12.1501 44.3116 10.7423 42.9039C9.33457 41.4961 8.15423 39.9259 7.13632 38.2041C6.11841 36.4824 5.41454 34.674 4.86227 32.7139C4.31 30.8297 4.0826 28.7939 4.0826 26.8339C4.0826 24.8739 4.32083 22.8381 4.86227 20.9538C5.40371 19.0696 6.11841 17.1854 7.13632 15.4636C8.15423 13.7418 9.33457 12.1717 10.7423 10.7639",
9092
+ stroke: "white",
9093
+ "stroke-width": "1.62432",
9094
+ "stroke-linecap": "round"
9095
+ }
9096
+ ),
9097
+ /* @__PURE__ */ jsx(
9098
+ "path",
9099
+ {
9100
+ d: "M49.5526 26.8231C49.5526 28.7831 49.3144 30.819 48.773 32.7032C48.2315 34.5874 47.5168 36.4716 46.4989 38.1934C45.481 39.9152 44.3007 41.4853 42.8929 42.8931",
9101
+ stroke: "white",
9102
+ "stroke-width": "1.62432",
9103
+ "stroke-linecap": "round"
9104
+ }
9105
+ ),
9106
+ /* @__PURE__ */ jsx(
9107
+ "path",
9108
+ {
9109
+ d: "M20.9323 4.86219C22.8165 4.30992 24.8523 4.08252 26.8124 4.08252C28.7724 4.08252 30.8082 4.32075 32.6924 4.86219C34.5766 5.40364 36.4608 6.11834 38.1826 7.13625C39.9044 8.15416 41.4746 9.3345 42.8823 10.7422C44.2901 12.15 45.4704 13.7202 46.4883 15.442",
9110
+ stroke: "white",
9111
+ "stroke-width": "1.62432",
9112
+ "stroke-linecap": "round"
9113
+ }
9114
+ ),
9115
+ /* @__PURE__ */ jsx(
9116
+ "path",
9117
+ {
9118
+ d: "M17.0661 43.6944C15.5825 42.8173 14.2398 41.8102 13.0378 40.5974C11.8249 39.3846 10.8179 38.0418 9.94072 36.5691C9.06359 35.0855 8.45717 33.5478 7.99153 31.8694C7.52589 30.2559 7.32014 28.5124 7.32014 26.8231",
9119
+ stroke: "white",
9120
+ "stroke-width": "1.62432",
9121
+ "stroke-linecap": "round"
9122
+ }
9123
+ ),
9124
+ /* @__PURE__ */ jsx(
9125
+ "path",
9126
+ {
9127
+ d: "M45.6327 21.7767C46.0983 23.3902 46.3041 25.1337 46.3041 26.823C46.3041 28.5123 46.0983 30.2557 45.6327 31.8692C45.167 33.4827 44.5606 35.0962 43.6835 36.5689C42.8064 38.0525 41.7993 39.3952 40.5864 40.5972C39.3736 41.8101 38.0308 42.8171 36.5581 43.6943C35.0746 44.5714 33.5369 45.1778 31.8584 45.6435",
9128
+ stroke: "white",
9129
+ "stroke-width": "1.62432",
9130
+ "stroke-linecap": "round"
9131
+ }
9132
+ ),
9133
+ /* @__PURE__ */ jsx(
9134
+ "path",
9135
+ {
9136
+ d: "M9.94115 17.0771C10.8183 15.5936 11.8254 14.2508 13.0382 13.0488C14.251 11.836 15.5938 10.8289 17.0665 9.95175C18.5501 9.07462 20.0878 8.4682 21.7662 8.00256C23.3797 7.53692 25.1232 7.33118 26.8125 7.33118C28.5017 7.33118 30.2452 7.53692 31.8587 8.00256C33.4722 8.4682 35.0857 9.07462 36.5584 9.95175C38.0419 10.8289 39.3847 11.836 40.5867 13.0488",
9137
+ stroke: "white",
9138
+ "stroke-width": "1.62432",
9139
+ "stroke-linecap": "round"
9140
+ }
9141
+ ),
9142
+ /* @__PURE__ */ jsx(
9143
+ "path",
9144
+ {
9145
+ d: "M40.8678 34.9447C40.1423 36.1792 39.2977 37.2946 38.2906 38.3016C37.2835 39.3087 36.1573 40.1534 34.9337 40.8789C33.6992 41.6044 32.4105 42.1134 31.0136 42.5032C29.6708 42.8931 28.209 43.0663 26.812 43.0663C25.4151 43.0663 23.9532 42.8931 22.6105 42.5032C21.2677 42.1134 19.9249 41.6044 18.6904 40.8789C17.4559 40.1534 16.3406 39.3087 15.3335 38.3016C14.3264 37.2946 13.4818 36.1684 12.7562 34.9447",
9146
+ stroke: "white",
9147
+ "stroke-width": "1.62432",
9148
+ "stroke-linecap": "round"
9149
+ }
9150
+ ),
9151
+ /* @__PURE__ */ jsx(
9152
+ "path",
9153
+ {
9154
+ d: "M31.014 11.1429C32.3568 11.5328 33.6995 12.0417 34.934 12.7673C36.1685 13.4928 37.2839 14.3374 38.291 15.3445C39.298 16.3516 40.1427 17.4778 40.8682 18.7015C41.5938 19.9359 42.1027 21.2246 42.4925 22.6215C42.8824 23.9643 43.0556 25.4262 43.0556 26.8231",
9155
+ stroke: "white",
9156
+ "stroke-width": "1.62432",
9157
+ "stroke-linecap": "round"
9158
+ }
9159
+ ),
9160
+ /* @__PURE__ */ jsx(
9161
+ "path",
9162
+ {
9163
+ d: "M10.5688 26.8231C10.5688 25.4262 10.742 23.9643 11.1319 22.6216C11.5217 21.2788 12.0307 19.936 12.7562 18.7015C13.4817 17.467 14.3264 16.3517 15.3335 15.3446C16.3405 14.3375 17.4667 13.4929 18.6904 12.7673",
9164
+ stroke: "white",
9165
+ "stroke-width": "1.62432",
9166
+ "stroke-linecap": "round"
9167
+ }
9168
+ ),
9169
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
9170
+ "linearGradient",
9171
+ {
9172
+ id: "paint0_linear_9834_327",
9173
+ x1: "53.3446",
9174
+ y1: "52.8013",
9175
+ x2: "0.283412",
9176
+ y2: "0.822974",
9177
+ gradientUnits: "userSpaceOnUse",
9178
+ children: [
9179
+ /* @__PURE__ */ jsx("stop", { offset: "0.173077", "stop-color": "#EADA94" }),
9180
+ /* @__PURE__ */ jsx("stop", { offset: "0.365337", "stop-color": "white" }),
9181
+ /* @__PURE__ */ jsx("stop", { offset: "0.542584", "stop-color": "#F6EFD0" }),
9182
+ /* @__PURE__ */ jsx("stop", { offset: "0.826923", "stop-color": "#EEE2AA" })
9183
+ ]
9184
+ }
9185
+ ) })
9186
+ ]
9187
+ }
9188
+ );
9189
+ };
9190
+ const BadgeCertificationPlatinum = ({
9191
+ className
9192
+ }) => {
9193
+ return /* @__PURE__ */ jsxs(
9194
+ "svg",
9195
+ {
9196
+ xmlns: "http://www.w3.org/2000/svg",
9197
+ width: "54",
9198
+ height: "54",
9199
+ viewBox: "0 0 54 54",
9200
+ fill: "none",
9201
+ className: cn("size-[54px]", className),
9202
+ children: [
9203
+ /* @__PURE__ */ jsx(
9204
+ "path",
9205
+ {
9206
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
9207
+ fill: "#B4B3BC"
9208
+ }
9209
+ ),
9210
+ /* @__PURE__ */ jsx(
9211
+ "path",
9212
+ {
9213
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
9214
+ fill: "url(#paint0_linear_9834_358)",
9215
+ "fill-opacity": "0.8"
9216
+ }
9217
+ ),
9218
+ /* @__PURE__ */ jsx(
9219
+ "path",
9220
+ {
9221
+ d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0492 46.8021 8.43566 45.1886C6.82216 43.5752 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43566 8.43562C10.0492 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8068 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5752 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8068 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
9222
+ stroke: "white",
9223
+ strokeWidth: "1.62432",
9224
+ strokeLinecap: "round"
9225
+ }
9226
+ ),
9227
+ /* @__PURE__ */ jsx(
9228
+ "path",
9229
+ {
9230
+ d: "M32.6923 48.7839C30.8081 49.3362 28.7723 49.5636 26.8123 49.5636C24.8523 49.5636 22.8165 49.3254 20.9322 48.7839C19.048 48.2425 17.1638 47.5278 15.442 46.5099C13.7202 45.4919 12.1501 44.3116 10.7423 42.9039C9.33457 41.4961 8.15423 39.9259 7.13632 38.2041C6.11841 36.4824 5.41454 34.674 4.86227 32.7139C4.31 30.8297 4.0826 28.7939 4.0826 26.8339C4.0826 24.8739 4.32083 22.8381 4.86227 20.9538C5.40371 19.0696 6.11841 17.1854 7.13632 15.4636C8.15423 13.7418 9.33457 12.1717 10.7423 10.7639",
9231
+ stroke: "white",
9232
+ strokeWidth: "1.62432",
9233
+ strokeLinecap: "round"
9234
+ }
9235
+ ),
9236
+ /* @__PURE__ */ jsx(
9237
+ "path",
9238
+ {
9239
+ d: "M49.5526 26.8231C49.5526 28.7831 49.3144 30.819 48.773 32.7032C48.2315 34.5874 47.5168 36.4716 46.4989 38.1934C45.481 39.9152 44.3007 41.4853 42.8929 42.8931",
9240
+ stroke: "white",
9241
+ strokeWidth: "1.62432",
9242
+ strokeLinecap: "round"
9243
+ }
9244
+ ),
9245
+ /* @__PURE__ */ jsx(
9246
+ "path",
9247
+ {
9248
+ d: "M20.9323 4.86219C22.8165 4.30992 24.8523 4.08252 26.8124 4.08252C28.7724 4.08252 30.8082 4.32075 32.6924 4.86219C34.5766 5.40364 36.4608 6.11834 38.1826 7.13625C39.9044 8.15416 41.4746 9.3345 42.8823 10.7422C44.2901 12.15 45.4704 13.7202 46.4883 15.442",
9249
+ stroke: "white",
9250
+ strokeWidth: "1.62432",
9251
+ strokeLinecap: "round"
9252
+ }
9253
+ ),
9254
+ /* @__PURE__ */ jsx(
9255
+ "path",
9256
+ {
9257
+ d: "M17.0661 43.6944C15.5825 42.8173 14.2397 41.8102 13.0377 40.5974C11.8249 39.3846 10.8178 38.0418 9.9407 36.5691C9.06357 35.0855 8.45716 33.5478 7.99152 31.8694C7.52588 30.2559 7.32013 28.5124 7.32013 26.8231",
9258
+ stroke: "white",
9259
+ strokeWidth: "1.62432",
9260
+ strokeLinecap: "round"
9261
+ }
9262
+ ),
9263
+ /* @__PURE__ */ jsx(
9264
+ "path",
9265
+ {
9266
+ d: "M45.6327 21.7767C46.0983 23.3902 46.3041 25.1337 46.3041 26.823C46.3041 28.5123 46.0983 30.2557 45.6327 31.8692C45.167 33.4827 44.5606 35.0962 43.6835 36.5689C42.8064 38.0525 41.7993 39.3952 40.5864 40.5972C39.3736 41.8101 38.0308 42.8171 36.5581 43.6943C35.0746 44.5714 33.5369 45.1778 31.8584 45.6435",
9267
+ stroke: "white",
9268
+ strokeWidth: "1.62432",
9269
+ strokeLinecap: "round"
9270
+ }
9271
+ ),
9272
+ /* @__PURE__ */ jsx(
9273
+ "path",
9274
+ {
9275
+ d: "M9.94115 17.0771C10.8183 15.5936 11.8254 14.2508 13.0382 13.0488C14.251 11.836 15.5938 10.8289 17.0665 9.95175C18.5501 9.07462 20.0878 8.4682 21.7662 8.00256C23.3797 7.53692 25.1232 7.33118 26.8125 7.33118C28.5017 7.33118 30.2452 7.53692 31.8587 8.00256C33.4722 8.4682 35.0857 9.07462 36.5584 9.95175C38.0419 10.8289 39.3847 11.836 40.5867 13.0488",
9276
+ stroke: "white",
9277
+ strokeWidth: "1.62432",
9278
+ strokeLinecap: "round"
9279
+ }
9280
+ ),
9281
+ /* @__PURE__ */ jsx(
9282
+ "path",
9283
+ {
9284
+ d: "M40.8678 34.9447C40.1423 36.1792 39.2977 37.2946 38.2906 38.3016C37.2835 39.3087 36.1573 40.1534 34.9337 40.8789C33.6992 41.6044 32.4105 42.1134 31.0136 42.5032C29.6708 42.8931 28.209 43.0663 26.812 43.0663C25.4151 43.0663 23.9532 42.8931 22.6105 42.5032C21.2677 42.1134 19.9249 41.6044 18.6904 40.8789C17.4559 40.1534 16.3406 39.3087 15.3335 38.3016C14.3264 37.2946 13.4818 36.1684 12.7562 34.9447",
9285
+ stroke: "white",
9286
+ strokeWidth: "1.62432",
9287
+ strokeLinecap: "round"
9288
+ }
9289
+ ),
9290
+ /* @__PURE__ */ jsx(
9291
+ "path",
9292
+ {
9293
+ d: "M31.014 11.1429C32.3568 11.5328 33.6995 12.0417 34.934 12.7673C36.1685 13.4928 37.2839 14.3374 38.291 15.3445C39.298 16.3516 40.1427 17.4778 40.8682 18.7015C41.5938 19.9359 42.1027 21.2246 42.4925 22.6215C42.8824 23.9643 43.0556 25.4262 43.0556 26.8231",
9294
+ stroke: "white",
9295
+ strokeWidth: "1.62432",
9296
+ strokeLinecap: "round"
9297
+ }
9298
+ ),
9299
+ /* @__PURE__ */ jsx(
9300
+ "path",
9301
+ {
9302
+ d: "M10.5688 26.8231C10.5688 25.4262 10.742 23.9643 11.1319 22.6216C11.5217 21.2788 12.0307 19.936 12.7562 18.7015C13.4817 17.467 14.3264 16.3517 15.3335 15.3446C16.3405 14.3375 17.4667 13.4929 18.6904 12.7673",
9303
+ stroke: "white",
9304
+ strokeWidth: "1.62432",
9305
+ strokeLinecap: "round"
9306
+ }
9307
+ ),
9308
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
9309
+ "linearGradient",
9310
+ {
9311
+ id: "paint0_linear_9834_358",
9312
+ x1: "53.3446",
9313
+ y1: "52.8013",
9314
+ x2: "0.283412",
9315
+ y2: "0.822974",
9316
+ gradientUnits: "userSpaceOnUse",
9317
+ children: [
9318
+ /* @__PURE__ */ jsx("stop", { offset: "0.173077", "stop-color": "#B4B3BC" }),
9319
+ /* @__PURE__ */ jsx("stop", { offset: "0.365337", "stop-color": "#E2E1E5" }),
9320
+ /* @__PURE__ */ jsx("stop", { offset: "0.542584", "stop-color": "#E2E1E5" }),
9321
+ /* @__PURE__ */ jsx("stop", { offset: "0.826923", "stop-color": "#C6C5CC" })
9322
+ ]
9323
+ }
9324
+ ) })
9325
+ ]
9326
+ }
9327
+ );
9328
+ };
9329
+ const BadgeRatingHealthySafety = ({
9330
+ className
9331
+ }) => {
9332
+ return /* @__PURE__ */ jsxs(
9333
+ "svg",
9334
+ {
9335
+ xmlns: "http://www.w3.org/2000/svg",
9336
+ width: "52",
9337
+ height: "52",
9338
+ viewBox: "0 0 52 52",
9339
+ fill: "none",
9340
+ className: cn("size-[52px]", className),
9341
+ children: [
9342
+ /* @__PURE__ */ jsx(
9343
+ "path",
9344
+ {
9345
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9346
+ fill: "#72ABD9"
9347
+ }
9348
+ ),
9349
+ /* @__PURE__ */ jsx(
9350
+ "path",
9351
+ {
9352
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9353
+ fill: "#72ABD9"
9354
+ }
9355
+ ),
9356
+ /* @__PURE__ */ jsx(
9357
+ "path",
9358
+ {
9359
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9360
+ stroke: "white",
9361
+ strokeWidth: "1.62432",
9362
+ strokeLinecap: "round"
9363
+ }
9364
+ ),
9365
+ /* @__PURE__ */ jsx(
9366
+ "path",
9367
+ {
9368
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7592 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5722 10.0077 37.2295 9.13055 35.7567C8.25342 34.2732 7.64701 32.7355 7.18137 31.057C6.71573 29.4435 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9369
+ fill: "#72ABD9"
9370
+ }
9371
+ ),
9372
+ /* @__PURE__ */ jsx(
9373
+ "path",
9374
+ {
9375
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7592 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5722 10.0077 37.2295 9.13055 35.7567C8.25342 34.2732 7.64701 32.7355 7.18137 31.057C6.71573 29.4435 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9376
+ stroke: "white",
9377
+ strokeWidth: "1.62432",
9378
+ strokeLinecap: "round"
9379
+ }
9380
+ ),
9381
+ /* @__PURE__ */ jsx(
9382
+ "path",
9383
+ {
9384
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9385
+ fill: "#72ABD9"
9386
+ }
9387
+ ),
9388
+ /* @__PURE__ */ jsx(
9389
+ "path",
9390
+ {
9391
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9392
+ stroke: "white",
9393
+ strokeWidth: "1.62432",
9394
+ strokeLinecap: "round"
9395
+ }
9396
+ ),
9397
+ /* @__PURE__ */ jsx(
9398
+ "path",
9399
+ {
9400
+ d: "M37.4804 14.5322C38.4875 15.5393 39.3321 16.6655 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8092C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4077 42.0718 28.8696 41.682 30.2123C41.2921 31.5551 40.7832 32.8979 40.0577 34.1324C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4964 35.3471 39.341 34.1235 40.0666C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0666",
9401
+ fill: "#72ABD9"
9402
+ }
9403
+ ),
9404
+ /* @__PURE__ */ jsx(
9405
+ "path",
9406
+ {
9407
+ d: "M37.4804 14.5322C38.4875 15.5393 39.3321 16.6655 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8092C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4077 42.0718 28.8696 41.682 30.2123C41.2921 31.5551 40.7832 32.8979 40.0577 34.1324C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4964 35.3471 39.341 34.1235 40.0666C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0666",
9408
+ stroke: "white",
9409
+ strokeWidth: "1.62432",
9410
+ strokeLinecap: "round"
9411
+ }
9412
+ )
9413
+ ]
9414
+ }
9415
+ );
9416
+ };
9417
+ const BadgeRatingOperations = ({
9418
+ className
9419
+ }) => {
9420
+ return /* @__PURE__ */ jsxs(
9421
+ "svg",
9422
+ {
9423
+ xmlns: "http://www.w3.org/2000/svg",
9424
+ width: "52",
9425
+ height: "52",
9426
+ viewBox: "0 0 52 52",
9427
+ fill: "none",
9428
+ className: cn("size-[52px]", className),
9429
+ children: [
9430
+ /* @__PURE__ */ jsx(
9431
+ "path",
9432
+ {
9433
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9434
+ fill: "#3481C1"
9435
+ }
9436
+ ),
9437
+ /* @__PURE__ */ jsx(
9438
+ "path",
9439
+ {
9440
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9441
+ fill: "#3481C1"
9442
+ }
9443
+ ),
9444
+ /* @__PURE__ */ jsx(
9445
+ "path",
9446
+ {
9447
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9448
+ stroke: "white",
9449
+ strokeWidth: "1.62432",
9450
+ strokeLinecap: "round"
9451
+ }
9452
+ ),
9453
+ /* @__PURE__ */ jsx(
9454
+ "path",
9455
+ {
9456
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9457
+ fill: "#3481C1"
9458
+ }
9459
+ ),
9460
+ /* @__PURE__ */ jsx(
9461
+ "path",
9462
+ {
9463
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9464
+ stroke: "white",
9465
+ strokeWidth: "1.62432",
9466
+ strokeLinecap: "round"
9467
+ }
9468
+ ),
9469
+ /* @__PURE__ */ jsx(
9470
+ "path",
9471
+ {
9472
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9473
+ fill: "#3481C1"
9474
+ }
9475
+ ),
9476
+ /* @__PURE__ */ jsx(
9477
+ "path",
9478
+ {
9479
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9480
+ stroke: "white",
9481
+ strokeWidth: "1.62432",
9482
+ strokeLinecap: "round"
9483
+ }
9484
+ ),
9485
+ /* @__PURE__ */ jsx(
9486
+ "path",
9487
+ {
9488
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9489
+ fill: "#3481C1"
9490
+ }
9491
+ ),
9492
+ /* @__PURE__ */ jsx(
9493
+ "path",
9494
+ {
9495
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9496
+ stroke: "white",
9497
+ strokeWidth: "1.62432",
9498
+ strokeLinecap: "round"
9499
+ }
9500
+ )
9501
+ ]
9502
+ }
9503
+ );
9504
+ };
9505
+ const BadgeRatingPerformance = ({
9506
+ className
9507
+ }) => {
9508
+ return /* @__PURE__ */ jsxs(
9509
+ "svg",
9510
+ {
9511
+ xmlns: "http://www.w3.org/2000/svg",
9512
+ width: "52",
9513
+ height: "52",
9514
+ viewBox: "0 0 52 52",
9515
+ fill: "none",
9516
+ className: cn("size-[52px]", className),
9517
+ children: [
9518
+ /* @__PURE__ */ jsx(
9519
+ "path",
9520
+ {
9521
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9522
+ fill: "#0F748A"
9523
+ }
9524
+ ),
9525
+ /* @__PURE__ */ jsx(
9526
+ "path",
9527
+ {
9528
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9529
+ fill: "#0F748A"
9530
+ }
9531
+ ),
9532
+ /* @__PURE__ */ jsx(
9533
+ "path",
9534
+ {
9535
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9536
+ stroke: "white",
9537
+ strokeWidth: "1.62432",
9538
+ strokeLinecap: "round"
9539
+ }
9540
+ ),
9541
+ /* @__PURE__ */ jsx(
9542
+ "path",
9543
+ {
9544
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9545
+ fill: "#0F748A"
9546
+ }
9547
+ ),
9548
+ /* @__PURE__ */ jsx(
9549
+ "path",
9550
+ {
9551
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9552
+ stroke: "white",
9553
+ strokeWidth: "1.62432",
9554
+ strokeLinecap: "round"
9555
+ }
9556
+ ),
9557
+ /* @__PURE__ */ jsx(
9558
+ "path",
9559
+ {
9560
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9561
+ fill: "#0F748A"
9562
+ }
9563
+ ),
9564
+ /* @__PURE__ */ jsx(
9565
+ "path",
9566
+ {
9567
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9568
+ stroke: "white",
9569
+ strokeWidth: "1.62432",
9570
+ strokeLinecap: "round"
9571
+ }
9572
+ ),
9573
+ /* @__PURE__ */ jsx(
9574
+ "path",
9575
+ {
9576
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9577
+ fill: "#0F748A"
9578
+ }
9579
+ ),
9580
+ /* @__PURE__ */ jsx(
9581
+ "path",
9582
+ {
9583
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9584
+ stroke: "white",
9585
+ strokeWidth: "1.62432",
9586
+ strokeLinecap: "round"
9587
+ }
9588
+ )
9589
+ ]
9590
+ }
9591
+ );
9592
+ };
9593
+ const BadgeRatingEquity = ({ className }) => {
9594
+ return /* @__PURE__ */ jsxs(
9595
+ "svg",
9596
+ {
9597
+ xmlns: "http://www.w3.org/2000/svg",
9598
+ width: "52",
9599
+ height: "52",
9600
+ viewBox: "0 0 52 52",
9601
+ fill: "none",
9602
+ className: cn("size-[52px]", className),
9603
+ children: [
9604
+ /* @__PURE__ */ jsx(
9605
+ "path",
9606
+ {
9607
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9608
+ fill: "#17AA8D"
9609
+ }
9610
+ ),
9611
+ /* @__PURE__ */ jsx(
9612
+ "path",
9613
+ {
9614
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9615
+ fill: "#17AA8D"
9616
+ }
9617
+ ),
9618
+ /* @__PURE__ */ jsx(
9619
+ "path",
9620
+ {
9621
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9622
+ stroke: "white",
9623
+ strokeWidth: "1.62432",
9624
+ strokeLinecap: "round"
9625
+ }
9626
+ ),
9627
+ /* @__PURE__ */ jsx(
9628
+ "path",
9629
+ {
9630
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9631
+ fill: "#17AA8D"
9632
+ }
9633
+ ),
9634
+ /* @__PURE__ */ jsx(
9635
+ "path",
9636
+ {
9637
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9638
+ stroke: "white",
9639
+ strokeWidth: "1.62432",
9640
+ strokeLinecap: "round"
9641
+ }
9642
+ ),
9643
+ /* @__PURE__ */ jsx(
9644
+ "path",
9645
+ {
9646
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9647
+ fill: "#17AA8D"
9648
+ }
9649
+ ),
9650
+ /* @__PURE__ */ jsx(
9651
+ "path",
9652
+ {
9653
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9654
+ stroke: "white",
9655
+ strokeWidth: "1.62432",
9656
+ strokeLinecap: "round"
9657
+ }
9658
+ ),
9659
+ /* @__PURE__ */ jsx(
9660
+ "path",
9661
+ {
9662
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9663
+ fill: "#17AA8D"
9664
+ }
9665
+ ),
9666
+ /* @__PURE__ */ jsx(
9667
+ "path",
9668
+ {
9669
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9670
+ stroke: "white",
9671
+ strokeWidth: "1.62432",
9672
+ strokeLinecap: "round"
9673
+ }
9674
+ )
9675
+ ]
9676
+ }
9677
+ );
9678
+ };
9679
+ const BadgeRatingCoworking = ({ className }) => {
9680
+ return /* @__PURE__ */ jsxs(
9681
+ "svg",
9682
+ {
9683
+ xmlns: "http://www.w3.org/2000/svg",
9684
+ width: "52",
9685
+ height: "52",
9686
+ viewBox: "0 0 52 52",
9687
+ fill: "none",
9688
+ className: cn("size-[52px]", className),
9689
+ children: [
9690
+ /* @__PURE__ */ jsx(
9691
+ "path",
9692
+ {
9693
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9694
+ fill: "#BF78AE"
9695
+ }
9696
+ ),
9697
+ /* @__PURE__ */ jsx(
9698
+ "path",
9699
+ {
9700
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9701
+ fill: "#BF78AE"
9702
+ }
9703
+ ),
9704
+ /* @__PURE__ */ jsx(
9705
+ "path",
9706
+ {
9707
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9708
+ stroke: "white",
9709
+ strokeWidth: "1.62432",
9710
+ strokeLinecap: "round"
9711
+ }
9712
+ ),
9713
+ /* @__PURE__ */ jsx(
9714
+ "path",
9715
+ {
9716
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9717
+ fill: "#BF78AE"
9718
+ }
9719
+ ),
9720
+ /* @__PURE__ */ jsx(
9721
+ "path",
9722
+ {
9723
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9724
+ stroke: "white",
9725
+ strokeWidth: "1.62432",
9726
+ strokeLinecap: "round"
9727
+ }
9728
+ ),
9729
+ /* @__PURE__ */ jsx(
9730
+ "path",
9731
+ {
9732
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9733
+ fill: "#BF78AE"
9734
+ }
9735
+ ),
9736
+ /* @__PURE__ */ jsx(
9737
+ "path",
9738
+ {
9739
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9740
+ stroke: "white",
9741
+ strokeWidth: "1.62432",
9742
+ strokeLinecap: "round"
9743
+ }
9744
+ ),
9745
+ /* @__PURE__ */ jsx(
9746
+ "path",
9747
+ {
9748
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9749
+ fill: "#BF78AE"
9750
+ }
9751
+ ),
9752
+ /* @__PURE__ */ jsx(
9753
+ "path",
9754
+ {
9755
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9756
+ stroke: "white",
9757
+ strokeWidth: "1.62432",
9758
+ strokeLinecap: "round"
9759
+ }
9760
+ )
9761
+ ]
9762
+ }
9763
+ );
9764
+ };
9765
+ const BadgeRatingWorkforce = ({ className }) => {
9766
+ return /* @__PURE__ */ jsxs(
9767
+ "svg",
9768
+ {
9769
+ xmlns: "http://www.w3.org/2000/svg",
9770
+ width: "52",
9771
+ height: "52",
9772
+ viewBox: "0 0 52 52",
9773
+ fill: "none",
9774
+ className: cn("size-[52px]", className),
9775
+ children: [
9776
+ /* @__PURE__ */ jsx(
9777
+ "path",
9778
+ {
9779
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9780
+ fill: "#9A608C"
9781
+ }
9782
+ ),
9783
+ /* @__PURE__ */ jsx(
9784
+ "path",
9785
+ {
9786
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9787
+ fill: "#9A608C"
9788
+ }
9789
+ ),
9790
+ /* @__PURE__ */ jsx(
9791
+ "path",
9792
+ {
9793
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9794
+ stroke: "white",
9795
+ strokeWidth: "1.62432",
9796
+ strokeLinecap: "round"
9797
+ }
9798
+ ),
9799
+ /* @__PURE__ */ jsx(
9800
+ "path",
9801
+ {
9802
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9803
+ fill: "#9A608C"
9804
+ }
9805
+ ),
9806
+ /* @__PURE__ */ jsx(
9807
+ "path",
9808
+ {
9809
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9810
+ stroke: "white",
9811
+ strokeWidth: "1.62432",
9812
+ strokeLinecap: "round"
9813
+ }
9814
+ ),
9815
+ /* @__PURE__ */ jsx(
9816
+ "path",
9817
+ {
9818
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9819
+ fill: "#9A608C"
9820
+ }
9821
+ ),
9822
+ /* @__PURE__ */ jsx(
9823
+ "path",
9824
+ {
9825
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9826
+ stroke: "white",
9827
+ strokeWidth: "1.62432",
9828
+ strokeLinecap: "round"
9829
+ }
9830
+ ),
9831
+ /* @__PURE__ */ jsx(
9832
+ "path",
9833
+ {
9834
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9835
+ fill: "#9A608C"
9836
+ }
9837
+ ),
9838
+ /* @__PURE__ */ jsx(
9839
+ "path",
9840
+ {
9841
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9842
+ stroke: "white",
9843
+ strokeWidth: "1.62432",
9844
+ strokeLinecap: "round"
9845
+ }
9846
+ )
9847
+ ]
9848
+ }
9849
+ );
9850
+ };
9851
+ const BadgeRatingDesign = ({ className }) => {
9852
+ return /* @__PURE__ */ jsxs(
9853
+ "svg",
9854
+ {
9855
+ xmlns: "http://www.w3.org/2000/svg",
9856
+ width: "52",
9857
+ height: "52",
9858
+ viewBox: "0 0 52 52",
9859
+ fill: "none",
9860
+ className: cn("size-[52px]", className),
9861
+ children: [
9862
+ /* @__PURE__ */ jsx(
9863
+ "path",
9864
+ {
9865
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9866
+ fill: "#E67357"
9867
+ }
9868
+ ),
9869
+ /* @__PURE__ */ jsx(
9870
+ "path",
9871
+ {
9872
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9873
+ fill: "#E67357"
9874
+ }
9875
+ ),
9876
+ /* @__PURE__ */ jsx(
9877
+ "path",
9878
+ {
9879
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9880
+ stroke: "white",
9881
+ strokeWidth: "1.62432",
9882
+ strokeLinecap: "round"
9883
+ }
9884
+ ),
9885
+ /* @__PURE__ */ jsx(
9886
+ "path",
9887
+ {
9888
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9889
+ fill: "#E67357"
9890
+ }
9891
+ ),
9892
+ /* @__PURE__ */ jsx(
9893
+ "path",
9894
+ {
9895
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9896
+ stroke: "white",
9897
+ strokeWidth: "1.62432",
9898
+ strokeLinecap: "round"
9899
+ }
9900
+ ),
9901
+ /* @__PURE__ */ jsx(
9902
+ "path",
9903
+ {
9904
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9905
+ fill: "#E67357"
9906
+ }
9907
+ ),
9908
+ /* @__PURE__ */ jsx(
9909
+ "path",
9910
+ {
9911
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9912
+ stroke: "white",
9913
+ strokeWidth: "1.62432",
9914
+ strokeLinecap: "round"
9915
+ }
9916
+ ),
9917
+ /* @__PURE__ */ jsx(
9918
+ "path",
9919
+ {
9920
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9921
+ fill: "#E67357"
9922
+ }
9923
+ ),
9924
+ /* @__PURE__ */ jsx(
9925
+ "path",
9926
+ {
9927
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
9928
+ stroke: "white",
9929
+ strokeWidth: "1.62432",
9930
+ strokeLinecap: "round"
9931
+ }
9932
+ )
9933
+ ]
9934
+ }
9935
+ );
9936
+ };
9937
+ const BadgeRatingRealEstate = ({
9938
+ className
9939
+ }) => {
9940
+ return /* @__PURE__ */ jsxs(
9941
+ "svg",
9942
+ {
9943
+ xmlns: "http://www.w3.org/2000/svg",
9944
+ width: "52",
9945
+ height: "52",
9946
+ viewBox: "0 0 52 52",
9947
+ fill: "none",
9948
+ className: cn("size-[52px]", className),
9949
+ children: [
9950
+ /* @__PURE__ */ jsx(
9951
+ "path",
9952
+ {
9953
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
9954
+ fill: "#71747D"
9955
+ }
9956
+ ),
9957
+ /* @__PURE__ */ jsx(
9958
+ "path",
9959
+ {
9960
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9961
+ fill: "#71747D"
9962
+ }
9963
+ ),
9964
+ /* @__PURE__ */ jsx(
9965
+ "path",
9966
+ {
9967
+ d: "M26.0037 3.27032C27.9637 3.27032 29.9995 3.50856 31.8838 4.05C33.768 4.59144 35.6522 5.30614 37.374 6.32405C39.0958 7.34196 40.6659 8.5223 42.0737 9.93005C43.4814 11.3378 44.6618 12.908 45.6797 14.6298C46.6976 16.3515 47.4015 18.16 47.9537 20.12C48.506 22.0042 48.7334 24.04 48.7334 26C48.7334 27.96 48.4952 29.9959 47.9537 31.8801C47.4123 33.7643 46.6976 35.6485 45.6797 37.3703C44.6618 39.0921 43.4814 40.6623 42.0737 42.07C40.6659 43.4777 39.0958 44.6581 37.374 45.676C35.6522 46.6939 33.8438 47.3978 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4915 20.1237 47.95C18.2394 47.4086 16.3552 46.6939 14.6335 45.676C12.9117 44.6581 11.3415 43.4777 9.93374 42.07C8.526 40.6623 7.34565 39.0921 6.32774 37.3703C5.30984 35.6485 4.60596 33.8401 4.05369 31.8801C3.50142 29.9959 3.27402 27.96 3.27402 26",
9968
+ stroke: "white",
9969
+ strokeWidth: "1.62432",
9970
+ strokeLinecap: "round"
9971
+ }
9972
+ ),
9973
+ /* @__PURE__ */ jsx(
9974
+ "path",
9975
+ {
9976
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9977
+ fill: "#71747D"
9978
+ }
9979
+ ),
9980
+ /* @__PURE__ */ jsx(
9981
+ "path",
9982
+ {
9983
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
9984
+ stroke: "white",
9985
+ strokeWidth: "1.62432",
9986
+ strokeLinecap: "round"
9987
+ }
9988
+ ),
9989
+ /* @__PURE__ */ jsx(
9990
+ "path",
9991
+ {
9992
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
9993
+ fill: "#71747D"
9994
+ }
9995
+ ),
9996
+ /* @__PURE__ */ jsx(
9997
+ "path",
9998
+ {
9999
+ d: "M20.9555 7.19037C22.569 6.72473 24.3124 6.51898 26.0017 6.51898C27.691 6.51898 29.4344 6.72473 31.0479 7.19037C32.6614 7.65601 34.2749 8.26242 35.7476 9.13956C37.2312 10.0167 38.574 11.0238 39.776 12.2366C40.9888 13.4494 41.9959 14.7922 42.873 16.2649",
10000
+ stroke: "white",
10001
+ strokeWidth: "1.62432",
10002
+ strokeLinecap: "round"
10003
+ }
10004
+ ),
10005
+ /* @__PURE__ */ jsx(
10006
+ "path",
10007
+ {
10008
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6908C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6908C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
10009
+ fill: "#71747D"
10010
+ }
10011
+ ),
10012
+ /* @__PURE__ */ jsx(
10013
+ "path",
10014
+ {
10015
+ d: "M37.4804 14.5322C38.4875 15.5392 39.3321 16.6654 40.0577 17.8891C40.7832 19.1236 41.2921 20.4122 41.682 21.8091C42.0718 23.1519 42.2451 24.6138 42.2451 26.0107C42.2451 27.4076 42.0718 28.8695 41.682 30.2123C41.2921 31.5551 40.7832 32.8978 40.0577 34.1323C39.3321 35.3668 38.4875 36.4822 37.4804 37.4893C36.4733 38.4963 35.3471 39.341 34.1235 40.0665C32.889 40.7921 31.6004 41.301 30.2034 41.6909C28.8607 42.0807 27.3988 42.2539 26.0019 42.2539C24.6049 42.2539 23.143 42.0807 21.8003 41.6909C20.4575 41.301 19.1147 40.7921 17.8802 40.0665",
10016
+ stroke: "white",
10017
+ strokeWidth: "1.62432",
10018
+ strokeLinecap: "round"
10019
+ }
10020
+ )
10021
+ ]
10022
+ }
10023
+ );
10024
+ };
10025
+ const BadgeRatingResidential = ({
10026
+ className
10027
+ }) => {
10028
+ return /* @__PURE__ */ jsxs(
10029
+ "svg",
10030
+ {
10031
+ xmlns: "http://www.w3.org/2000/svg",
10032
+ width: "52",
10033
+ height: "52",
10034
+ viewBox: "0 0 52 52",
10035
+ fill: "none",
10036
+ className: cn("size-[52px]", className),
10037
+ children: [
10038
+ /* @__PURE__ */ jsx(
10039
+ "path",
10040
+ {
10041
+ d: "M26 52C23.7584 52 21.4302 51.7293 19.2753 51.1012C17.1204 50.4731 14.9763 49.6718 13.0054 48.5023C11.0346 47.3328 9.23699 45.99 7.62349 44.3765C6.01 42.763 4.66722 40.9763 3.49771 38.9946C2.3282 37.0237 1.52686 34.9663 0.898792 32.7247C0.270721 30.5698 0 28.2416 0 26C0 23.7584 0.270721 21.4302 0.898792 19.2753C1.52686 17.1204 2.3282 14.9763 3.49771 13.0054C4.66722 11.0346 6.01 9.23699 7.62349 7.62349C9.23699 6.01 11.0237 4.66722 13.0054 3.49771C14.9763 2.3282 17.0337 1.52686 19.2753 0.898792C21.4302 0.27072 23.7584 0 26 0C28.2416 0 30.5698 0.27072 32.7247 0.898792C34.8796 1.52686 37.0237 2.3282 38.9946 3.49771C40.9654 4.66722 42.763 6.01 44.3765 7.62349C45.99 9.23699 47.3328 11.0237 48.5023 13.0054C49.6718 14.9763 50.4731 17.0337 51.1012 19.2753C51.7293 21.4302 52 23.7584 52 26C52 28.2416 51.7293 30.5698 51.1012 32.7247C50.4731 34.8796 49.6718 37.0237 48.5023 38.9946C47.3328 40.9654 45.99 42.763 44.3765 44.3765C42.763 45.99 40.9763 47.3328 38.9946 48.5023C37.0237 49.6718 34.9663 50.4731 32.7247 51.1012C30.5698 51.7293 28.2416 52 26 52Z",
10042
+ fill: "#A79A92"
10043
+ }
10044
+ ),
10045
+ /* @__PURE__ */ jsx(
10046
+ "path",
10047
+ {
10048
+ d: "M26.0037 3.27026C27.9637 3.27026 29.9995 3.5085 31.8838 4.04994C33.768 4.59138 35.6522 5.30608 37.374 6.32399C39.0958 7.3419 40.6659 8.52224 42.0737 9.92999C43.4814 11.3377 44.6618 12.9079 45.6797 14.6297C46.6976 16.3515 47.4015 18.1599 47.9537 20.1199C48.506 22.0041 48.7334 24.0399 48.7334 26C48.7334 27.96 48.4952 29.9958 47.9537 31.88C47.4123 33.7642 46.6976 35.6484 45.6797 37.3702C44.6618 39.092 43.4814 40.6622 42.0737 42.0699C40.6659 43.4777 39.0958 44.658 37.374 45.6759C35.6522 46.6938 33.8438 47.3977 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4914 20.1237 47.95C18.2394 47.4085 16.3552 46.6938 14.6335 45.6759C12.9117 44.658 11.3415 43.4777 9.93374 42.0699C8.526 40.6622 7.34565 39.092 6.32774 37.3702C5.30984 35.6484 4.60596 33.84 4.05369 31.88C3.50142 29.9958 3.27402 27.96 3.27402 26",
10049
+ fill: "#A79A92"
10050
+ }
10051
+ ),
10052
+ /* @__PURE__ */ jsx(
10053
+ "path",
10054
+ {
10055
+ d: "M26.0037 3.27026C27.9637 3.27026 29.9995 3.5085 31.8838 4.04994C33.768 4.59138 35.6522 5.30608 37.374 6.32399C39.0958 7.3419 40.6659 8.52224 42.0737 9.92999C43.4814 11.3377 44.6618 12.9079 45.6797 14.6297C46.6976 16.3515 47.4015 18.1599 47.9537 20.1199C48.506 22.0041 48.7334 24.0399 48.7334 26C48.7334 27.96 48.4952 29.9958 47.9537 31.88C47.4123 33.7642 46.6976 35.6484 45.6797 37.3702C44.6618 39.092 43.4814 40.6622 42.0737 42.0699C40.6659 43.4777 39.0958 44.658 37.374 45.6759C35.6522 46.6938 33.8438 47.3977 31.8838 47.95C29.9995 48.5023 27.9637 48.7297 26.0037 48.7297C24.0437 48.7297 22.0079 48.4914 20.1237 47.95C18.2394 47.4085 16.3552 46.6938 14.6335 45.6759C12.9117 44.658 11.3415 43.4777 9.93374 42.0699C8.526 40.6622 7.34565 39.092 6.32774 37.3702C5.30984 35.6484 4.60596 33.84 4.05369 31.88C3.50142 29.9958 3.27402 27.96 3.27402 26",
10056
+ stroke: "white",
10057
+ strokeWidth: "1.62432",
10058
+ strokeLinecap: "round"
10059
+ }
10060
+ ),
10061
+ /* @__PURE__ */ jsx(
10062
+ "path",
10063
+ {
10064
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
10065
+ fill: "#A79A92"
10066
+ }
10067
+ ),
10068
+ /* @__PURE__ */ jsx(
10069
+ "path",
10070
+ {
10071
+ d: "M20.9556 44.8313C19.3421 44.3657 17.7286 43.7593 16.2559 42.8821C14.7724 42.005 13.4296 40.9979 12.2276 39.7851C11.0148 38.5723 10.0077 37.2295 9.13055 35.7568C8.25342 34.2732 7.64701 32.7355 7.18137 31.0571C6.71573 29.4436 6.50998 27.7001 6.50998 26.0108C6.50998 24.3215 6.71573 22.5781 7.18137 20.9646",
10072
+ stroke: "white",
10073
+ strokeWidth: "1.62432",
10074
+ strokeLinecap: "round"
10075
+ }
10076
+ ),
10077
+ /* @__PURE__ */ jsx(
10078
+ "path",
10079
+ {
10080
+ d: "M20.9555 7.19031C22.569 6.72467 24.3124 6.51892 26.0017 6.51892C27.691 6.51892 29.4344 6.72467 31.0479 7.19031C32.6614 7.65595 34.2749 8.26236 35.7476 9.1395C37.2312 10.0166 38.574 11.0237 39.776 12.2365C40.9888 13.4494 41.9959 14.7921 42.873 16.2649",
10081
+ fill: "#A79A92"
10082
+ }
10083
+ ),
10084
+ /* @__PURE__ */ jsx(
10085
+ "path",
10086
+ {
10087
+ d: "M20.9555 7.19031C22.569 6.72467 24.3124 6.51892 26.0017 6.51892C27.691 6.51892 29.4344 6.72467 31.0479 7.19031C32.6614 7.65595 34.2749 8.26236 35.7476 9.1395C37.2312 10.0166 38.574 11.0237 39.776 12.2365C40.9888 13.4494 41.9959 14.7921 42.873 16.2649",
10088
+ stroke: "white",
10089
+ strokeWidth: "1.62432",
10090
+ strokeLinecap: "round"
10091
+ }
10092
+ ),
10093
+ /* @__PURE__ */ jsx(
10094
+ "path",
10095
+ {
10096
+ d: "M37.4804 14.5322C38.4875 15.5393 39.3321 16.6655 40.0577 17.8892C40.7832 19.1236 41.2921 20.4123 41.682 21.8092C42.0718 23.152 42.2451 24.6139 42.2451 26.0108C42.2451 27.4077 42.0718 28.8696 41.682 30.2124C41.2921 31.5551 40.7832 32.8979 40.0577 34.1324C39.3321 35.3669 38.4875 36.4822 37.4804 37.4893C36.4733 38.4964 35.3471 39.3411 34.1235 40.0666C32.889 40.7921 31.6004 41.3011 30.2034 41.6909C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6909C20.4575 41.3011 19.1147 40.7921 17.8802 40.0666",
10097
+ fill: "#A79A92"
10098
+ }
10099
+ ),
10100
+ /* @__PURE__ */ jsx(
10101
+ "path",
10102
+ {
10103
+ d: "M37.4804 14.5322C38.4875 15.5393 39.3321 16.6655 40.0577 17.8892C40.7832 19.1236 41.2921 20.4123 41.682 21.8092C42.0718 23.152 42.2451 24.6139 42.2451 26.0108C42.2451 27.4077 42.0718 28.8696 41.682 30.2124C41.2921 31.5551 40.7832 32.8979 40.0577 34.1324C39.3321 35.3669 38.4875 36.4822 37.4804 37.4893C36.4733 38.4964 35.3471 39.3411 34.1235 40.0666C32.889 40.7921 31.6004 41.3011 30.2034 41.6909C28.8607 42.0807 27.3988 42.254 26.0019 42.254C24.6049 42.254 23.143 42.0807 21.8003 41.6909C20.4575 41.3011 19.1147 40.7921 17.8802 40.0666",
10104
+ stroke: "white",
10105
+ strokeWidth: "1.62432",
10106
+ strokeLinecap: "round"
10107
+ }
10108
+ )
10109
+ ]
10110
+ }
10111
+ );
8545
10112
  };
8546
10113
  const BadgeProductProvider = () => {
8547
10114
  return /* @__PURE__ */ jsxs(
@@ -9757,9 +11324,21 @@ export {
9757
11324
  AvatarImage,
9758
11325
  Badge,
9759
11326
  BadgeCertificationBronze,
11327
+ BadgeCertificationGold,
11328
+ BadgeCertificationPlatinum,
11329
+ BadgeCertificationSilver,
9760
11330
  BadgeEnterpriseProvider,
9761
11331
  BadgePerformanceTestingProvider,
9762
11332
  BadgeProductProvider,
11333
+ BadgeRatingCoworking,
11334
+ BadgeRatingDesign,
11335
+ BadgeRatingEquity,
11336
+ BadgeRatingHealthySafety,
11337
+ BadgeRatingOperations,
11338
+ BadgeRatingPerformance,
11339
+ BadgeRatingRealEstate,
11340
+ BadgeRatingResidential,
11341
+ BadgeRatingWorkforce,
9763
11342
  BadgeSurveyProvider,
9764
11343
  Breadcrumb,
9765
11344
  BreadcrumbItem,
@@ -9858,6 +11437,7 @@ export {
9858
11437
  HoverCard,
9859
11438
  HoverCardContent,
9860
11439
  HoverCardTrigger,
11440
+ IWBILogo,
9861
11441
  IconConceptAir,
9862
11442
  IconConceptCommunity,
9863
11443
  IconConceptInnovation,
@@ -9933,8 +11513,7 @@ export {
9933
11513
  ScrollArea,
9934
11514
  ScrollBar,
9935
11515
  SealEnterpriseProvider,
9936
- SealIwbiMember as SealHealthSafetyRating,
9937
- SealIwbiMember$1 as SealIwbiMember,
11516
+ SealIwbiMember,
9938
11517
  SealPerformanceTestingProvider,
9939
11518
  SealProductProvider,
9940
11519
  SealProviders,