adata-ui 2.1.0 → 2.1.2

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 (307) hide show
  1. package/.editorconfig +12 -12
  2. package/.nuxtrc +1 -1
  3. package/.playground/app.config.ts +5 -5
  4. package/README.md +75 -75
  5. package/app.config.ts +4 -3
  6. package/app.vue +1 -0
  7. package/assets/styles/index.scss +104 -0
  8. package/assets/styles/modules/_base.scss +5 -0
  9. package/assets/styles/modules/_typography.scss +152 -0
  10. package/components/elements/README.md +1 -1
  11. package/components/elements/accordion/AAccordion.vue +13 -12
  12. package/components/elements/curve-block/ACurveBlock.vue +94 -19
  13. package/components/elements/feature-description/AFeatureDescription.vue +4 -4
  14. package/components/elements/illustrations/noAccess.vue +11 -2
  15. package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
  16. package/components/elements/select/ASelect.vue +65 -9
  17. package/components/features/lang-switcher/lang-switcher.vue +8 -1
  18. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
  19. package/components/features/payment/banner/PaymentBanner.vue +108 -0
  20. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
  21. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
  22. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
  23. package/components/features/payment/process/PaymentProcess.vue +138 -0
  24. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
  25. package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
  26. package/components/forms/README.md +1 -1
  27. package/components/forms/checkbox/ACheckbox.vue +0 -2
  28. package/components/forms/radio-button/ARadioButton.vue +21 -13
  29. package/components/forms/request-demo/ARequestDemo.vue +21 -7
  30. package/components/modals/AConfirmationEmail.vue +40 -0
  31. package/components/modals/AnotherDeviceModal.vue +3 -2
  32. package/components/modals/ConnectingTariffModal.vue +0 -1
  33. package/components/modals/ContentNavigationModal.vue +148 -75
  34. package/components/modals/Insufficient-funds-modal.vue +5 -2
  35. package/components/modals/LimitReachedModal.vue +4 -3
  36. package/components/modals/ReportBugModal.vue +3 -3
  37. package/components/modals/Resend.vue +82 -0
  38. package/components/modals/SubmitApplicationModal.vue +4 -0
  39. package/components/modals/id/AuthModal.vue +78 -0
  40. package/components/modals/id/IdAutoLogoutModal.vue +45 -0
  41. package/components/modals/id/IdBanner.vue +58 -0
  42. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
  43. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
  44. package/components/modals/id/IdLoginModal.vue +316 -0
  45. package/components/modals/id/IdModals.vue +114 -0
  46. package/components/modals/id/IdNewPasswordModal.vue +129 -0
  47. package/components/modals/id/IdOtpInput.vue +155 -0
  48. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
  49. package/components/modals/id/IdRecoveryModal.vue +117 -0
  50. package/components/modals/id/IdRegistrationModal.vue +215 -0
  51. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
  52. package/components/modals/id/IdTwoFactorModal.vue +130 -0
  53. package/components/navigation/README.md +1 -1
  54. package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
  55. package/components/navigation/footer/AFooter.vue +210 -57
  56. package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
  57. package/components/navigation/header/AHeader.vue +59 -51
  58. package/components/navigation/header/AlmatyContacts.vue +16 -14
  59. package/components/navigation/header/AstanaContacts.vue +13 -11
  60. package/components/navigation/header/CardGallery.vue +5 -4
  61. package/components/navigation/header/HeaderLink.vue +16 -8
  62. package/components/navigation/header/NavList.vue +21 -5
  63. package/components/navigation/header/ProductMenu.vue +8 -78
  64. package/components/navigation/header/ProfileMenu.vue +10 -5
  65. package/components/navigation/header/TopHeader.vue +2 -2
  66. package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
  67. package/components/navigation/pill-tabs/APillTabs.vue +18 -4
  68. package/components/navigation/pill-tabs/types.ts +1 -0
  69. package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
  70. package/components/overlays/README.md +1 -1
  71. package/components/overlays/side-panel/ASidePanel.vue +439 -0
  72. package/components/overlays/tooltip/ATooltip.vue +149 -154
  73. package/components/utils/removeTrailingSlash.ts +7 -0
  74. package/composables/useBuyTariffs.ts +91 -0
  75. package/composables/useHeaderNavigationLinks.ts +174 -297
  76. package/composables/useIdModals.ts +36 -0
  77. package/composables/usePayment.ts +74 -0
  78. package/composables/useUrls.ts +21 -0
  79. package/eslint.config.mjs +45 -0
  80. package/icons/adata-logo.vue +1 -1
  81. package/icons/ai-assistant.vue +13 -0
  82. package/icons/akimat.vue +20 -0
  83. package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
  84. package/icons/arrow/arrow-circle-reset.vue +1 -1
  85. package/icons/arrow/arrow-corner.vue +1 -1
  86. package/icons/arrow/arrow-graph-down.vue +1 -1
  87. package/icons/arrow/arrow-graph-up.vue +1 -1
  88. package/icons/arrow/arrow-square-down.vue +1 -1
  89. package/icons/arrow/arrow-top-right-on-square.vue +1 -1
  90. package/icons/arrow-currency-gray.vue +1 -1
  91. package/icons/arrow-currency-green.vue +1 -1
  92. package/icons/arrow-currency-red.vue +1 -1
  93. package/icons/avatar.vue +1 -1
  94. package/icons/bank.vue +5 -0
  95. package/icons/block.vue +1 -1
  96. package/icons/bookmark/bookmark-filled.vue +1 -1
  97. package/icons/bookmark/bookmark.vue +1 -1
  98. package/icons/browsers/browser-duck.vue +1 -1
  99. package/icons/browsers/browser-google.vue +7 -1
  100. package/icons/browsers/browser-yandex.vue +1 -1
  101. package/icons/building-vector.vue +1 -1
  102. package/icons/calculator.vue +1 -1
  103. package/icons/calendar.vue +1 -1
  104. package/icons/car.vue +1 -1
  105. package/icons/chart-bar.vue +5 -0
  106. package/icons/chart-pie.vue +16 -0
  107. package/icons/check/check-circle.vue +1 -1
  108. package/icons/check/check.vue +1 -1
  109. package/icons/check/checkmark-circle.vue +1 -1
  110. package/icons/check-sb.vue +7 -0
  111. package/icons/checkbox/checkbox-active.vue +1 -1
  112. package/icons/checkbox/checkbox-empty.vue +1 -1
  113. package/icons/checkbox/checkbox-intermediate.vue +1 -1
  114. package/icons/chevron/chevron-down.vue +1 -1
  115. package/icons/chevron/chevron-left.vue +1 -1
  116. package/icons/chevron/chevron-right.vue +1 -1
  117. package/icons/chevron/chevron-up.vue +1 -1
  118. package/icons/chevron/double-chevron-right.vue +1 -1
  119. package/icons/clipboard-text.vue +1 -1
  120. package/icons/clock.vue +1 -1
  121. package/icons/company/company-bazis.vue +3 -3
  122. package/icons/company/company-bereke.vue +13 -13
  123. package/icons/company/company-bigroup.vue +5 -5
  124. package/icons/company/company-erg.vue +6 -6
  125. package/icons/company/company-forte.vue +11 -11
  126. package/icons/company/company-halyk.vue +4 -4
  127. package/icons/company/company-jusan.vue +20 -3
  128. package/icons/company/company-kaspi.vue +3 -3
  129. package/icons/company/company-mycar.vue +2 -2
  130. package/icons/company/company-samruk.vue +9 -9
  131. package/icons/company-egov-small.vue +1 -1
  132. package/icons/company.vue +1 -1
  133. package/icons/copy.vue +1 -1
  134. package/icons/currency/currency-dollar.vue +1 -1
  135. package/icons/currency/currency-down.vue +1 -1
  136. package/icons/currency/currency-eur.vue +1 -1
  137. package/icons/currency/currency-rub.vue +1 -1
  138. package/icons/currency/currency-tenge.vue +9 -0
  139. package/icons/currency/currency-usd.vue +1 -1
  140. package/icons/currency/currency-yuan.vue +1 -1
  141. package/icons/delete.vue +1 -1
  142. package/icons/document.vue +1 -1
  143. package/icons/download.vue +1 -1
  144. package/icons/edit.vue +1 -1
  145. package/icons/education.vue +1 -1
  146. package/icons/egov-small.vue +1 -1
  147. package/icons/excel-icon.vue +14 -0
  148. package/icons/expand-window.vue +1 -1
  149. package/icons/eye-closed.vue +1 -1
  150. package/icons/eye-open.vue +1 -1
  151. package/icons/eye-opened.vue +1 -1
  152. package/icons/file/file.vue +1 -1
  153. package/icons/filter.vue +1 -1
  154. package/icons/flag.vue +1 -1
  155. package/icons/gift.vue +1 -1
  156. package/icons/globe.vue +1 -1
  157. package/icons/google.vue +41 -0
  158. package/icons/hand/hand-thumb-up-filled.vue +1 -1
  159. package/icons/hand/hand-thumb-up.vue +1 -1
  160. package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
  161. package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
  162. package/icons/handshake.vue +1 -1
  163. package/icons/hcheck.vue +1 -1
  164. package/icons/hdocument.vue +1 -1
  165. package/icons/history.vue +1 -1
  166. package/icons/horizontal-more.vue +1 -1
  167. package/icons/hot-line.vue +6 -0
  168. package/icons/hummer.vue +1 -1
  169. package/icons/info/info-circle.vue +1 -1
  170. package/icons/invoice.vue +1 -1
  171. package/icons/kaspi-qr.vue +13 -0
  172. package/icons/link-chain.vue +1 -1
  173. package/icons/link.vue +1 -1
  174. package/icons/linkedin.vue +24 -24
  175. package/icons/loader-circle.vue +1 -1
  176. package/icons/location.vue +1 -1
  177. package/icons/lock.vue +1 -1
  178. package/icons/logo.vue +1 -1
  179. package/icons/logout.vue +1 -1
  180. package/icons/magnify/magnifying-glass-minus.vue +1 -1
  181. package/icons/magnify/magnifying-glass-plus.vue +1 -1
  182. package/icons/magnify/magnifying-glass.vue +1 -1
  183. package/icons/mail.vue +1 -1
  184. package/icons/mailru.vue +34 -0
  185. package/icons/main-filter.vue +1 -1
  186. package/icons/map/map-pin-filled.vue +1 -1
  187. package/icons/map/map-pin-rect.vue +1 -1
  188. package/icons/map/map-pin.vue +1 -1
  189. package/icons/map-marker-start.vue +1 -1
  190. package/icons/medal.vue +1 -1
  191. package/icons/menu-filled.vue +1 -1
  192. package/icons/menu.vue +1 -1
  193. package/icons/message/message.vue +1 -1
  194. package/icons/minus/minus-circle.vue +1 -1
  195. package/icons/money.vue +1 -1
  196. package/icons/monitoring.vue +1 -1
  197. package/icons/moon.vue +1 -1
  198. package/icons/more.vue +1 -1
  199. package/icons/notification.vue +1 -1
  200. package/icons/paperclip.vue +1 -1
  201. package/icons/payment/payment-card.vue +1 -1
  202. package/icons/payment/payment-kaspi.vue +1 -1
  203. package/icons/person-vector.vue +1 -1
  204. package/icons/person-with-briefcase.vue +1 -1
  205. package/icons/phone-filled.vue +1 -1
  206. package/icons/phone.vue +1 -1
  207. package/icons/plus/plus-circle.vue +1 -1
  208. package/icons/plus/plus.vue +1 -1
  209. package/icons/profile.vue +1 -1
  210. package/icons/radio/radio-check.vue +1 -1
  211. package/icons/radio/radio-empty.vue +1 -1
  212. package/icons/receipt.vue +1 -1
  213. package/icons/sanctions.vue +8 -0
  214. package/icons/scales/scale.vue +1 -1
  215. package/icons/scales/scales.vue +1 -1
  216. package/icons/scales/standing-scales.vue +1 -1
  217. package/icons/search.vue +1 -1
  218. package/icons/share/share-alt.vue +1 -1
  219. package/icons/share/share.vue +1 -1
  220. package/icons/socials/face-book.vue +1 -1
  221. package/icons/socials/instagram.vue +1 -1
  222. package/icons/socials/telegram.vue +1 -1
  223. package/icons/socials/tik-tok.vue +1 -1
  224. package/icons/socials/youtube.vue +1 -1
  225. package/icons/sort/sort-asc.vue +1 -1
  226. package/icons/sort/sort-desc.vue +1 -1
  227. package/icons/splitting-arrows.vue +1 -1
  228. package/icons/star/star-filled.vue +1 -1
  229. package/icons/star/star-half-filled.vue +1 -1
  230. package/icons/star/star.vue +1 -1
  231. package/icons/sun.vue +14 -14
  232. package/icons/sviazi.vue +1 -1
  233. package/icons/tag.vue +1 -1
  234. package/icons/tasks.vue +10 -0
  235. package/icons/tender-search.vue +1 -1
  236. package/icons/toasts/check-circle-toast.vue +1 -1
  237. package/icons/toasts/warning-triangle-toast.vue +1 -1
  238. package/icons/trash.vue +1 -1
  239. package/icons/triangle.vue +1 -1
  240. package/icons/truck.vue +1 -1
  241. package/icons/user.vue +1 -1
  242. package/icons/users-focus.vue +1 -1
  243. package/icons/users.vue +1 -1
  244. package/icons/warning/warning-circle.vue +1 -1
  245. package/icons/warning/warning-triangle-filled.vue +1 -1
  246. package/icons/warning/warning-triangle.vue +1 -1
  247. package/icons/whatsapp.vue +1 -1
  248. package/icons/work-bag.vue +1 -1
  249. package/icons/work-case.vue +9 -0
  250. package/icons/work-search.vue +1 -1
  251. package/icons/work.vue +1 -1
  252. package/icons/x-mark.vue +1 -1
  253. package/icons/yandex.vue +28 -0
  254. package/illustrations/address-location.vue +1 -1
  255. package/illustrations/ball-with-chain.vue +1 -1
  256. package/illustrations/bill.vue +1 -1
  257. package/illustrations/buildings.vue +1 -1
  258. package/illustrations/calendar.vue +1 -1
  259. package/illustrations/chains.vue +1 -1
  260. package/illustrations/coin-percent.vue +1 -1
  261. package/illustrations/coins-stack.vue +1 -1
  262. package/illustrations/delete-dark.vue +1 -1
  263. package/illustrations/delete.vue +1 -1
  264. package/illustrations/doc-with-stamp.vue +1 -1
  265. package/illustrations/document.vue +1 -1
  266. package/illustrations/door.vue +1 -1
  267. package/illustrations/empty-box.vue +1 -1
  268. package/illustrations/empty-wallet.vue +1 -1
  269. package/illustrations/graph-in-coin.vue +1 -1
  270. package/illustrations/hammer.vue +1 -1
  271. package/illustrations/hand-cash.vue +1 -1
  272. package/illustrations/info.vue +1 -1
  273. package/illustrations/mail.vue +1 -1
  274. package/illustrations/ok.vue +1 -1
  275. package/illustrations/people-group.vue +1 -1
  276. package/illustrations/person-with-phone.vue +1 -1
  277. package/illustrations/person.vue +1 -1
  278. package/illustrations/phone-check.vue +1 -1
  279. package/illustrations/phone-payment-method.vue +1 -1
  280. package/illustrations/stop-hand.vue +1 -1
  281. package/illustrations/stop-sign.vue +1 -1
  282. package/illustrations/suit.vue +1 -1
  283. package/illustrations/suitcase.vue +1 -1
  284. package/illustrations/terminal-dark.vue +1 -1
  285. package/illustrations/terminal.vue +1 -1
  286. package/illustrations/trash-can.vue +1 -1
  287. package/illustrations/turn-on-tariff.vue +1 -1
  288. package/illustrations/two-persons.vue +1 -1
  289. package/lang/en.ts +475 -270
  290. package/lang/kk.ts +476 -271
  291. package/lang/ru.ts +315 -107
  292. package/layouts/default.vue +13 -13
  293. package/nuxt.config.ts +42 -14
  294. package/package.json +69 -53
  295. package/public/kaspi/logo.svg +4 -0
  296. package/shared/constans/pages.ts +17 -2
  297. package/tailwind.config.ts +163 -0
  298. package/vitest.config.ts +14 -0
  299. package/.eslintrc.cjs +0 -4
  300. package/.playground/app.vue +0 -9
  301. package/.playground/pages/index.vue +0 -13
  302. package/.prettierignore +0 -24
  303. package/.prettierrc +0 -10
  304. package/assets/styles/index.css +0 -226
  305. package/components/modals/AuthModal.vue +0 -50
  306. package/components/navigation/footer/NewFooter.vue +0 -276
  307. package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 18 21" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 18 21" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M12.75 13.2499C12.75 13.4488 12.671 13.6395 12.5303 13.7802C12.3897 13.9208 12.1989 13.9999 12 13.9999H6C5.80109 13.9999 5.61032 13.9208 5.46967 13.7802C5.32902 13.6395 5.25 13.4488 5.25 13.2499C5.25 13.051 5.32902 12.8602 5.46967 12.7195C5.61032 12.5789 5.80109 12.4999 6 12.4999H12C12.1989 12.4999 12.3897 12.5789 12.5303 12.7195C12.671 12.8602 12.75 13.051 12.75 13.2499ZM12 9.49986H6C5.80109 9.49986 5.61032 9.57888 5.46967 9.71953C5.32902 9.86019 5.25 10.051 5.25 10.2499C5.25 10.4488 5.32902 10.6395 5.46967 10.7802C5.61032 10.9208 5.80109 10.9999 6 10.9999H12C12.1989 10.9999 12.3897 10.9208 12.5303 10.7802C12.671 10.6395 12.75 10.4488 12.75 10.2499C12.75 10.051 12.671 9.86019 12.5303 9.71953C12.3897 9.57888 12.1989 9.49986 12 9.49986ZM17.25 3.49986V19.2499C17.25 19.6477 17.092 20.0292 16.8107 20.3105C16.5294 20.5918 16.1478 20.7499 15.75 20.7499H2.25C1.85218 20.7499 1.47064 20.5918 1.18934 20.3105C0.908035 20.0292 0.75 19.6477 0.75 19.2499V3.49986C0.75 3.10204 0.908035 2.72051 1.18934 2.4392C1.47064 2.1579 1.85218 1.99986 2.25 1.99986H5.64937C6.07079 1.52804 6.58709 1.15054 7.1645 0.892075C7.7419 0.633607 8.36738 0.5 9 0.5C9.63262 0.5 10.2581 0.633607 10.8355 0.892075C11.4129 1.15054 11.9292 1.52804 12.3506 1.99986H15.75C16.1478 1.99986 16.5294 2.1579 16.8107 2.4392C17.092 2.72051 17.25 3.10204 17.25 3.49986ZM6 4.99986H12C12 4.20421 11.6839 3.44115 11.1213 2.87854C10.5587 2.31593 9.79565 1.99986 9 1.99986C8.20435 1.99986 7.44129 2.31593 6.87868 2.87854C6.31607 3.44115 6 4.20421 6 4.99986ZM15.75 3.49986H13.2422C13.4128 3.98157 13.5 4.48884 13.5 4.99986V5.74986C13.5 5.94878 13.421 6.13954 13.2803 6.28019C13.1397 6.42085 12.9489 6.49986 12.75 6.49986H5.25C5.05109 6.49986 4.86032 6.42085 4.71967 6.28019C4.57902 6.13954 4.5 5.94878 4.5 5.74986V4.99986C4.50002 4.48884 4.58721 3.98157 4.75781 3.49986H2.25V19.2499H15.75V3.49986Z"
5
5
  fill="currentColor"/>
package/icons/clock.vue CHANGED
@@ -5,7 +5,7 @@
5
5
  height="16"
6
6
  viewBox="0 0 16 16"
7
7
  fill="none"
8
- xmlns="https://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
9
  >
10
10
  <path
11
11
  fill-rule="evenodd"
@@ -4,16 +4,16 @@
4
4
  height="62"
5
5
  viewBox="0 0 200 62"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  class="group"
9
9
  >
10
10
  <path
11
- class="group-hover:fill-[#2C3E50] dark:group-hover:fill-[#fff]"
11
+ class="fill-[#2C3E50] dark:fill-[#fff]"
12
12
  d="M64.0003 51L52.3698 39.7244H34.415L64.0003 11L93.5855 39.7244H75.6307L64.0003 51ZM56.443 37.6369C56.7075 37.6418 56.9721 37.6121 57.2317 37.5526C57.4463 37.4981 57.626 37.4138 57.7658 37.3096C58.0853 37.0468 58.2699 36.6551 58.2749 36.2386C58.2749 35.951 58.1901 35.708 58.0303 35.5048C57.8756 35.3015 57.6509 35.1478 57.3564 35.0635C57.5761 34.9494 57.7508 34.8106 57.8656 34.6221C57.9804 34.4486 58.0303 34.2453 58.0303 34.042C58.0303 33.8139 57.9655 33.5957 57.8406 33.4073C57.7158 33.209 57.5311 33.0503 57.3165 32.9561C57.0869 32.8569 56.7924 32.8073 56.423 32.8073H54.5911V37.622L56.443 37.6369ZM55.225 34.8354V33.3825H56.2084C56.458 33.3726 56.7075 33.3924 56.9471 33.447C57.0819 33.4867 57.2017 33.5759 57.2766 33.6999C57.3614 33.8139 57.3914 33.9627 57.3914 34.1263C57.3914 34.2899 57.3515 34.4288 57.2666 34.5329C57.1867 34.6568 57.062 34.7362 56.8972 34.7758C56.7725 34.8155 56.5678 34.8354 56.2783 34.8354H55.225ZM55.23 37.0617V35.3957H56.3581C56.6626 35.3957 56.9072 35.4304 57.0719 35.48C57.2317 35.5295 57.3665 35.6287 57.4563 35.7676C57.5511 35.9064 57.601 36.0651 57.596 36.2337C57.596 36.3874 57.5611 36.5262 57.4962 36.6402C57.4413 36.7493 57.3564 36.8435 57.2467 36.908C57.1468 36.9724 57.027 37.0121 56.8773 37.037C56.7924 37.0518 56.6477 37.0518 56.443 37.0518L55.23 37.0617ZM59.3082 37.6369L59.8323 36.1692H61.8888L62.4479 37.632H63.1866L61.2 32.8123H60.4912L58.6193 37.627L59.3082 37.6369ZM60.0219 35.6535L60.5561 34.2403C60.6609 33.9379 60.7607 33.6255 60.8256 33.3081C60.9104 33.5759 61.0203 33.9131 61.17 34.3197L61.6792 35.6486L60.0219 35.6535ZM67.1749 37.6369V37.0667H64.0502L64.3447 36.7245L67.0801 33.3875V32.8173H63.596V33.3875H66.3164C66.1516 33.5511 65.9869 33.7395 65.8073 33.9577L63.3115 37.0419V37.627L67.1749 37.6369ZM67.9636 37.627H68.6225V32.8123H67.9736L67.9636 37.627ZM69.541 36.0849C69.5509 36.4023 69.6458 36.6898 69.8105 36.9527C69.9802 37.2105 70.2248 37.4088 70.5093 37.5228C71.1683 37.7757 71.897 37.7757 72.5559 37.5228C72.8354 37.3989 73.0501 37.2204 73.1948 36.9923C73.3445 36.7642 73.4144 36.5262 73.4144 36.2733C73.4144 36.0105 73.3496 35.7824 73.2098 35.589C73.08 35.3907 72.8653 35.2271 72.5859 35.0982C72.3862 35.0089 72.0268 34.9097 71.5077 34.7957C70.9835 34.6718 70.6541 34.5577 70.5293 34.4536C70.4045 34.3445 70.3396 34.1858 70.3396 34.0221C70.3446 33.8189 70.4444 33.6305 70.6091 33.5164C70.7838 33.3677 71.0684 33.3032 71.4627 33.3032C71.8321 33.3032 72.1216 33.3776 72.3163 33.5313C72.516 33.7098 72.6358 33.9577 72.6457 34.2255L73.2697 34.1759C73.2647 33.6156 72.9153 33.1148 72.3912 32.9115C72.0867 32.7875 71.7622 32.728 71.4378 32.733C71.1333 32.728 70.8288 32.7826 70.5443 32.8966C70.2747 33.0106 70.0651 33.1743 69.9253 33.3875C69.7856 33.6007 69.7206 33.8189 69.7206 34.0668C69.7206 34.285 69.7806 34.4932 69.8953 34.6718C70.0252 34.8651 70.2048 35.0189 70.4145 35.1229C70.714 35.2568 71.0285 35.361 71.3529 35.4254C71.8071 35.5296 72.0917 35.604 72.2265 35.6535C72.4311 35.7378 72.5809 35.827 72.6607 35.9411C72.7556 36.0551 72.8005 36.194 72.8005 36.3427C72.7955 36.4915 72.7455 36.6353 72.6508 36.7493C72.5659 36.8733 72.4311 36.9675 72.2414 37.0518C72.0318 37.1212 71.8071 37.1609 71.5825 37.1559C71.313 37.1559 71.0584 37.1063 70.8438 37.0072C70.6141 36.908 70.4495 36.794 70.3496 36.6303C70.2448 36.4766 70.1749 36.2783 70.145 36.0353L69.541 36.0849ZM77.5275 32.2074H80.3229V37.1063H87.1264L64.0003 14.6891L40.9391 37.1063H47.6777V32.2074H50.5279L63.9953 19.122L77.5275 32.2074ZM75.6307 32.2074L64.14 21.0657V24.9581L71.6175 32.2074H75.6307ZM63.8605 25.4291L56.8623 32.2074H63.8655V25.4291H63.8605ZM52.3748 38.3112L63.8605 49.4529V45.5605L56.3831 38.3112H52.3748ZM64.14 45.0895L71.2081 38.3162H64.14V45.0895Z"
13
13
  fill="#BDC7CE"
14
14
  />
15
15
  <path
16
- class="group-hover:fill-[#2C3E50] dark:group-hover:fill-[#fff]"
16
+ class="fill-[#2C3E50] dark:fill-[#fff]"
17
17
  d="M99.0225 37V25.5781H106.241V27.5781H101.444V29.9609H102.397C103.47 29.9609 104.351 30.1094 105.038 30.4062C105.731 30.7031 106.241 31.1146 106.569 31.6406C106.903 32.1615 107.069 32.7578 107.069 33.4297C107.069 34.5599 106.692 35.4375 105.937 36.0625C105.187 36.6875 103.991 37 102.351 37H99.0225ZM101.444 35.0156H102.257C102.991 35.0156 103.569 34.8984 103.991 34.6641C104.413 34.4245 104.624 34.013 104.624 33.4297C104.624 33.0234 104.52 32.7135 104.312 32.5C104.108 32.2865 103.814 32.1406 103.429 32.0625C103.049 31.9844 102.593 31.9453 102.062 31.9453H101.444V35.0156ZM115.593 37L114.765 34.2812H110.601L109.773 37H107.164L111.195 25.5312H114.156L118.203 37H115.593ZM114.187 32.25L113.359 29.5938C113.307 29.4167 113.237 29.1901 113.148 28.9141C113.065 28.6328 112.979 28.349 112.89 28.0625C112.807 27.7708 112.739 27.5182 112.687 27.3047C112.635 27.5182 112.562 27.7839 112.468 28.1016C112.38 28.4141 112.294 28.7109 112.211 28.9922C112.127 29.2734 112.067 29.474 112.031 29.5938L111.211 32.25H114.187ZM126.899 28.25C126.899 29.0156 126.625 29.6328 126.078 30.1016C125.532 30.5703 124.839 30.8646 124 30.9844V31.0312C125.042 31.1354 125.844 31.4245 126.407 31.8984C126.969 32.3724 127.25 32.9896 127.25 33.75C127.25 34.4167 127.068 35.0078 126.703 35.5234C126.339 36.0339 125.8 36.4349 125.086 36.7266C124.373 37.013 123.49 37.1562 122.438 37.1562C121.573 37.1562 120.805 37.1042 120.133 37C119.466 36.8906 118.888 36.737 118.399 36.5391V34.5078C118.732 34.6641 119.104 34.7995 119.516 34.9141C119.933 35.0234 120.354 35.1094 120.782 35.1719C121.209 35.2292 121.604 35.2578 121.969 35.2578C122.979 35.2578 123.711 35.112 124.164 34.8203C124.623 34.5286 124.852 34.1146 124.852 33.5781C124.852 33.0312 124.521 32.6328 123.86 32.3828C123.198 32.1328 122.308 32.0078 121.188 32.0078H120.117V30.1172H121.078C121.985 30.1172 122.688 30.0599 123.188 29.9453C123.693 29.8255 124.045 29.6562 124.242 29.4375C124.446 29.2135 124.547 28.9453 124.547 28.6328C124.547 28.2422 124.373 27.9323 124.024 27.7031C123.675 27.4688 123.157 27.3516 122.469 27.3516C121.875 27.3516 121.321 27.4375 120.805 27.6094C120.289 27.776 119.808 28 119.36 28.2812L118.305 26.6641C118.696 26.4089 119.112 26.1875 119.555 26C120.003 25.8125 120.492 25.6693 121.024 25.5703C121.555 25.4661 122.149 25.4141 122.805 25.4141C123.664 25.4141 124.399 25.5365 125.008 25.7812C125.617 26.026 126.084 26.362 126.407 26.7891C126.735 27.2109 126.899 27.6979 126.899 28.25ZM128.743 25.5781H130.923V31.0938C130.923 31.3646 130.918 31.6641 130.907 31.9922C130.902 32.3203 130.892 32.6432 130.876 32.9609C130.865 33.2734 130.855 33.5469 130.845 33.7812C130.834 34.0156 130.824 34.1719 130.813 34.25H130.86L136.134 25.5781H139.032V37H136.876V31.5156C136.876 31.224 136.881 30.9062 136.892 30.5625C136.902 30.2188 136.915 29.8854 136.931 29.5625C136.951 29.2396 136.97 28.9609 136.985 28.7266C137.001 28.487 137.011 28.3281 137.017 28.25H136.954L131.657 37H128.743V25.5781ZM146.127 27.4297C145.663 27.4297 145.252 27.5208 144.892 27.7031C144.538 27.8802 144.239 28.138 143.994 28.4766C143.754 28.8151 143.572 29.224 143.447 29.7031C143.322 30.1823 143.259 30.7214 143.259 31.3203C143.259 32.1276 143.358 32.8177 143.556 33.3906C143.759 33.9583 144.072 34.3932 144.494 34.6953C144.916 34.9922 145.46 35.1406 146.127 35.1406C146.59 35.1406 147.054 35.0885 147.517 34.9844C147.986 34.8802 148.494 34.7318 149.041 34.5391V36.5703C148.535 36.7786 148.038 36.9271 147.548 37.0156C147.059 37.1094 146.509 37.1562 145.9 37.1562C144.723 37.1562 143.754 36.9141 142.994 36.4297C142.239 35.9401 141.679 35.2578 141.314 34.3828C140.949 33.5026 140.767 32.4766 140.767 31.3047C140.767 30.4401 140.884 29.6484 141.119 28.9297C141.353 28.2109 141.697 27.5885 142.15 27.0625C142.603 26.5365 143.163 26.1302 143.83 25.8438C144.496 25.5573 145.262 25.4141 146.127 25.4141C146.694 25.4141 147.262 25.487 147.83 25.6328C148.403 25.7734 148.949 25.9688 149.47 26.2188L148.689 28.1875C148.262 27.9844 147.832 27.8073 147.4 27.6562C146.968 27.5052 146.543 27.4297 146.127 27.4297ZM149.877 33.6875V31.7344H154.072V33.6875H149.877ZM162.347 37L161.518 34.2812H157.354L156.526 37H153.917L157.948 25.5312H160.909L164.956 37H162.347ZM160.94 32.25L160.112 29.5938C160.06 29.4167 159.99 29.1901 159.901 28.9141C159.818 28.6328 159.732 28.349 159.643 28.0625C159.56 27.7708 159.492 27.5182 159.44 27.3047C159.388 27.5182 159.315 27.7839 159.222 28.1016C159.133 28.4141 159.047 28.7109 158.964 28.9922C158.88 29.2734 158.82 29.474 158.784 29.5938L157.964 32.25H160.94Z"
18
18
  fill="#BDC7CE"
19
19
  />
@@ -3,20 +3,20 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
7
 
8
- <path class="group-hover:fill-[#023DFF]" d="M48.0517 19.0322C50.6523 19.0322 52.7536 21.1321 52.7536 23.7309V25.7545C52.7536 28.3533 50.6523 30.4532 48.0517 30.4532H28.7861V23.7309C28.7861 21.1321 30.8875 19.0322 33.4881 19.0322H48.0517Z" fill="#BDC7CE"/>
9
- <path class="group-hover:fill-[#00BB00]" d="M48.0517 42.9912C50.6523 42.9912 52.7536 40.8914 52.7536 38.2926V36.269C52.7536 33.6702 50.6523 31.5703 48.0517 31.5703H28.7861V38.2926C28.7861 40.8914 30.8875 42.9912 33.4881 42.9912H48.0517Z" fill="#BDC7CE"/>
10
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M60.9558 36.026H64.2569C65.0404 36.026 65.6509 35.8319 66.0738 35.4369C66.5039 35.0488 66.7188 34.5291 66.7188 33.8776C66.7188 33.2262 66.5039 32.7134 66.0738 32.3114C65.6439 31.9095 65.0404 31.7085 64.2569 31.7085H60.9558V36.0191V36.026ZM60.9558 29.6363H63.5634C64.2221 29.6363 64.7492 29.4492 65.1445 29.0681C65.5328 28.6869 65.7339 28.2087 65.7339 27.6197C65.7339 27.0306 65.5398 26.5801 65.1445 26.192C64.7492 25.804 64.2221 25.603 63.5634 25.603H60.9558V29.6433V29.6363ZM58.5146 38.2783V23.3438H63.7297C65.0474 23.3438 66.1154 23.7388 66.9268 24.5219C67.7381 25.305 68.1474 26.2822 68.1474 27.4464C68.1474 28.68 67.6897 29.6502 66.7812 30.3501C68.3694 31.0362 69.1599 32.249 69.1599 33.9885C69.1599 35.2775 68.7022 36.3171 67.7797 37.1002C66.8643 37.8833 65.6785 38.2783 64.2361 38.2783H58.5146Z" fill="#BDC7CE"/>
11
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M75.2833 29.567C74.666 29.567 74.0834 29.7541 73.5356 30.1214C72.9877 30.4956 72.641 31.057 72.4815 31.8124H78.078C77.9672 31.0847 77.6549 30.5234 77.1418 30.1422C76.6286 29.7541 76.0114 29.567 75.2763 29.567H75.2833ZM75.4704 38.4376C73.9655 38.4376 72.6965 37.9179 71.6493 36.8783C70.602 35.8388 70.082 34.5498 70.082 33.0113C70.082 31.4728 70.5952 30.1768 71.6145 29.1443C72.634 28.1047 73.9101 27.585 75.422 27.585C76.9338 27.585 78.2584 28.1324 79.2084 29.2274C80.1585 30.3224 80.5954 31.7431 80.5123 33.4964H72.3912C72.4745 34.335 72.8143 35.0141 73.4108 35.5269C74.0072 36.0398 74.6937 36.2962 75.4636 36.2962C76.6286 36.2962 77.5511 35.8665 78.2375 35.0141L79.9019 36.4417C78.8478 37.7723 77.3707 38.4376 75.4636 38.4376H75.4704Z" fill="#BDC7CE"/>
12
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M81.9962 38.2705V27.7644H84.3126V28.8801C84.9852 28.0554 85.8937 27.6396 87.0241 27.6396C87.3917 27.6396 87.6829 27.6743 87.9049 27.7436V30.1414C87.5859 30.0028 87.1768 29.9335 86.6842 29.9335C85.5887 29.9335 84.7979 30.3701 84.3056 31.2364V38.2775H81.9893L81.9962 38.2705Z" fill="#BDC7CE"/>
13
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M93.3147 29.567C92.6975 29.567 92.1149 29.7541 91.5671 30.1214C91.0191 30.4956 90.6725 31.057 90.513 31.8124H96.1095C95.9984 31.0847 95.6864 30.5234 95.1732 30.1422C94.6601 29.7541 94.0428 29.567 93.3147 29.567ZM93.5019 38.4376C91.997 38.4376 90.7279 37.9179 89.6806 36.8783C88.6334 35.8388 88.1133 34.5498 88.1133 33.0113C88.1133 31.4728 88.6266 30.1768 89.646 29.1443C90.6655 28.1117 91.9416 27.585 93.4534 27.585C94.9651 27.585 96.2898 28.1324 97.2399 29.2274C98.1899 30.3224 98.6269 31.7431 98.5436 33.4964H90.4227C90.506 34.335 90.8458 35.0141 91.4422 35.5269C92.0386 36.0398 92.7251 36.2962 93.4949 36.2962C94.6601 36.2962 95.5823 35.8665 96.269 35.0141L97.9334 36.4417C96.8792 37.7723 95.402 38.4376 93.4949 38.4376H93.5019Z" fill="#BDC7CE"/>
14
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M100.021 38.2714V23.3438H102.337V32.554L106.546 27.7652H109.383L104.986 32.7203L109.91 38.2714H106.983L102.337 33.0183V38.2714H100.021Z" fill="#BDC7CE"/>
15
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M114.369 29.567C113.752 29.567 113.169 29.7541 112.622 30.1214C112.074 30.4956 111.727 31.057 111.567 31.8124H117.164C117.053 31.0847 116.741 30.5233 116.228 30.1422C115.715 29.7541 115.097 29.567 114.362 29.567H114.369ZM114.556 38.4376C113.051 38.4376 111.782 37.9179 110.735 36.8783C109.688 35.8388 109.168 34.5498 109.168 33.0113C109.168 31.4728 109.681 30.1768 110.7 29.1442C111.72 28.1047 112.996 27.585 114.508 27.585C116.02 27.585 117.344 28.1324 118.294 29.2274C119.244 30.3224 119.681 31.7431 119.598 33.4964H111.477C111.56 34.335 111.9 35.0141 112.497 35.5269C113.093 36.0398 113.78 36.2962 114.55 36.2962C115.715 36.2962 116.637 35.8665 117.323 35.0141L118.988 36.4417C117.934 37.7723 116.457 38.4376 114.55 38.4376H114.556Z" fill="#BDC7CE"/>
16
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M127.861 36.0318H131.162C131.946 36.0318 132.556 35.8378 132.979 35.4428C133.409 35.0547 133.624 34.5349 133.624 33.8835C133.624 33.232 133.409 32.7192 132.979 32.3173C132.549 31.9153 131.946 31.7213 131.162 31.7213H127.861V36.0318ZM127.861 29.6422H130.469C131.127 29.6422 131.655 29.4551 132.05 29.0739C132.438 28.6928 132.639 28.2146 132.639 27.6255C132.639 27.0365 132.445 26.586 132.05 26.1979C131.662 25.8098 131.127 25.6088 130.469 25.6088H127.861V29.6491V29.6422ZM125.42 38.2842V23.3496H130.635C131.953 23.3496 133.021 23.7446 133.832 24.5277C134.643 25.3108 135.053 26.288 135.053 27.4523C135.053 28.6858 134.595 29.6561 133.687 30.356C135.268 31.0421 136.065 32.2549 136.065 33.9944C136.065 35.2834 135.607 36.3229 134.685 37.106C133.77 37.8891 132.584 38.2842 131.141 38.2842H125.42Z" fill="#BDC7CE"/>
17
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M142.48 36.3028C143.659 36.3028 144.568 35.8385 145.213 34.9168V31.1537C144.582 30.2112 143.673 29.7469 142.48 29.7469C141.572 29.7469 140.816 30.0587 140.226 30.6825C139.637 31.3062 139.346 32.0893 139.346 33.0249C139.346 33.9604 139.644 34.7436 140.226 35.3673C140.816 35.991 141.565 36.3028 142.48 36.3028ZM145.213 38.2849V37.4047C144.429 38.1047 143.437 38.4581 142.244 38.4581C140.733 38.4581 139.471 37.9314 138.479 36.878C137.48 35.8247 136.988 34.5426 136.988 33.0318C136.988 31.521 137.487 30.2389 138.479 29.1855C139.477 28.1322 140.733 27.6055 142.244 27.6055C143.423 27.6055 144.408 27.9658 145.213 28.6796V27.7787H147.529V38.2918H145.213V38.2849Z" fill="#BDC7CE"/>
18
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M149.741 38.2771V27.764H152.057V28.755C152.744 27.9858 153.736 27.5977 155.025 27.5977C156.315 27.5977 157.349 28.0065 158.119 28.8243C158.888 29.6421 159.277 30.7301 159.277 32.0746V38.2771H156.96V32.3448C156.96 31.5617 156.752 30.9311 156.343 30.4529C155.927 29.9747 155.338 29.7391 154.568 29.7391C153.361 29.7391 152.529 30.3143 152.064 31.4647V38.2771H149.748H149.741Z" fill="#BDC7CE"/>
19
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#E3E5E8]" d="M161.35 38.2772V23.3496H163.667V32.5598L167.876 27.7641H170.712L166.316 32.7262L171.239 38.2772H168.313L163.667 33.0242V38.2772H161.35Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#023DFF]" d="M48.0517 19.0322C50.6523 19.0322 52.7536 21.1321 52.7536 23.7309V25.7545C52.7536 28.3533 50.6523 30.4532 48.0517 30.4532H28.7861V23.7309C28.7861 21.1321 30.8875 19.0322 33.4881 19.0322H48.0517Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#00BB00]" d="M48.0517 42.9912C50.6523 42.9912 52.7536 40.8914 52.7536 38.2926V36.269C52.7536 33.6702 50.6523 31.5703 48.0517 31.5703H28.7861V38.2926C28.7861 40.8914 30.8875 42.9912 33.4881 42.9912H48.0517Z" fill="#BDC7CE"/>
10
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M60.9558 36.026H64.2569C65.0404 36.026 65.6509 35.8319 66.0738 35.4369C66.5039 35.0488 66.7188 34.5291 66.7188 33.8776C66.7188 33.2262 66.5039 32.7134 66.0738 32.3114C65.6439 31.9095 65.0404 31.7085 64.2569 31.7085H60.9558V36.0191V36.026ZM60.9558 29.6363H63.5634C64.2221 29.6363 64.7492 29.4492 65.1445 29.0681C65.5328 28.6869 65.7339 28.2087 65.7339 27.6197C65.7339 27.0306 65.5398 26.5801 65.1445 26.192C64.7492 25.804 64.2221 25.603 63.5634 25.603H60.9558V29.6433V29.6363ZM58.5146 38.2783V23.3438H63.7297C65.0474 23.3438 66.1154 23.7388 66.9268 24.5219C67.7381 25.305 68.1474 26.2822 68.1474 27.4464C68.1474 28.68 67.6897 29.6502 66.7812 30.3501C68.3694 31.0362 69.1599 32.249 69.1599 33.9885C69.1599 35.2775 68.7022 36.3171 67.7797 37.1002C66.8643 37.8833 65.6785 38.2783 64.2361 38.2783H58.5146Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M75.2833 29.567C74.666 29.567 74.0834 29.7541 73.5356 30.1214C72.9877 30.4956 72.641 31.057 72.4815 31.8124H78.078C77.9672 31.0847 77.6549 30.5234 77.1418 30.1422C76.6286 29.7541 76.0114 29.567 75.2763 29.567H75.2833ZM75.4704 38.4376C73.9655 38.4376 72.6965 37.9179 71.6493 36.8783C70.602 35.8388 70.082 34.5498 70.082 33.0113C70.082 31.4728 70.5952 30.1768 71.6145 29.1443C72.634 28.1047 73.9101 27.585 75.422 27.585C76.9338 27.585 78.2584 28.1324 79.2084 29.2274C80.1585 30.3224 80.5954 31.7431 80.5123 33.4964H72.3912C72.4745 34.335 72.8143 35.0141 73.4108 35.5269C74.0072 36.0398 74.6937 36.2962 75.4636 36.2962C76.6286 36.2962 77.5511 35.8665 78.2375 35.0141L79.9019 36.4417C78.8478 37.7723 77.3707 38.4376 75.4636 38.4376H75.4704Z" fill="#BDC7CE"/>
12
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M81.9962 38.2705V27.7644H84.3126V28.8801C84.9852 28.0554 85.8937 27.6396 87.0241 27.6396C87.3917 27.6396 87.6829 27.6743 87.9049 27.7436V30.1414C87.5859 30.0028 87.1768 29.9335 86.6842 29.9335C85.5887 29.9335 84.7979 30.3701 84.3056 31.2364V38.2775H81.9893L81.9962 38.2705Z" fill="#BDC7CE"/>
13
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M93.3147 29.567C92.6975 29.567 92.1149 29.7541 91.5671 30.1214C91.0191 30.4956 90.6725 31.057 90.513 31.8124H96.1095C95.9984 31.0847 95.6864 30.5234 95.1732 30.1422C94.6601 29.7541 94.0428 29.567 93.3147 29.567ZM93.5019 38.4376C91.997 38.4376 90.7279 37.9179 89.6806 36.8783C88.6334 35.8388 88.1133 34.5498 88.1133 33.0113C88.1133 31.4728 88.6266 30.1768 89.646 29.1443C90.6655 28.1117 91.9416 27.585 93.4534 27.585C94.9651 27.585 96.2898 28.1324 97.2399 29.2274C98.1899 30.3224 98.6269 31.7431 98.5436 33.4964H90.4227C90.506 34.335 90.8458 35.0141 91.4422 35.5269C92.0386 36.0398 92.7251 36.2962 93.4949 36.2962C94.6601 36.2962 95.5823 35.8665 96.269 35.0141L97.9334 36.4417C96.8792 37.7723 95.402 38.4376 93.4949 38.4376H93.5019Z" fill="#BDC7CE"/>
14
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M100.021 38.2714V23.3438H102.337V32.554L106.546 27.7652H109.383L104.986 32.7203L109.91 38.2714H106.983L102.337 33.0183V38.2714H100.021Z" fill="#BDC7CE"/>
15
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M114.369 29.567C113.752 29.567 113.169 29.7541 112.622 30.1214C112.074 30.4956 111.727 31.057 111.567 31.8124H117.164C117.053 31.0847 116.741 30.5233 116.228 30.1422C115.715 29.7541 115.097 29.567 114.362 29.567H114.369ZM114.556 38.4376C113.051 38.4376 111.782 37.9179 110.735 36.8783C109.688 35.8388 109.168 34.5498 109.168 33.0113C109.168 31.4728 109.681 30.1768 110.7 29.1442C111.72 28.1047 112.996 27.585 114.508 27.585C116.02 27.585 117.344 28.1324 118.294 29.2274C119.244 30.3224 119.681 31.7431 119.598 33.4964H111.477C111.56 34.335 111.9 35.0141 112.497 35.5269C113.093 36.0398 113.78 36.2962 114.55 36.2962C115.715 36.2962 116.637 35.8665 117.323 35.0141L118.988 36.4417C117.934 37.7723 116.457 38.4376 114.55 38.4376H114.556Z" fill="#BDC7CE"/>
16
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M127.861 36.0318H131.162C131.946 36.0318 132.556 35.8378 132.979 35.4428C133.409 35.0547 133.624 34.5349 133.624 33.8835C133.624 33.232 133.409 32.7192 132.979 32.3173C132.549 31.9153 131.946 31.7213 131.162 31.7213H127.861V36.0318ZM127.861 29.6422H130.469C131.127 29.6422 131.655 29.4551 132.05 29.0739C132.438 28.6928 132.639 28.2146 132.639 27.6255C132.639 27.0365 132.445 26.586 132.05 26.1979C131.662 25.8098 131.127 25.6088 130.469 25.6088H127.861V29.6491V29.6422ZM125.42 38.2842V23.3496H130.635C131.953 23.3496 133.021 23.7446 133.832 24.5277C134.643 25.3108 135.053 26.288 135.053 27.4523C135.053 28.6858 134.595 29.6561 133.687 30.356C135.268 31.0421 136.065 32.2549 136.065 33.9944C136.065 35.2834 135.607 36.3229 134.685 37.106C133.77 37.8891 132.584 38.2842 131.141 38.2842H125.42Z" fill="#BDC7CE"/>
17
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M142.48 36.3028C143.659 36.3028 144.568 35.8385 145.213 34.9168V31.1537C144.582 30.2112 143.673 29.7469 142.48 29.7469C141.572 29.7469 140.816 30.0587 140.226 30.6825C139.637 31.3062 139.346 32.0893 139.346 33.0249C139.346 33.9604 139.644 34.7436 140.226 35.3673C140.816 35.991 141.565 36.3028 142.48 36.3028ZM145.213 38.2849V37.4047C144.429 38.1047 143.437 38.4581 142.244 38.4581C140.733 38.4581 139.471 37.9314 138.479 36.878C137.48 35.8247 136.988 34.5426 136.988 33.0318C136.988 31.521 137.487 30.2389 138.479 29.1855C139.477 28.1322 140.733 27.6055 142.244 27.6055C143.423 27.6055 144.408 27.9658 145.213 28.6796V27.7787H147.529V38.2918H145.213V38.2849Z" fill="#BDC7CE"/>
18
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M149.741 38.2771V27.764H152.057V28.755C152.744 27.9858 153.736 27.5977 155.025 27.5977C156.315 27.5977 157.349 28.0065 158.119 28.8243C158.888 29.6421 159.277 30.7301 159.277 32.0746V38.2771H156.96V32.3448C156.96 31.5617 156.752 30.9311 156.343 30.4529C155.927 29.9747 155.338 29.7391 154.568 29.7391C153.361 29.7391 152.529 30.3143 152.064 31.4647V38.2771H149.748H149.741Z" fill="#BDC7CE"/>
19
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M161.35 38.2772V23.3496H163.667V32.5598L167.876 27.7641H170.712L166.316 32.7262L171.239 38.2772H168.313L163.667 33.0242V38.2772H161.35Z" fill="#BDC7CE"/>
20
20
  </svg>
21
21
  </template>
22
22
 
@@ -3,11 +3,11 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 146 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M131.176 41.6184H133.434C133.673 41.6184 133.866 41.4067 133.866 41.1458V41.1337V34.7911H137.725C142.001 34.7911 145.5 32.3029 145.5 27.5395C145.5 23.2008 142.641 20.3789 138.114 20.3789H131.176C130.775 20.3789 130.45 20.7338 130.45 21.1713V40.8258C130.45 41.2637 130.775 41.6184 131.176 41.6184ZM64.8104 38.4432L64.8105 38.4557C64.8105 38.6105 64.7424 38.7481 64.6369 38.8342C62.7298 40.5544 60.0429 41.9824 56.7023 41.9824C50.6216 41.9824 46.623 37.2488 46.623 30.9985C46.623 25.0514 50.7881 20.0146 56.647 20.0146C59.6894 20.0146 61.6791 20.8467 63.5015 22.3575L63.5023 22.3581L63.5053 22.3606C63.6884 22.5047 63.8077 22.7393 63.8077 23.0048C63.8077 23.2057 63.7392 23.3895 63.6262 23.5291L63.6318 23.5285L62.2373 25.3454C62.1582 25.4567 62.0346 25.5284 61.8956 25.5284C61.7953 25.5284 61.7027 25.4908 61.6293 25.428L61.6289 25.4277L61.6206 25.4205C60.2301 24.1992 58.7983 23.4432 56.508 23.4432C52.926 23.4432 50.205 26.8721 50.205 30.9985C50.205 35.3679 52.8426 38.5841 56.8135 38.5841C58.6461 38.5841 60.3122 37.9469 61.5063 36.9758V33.0011H56.9793H56.9681C56.7292 33.0011 56.5356 32.7895 56.5356 32.5287H56.5359V32.5164V30.24L56.5356 30.227C56.5356 29.966 56.7292 29.7545 56.9681 29.7545H56.9793H64.3782H64.3784C64.6172 29.7548 64.8105 29.9662 64.8105 30.2271L64.8104 30.2392V38.4432ZM69.0542 41.6184H71.3121C71.551 41.6184 71.7446 41.4067 71.7446 41.1458H71.7444V41.1337V34.2147H75.9649L80.5878 41.2987L80.5886 41.2975C80.7207 41.4922 80.9325 41.6184 81.1714 41.6184H83.9838C84.2226 41.6184 84.416 41.4067 84.416 41.1458C84.416 41.0354 84.3813 40.9338 84.3231 40.8531L79.5746 33.5775C82.2958 32.7281 84.2118 30.6344 84.2118 27.1454C84.2118 23.0488 81.5461 20.3789 76.9923 20.3789H69.0637L69.0542 20.3786C68.6537 20.3786 68.329 20.7337 68.329 21.1712V40.8258C68.329 41.2637 68.6537 41.6184 69.0542 41.6184ZM71.7444 30.9074V24.2495C71.7444 23.9885 71.938 23.7771 72.1768 23.7771H76.7146C79.2413 23.7771 80.7408 25.0212 80.7408 27.2965C80.7408 29.5118 79.1859 30.9074 76.7424 30.9074H71.7444ZM96.7807 41.9824C102.751 41.9824 106.971 36.9758 106.971 30.9985C106.971 24.9605 102.806 20.0146 96.8363 20.0146C90.8663 20.0146 86.6457 25.0212 86.6457 30.9985C86.6457 37.0365 90.8108 41.9824 96.7807 41.9824ZM96.8363 38.5539C92.9766 38.5539 90.2278 35.1249 90.2278 30.9985C90.2278 26.8112 92.921 23.4432 96.7807 23.4432C100.64 23.4432 103.389 26.8721 103.389 30.9985C103.389 35.1858 100.696 38.5539 96.8363 38.5539ZM118.154 41.9521C123.235 41.9521 126.511 38.7664 126.511 32.4247V21.1713C126.511 20.7338 126.187 20.3789 125.786 20.3789H123.528C123.289 20.3789 123.096 20.5903 123.096 20.8513H123.096V20.8635V32.6068C123.096 36.5205 121.236 38.5234 118.209 38.5234C115.155 38.5234 113.294 36.3994 113.294 32.4549V20.8635V20.8513H113.294C113.294 20.5903 113.101 20.3789 112.862 20.3789H110.604C110.203 20.3789 109.879 20.7338 109.879 21.1713V32.6068C109.879 38.7664 113.1 41.9521 118.154 41.9521ZM133.866 31.4234V24.2495C133.866 23.9885 134.059 23.7771 134.298 23.7771H137.836C140.391 23.7771 142.029 25.0817 142.029 27.5702C142.029 29.8454 140.419 31.4234 137.836 31.4234H133.866Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M29.0607 47.5968C35.2868 45.1747 40.1513 39.6418 40.1513 30.9994C40.1513 22.3575 35.2868 16.8243 29.0604 14.4023C26.6226 13.4538 23.9748 12.9797 21.325 12.9797C18.6753 12.9797 16.0275 13.4538 13.5896 14.4023C7.36344 16.8243 2.49886 22.3575 2.49886 30.9994C2.49886 39.6418 7.36345 45.1747 13.5898 47.5968C16.0276 48.5454 18.6755 49.0198 21.3252 49.0198C23.9749 49.0198 26.6228 48.5454 29.0607 47.5968ZM42.1505 31C42.1505 57.6667 0.5 57.6667 0.5 31C0.5 4.33334 42.1505 4.33334 42.1505 31ZM41.0614 30.9994C41.0614 40.134 35.9304 45.9783 29.3627 48.5334C26.8255 49.5205 24.0741 50.0141 21.3252 50.0141C18.5763 50.0141 15.8248 49.5205 13.2876 48.5334C6.71986 45.9783 1.58887 40.134 1.58887 30.9994C1.58887 21.8655 6.71986 16.021 13.2875 13.4661C15.8247 12.4787 18.5761 11.9853 21.325 11.9853C24.074 11.9853 26.8254 12.4787 29.3626 13.4661C35.9304 16.021 41.0614 21.8655 41.0614 30.9994Z" fill="#BDC7CE"/>
9
- <path class="group-hover:fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M41.1033 31.0005C41.1033 40.135 35.9724 45.9793 29.4047 48.5344C26.8674 49.5216 24.1161 50.0151 21.3673 50.0151C18.6183 50.0151 15.8668 49.5216 13.3296 48.5344C6.76185 45.9793 1.63086 40.135 1.63086 31.0005C1.63086 21.8665 6.76185 16.022 13.3295 13.4671C15.8667 12.4797 18.6182 11.9863 21.367 11.9863C24.116 11.9863 26.8673 12.4797 29.4046 13.4671C35.9724 16.022 41.1033 21.8665 41.1033 31.0005ZM29.1027 47.5979C35.3288 45.1757 40.1934 39.6429 40.1934 31.0005C40.1934 22.3585 35.3288 16.8253 29.1024 14.4033C26.6646 13.4549 24.0168 12.9807 21.367 12.9807C18.7174 12.9807 16.0694 13.4549 13.6316 14.4033C7.40544 16.8253 2.54085 22.3585 2.54085 31.0005C2.54085 39.6429 7.40544 45.1757 13.6319 47.5979C16.0695 48.5464 18.7175 49.0209 21.3673 49.0209C24.0169 49.0209 26.6648 48.5464 29.1027 47.5979Z" fill="#FEFEFE"/>
10
- <path class="group-hover:fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M10.5575 41.7314H18.5811C23.0169 41.7314 25.9362 39.77 25.9362 35.8457C25.9362 32.902 24.5321 31.4617 22.2587 30.511C23.6621 29.6526 24.8418 28.3043 24.8418 25.8817C24.8418 21.8573 21.6333 20.2715 18.3566 20.2715H10.5575C10.1595 20.2715 9.83691 20.6241 9.83691 21.0592V21.062V40.9438V40.944C9.83691 41.3791 10.1595 41.7314 10.5575 41.7314ZM14.0486 28.9479V24.8827V24.8826C14.0488 24.6216 14.2421 24.4104 14.4809 24.4104H17.7108C19.5354 24.4104 20.5462 25.2071 20.5462 26.618C20.5462 28.2731 19.3387 28.9479 17.4304 28.9479H14.0486ZM14.0486 37.1201V32.8717H18.4407C20.6581 32.8717 21.6406 33.7611 21.6406 35.2014C21.6406 36.8573 20.4896 37.5927 18.5811 37.5927H14.4809C14.2421 37.5927 14.0486 37.3814 14.0486 37.1204V37.1201ZM28.8422 41.7314H32.0129C32.4109 41.7314 32.7334 41.3791 32.7334 40.944V40.9438V21.0592V21.059C32.7331 20.6239 32.4109 20.2715 32.0129 20.2715H28.8422C28.6035 20.2715 28.4102 20.4829 28.4101 20.744V41.2591C28.4101 41.5201 28.6035 41.7314 28.8422 41.7314Z" fill="white"/>
6
+ <svg width="200" height="62" viewBox="0 0 146 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M131.176 41.6184H133.434C133.673 41.6184 133.866 41.4067 133.866 41.1458V41.1337V34.7911H137.725C142.001 34.7911 145.5 32.3029 145.5 27.5395C145.5 23.2008 142.641 20.3789 138.114 20.3789H131.176C130.775 20.3789 130.45 20.7338 130.45 21.1713V40.8258C130.45 41.2637 130.775 41.6184 131.176 41.6184ZM64.8104 38.4432L64.8105 38.4557C64.8105 38.6105 64.7424 38.7481 64.6369 38.8342C62.7298 40.5544 60.0429 41.9824 56.7023 41.9824C50.6216 41.9824 46.623 37.2488 46.623 30.9985C46.623 25.0514 50.7881 20.0146 56.647 20.0146C59.6894 20.0146 61.6791 20.8467 63.5015 22.3575L63.5023 22.3581L63.5053 22.3606C63.6884 22.5047 63.8077 22.7393 63.8077 23.0048C63.8077 23.2057 63.7392 23.3895 63.6262 23.5291L63.6318 23.5285L62.2373 25.3454C62.1582 25.4567 62.0346 25.5284 61.8956 25.5284C61.7953 25.5284 61.7027 25.4908 61.6293 25.428L61.6289 25.4277L61.6206 25.4205C60.2301 24.1992 58.7983 23.4432 56.508 23.4432C52.926 23.4432 50.205 26.8721 50.205 30.9985C50.205 35.3679 52.8426 38.5841 56.8135 38.5841C58.6461 38.5841 60.3122 37.9469 61.5063 36.9758V33.0011H56.9793H56.9681C56.7292 33.0011 56.5356 32.7895 56.5356 32.5287H56.5359V32.5164V30.24L56.5356 30.227C56.5356 29.966 56.7292 29.7545 56.9681 29.7545H56.9793H64.3782H64.3784C64.6172 29.7548 64.8105 29.9662 64.8105 30.2271L64.8104 30.2392V38.4432ZM69.0542 41.6184H71.3121C71.551 41.6184 71.7446 41.4067 71.7446 41.1458H71.7444V41.1337V34.2147H75.9649L80.5878 41.2987L80.5886 41.2975C80.7207 41.4922 80.9325 41.6184 81.1714 41.6184H83.9838C84.2226 41.6184 84.416 41.4067 84.416 41.1458C84.416 41.0354 84.3813 40.9338 84.3231 40.8531L79.5746 33.5775C82.2958 32.7281 84.2118 30.6344 84.2118 27.1454C84.2118 23.0488 81.5461 20.3789 76.9923 20.3789H69.0637L69.0542 20.3786C68.6537 20.3786 68.329 20.7337 68.329 21.1712V40.8258C68.329 41.2637 68.6537 41.6184 69.0542 41.6184ZM71.7444 30.9074V24.2495C71.7444 23.9885 71.938 23.7771 72.1768 23.7771H76.7146C79.2413 23.7771 80.7408 25.0212 80.7408 27.2965C80.7408 29.5118 79.1859 30.9074 76.7424 30.9074H71.7444ZM96.7807 41.9824C102.751 41.9824 106.971 36.9758 106.971 30.9985C106.971 24.9605 102.806 20.0146 96.8363 20.0146C90.8663 20.0146 86.6457 25.0212 86.6457 30.9985C86.6457 37.0365 90.8108 41.9824 96.7807 41.9824ZM96.8363 38.5539C92.9766 38.5539 90.2278 35.1249 90.2278 30.9985C90.2278 26.8112 92.921 23.4432 96.7807 23.4432C100.64 23.4432 103.389 26.8721 103.389 30.9985C103.389 35.1858 100.696 38.5539 96.8363 38.5539ZM118.154 41.9521C123.235 41.9521 126.511 38.7664 126.511 32.4247V21.1713C126.511 20.7338 126.187 20.3789 125.786 20.3789H123.528C123.289 20.3789 123.096 20.5903 123.096 20.8513H123.096V20.8635V32.6068C123.096 36.5205 121.236 38.5234 118.209 38.5234C115.155 38.5234 113.294 36.3994 113.294 32.4549V20.8635V20.8513H113.294C113.294 20.5903 113.101 20.3789 112.862 20.3789H110.604C110.203 20.3789 109.879 20.7338 109.879 21.1713V32.6068C109.879 38.7664 113.1 41.9521 118.154 41.9521ZM133.866 31.4234V24.2495C133.866 23.9885 134.059 23.7771 134.298 23.7771H137.836C140.391 23.7771 142.029 25.0817 142.029 27.5702C142.029 29.8454 140.419 31.4234 137.836 31.4234H133.866Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#15599D]" fill-rule="evenodd" clip-rule="evenodd" d="M29.0607 47.5968C35.2868 45.1747 40.1513 39.6418 40.1513 30.9994C40.1513 22.3575 35.2868 16.8243 29.0604 14.4023C26.6226 13.4538 23.9748 12.9797 21.325 12.9797C18.6753 12.9797 16.0275 13.4538 13.5896 14.4023C7.36344 16.8243 2.49886 22.3575 2.49886 30.9994C2.49886 39.6418 7.36345 45.1747 13.5898 47.5968C16.0276 48.5454 18.6755 49.0198 21.3252 49.0198C23.9749 49.0198 26.6228 48.5454 29.0607 47.5968ZM42.1505 31C42.1505 57.6667 0.5 57.6667 0.5 31C0.5 4.33334 42.1505 4.33334 42.1505 31ZM41.0614 30.9994C41.0614 40.134 35.9304 45.9783 29.3627 48.5334C26.8255 49.5205 24.0741 50.0141 21.3252 50.0141C18.5763 50.0141 15.8248 49.5205 13.2876 48.5334C6.71986 45.9783 1.58887 40.134 1.58887 30.9994C1.58887 21.8655 6.71986 16.021 13.2875 13.4661C15.8247 12.4787 18.5761 11.9853 21.325 11.9853C24.074 11.9853 26.8254 12.4787 29.3626 13.4661C35.9304 16.021 41.0614 21.8655 41.0614 30.9994Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M41.1033 31.0005C41.1033 40.135 35.9724 45.9793 29.4047 48.5344C26.8674 49.5216 24.1161 50.0151 21.3673 50.0151C18.6183 50.0151 15.8668 49.5216 13.3296 48.5344C6.76185 45.9793 1.63086 40.135 1.63086 31.0005C1.63086 21.8665 6.76185 16.022 13.3295 13.4671C15.8667 12.4797 18.6182 11.9863 21.367 11.9863C24.116 11.9863 26.8673 12.4797 29.4046 13.4671C35.9724 16.022 41.1033 21.8665 41.1033 31.0005ZM29.1027 47.5979C35.3288 45.1757 40.1934 39.6429 40.1934 31.0005C40.1934 22.3585 35.3288 16.8253 29.1024 14.4033C26.6646 13.4549 24.0168 12.9807 21.367 12.9807C18.7174 12.9807 16.0694 13.4549 13.6316 14.4033C7.40544 16.8253 2.54085 22.3585 2.54085 31.0005C2.54085 39.6429 7.40544 45.1757 13.6319 47.5979C16.0695 48.5464 18.7175 49.0209 21.3673 49.0209C24.0169 49.0209 26.6648 48.5464 29.1027 47.5979Z" fill="#FEFEFE"/>
10
+ <path class="fill-[#fff]" fill-rule="evenodd" clip-rule="evenodd" d="M10.5575 41.7314H18.5811C23.0169 41.7314 25.9362 39.77 25.9362 35.8457C25.9362 32.902 24.5321 31.4617 22.2587 30.511C23.6621 29.6526 24.8418 28.3043 24.8418 25.8817C24.8418 21.8573 21.6333 20.2715 18.3566 20.2715H10.5575C10.1595 20.2715 9.83691 20.6241 9.83691 21.0592V21.062V40.9438V40.944C9.83691 41.3791 10.1595 41.7314 10.5575 41.7314ZM14.0486 28.9479V24.8827V24.8826C14.0488 24.6216 14.2421 24.4104 14.4809 24.4104H17.7108C19.5354 24.4104 20.5462 25.2071 20.5462 26.618C20.5462 28.2731 19.3387 28.9479 17.4304 28.9479H14.0486ZM14.0486 37.1201V32.8717H18.4407C20.6581 32.8717 21.6406 33.7611 21.6406 35.2014C21.6406 36.8573 20.4896 37.5927 18.5811 37.5927H14.4809C14.2421 37.5927 14.0486 37.3814 14.0486 37.1204V37.1201ZM28.8422 41.7314H32.0129C32.4109 41.7314 32.7334 41.3791 32.7334 40.944V40.9438V21.0592V21.059C32.7331 20.6239 32.4109 20.2715 32.0129 20.2715H28.8422C28.6035 20.2715 28.4102 20.4829 28.4101 20.744V41.2591C28.4101 41.5201 28.6035 41.7314 28.8422 41.7314Z" fill="white"/>
11
11
  </svg>
12
12
  </template>
13
13
 
@@ -3,12 +3,12 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M68.0783 26.6758V28.6732H62.3788V30.9945H67.6108V32.8404H62.3788V35.4922H68.202V37.4897H60V26.6758H68.0783Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M76.9332 26.91C76.5482 26.7515 76.1082 26.6758 75.6269 26.6758H69.8105V37.5034H72.1825V33.2744H74.5544C75.1526 33.2744 75.5788 33.4052 75.8401 33.6669C76.1014 33.9286 76.2731 34.342 76.3557 34.9067C76.4176 35.3407 76.4657 35.7952 76.4931 36.2705C76.5207 36.7457 76.6032 37.1521 76.7337 37.4966H79.1057C78.9957 37.3451 78.9132 37.1659 78.8583 36.9456C78.8032 36.7321 78.7619 36.4977 78.7345 36.2567C78.7069 36.0157 78.6864 35.7815 78.6796 35.5472C78.6753 35.4034 78.6685 35.2725 78.6621 35.153C78.6583 35.0781 78.6546 35.0075 78.6519 34.9412C78.6383 34.6656 78.597 34.397 78.5419 34.1215C78.4801 33.846 78.3976 33.5981 78.2737 33.3707C78.157 33.1434 77.9988 32.9437 77.8064 32.7784C77.6137 32.6131 77.3732 32.4891 77.0776 32.4064V32.3789C77.6827 32.1379 78.1157 31.7865 78.3838 31.3182C78.6519 30.8498 78.7826 30.2988 78.7826 29.6651C78.7826 29.2518 78.7069 28.8662 78.5627 28.5079C78.4183 28.1429 78.2051 27.8329 77.93 27.5573C77.655 27.2818 77.3181 27.0683 76.9332 26.91ZM76.0052 31.2018C75.7371 31.4428 75.3247 31.5668 74.7815 31.5668V31.56H72.1827V28.5155H74.7815C75.3247 28.5155 75.7303 28.6395 76.0052 28.8737C76.2734 29.108 76.4109 29.4936 76.4109 30.0171C76.4109 30.5681 76.2803 30.9608 76.0052 31.2018Z" fill="#BDC7CE"/>
9
- <path class="group-hover:fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M87.1222 37.4082C86.6066 37.6285 86.0909 37.7319 85.5615 37.7319C84.7365 37.7319 83.994 37.5872 83.3271 37.2979C82.6671 37.0087 82.1102 36.616 81.6565 36.1064C81.2027 35.6034 80.852 35.0111 80.6115 34.3292C80.3708 33.6473 80.2471 32.9103 80.2471 32.1252C80.2471 31.3192 80.3708 30.5685 80.6115 29.8728C80.852 29.184 81.2027 28.5779 81.6565 28.0614C82.1102 27.5447 82.6671 27.1452 83.3271 26.8491C83.9871 26.5529 84.7297 26.4082 85.5615 26.4082C86.1184 26.4082 86.6547 26.4909 87.1703 26.6562C87.6929 26.8215 88.1602 27.0695 88.5797 27.3932C88.9991 27.7169 89.3429 28.1164 89.6179 28.5916C89.8929 29.067 90.0579 29.6111 90.1197 30.231H87.8509C87.7066 29.625 87.4384 29.1703 87.0329 28.8673C86.6271 28.5641 86.1389 28.4126 85.5684 28.4126C85.0321 28.4126 84.5783 28.5159 84.2071 28.7225C83.8358 28.9291 83.5334 29.2047 83.2996 29.556C83.0659 29.9073 82.9009 30.2999 82.7909 30.7476C82.6877 31.1953 82.6327 31.6499 82.6327 32.1252C82.6327 32.5797 82.6877 33.0206 82.7909 33.4477C82.894 33.8747 83.0659 34.2604 83.2996 34.6047C83.5334 34.9491 83.8358 35.2247 84.2071 35.4314C84.5783 35.6381 85.0321 35.7413 85.5684 35.7413C86.3521 35.7413 86.964 35.5414 87.3903 35.1421C87.8166 34.7426 88.0709 34.164 88.1397 33.4063H85.7471V31.6361H90.2847V37.4839H88.7721L88.5316 36.2579C88.1053 36.809 87.6379 37.1947 87.1222 37.4082Z" fill="#BDC7CE"/>
10
- <path class="group-hover:fill-[#5C5754]" d="M84.4875 60.8243C84.4875 60.8243 100.562 45.8023 97.2424 29.5051C96.8611 27.6853 95.898 20.1056 78.2402 10.1807C89.9595 14.0795 94.3734 16.3225 106.85 12.4398C108.787 11.0639 115.098 10.2287 117.761 0.0228733C118.12 -0.606528 118.634 16.3634 112.334 28.2335C112.152 28.8576 101.14 48.8792 88.6522 58.1877C88.2097 58.4762 84.4875 60.8243 84.4875 60.8243Z" fill="#BDC7CE"/>
11
- <path class="group-hover:fill-[#5C5754]" d="M138.356 1.61035C138.356 1.61035 120.989 15.2159 122.822 31.7177C123.038 33.5612 123.312 41.1872 140 52.5482C128.681 47.6842 123.196 44.3589 110.203 47.9921C109.071 48.907 105.323 49.1276 99.7233 59.3452C99.3087 59.9417 100.331 43.0055 107.678 31.7177C107.916 31.1118 121.747 11.5963 135.024 3.37749C135.491 3.12745 138.356 1.61035 138.356 1.61035Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M68.0783 26.6758V28.6732H62.3788V30.9945H67.6108V32.8404H62.3788V35.4922H68.202V37.4897H60V26.6758H68.0783Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M76.9332 26.91C76.5482 26.7515 76.1082 26.6758 75.6269 26.6758H69.8105V37.5034H72.1825V33.2744H74.5544C75.1526 33.2744 75.5788 33.4052 75.8401 33.6669C76.1014 33.9286 76.2731 34.342 76.3557 34.9067C76.4176 35.3407 76.4657 35.7952 76.4931 36.2705C76.5207 36.7457 76.6032 37.1521 76.7337 37.4966H79.1057C78.9957 37.3451 78.9132 37.1659 78.8583 36.9456C78.8032 36.7321 78.7619 36.4977 78.7345 36.2567C78.7069 36.0157 78.6864 35.7815 78.6796 35.5472C78.6753 35.4034 78.6685 35.2725 78.6621 35.153C78.6583 35.0781 78.6546 35.0075 78.6519 34.9412C78.6383 34.6656 78.597 34.397 78.5419 34.1215C78.4801 33.846 78.3976 33.5981 78.2737 33.3707C78.157 33.1434 77.9988 32.9437 77.8064 32.7784C77.6137 32.6131 77.3732 32.4891 77.0776 32.4064V32.3789C77.6827 32.1379 78.1157 31.7865 78.3838 31.3182C78.6519 30.8498 78.7826 30.2988 78.7826 29.6651C78.7826 29.2518 78.7069 28.8662 78.5627 28.5079C78.4183 28.1429 78.2051 27.8329 77.93 27.5573C77.655 27.2818 77.3181 27.0683 76.9332 26.91ZM76.0052 31.2018C75.7371 31.4428 75.3247 31.5668 74.7815 31.5668V31.56H72.1827V28.5155H74.7815C75.3247 28.5155 75.7303 28.6395 76.0052 28.8737C76.2734 29.108 76.4109 29.4936 76.4109 30.0171C76.4109 30.5681 76.2803 30.9608 76.0052 31.2018Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#5C5754]" fill-rule="evenodd" clip-rule="evenodd" d="M87.1222 37.4082C86.6066 37.6285 86.0909 37.7319 85.5615 37.7319C84.7365 37.7319 83.994 37.5872 83.3271 37.2979C82.6671 37.0087 82.1102 36.616 81.6565 36.1064C81.2027 35.6034 80.852 35.0111 80.6115 34.3292C80.3708 33.6473 80.2471 32.9103 80.2471 32.1252C80.2471 31.3192 80.3708 30.5685 80.6115 29.8728C80.852 29.184 81.2027 28.5779 81.6565 28.0614C82.1102 27.5447 82.6671 27.1452 83.3271 26.8491C83.9871 26.5529 84.7297 26.4082 85.5615 26.4082C86.1184 26.4082 86.6547 26.4909 87.1703 26.6562C87.6929 26.8215 88.1602 27.0695 88.5797 27.3932C88.9991 27.7169 89.3429 28.1164 89.6179 28.5916C89.8929 29.067 90.0579 29.6111 90.1197 30.231H87.8509C87.7066 29.625 87.4384 29.1703 87.0329 28.8673C86.6271 28.5641 86.1389 28.4126 85.5684 28.4126C85.0321 28.4126 84.5783 28.5159 84.2071 28.7225C83.8358 28.9291 83.5334 29.2047 83.2996 29.556C83.0659 29.9073 82.9009 30.2999 82.7909 30.7476C82.6877 31.1953 82.6327 31.6499 82.6327 32.1252C82.6327 32.5797 82.6877 33.0206 82.7909 33.4477C82.894 33.8747 83.0659 34.2604 83.2996 34.6047C83.5334 34.9491 83.8358 35.2247 84.2071 35.4314C84.5783 35.6381 85.0321 35.7413 85.5684 35.7413C86.3521 35.7413 86.964 35.5414 87.3903 35.1421C87.8166 34.7426 88.0709 34.164 88.1397 33.4063H85.7471V31.6361H90.2847V37.4839H88.7721L88.5316 36.2579C88.1053 36.809 87.6379 37.1947 87.1222 37.4082Z" fill="#BDC7CE"/>
10
+ <path class="fill-[#5C5754]" d="M84.4875 60.8243C84.4875 60.8243 100.562 45.8023 97.2424 29.5051C96.8611 27.6853 95.898 20.1056 78.2402 10.1807C89.9595 14.0795 94.3734 16.3225 106.85 12.4398C108.787 11.0639 115.098 10.2287 117.761 0.0228733C118.12 -0.606528 118.634 16.3634 112.334 28.2335C112.152 28.8576 101.14 48.8792 88.6522 58.1877C88.2097 58.4762 84.4875 60.8243 84.4875 60.8243Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#5C5754]" d="M138.356 1.61035C138.356 1.61035 120.989 15.2159 122.822 31.7177C123.038 33.5612 123.312 41.1872 140 52.5482C128.681 47.6842 123.196 44.3589 110.203 47.9921C109.071 48.907 105.323 49.1276 99.7233 59.3452C99.3087 59.9417 100.331 43.0055 107.678 31.7177C107.916 31.1118 121.747 11.5963 135.024 3.37749C135.491 3.12745 138.356 1.61035 138.356 1.61035Z" fill="#BDC7CE"/>
12
12
  </svg>
13
13
  </template>
14
14
 
@@ -3,17 +3,17 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#97134B]" d="M59.0907 25.2644L59.1197 27.4316V29.1839H65.1521C65.453 30.3784 65.453 31.6279 65.1521 32.8224H59.1197V40.4667C57.6396 40.688 56.1344 40.688 54.6543 40.4667V21.6513L54.851 21.4854H66.8673C66.9891 22.056 67.0454 22.6385 67.035 23.2217C67.0587 23.5048 67.0192 23.7896 66.9195 24.056C66.8198 24.3223 66.6622 24.5638 66.4579 24.7633C66.071 25.0984 65.4681 25.2644 64.6395 25.2644H59.0907Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#97134B]" d="M78.3736 27.8214C79.7213 29.1555 80.3952 31.0642 80.3952 33.5474C80.4075 34.5731 80.2607 35.5947 79.9599 36.5763C79.7013 37.4257 79.2725 38.2149 78.6993 38.8967C78.1443 39.5367 77.4467 40.0404 76.6616 40.3681C75.7807 40.7265 74.8346 40.9014 73.8824 40.882C72.9341 40.9016 71.9924 40.7221 71.1193 40.3554C70.341 40.0165 69.65 39.5081 69.0978 38.868C68.5235 38.1883 68.0975 37.3983 67.8468 36.5476C67.288 34.5803 67.288 32.4985 67.8468 30.5312C68.0993 29.6838 68.5202 28.8949 69.0849 28.2108C69.6293 27.5607 70.3207 27.0468 71.1032 26.7106C71.9821 26.3441 72.9288 26.1636 73.8824 26.1808C75.7374 26.1766 77.2344 26.7234 78.3736 27.8214ZM73.8985 29.4172C73.5399 29.4005 73.1859 29.5027 72.8926 29.7077C72.6266 29.9183 72.4182 30.1915 72.2865 30.5024C72.1228 30.8689 72.0142 31.2571 71.964 31.6547C71.9068 32.1206 71.8788 32.5896 71.8802 33.059C71.8802 33.8346 71.9028 34.5081 71.9512 35.073C71.982 35.5557 72.0774 36.0323 72.2349 36.4902C72.3462 36.828 72.556 37.1256 72.8378 37.3456C73.133 37.5428 73.4847 37.6402 73.8405 37.6232C74.1962 37.6544 74.5521 37.5654 74.8501 37.3706C75.1482 37.1758 75.3707 36.8869 75.4816 36.5508C75.7835 35.5658 75.9164 34.5376 75.8749 33.5091C75.9191 32.4794 75.7861 31.4497 75.4816 30.4641C75.3715 30.1429 75.1564 29.8671 74.8703 29.6804C74.5842 29.4937 74.2434 29.4067 73.9018 29.4332L73.8985 29.4172Z" fill="#BDC7CE"/>
9
- <path class="group-hover:fill-[#97134B]" d="M82.082 28.5997C82.2029 28.1653 82.3818 27.7488 82.614 27.3612C82.8109 26.9862 83.0778 26.6515 83.4007 26.375C84.1851 26.3981 84.9449 26.6509 85.5842 27.1014C86.2235 27.5519 86.7135 28.1799 86.9924 28.9061C87.7039 27.2357 88.8742 26.4016 90.5035 26.4037C91.1262 26.4189 91.746 26.4937 92.3542 26.6272C92.3387 27.3172 92.2402 28.0029 92.0608 28.6699C91.8956 29.3764 91.6261 30.055 91.2612 30.6839C90.795 30.5424 90.3153 30.4493 89.8296 30.4062C88.8914 30.4062 88.1273 30.8786 87.5276 31.8233V40.4666C86.8086 40.5857 86.0803 40.6412 85.3513 40.6325C84.6128 40.6403 83.8749 40.5848 83.146 40.4666V31.4882C83.146 30.1008 82.7913 29.138 82.082 28.5997Z" fill="#BDC7CE"/>
10
- <path class="group-hover:fill-[#97134B]" d="M103.332 26.5698C103.442 27.0765 103.498 27.5932 103.5 28.1114C103.499 28.6213 103.443 29.1296 103.332 29.6275L99.992 29.5732V35.9567C99.992 36.8281 100.401 37.2622 101.227 37.2622H102.797C103.025 37.8538 103.149 38.4801 103.161 39.1134C103.178 39.5175 103.141 39.922 103.052 40.3167C101.787 40.4956 100.512 40.5895 99.2343 40.5975C96.8699 40.5975 95.6877 39.307 95.6877 36.7259V29.5988L93.4985 29.6275C93.3647 29.1386 93.2985 28.6339 93.3019 28.1274C93.3009 27.602 93.367 27.0787 93.4985 26.5698L95.6877 26.6273V25.0154C95.6877 24.0707 95.8704 23.3983 96.2358 22.9982C96.6002 22.6024 97.2031 22.4014 98.0736 22.4014H99.7889L99.9855 22.5961V26.6273L103.332 26.5698Z" fill="#BDC7CE"/>
11
- <path class="group-hover:fill-[#97134B]" d="M116.386 34.9351H109.087C109.08 35.6267 109.307 36.3006 109.731 36.8501C110.125 37.3097 110.766 37.5363 111.666 37.5363C112.188 37.5281 112.708 37.4661 113.217 37.3512C113.907 37.1935 114.585 36.9866 115.245 36.732C115.895 37.4385 116.298 38.3341 116.393 39.2854C114.888 40.3493 113.053 40.8813 110.889 40.8813C109.872 40.913 108.861 40.7235 107.926 40.3259C107.158 39.9771 106.493 39.4412 105.991 38.7684C105.477 38.0627 105.118 37.2581 104.937 36.4065C104.719 35.4308 104.611 34.4342 104.615 33.4349C104.605 32.4645 104.734 31.4976 104.995 30.5624C105.223 29.7299 105.614 28.9501 106.146 28.2675C106.67 27.612 107.343 27.0881 108.11 26.7387C108.989 26.3514 109.943 26.1618 110.905 26.1833C111.736 26.1716 112.561 26.3235 113.333 26.6301C114.025 26.9055 114.651 27.322 115.171 27.8526C115.685 28.3862 116.083 29.0198 116.338 29.7134C116.615 30.4703 116.752 31.2703 116.744 32.0753C116.767 33.0407 116.646 34.0043 116.386 34.9351ZM109.045 31.9348H112.72V31.6156C112.745 31.0177 112.586 30.4265 112.262 29.9208C112.11 29.7008 111.903 29.5237 111.661 29.4068C111.42 29.2898 111.151 29.2371 110.882 29.2538C110.625 29.2375 110.368 29.2878 110.136 29.3997C109.904 29.5116 109.706 29.6813 109.561 29.8921C109.287 30.323 109.112 30.9901 109.045 31.9348Z" fill="#BDC7CE"/>
12
- <path class="group-hover:fill-[#97134B]" d="M120.062 21.4282C121.577 21.392 122.873 21.3643 123.95 21.3452C125.027 21.326 125.887 21.3175 126.53 21.3197C128.571 21.3197 130.177 21.7452 131.346 22.5964C132.516 23.4475 133.1 24.7114 133.1 26.3882C133.101 27.1997 132.857 27.9931 132.401 28.6671C131.97 29.342 131.346 29.8743 130.608 30.1959C131.09 30.3534 131.541 30.5932 131.94 30.9045C132.356 31.2264 132.72 31.6109 133.016 32.0439C133.318 32.4826 133.559 32.9592 133.732 33.4611C133.908 33.9662 133.998 34.497 133.997 35.0314C133.997 36.9465 133.384 38.3593 132.159 39.2701C130.934 40.1808 129.198 40.6393 126.952 40.6457C126.26 40.6457 125.343 40.6361 124.202 40.617C123.06 40.5978 121.68 40.5712 120.062 40.5372L119.865 40.3425V21.6388L120.062 21.4282ZM124.327 24.4571V28.9256H126.31C127.203 28.9256 127.829 28.7086 128.193 28.2872C128.559 27.8355 128.751 27.27 128.735 26.6914C128.756 26.117 128.556 25.5561 128.177 25.121C127.806 24.7061 127.184 24.4827 126.31 24.4827H125.166C124.843 24.4859 124.572 24.4763 124.327 24.4571ZM126.646 32.1014H124.327V37.5274C124.811 37.5082 125.356 37.5082 125.962 37.5274C126.529 37.5492 127.096 37.5021 127.652 37.3869C128.17 37.277 128.633 36.9928 128.964 36.5826C129.346 36.0688 129.534 35.4386 129.496 34.8016C129.505 34.1109 129.262 33.4401 128.812 32.9121C128.354 32.3716 127.632 32.1014 126.646 32.1014Z" fill="#BDC7CE"/>
13
- <path class="group-hover:fill-[#97134B]" d="M148.583 38.4658C148.468 38.9053 148.289 39.3258 148.051 39.7138C147.848 40.0889 147.57 40.4199 147.235 40.6873C146.648 40.6985 146.067 40.5708 145.54 40.3149C145.013 40.059 144.555 39.6822 144.205 39.2159C142.986 40.3266 141.666 40.882 140.245 40.882C139.592 40.8965 138.942 40.7781 138.337 40.5341C137.819 40.3201 137.351 40.0041 136.96 39.6053C136.587 39.2183 136.301 38.7584 136.119 38.2552C135.931 37.7437 135.836 37.2034 135.838 36.6593C135.822 35.9358 135.971 35.218 136.273 34.5591C136.55 33.9752 136.958 33.462 137.466 33.059C137.993 32.6498 138.594 32.3433 139.236 32.1557C139.936 31.9432 140.664 31.8356 141.396 31.8365C141.829 31.8365 142.206 31.8365 142.535 31.8525C142.863 31.8685 143.147 31.8748 143.389 31.894V31.361C143.389 30.1768 142.783 29.5864 141.564 29.5864C140.78 29.5864 139.405 29.8928 137.44 30.5056C136.877 29.8672 136.522 28.8565 136.373 27.4734C136.822 27.3075 137.322 27.1511 137.872 27.0042C138.427 26.8542 138.991 26.7234 139.572 26.6148C140.152 26.5063 140.723 26.4138 141.284 26.3499C141.788 26.2888 142.295 26.2558 142.802 26.251C143.443 26.2508 144.081 26.3444 144.695 26.5287C145.284 26.7016 145.833 26.9904 146.307 27.3777C146.782 27.7777 147.157 28.2813 147.403 28.8491C147.689 29.5311 147.828 30.2651 147.809 31.0035V36.6465C147.796 37.5115 148.058 38.1115 148.583 38.4658ZM140.107 36.388C140.107 37.2593 140.61 37.6934 141.622 37.6934C142.144 37.6934 142.733 37.4242 143.389 36.8859V34.6517L142.451 34.6102C142.196 34.6102 142.006 34.6102 141.874 34.6102C140.697 34.6038 140.107 35.1943 140.107 36.388Z" fill="#BDC7CE"/>
14
- <path class="group-hover:fill-[#97134B]" d="M163.153 31.2809V36.9782C163.153 38.2006 163.379 39.1198 163.827 39.7294C163.13 40.3597 162.217 40.7023 161.273 40.687C160.306 40.687 159.635 40.4667 159.277 40.0199C158.92 39.573 158.746 38.8996 158.746 37.9931V32.0724C158.776 31.5963 158.69 31.1199 158.494 30.684C158.389 30.5293 158.244 30.4059 158.073 30.3271C157.903 30.2484 157.714 30.2173 157.527 30.2372C157.193 30.2476 156.864 30.3235 156.56 30.4606C156.156 30.6406 155.786 30.8854 155.463 31.1851V40.4667C155.141 40.521 154.799 40.5625 154.425 40.5912C154.051 40.6199 153.667 40.6327 153.274 40.6327C152.881 40.6327 152.497 40.6327 152.123 40.5912C151.749 40.5497 151.404 40.521 151.085 40.4667V26.5986L151.282 26.4039H152.939C154.08 26.4039 154.848 26.9592 155.241 28.07C156.55 26.9209 157.85 26.3475 159.142 26.3496C160.434 26.3517 161.43 26.8007 162.131 27.6965C162.812 28.5966 163.153 29.7914 163.153 31.2809Z" fill="#BDC7CE"/>
15
- <path class="group-hover:fill-[#97134B]" d="M177.187 34.9354L177.89 36.9653C178.264 38.1867 178.713 38.974 179.238 39.3272C178.877 39.7536 178.426 40.0964 177.917 40.3313C177.408 40.5663 176.852 40.6877 176.291 40.6869C175.785 40.7237 175.284 40.5697 174.888 40.256C174.487 39.827 174.197 39.3078 174.043 38.7431L173.205 36.3525C173.1 35.9177 172.877 35.5194 172.56 35.2003C172.281 34.9961 171.94 34.8925 171.593 34.9066C171.18 34.9066 170.89 34.9162 170.723 34.9354V40.4667C169.309 40.6879 167.87 40.6879 166.457 40.4667V20.2054L166.654 20.0107H168.337C169.217 20.0107 169.833 20.2054 170.191 20.5948C170.548 20.9842 170.723 21.6609 170.723 22.6248V31.351H171.171C171.337 31.3511 171.499 31.3038 171.638 31.215C171.778 31.1261 171.889 30.9994 171.957 30.8499L173.418 28.0699C173.615 27.5859 173.958 27.1734 174.4 26.8881C174.841 26.6027 175.361 26.4582 175.888 26.474C176.433 26.474 177.245 26.4932 178.332 26.5283L178.499 26.7517L176.339 30.901C176.005 31.5559 175.513 32.1193 174.908 32.5416C175.45 32.7373 175.938 33.0556 176.334 33.4712C176.729 33.8868 177.022 34.3882 177.187 34.9354Z" fill="#BDC7CE"/>
16
- <path class="group-hover:fill-[#0CAFC0]" d="M47.0608 29.6089C46.9927 29.469 46.8861 29.351 46.7532 29.2685C46.6202 29.1861 46.4665 29.1425 46.3096 29.1428H44.0527C43.8474 29.1434 43.6497 29.2196 43.4982 29.3567C42.8575 29.9604 42.0961 30.4246 41.2631 30.7192C40.4301 31.0139 39.5441 31.1325 38.6619 31.0675C35.3862 30.8568 32.9423 28.4215 32.9778 25.3957C32.9965 24.2963 33.4525 23.2485 34.247 22.48C35.0414 21.7115 36.11 21.2843 37.2208 21.2912C37.6928 21.2989 38.1579 21.4047 38.5861 21.6015C39.0143 21.7983 39.396 22.0818 39.7066 22.4338C39.8545 22.6059 39.9781 22.797 40.0741 23.0019C40.1323 23.1706 40.1323 23.3536 40.0741 23.5222C39.9985 23.7172 39.8523 23.8774 39.6641 23.9718C39.4758 24.0661 39.2589 24.0879 39.0553 24.0329H39.0392C38.5134 23.8416 37.9365 23.8392 37.4092 24.0263C36.8819 24.2133 36.4378 24.5778 36.1543 25.056C35.8709 25.5343 35.7663 26.0959 35.8586 26.6428C35.951 27.1897 36.2346 27.6871 36.6598 28.0481C36.6922 28.0876 36.7315 28.1212 36.7758 28.147L36.8274 28.1789L36.8532 28.1981C36.8801 28.2296 36.913 28.2556 36.9499 28.2747C37.5377 28.6008 38.1963 28.7818 38.8698 28.8024C39.5433 28.8229 40.2119 28.6824 40.8189 28.3928C41.5423 28.0197 42.1646 27.4799 42.6331 26.8189C43.1016 26.1578 43.4028 25.395 43.5111 24.5946C43.6262 23.8319 43.572 23.0535 43.352 22.3137C43.1321 21.574 42.7517 20.8906 42.2375 20.3113C41.6186 19.6008 40.8547 19.0282 39.9961 18.631C39.1376 18.2338 38.2038 18.0211 37.2562 18.0068H37.1466C35.1698 18.0141 33.2748 18.7889 31.8689 20.1646C30.4629 21.5403 29.6583 23.4071 29.6279 25.3638C29.6194 26.1523 29.7192 26.9383 29.9245 27.7002C29.7794 27.6842 29.6344 27.6683 29.4893 27.6587C26.1426 27.4448 23.17 28.7949 20.9517 31.5175C20.8527 31.6386 20.7902 31.7849 20.7715 31.9396C20.7528 32.0943 20.7787 32.251 20.8461 32.3918C20.9135 32.5326 21.0197 32.6517 21.1525 32.7353C21.2853 32.8189 21.4392 32.8637 21.5966 32.8644H23.8535C24.0598 32.8644 24.2587 32.7881 24.4112 32.6506C25.0529 32.0434 25.8168 31.5772 26.6529 31.2824C27.4891 30.9876 28.3787 30.8709 29.2636 30.9398C32.5393 31.1505 34.98 33.5858 34.9477 36.6116C34.9266 37.7107 34.4686 38.7573 33.6731 39.5245C32.8777 40.2917 31.8088 40.7175 30.6983 40.7098C30.2268 40.7017 29.7622 40.5959 29.3346 40.399C28.907 40.2022 28.5258 39.9188 28.2157 39.5671C28.0667 39.3952 27.942 39.2041 27.845 38.999C27.7884 38.8301 27.7884 38.6476 27.845 38.4787C27.9206 38.2844 28.0662 38.1247 28.2537 38.0304C28.4413 37.9361 28.6575 37.9139 28.8606 37.968H28.8799C29.4054 38.1578 29.9814 38.1589 30.5077 37.9714C31.034 37.7838 31.4771 37.4194 31.7598 36.9416C32.0426 36.4639 32.147 35.903 32.055 35.3569C31.9629 34.8107 31.6802 34.3138 31.2561 33.9528C31.2267 33.9137 31.1893 33.8811 31.1465 33.8571L31.0884 33.822L31.0659 33.8028C31.0383 33.772 31.0056 33.7461 30.9691 33.7262C30.3811 33.4006 29.7224 33.2201 29.0489 33.2001C28.3754 33.1801 27.7069 33.3212 27.1002 33.6113C26.3756 33.9821 25.7524 34.5209 25.2836 35.1817C24.8149 35.8425 24.5145 36.6057 24.408 37.4063C24.2931 38.1687 24.3471 38.9468 24.5665 39.6865C24.7859 40.4262 25.1653 41.1097 25.6783 41.6896C26.2982 42.3998 27.0627 42.9723 27.9217 43.3694C28.7807 43.7666 29.7149 43.9795 30.6629 43.9941H30.7499C32.7267 43.9876 34.6218 43.213 36.0274 41.837C37.433 40.4611 38.2367 38.5938 38.2654 36.6371C38.2734 35.8488 38.1747 35.063 37.972 34.3007C38.1171 34.3007 38.2589 34.3358 38.404 34.3422C38.6297 34.3582 38.8554 34.3646 39.0779 34.3646C42.1537 34.3646 44.8813 33.0208 46.9448 30.4834C47.0449 30.363 47.1088 30.2172 47.1293 30.0626C47.1498 29.908 47.1261 29.7508 47.0608 29.6089Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="group-hover:fill-[#97134B]" d="M59.0907 25.2644L59.1197 27.4316V29.1839H65.1521C65.453 30.3784 65.453 31.6279 65.1521 32.8224H59.1197V40.4667C57.6396 40.688 56.1344 40.688 54.6543 40.4667V21.6513L54.851 21.4854H66.8673C66.9891 22.056 67.0454 22.6385 67.035 23.2217C67.0587 23.5048 67.0192 23.7896 66.9195 24.056C66.8198 24.3223 66.6622 24.5638 66.4579 24.7633C66.071 25.0984 65.4681 25.2644 64.6395 25.2644H59.0907Z" fill="#97134B"/>
8
+ <path class="group-hover:fill-[#97134B]" d="M78.3736 27.8214C79.7213 29.1555 80.3952 31.0642 80.3952 33.5474C80.4075 34.5731 80.2607 35.5947 79.9599 36.5763C79.7013 37.4257 79.2725 38.2149 78.6993 38.8967C78.1443 39.5367 77.4467 40.0404 76.6616 40.3681C75.7807 40.7265 74.8346 40.9014 73.8824 40.882C72.9341 40.9016 71.9924 40.7221 71.1193 40.3554C70.341 40.0165 69.65 39.5081 69.0978 38.868C68.5235 38.1883 68.0975 37.3983 67.8468 36.5476C67.288 34.5803 67.288 32.4985 67.8468 30.5312C68.0993 29.6838 68.5202 28.8949 69.0849 28.2108C69.6293 27.5607 70.3207 27.0468 71.1032 26.7106C71.9821 26.3441 72.9288 26.1636 73.8824 26.1808C75.7374 26.1766 77.2344 26.7234 78.3736 27.8214ZM73.8985 29.4172C73.5399 29.4005 73.1859 29.5027 72.8926 29.7077C72.6266 29.9183 72.4182 30.1915 72.2865 30.5024C72.1228 30.8689 72.0142 31.2571 71.964 31.6547C71.9068 32.1206 71.8788 32.5896 71.8802 33.059C71.8802 33.8346 71.9028 34.5081 71.9512 35.073C71.982 35.5557 72.0774 36.0323 72.2349 36.4902C72.3462 36.828 72.556 37.1256 72.8378 37.3456C73.133 37.5428 73.4847 37.6402 73.8405 37.6232C74.1962 37.6544 74.5521 37.5654 74.8501 37.3706C75.1482 37.1758 75.3707 36.8869 75.4816 36.5508C75.7835 35.5658 75.9164 34.5376 75.8749 33.5091C75.9191 32.4794 75.7861 31.4497 75.4816 30.4641C75.3715 30.1429 75.1564 29.8671 74.8703 29.6804C74.5842 29.4937 74.2434 29.4067 73.9018 29.4332L73.8985 29.4172Z" fill="#97134B"/>
9
+ <path class="group-hover:fill-[#97134B]" d="M82.082 28.5997C82.2029 28.1653 82.3818 27.7488 82.614 27.3612C82.8109 26.9862 83.0778 26.6515 83.4007 26.375C84.1851 26.3981 84.9449 26.6509 85.5842 27.1014C86.2235 27.5519 86.7135 28.1799 86.9924 28.9061C87.7039 27.2357 88.8742 26.4016 90.5035 26.4037C91.1262 26.4189 91.746 26.4937 92.3542 26.6272C92.3387 27.3172 92.2402 28.0029 92.0608 28.6699C91.8956 29.3764 91.6261 30.055 91.2612 30.6839C90.795 30.5424 90.3153 30.4493 89.8296 30.4062C88.8914 30.4062 88.1273 30.8786 87.5276 31.8233V40.4666C86.8086 40.5857 86.0803 40.6412 85.3513 40.6325C84.6128 40.6403 83.8749 40.5848 83.146 40.4666V31.4882C83.146 30.1008 82.7913 29.138 82.082 28.5997Z" fill="#97134B"/>
10
+ <path class="group-hover:fill-[#97134B]" d="M103.332 26.5698C103.442 27.0765 103.498 27.5932 103.5 28.1114C103.499 28.6213 103.443 29.1296 103.332 29.6275L99.992 29.5732V35.9567C99.992 36.8281 100.401 37.2622 101.227 37.2622H102.797C103.025 37.8538 103.149 38.4801 103.161 39.1134C103.178 39.5175 103.141 39.922 103.052 40.3167C101.787 40.4956 100.512 40.5895 99.2343 40.5975C96.8699 40.5975 95.6877 39.307 95.6877 36.7259V29.5988L93.4985 29.6275C93.3647 29.1386 93.2985 28.6339 93.3019 28.1274C93.3009 27.602 93.367 27.0787 93.4985 26.5698L95.6877 26.6273V25.0154C95.6877 24.0707 95.8704 23.3983 96.2358 22.9982C96.6002 22.6024 97.2031 22.4014 98.0736 22.4014H99.7889L99.9855 22.5961V26.6273L103.332 26.5698Z" fill="#97134B"/>
11
+ <path class="group-hover:fill-[#97134B]" d="M116.386 34.9351H109.087C109.08 35.6267 109.307 36.3006 109.731 36.8501C110.125 37.3097 110.766 37.5363 111.666 37.5363C112.188 37.5281 112.708 37.4661 113.217 37.3512C113.907 37.1935 114.585 36.9866 115.245 36.732C115.895 37.4385 116.298 38.3341 116.393 39.2854C114.888 40.3493 113.053 40.8813 110.889 40.8813C109.872 40.913 108.861 40.7235 107.926 40.3259C107.158 39.9771 106.493 39.4412 105.991 38.7684C105.477 38.0627 105.118 37.2581 104.937 36.4065C104.719 35.4308 104.611 34.4342 104.615 33.4349C104.605 32.4645 104.734 31.4976 104.995 30.5624C105.223 29.7299 105.614 28.9501 106.146 28.2675C106.67 27.612 107.343 27.0881 108.11 26.7387C108.989 26.3514 109.943 26.1618 110.905 26.1833C111.736 26.1716 112.561 26.3235 113.333 26.6301C114.025 26.9055 114.651 27.322 115.171 27.8526C115.685 28.3862 116.083 29.0198 116.338 29.7134C116.615 30.4703 116.752 31.2703 116.744 32.0753C116.767 33.0407 116.646 34.0043 116.386 34.9351ZM109.045 31.9348H112.72V31.6156C112.745 31.0177 112.586 30.4265 112.262 29.9208C112.11 29.7008 111.903 29.5237 111.661 29.4068C111.42 29.2898 111.151 29.2371 110.882 29.2538C110.625 29.2375 110.368 29.2878 110.136 29.3997C109.904 29.5116 109.706 29.6813 109.561 29.8921C109.287 30.323 109.112 30.9901 109.045 31.9348Z" fill="#97134B"/>
12
+ <path class="group-hover:fill-[#97134B]" d="M120.062 21.4282C121.577 21.392 122.873 21.3643 123.95 21.3452C125.027 21.326 125.887 21.3175 126.53 21.3197C128.571 21.3197 130.177 21.7452 131.346 22.5964C132.516 23.4475 133.1 24.7114 133.1 26.3882C133.101 27.1997 132.857 27.9931 132.401 28.6671C131.97 29.342 131.346 29.8743 130.608 30.1959C131.09 30.3534 131.541 30.5932 131.94 30.9045C132.356 31.2264 132.72 31.6109 133.016 32.0439C133.318 32.4826 133.559 32.9592 133.732 33.4611C133.908 33.9662 133.998 34.497 133.997 35.0314C133.997 36.9465 133.384 38.3593 132.159 39.2701C130.934 40.1808 129.198 40.6393 126.952 40.6457C126.26 40.6457 125.343 40.6361 124.202 40.617C123.06 40.5978 121.68 40.5712 120.062 40.5372L119.865 40.3425V21.6388L120.062 21.4282ZM124.327 24.4571V28.9256H126.31C127.203 28.9256 127.829 28.7086 128.193 28.2872C128.559 27.8355 128.751 27.27 128.735 26.6914C128.756 26.117 128.556 25.5561 128.177 25.121C127.806 24.7061 127.184 24.4827 126.31 24.4827H125.166C124.843 24.4859 124.572 24.4763 124.327 24.4571ZM126.646 32.1014H124.327V37.5274C124.811 37.5082 125.356 37.5082 125.962 37.5274C126.529 37.5492 127.096 37.5021 127.652 37.3869C128.17 37.277 128.633 36.9928 128.964 36.5826C129.346 36.0688 129.534 35.4386 129.496 34.8016C129.505 34.1109 129.262 33.4401 128.812 32.9121C128.354 32.3716 127.632 32.1014 126.646 32.1014Z" fill="#97134B"/>
13
+ <path class="group-hover:fill-[#97134B]" d="M148.583 38.4658C148.468 38.9053 148.289 39.3258 148.051 39.7138C147.848 40.0889 147.57 40.4199 147.235 40.6873C146.648 40.6985 146.067 40.5708 145.54 40.3149C145.013 40.059 144.555 39.6822 144.205 39.2159C142.986 40.3266 141.666 40.882 140.245 40.882C139.592 40.8965 138.942 40.7781 138.337 40.5341C137.819 40.3201 137.351 40.0041 136.96 39.6053C136.587 39.2183 136.301 38.7584 136.119 38.2552C135.931 37.7437 135.836 37.2034 135.838 36.6593C135.822 35.9358 135.971 35.218 136.273 34.5591C136.55 33.9752 136.958 33.462 137.466 33.059C137.993 32.6498 138.594 32.3433 139.236 32.1557C139.936 31.9432 140.664 31.8356 141.396 31.8365C141.829 31.8365 142.206 31.8365 142.535 31.8525C142.863 31.8685 143.147 31.8748 143.389 31.894V31.361C143.389 30.1768 142.783 29.5864 141.564 29.5864C140.78 29.5864 139.405 29.8928 137.44 30.5056C136.877 29.8672 136.522 28.8565 136.373 27.4734C136.822 27.3075 137.322 27.1511 137.872 27.0042C138.427 26.8542 138.991 26.7234 139.572 26.6148C140.152 26.5063 140.723 26.4138 141.284 26.3499C141.788 26.2888 142.295 26.2558 142.802 26.251C143.443 26.2508 144.081 26.3444 144.695 26.5287C145.284 26.7016 145.833 26.9904 146.307 27.3777C146.782 27.7777 147.157 28.2813 147.403 28.8491C147.689 29.5311 147.828 30.2651 147.809 31.0035V36.6465C147.796 37.5115 148.058 38.1115 148.583 38.4658ZM140.107 36.388C140.107 37.2593 140.61 37.6934 141.622 37.6934C142.144 37.6934 142.733 37.4242 143.389 36.8859V34.6517L142.451 34.6102C142.196 34.6102 142.006 34.6102 141.874 34.6102C140.697 34.6038 140.107 35.1943 140.107 36.388Z" fill="#97134B"/>
14
+ <path class="group-hover:fill-[#97134B]" d="M163.153 31.2809V36.9782C163.153 38.2006 163.379 39.1198 163.827 39.7294C163.13 40.3597 162.217 40.7023 161.273 40.687C160.306 40.687 159.635 40.4667 159.277 40.0199C158.92 39.573 158.746 38.8996 158.746 37.9931V32.0724C158.776 31.5963 158.69 31.1199 158.494 30.684C158.389 30.5293 158.244 30.4059 158.073 30.3271C157.903 30.2484 157.714 30.2173 157.527 30.2372C157.193 30.2476 156.864 30.3235 156.56 30.4606C156.156 30.6406 155.786 30.8854 155.463 31.1851V40.4667C155.141 40.521 154.799 40.5625 154.425 40.5912C154.051 40.6199 153.667 40.6327 153.274 40.6327C152.881 40.6327 152.497 40.6327 152.123 40.5912C151.749 40.5497 151.404 40.521 151.085 40.4667V26.5986L151.282 26.4039H152.939C154.08 26.4039 154.848 26.9592 155.241 28.07C156.55 26.9209 157.85 26.3475 159.142 26.3496C160.434 26.3517 161.43 26.8007 162.131 27.6965C162.812 28.5966 163.153 29.7914 163.153 31.2809Z" fill="#97134B"/>
15
+ <path class="group-hover:fill-[#97134B]" d="M177.187 34.9354L177.89 36.9653C178.264 38.1867 178.713 38.974 179.238 39.3272C178.877 39.7536 178.426 40.0964 177.917 40.3313C177.408 40.5663 176.852 40.6877 176.291 40.6869C175.785 40.7237 175.284 40.5697 174.888 40.256C174.487 39.827 174.197 39.3078 174.043 38.7431L173.205 36.3525C173.1 35.9177 172.877 35.5194 172.56 35.2003C172.281 34.9961 171.94 34.8925 171.593 34.9066C171.18 34.9066 170.89 34.9162 170.723 34.9354V40.4667C169.309 40.6879 167.87 40.6879 166.457 40.4667V20.2054L166.654 20.0107H168.337C169.217 20.0107 169.833 20.2054 170.191 20.5948C170.548 20.9842 170.723 21.6609 170.723 22.6248V31.351H171.171C171.337 31.3511 171.499 31.3038 171.638 31.215C171.778 31.1261 171.889 30.9994 171.957 30.8499L173.418 28.0699C173.615 27.5859 173.958 27.1734 174.4 26.8881C174.841 26.6027 175.361 26.4582 175.888 26.474C176.433 26.474 177.245 26.4932 178.332 26.5283L178.499 26.7517L176.339 30.901C176.005 31.5559 175.513 32.1193 174.908 32.5416C175.45 32.7373 175.938 33.0556 176.334 33.4712C176.729 33.8868 177.022 34.3882 177.187 34.9354Z" fill="#97134B"/>
16
+ <path class="group-hover:fill-[#0CAFC0]" d="M47.0608 29.6089C46.9927 29.469 46.8861 29.351 46.7532 29.2685C46.6202 29.1861 46.4665 29.1425 46.3096 29.1428H44.0527C43.8474 29.1434 43.6497 29.2196 43.4982 29.3567C42.8575 29.9604 42.0961 30.4246 41.2631 30.7192C40.4301 31.0139 39.5441 31.1325 38.6619 31.0675C35.3862 30.8568 32.9423 28.4215 32.9778 25.3957C32.9965 24.2963 33.4525 23.2485 34.247 22.48C35.0414 21.7115 36.11 21.2843 37.2208 21.2912C37.6928 21.2989 38.1579 21.4047 38.5861 21.6015C39.0143 21.7983 39.396 22.0818 39.7066 22.4338C39.8545 22.6059 39.9781 22.797 40.0741 23.0019C40.1323 23.1706 40.1323 23.3536 40.0741 23.5222C39.9985 23.7172 39.8523 23.8774 39.6641 23.9718C39.4758 24.0661 39.2589 24.0879 39.0553 24.0329H39.0392C38.5134 23.8416 37.9365 23.8392 37.4092 24.0263C36.8819 24.2133 36.4378 24.5778 36.1543 25.056C35.8709 25.5343 35.7663 26.0959 35.8586 26.6428C35.951 27.1897 36.2346 27.6871 36.6598 28.0481C36.6922 28.0876 36.7315 28.1212 36.7758 28.147L36.8274 28.1789L36.8532 28.1981C36.8801 28.2296 36.913 28.2556 36.9499 28.2747C37.5377 28.6008 38.1963 28.7818 38.8698 28.8024C39.5433 28.8229 40.2119 28.6824 40.8189 28.3928C41.5423 28.0197 42.1646 27.4799 42.6331 26.8189C43.1016 26.1578 43.4028 25.395 43.5111 24.5946C43.6262 23.8319 43.572 23.0535 43.352 22.3137C43.1321 21.574 42.7517 20.8906 42.2375 20.3113C41.6186 19.6008 40.8547 19.0282 39.9961 18.631C39.1376 18.2338 38.2038 18.0211 37.2562 18.0068H37.1466C35.1698 18.0141 33.2748 18.7889 31.8689 20.1646C30.4629 21.5403 29.6583 23.4071 29.6279 25.3638C29.6194 26.1523 29.7192 26.9383 29.9245 27.7002C29.7794 27.6842 29.6344 27.6683 29.4893 27.6587C26.1426 27.4448 23.17 28.7949 20.9517 31.5175C20.8527 31.6386 20.7902 31.7849 20.7715 31.9396C20.7528 32.0943 20.7787 32.251 20.8461 32.3918C20.9135 32.5326 21.0197 32.6517 21.1525 32.7353C21.2853 32.8189 21.4392 32.8637 21.5966 32.8644H23.8535C24.0598 32.8644 24.2587 32.7881 24.4112 32.6506C25.0529 32.0434 25.8168 31.5772 26.6529 31.2824C27.4891 30.9876 28.3787 30.8709 29.2636 30.9398C32.5393 31.1505 34.98 33.5858 34.9477 36.6116C34.9266 37.7107 34.4686 38.7573 33.6731 39.5245C32.8777 40.2917 31.8088 40.7175 30.6983 40.7098C30.2268 40.7017 29.7622 40.5959 29.3346 40.399C28.907 40.2022 28.5258 39.9188 28.2157 39.5671C28.0667 39.3952 27.942 39.2041 27.845 38.999C27.7884 38.8301 27.7884 38.6476 27.845 38.4787C27.9206 38.2844 28.0662 38.1247 28.2537 38.0304C28.4413 37.9361 28.6575 37.9139 28.8606 37.968H28.8799C29.4054 38.1578 29.9814 38.1589 30.5077 37.9714C31.034 37.7838 31.4771 37.4194 31.7598 36.9416C32.0426 36.4639 32.147 35.903 32.055 35.3569C31.9629 34.8107 31.6802 34.3138 31.2561 33.9528C31.2267 33.9137 31.1893 33.8811 31.1465 33.8571L31.0884 33.822L31.0659 33.8028C31.0383 33.772 31.0056 33.7461 30.9691 33.7262C30.3811 33.4006 29.7224 33.2201 29.0489 33.2001C28.3754 33.1801 27.7069 33.3212 27.1002 33.6113C26.3756 33.9821 25.7524 34.5209 25.2836 35.1817C24.8149 35.8425 24.5145 36.6057 24.408 37.4063C24.2931 38.1687 24.3471 38.9468 24.5665 39.6865C24.7859 40.4262 25.1653 41.1097 25.6783 41.6896C26.2982 42.3998 27.0627 42.9723 27.9217 43.3694C28.7807 43.7666 29.7149 43.9795 30.6629 43.9941H30.7499C32.7267 43.9876 34.6218 43.213 36.0274 41.837C37.433 40.4611 38.2367 38.5938 38.2654 36.6371C38.2734 35.8488 38.1747 35.063 37.972 34.3007C38.1171 34.3007 38.2589 34.3358 38.404 34.3422C38.6297 34.3582 38.8554 34.3646 39.0779 34.3646C42.1537 34.3646 44.8813 33.0208 46.9448 30.4834C47.0449 30.363 47.1088 30.2172 47.1293 30.0626C47.1498 29.908 47.1261 29.7508 47.0608 29.6089Z" fill="#0CAFC0"/>
17
17
  </svg>
18
18
  </template>
19
19
 
@@ -3,10 +3,10 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M55.8237 7L47.855 15.0277H39.9687V22.9725L32 30.9998L39.9687 39.028V46.9727H47.855L55.8237 55L63.7923 46.9727H71.6786V39.028L79.6472 30.9998L71.6786 22.9725V15.0277H63.7923L55.8237 7ZM41.951 39.6123L33.4013 30.9998L41.951 22.3877V17.0242H47.2744L55.8237 8.4117L64.3728 17.0242H69.6968V22.3877L78.2459 30.9998L69.6968 39.6123V44.9763H64.3728L55.8237 53.5888L47.2744 44.9763H41.951V39.6123ZM36.2039 30.9998L55.8237 50.7654L75.4433 30.9998L55.8237 11.2351L36.2039 30.9998Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#FAAE17]" fill-rule="evenodd" clip-rule="evenodd" d="M69.6963 25.2115C66.3858 29.232 61.3933 31.7991 55.8232 31.7991C51.5238 31.7995 48.0178 35.3315 48.0178 39.6628C48.0178 41.7084 48.7996 43.5752 50.0776 44.9767H50.0766L55.8232 50.7653L75.4429 31.0007L69.6963 25.2115ZM41.9501 36.7889C45.2606 32.7684 50.2531 30.2023 55.8232 30.2018C60.1227 30.2018 63.6291 26.6698 63.6291 22.3381C63.6291 20.2929 62.8473 18.4256 61.5693 17.0246L55.8232 11.2355L36.204 31.0007L41.9501 36.7899V36.7889ZM33.4014 31.0007L41.95 22.3881V17.0246H47.274L55.8232 8.41211L64.3724 17.0246H69.6964V22.3881L78.2455 31.0007L69.6964 39.6132V44.9767H64.3724L55.8232 53.5892L47.274 44.9767H41.95V39.6132L33.4014 31.0007Z" fill="#F4F5F6"/>
9
- <path class="group-hover:fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M113.697 42.1805L110.526 35.7913L107.355 42.1805H113.697ZM84.3655 40.5831V44.5762H93.482C94.5718 44.5762 95.4638 43.6781 95.4638 42.5796C95.4638 41.4817 94.5718 40.5831 93.482 40.5831H84.3655ZM84.3655 34.1944V38.1875H93.482C94.5718 38.1875 95.4638 37.2889 95.4638 36.191C95.4638 35.0925 94.5718 34.1944 93.482 34.1944H84.3655ZM121.624 31.7982H125.588L136.686 42.9788V31.7982H140.65V46.9724H136.686L125.588 35.7913V46.9724H121.624V31.7982ZM149.053 39.3851L159.28 31.7982H154.92L146.2 38.1875V31.7982H142.235V46.9724H146.2V40.5831L154.92 46.9724H159.28L149.053 39.3851ZM150.956 15.0273H154.92V21.4161L163.64 15.0273H168L157.774 22.6142L168 30.2009H163.64L154.92 23.8123V30.2009H150.956V15.0273ZM142.235 23.8123L149.766 15.0273H145.803L140.254 21.4161L134.705 15.0273H130.741L138.272 23.8123V30.2009H142.235V23.8123ZM121.624 15.0273H125.588V27.8052H136.686V30.2009H121.624V15.0273ZM110.526 19.0204L113.697 25.4095H107.355L110.526 19.0204ZM116.075 30.2009H120.039L112.508 15.0273H108.544L101.013 30.2009H104.977L106.166 27.8052H114.886L116.075 30.2009ZM80.4014 15.0273H84.3655V21.4161H95.4638V15.0273H99.4274V30.2009H95.4638V23.8123H84.3655V30.2009H80.4014V15.0273ZM80.4014 31.7982H95.6617C97.7332 31.7982 99.4274 33.5055 99.4274 35.5919C99.4274 37.6782 97.7332 39.3851 95.6617 39.3851C97.7332 39.3851 99.4274 41.0924 99.4274 43.1787C99.4274 45.2651 97.7332 46.9724 95.6617 46.9724H80.4014V31.7982ZM104.977 46.9724H101.013L108.544 31.7982H112.508L120.039 46.9724H116.075L114.886 44.5762H106.166L104.977 46.9724Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M55.8237 7L47.855 15.0277H39.9687V22.9725L32 30.9998L39.9687 39.028V46.9727H47.855L55.8237 55L63.7923 46.9727H71.6786V39.028L79.6472 30.9998L71.6786 22.9725V15.0277H63.7923L55.8237 7ZM41.951 39.6123L33.4013 30.9998L41.951 22.3877V17.0242H47.2744L55.8237 8.4117L64.3728 17.0242H69.6968V22.3877L78.2459 30.9998L69.6968 39.6123V44.9763H64.3728L55.8237 53.5888L47.2744 44.9763H41.951V39.6123ZM36.2039 30.9998L55.8237 50.7654L75.4433 30.9998L55.8237 11.2351L36.2039 30.9998Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#FAAE17]" fill-rule="evenodd" clip-rule="evenodd" d="M69.6963 25.2115C66.3858 29.232 61.3933 31.7991 55.8232 31.7991C51.5238 31.7995 48.0178 35.3315 48.0178 39.6628C48.0178 41.7084 48.7996 43.5752 50.0776 44.9767H50.0766L55.8232 50.7653L75.4429 31.0007L69.6963 25.2115ZM41.9501 36.7889C45.2606 32.7684 50.2531 30.2023 55.8232 30.2018C60.1227 30.2018 63.6291 26.6698 63.6291 22.3381C63.6291 20.2929 62.8473 18.4256 61.5693 17.0246L55.8232 11.2355L36.204 31.0007L41.9501 36.7899V36.7889ZM33.4014 31.0007L41.95 22.3881V17.0246H47.274L55.8232 8.41211L64.3724 17.0246H69.6964V22.3881L78.2455 31.0007L69.6964 39.6132V44.9767H64.3724L55.8232 53.5892L47.274 44.9767H41.95V39.6132L33.4014 31.0007Z" fill="#F4F5F6"/>
9
+ <path class="fill-[#00805F]" fill-rule="evenodd" clip-rule="evenodd" d="M113.697 42.1805L110.526 35.7913L107.355 42.1805H113.697ZM84.3655 40.5831V44.5762H93.482C94.5718 44.5762 95.4638 43.6781 95.4638 42.5796C95.4638 41.4817 94.5718 40.5831 93.482 40.5831H84.3655ZM84.3655 34.1944V38.1875H93.482C94.5718 38.1875 95.4638 37.2889 95.4638 36.191C95.4638 35.0925 94.5718 34.1944 93.482 34.1944H84.3655ZM121.624 31.7982H125.588L136.686 42.9788V31.7982H140.65V46.9724H136.686L125.588 35.7913V46.9724H121.624V31.7982ZM149.053 39.3851L159.28 31.7982H154.92L146.2 38.1875V31.7982H142.235V46.9724H146.2V40.5831L154.92 46.9724H159.28L149.053 39.3851ZM150.956 15.0273H154.92V21.4161L163.64 15.0273H168L157.774 22.6142L168 30.2009H163.64L154.92 23.8123V30.2009H150.956V15.0273ZM142.235 23.8123L149.766 15.0273H145.803L140.254 21.4161L134.705 15.0273H130.741L138.272 23.8123V30.2009H142.235V23.8123ZM121.624 15.0273H125.588V27.8052H136.686V30.2009H121.624V15.0273ZM110.526 19.0204L113.697 25.4095H107.355L110.526 19.0204ZM116.075 30.2009H120.039L112.508 15.0273H108.544L101.013 30.2009H104.977L106.166 27.8052H114.886L116.075 30.2009ZM80.4014 15.0273H84.3655V21.4161H95.4638V15.0273H99.4274V30.2009H95.4638V23.8123H84.3655V30.2009H80.4014V15.0273ZM80.4014 31.7982H95.6617C97.7332 31.7982 99.4274 33.5055 99.4274 35.5919C99.4274 37.6782 97.7332 39.3851 95.6617 39.3851C97.7332 39.3851 99.4274 41.0924 99.4274 43.1787C99.4274 45.2651 97.7332 46.9724 95.6617 46.9724H80.4014V31.7982ZM104.977 46.9724H101.013L108.544 31.7982H112.508L120.039 46.9724H116.075L114.886 44.5762H106.166L104.977 46.9724Z" fill="#BDC7CE"/>
10
10
  </svg>
11
11
  </template>
12
12
 
@@ -3,9 +3,26 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#FE5000]" fill-rule="evenodd" clip-rule="evenodd" d="M64.6821 12H36.3182C33.3866 12 31 14.3257 31 17.1817V44.8186C31 47.675 33.3866 50 36.3182 50H64.6821C67.6155 50 70 47.675 70 44.8186V17.1817C70 14.3257 67.6155 12 64.6821 12ZM56.7919 36.6441C57.8961 36.1041 58.5944 35.0047 58.5944 33.8014V18.2931L53.8748 20.5907C52.7702 21.1301 52.0732 22.2299 52.0732 23.4324V38.9418L56.7919 36.6441ZM47.0095 41.4081C48.1149 40.8702 48.8124 39.7703 48.8124 38.5675V31.7952L44.0944 34.0928C42.9883 34.6307 42.2913 35.7319 42.2913 36.9347V43.7072L47.0095 41.4081Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#FE5000]" fill-rule="evenodd" clip-rule="evenodd" d="M126.419 30.9185C127.06 31.4551 127.517 32.1222 127.765 32.932C128.08 33.9639 128.13 35.0685 128.019 36.1386C127.848 37.8203 126.963 39.0619 125.409 39.8818C124.074 40.5873 122.609 40.8415 121.109 40.9495C120.177 41.0166 119.125 41.0166 118.192 40.9495C116.692 40.8415 115.227 40.5873 113.891 39.8818C112.339 39.0619 111.454 37.8203 111.281 36.1386C111.233 35.669 111.234 35.3014 111.235 34.8464L111.235 34.6371H116.304C116.304 34.7063 116.304 34.7528 116.304 34.7932C116.303 34.8599 116.303 34.91 116.304 35.0181C116.32 36.0663 116.739 36.6222 117.811 36.8688C118.982 37.1404 120.321 37.1378 121.49 36.8688C122.596 36.6131 123.006 35.9823 123.025 35.0157C123.022 34.8588 123.001 34.6975 122.962 34.5326C122.858 34.1027 122.522 33.8286 122.12 33.6285C121.627 33.3809 120.851 33.2457 120.209 33.1337C120.04 33.1042 119.88 33.0765 119.737 33.0486C119.349 32.9727 118.961 32.8991 118.573 32.8255H118.573C117.648 32.6502 116.723 32.4749 115.805 32.2701C114.869 32.0629 113.988 31.703 113.205 31.1609C113.093 31.0829 112.986 31.0023 112.884 30.9185H112.882C112.241 30.3812 111.784 29.7148 111.537 28.9046C111.323 28.2045 111.222 27.5126 111.239 26.7904C111.238 26.4885 111.247 26.1992 111.281 25.861C111.454 24.1782 112.339 22.9378 113.891 22.1183C115.227 21.4124 116.692 21.1584 118.192 21.0502C119.126 20.9833 120.174 20.9833 121.109 21.0502C122.609 21.1584 124.074 21.4124 125.409 22.1183C126.963 22.9378 127.848 24.1782 128.019 25.861C128.068 26.3312 128.067 26.6992 128.066 27.1543V27.1543V27.1544V27.1544L128.066 27.3614H122.997C122.997 27.2929 122.997 27.2465 122.997 27.2062C122.998 27.1395 122.998 27.0892 122.997 26.9821C122.981 25.9341 122.562 25.3783 121.49 25.1314C120.316 24.8591 118.984 24.8608 117.811 25.1314C117.017 25.3142 116.582 25.6673 116.404 26.2636C116.313 26.5742 116.32 26.9487 116.405 27.3035C116.509 27.7336 116.844 28.0078 117.246 28.209C117.753 28.4621 118.511 28.5977 119.146 28.711C119.293 28.7374 119.434 28.7627 119.564 28.7879C119.953 28.8638 120.342 28.9376 120.731 29.0113L120.731 29.0113L120.732 29.0114L120.732 29.0114C121.655 29.1864 122.579 29.3615 123.496 29.5659C124.432 29.775 125.313 30.1333 126.096 30.6767C126.208 30.7534 126.315 30.8353 126.417 30.9185H126.419ZM144.353 40.7753H149.836L141.608 21.226H136.105L127.876 40.7753H133.359L134.48 38.1117H143.232L144.353 40.7753ZM163.517 32.2519V21.227H169V29.7452V40.7764H163.517V40.7751C163.292 40.3867 157.189 29.8602 157.12 29.7505V40.7764H151.636V21.227H157.12C157.12 21.227 163.277 31.8462 163.517 32.2519ZM109.158 21.2377V23.9716V30.3155V33.002C109.158 34.0823 109.002 35.1565 108.664 36.1852C108.344 37.1624 107.836 38.0392 107.13 38.7936C106.515 39.451 105.787 40.0287 104.94 40.3637C103.721 40.8457 102.368 41 101.062 41C100.101 41 99.141 40.9218 98.188 40.8024C97.3045 40.6913 96.3978 40.4702 95.6175 40.0332C94.8839 39.6224 94.262 39.0509 93.7391 38.4009C93.2181 37.7536 92.8 37.029 92.575 36.2289C92.283 35.1886 92.0626 34.0853 92.0626 33.002V21.2377H97.3664V33.6094C97.3664 34.5475 97.5775 35.3183 98.2326 36.0282C98.8624 36.7114 99.7038 36.9698 100.619 36.9698C101.525 36.9698 102.359 36.7144 102.987 36.0431C103.65 35.3349 103.854 34.5478 103.854 33.6094V30.3155V26.5963V21.2377H109.158ZM85.8263 23.1663C84.8975 23.6175 84.3111 24.541 84.3111 25.5511V28.3467L84.3083 33.3136C84.3083 33.6571 84.2906 34.0021 84.2504 34.3425C84.1113 35.4994 83.4324 36.2564 82.2438 36.3328H77V40.7172C77.0586 40.721 80.327 40.7245 80.3678 40.7245C80.6873 40.7242 81.007 40.725 81.3268 40.7257H81.3269H81.3272H81.3276C82.1106 40.7276 82.894 40.7296 83.6775 40.7148C84.4258 40.7016 85.1669 40.5945 85.8902 40.3928C87.4287 39.9639 88.6104 39.1179 89.2589 37.655C89.676 36.716 89.7912 35.7221 89.7921 34.7112V34.3119C89.7921 34.3021 89.7927 34.2923 89.7935 34.2825C89.7941 34.2723 89.7948 34.2621 89.7948 34.2516V32.1054V31.3088V21.2377L85.8263 23.1663ZM135.975 34.5577L138.856 27.7158L141.736 34.5577H135.975Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#EEB110]" d="M36.9927 22.1749C36.9927 21.9074 37.2096 21.6904 37.4772 21.6904H55.4043C57.545 21.6904 59.2804 23.4258 59.2804 25.5666C59.2804 27.7073 57.545 29.4427 55.4043 29.4427H37.4772C37.2096 29.4427 36.9927 29.2258 36.9927 28.9582V22.1749Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#EEB110]" d="M44.0329 42.2375C43.7332 41.7186 44.1076 41.0698 44.7069 41.0698L47.8364 41.0697C49.9771 41.0696 51.7125 42.805 51.7125 44.9458V45.2859C51.7125 47.2387 50.1294 48.8218 48.1766 48.8218C47.9661 48.8218 47.7716 48.7096 47.6663 48.5273L44.0329 42.2375Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#EEB110]" d="M62.2055 12.7297C62.449 12.4418 62.2444 12.0007 61.8673 12.0007L43.7675 12.0001C41.6267 12.0001 39.8913 13.7355 39.8913 15.8762C39.8913 18.0169 41.6266 19.7523 43.7673 19.7524L61.8673 19.7529C62.2444 19.7529 62.449 19.3118 62.2054 19.0239C60.6685 17.2073 60.6685 14.5463 62.2055 12.7297Z" fill="#BDC7CE"/>
10
+ <path class="fill-[#EEB110]" d="M57.0224 32.1124C57.2144 31.7894 56.9816 31.3803 56.6059 31.3803L45.4311 31.3798C43.2903 31.3797 41.5548 33.1151 41.5548 35.2559C41.5548 37.3966 43.2901 39.132 45.4307 39.1321L56.6058 39.1326C56.9816 39.1326 57.2143 38.7235 57.0224 38.4005L55.2124 35.3555C55.1762 35.2945 55.1762 35.2185 55.2124 35.1574L57.0224 32.1124Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M85.3833 21.2326V28.3894H86.4131H87.4428L87.4222 21.2532L87.3913 14.1272L86.3925 14.0963L85.3833 14.0654V21.2326Z" fill="#BDC7CE"/>
12
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M75.1585 15.1261C74.8805 15.7851 69.4022 28.029 69.3095 28.204C69.2168 28.3791 69.2992 28.3894 70.3804 28.3894H71.5647L72.2134 26.8962L72.8622 25.4031L76.0544 25.4237L79.2364 25.4546L79.8646 26.9168L80.4927 28.3894H81.6563C82.717 28.3894 82.82 28.3688 82.7685 28.204C82.7376 28.1114 81.3989 25.0633 79.7925 21.4385L76.8679 14.848L76.0853 14.8171L75.3027 14.7863L75.1585 15.1261ZM77.2902 20.9545C77.8874 22.3344 78.3817 23.5083 78.3817 23.5598C78.3817 23.6525 73.8199 23.6937 73.7272 23.601C73.6963 23.5701 74.2112 22.3138 74.8599 20.8104C75.7249 18.8332 76.075 18.1227 76.1265 18.2565C76.1677 18.3698 76.6929 19.5849 77.2902 20.9545Z" fill="#BDC7CE"/>
13
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M104.228 17.0617V18.1842L103.281 18.2151L102.323 18.2459V19.1727V20.0995L103.271 20.1304L104.208 20.1613L104.249 22.7563C104.28 25.1762 104.3 25.3925 104.527 25.9486C105.145 27.5138 106.473 28.4406 108.255 28.5642C108.687 28.5951 109.171 28.5951 109.315 28.5539C109.583 28.4921 109.583 28.4715 109.583 27.5653V26.6385H108.955C108.038 26.6385 107.451 26.4531 107.009 26.0309C106.391 25.4337 106.288 24.9291 106.288 22.3547V20.1613L107.503 20.1304L108.708 20.0995V19.1727V18.2459L107.503 18.2151L106.288 18.1842V17.0617V15.929H105.258H104.228V17.0617Z" fill="#BDC7CE"/>
14
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M94.2923 18.0917C92.7683 18.3594 91.5326 19.2347 90.7397 20.6146C89.7717 22.3137 89.8541 24.7336 90.925 26.3813C91.9342 27.9465 93.345 28.657 95.2603 28.5746C96.115 28.5438 96.3416 28.4923 96.9182 28.2142C97.289 28.0289 97.742 27.7611 97.9274 27.6067L98.2569 27.3286V27.8641V28.3893H99.2867H100.316V23.292V18.1946H99.2867H98.2569V18.8228V19.451L97.845 19.0905C96.9388 18.2564 95.5692 17.8754 94.2923 18.0917ZM96.424 20.213C97.5567 20.594 98.2672 21.6546 98.3393 23.086C98.4217 24.5586 97.9274 25.6192 96.8873 26.268C96.496 26.5048 96.2489 26.5769 95.6516 26.6181C94.1482 26.7108 93.1081 26.1238 92.5417 24.8675C92.1607 24.054 92.1195 22.8904 92.4285 22.0048C92.6756 21.2942 93.4788 20.4601 94.1379 20.2233C94.7454 20.0173 95.8267 20.007 96.424 20.213Z" fill="#BDC7CE"/>
15
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M115.197 18.0917C113.673 18.3594 112.437 19.2347 111.644 20.6146C110.676 22.3137 110.758 24.7336 111.829 26.3813C112.838 27.9465 114.249 28.657 116.165 28.5746C117.019 28.5438 117.246 28.4923 117.823 28.2142C118.193 28.0289 118.646 27.7611 118.832 27.6067L119.161 27.3286V27.8641V28.3893H120.191H121.221V23.292V18.1946H120.191H119.161V18.8228V19.451L118.749 19.0905C117.843 18.2564 116.474 17.8754 115.197 18.0917ZM117.328 20.213C118.461 20.594 119.172 21.6546 119.244 23.086C119.326 24.5586 118.832 25.6192 117.792 26.268C117.4 26.5048 117.153 26.5769 116.556 26.6181C114.805 26.7314 113.652 25.8973 113.23 24.2496C112.797 22.5608 113.642 20.7279 115.073 20.213C115.65 20.0173 116.752 20.007 117.328 20.213Z" fill="#BDC7CE"/>
16
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M124.28 18.2565C124.167 18.3698 124.198 24.1262 124.311 24.9397C124.455 25.8768 124.795 26.6079 125.413 27.267C126.957 28.9249 129.861 29.0484 131.581 27.5347C132.158 27.0198 132.477 26.5358 132.755 25.7223C132.94 25.1456 132.961 24.847 132.961 21.6959V18.2977H131.931H130.901V21.4488C130.901 25.0633 130.86 25.331 130.242 25.9695C129.738 26.4946 129.151 26.6903 128.348 26.5976C127.699 26.5255 127.349 26.3608 126.968 25.9489C126.443 25.3928 126.422 25.2795 126.37 21.6445L126.319 18.2462L125.341 18.2154C124.795 18.2051 124.321 18.2154 124.28 18.2565Z" fill="#BDC7CE"/>
17
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M85.1578 31.4367C84.3236 31.8796 84.3854 33.2804 85.2402 33.6924C85.9406 34.022 86.7131 33.7336 87.0015 33.0538C87.2281 32.5079 87.1148 32.0135 86.6719 31.6015C86.3835 31.3337 86.229 31.2719 85.8788 31.2719C85.6316 31.2822 85.3123 31.344 85.1578 31.4367Z" fill="#BDC7CE"/>
18
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M153.986 38.5533L154.017 45.844L155.016 45.8749L156.025 45.9058L156.046 43.5888L156.077 41.2821L158.27 43.5888L160.474 45.8955H161.761C162.523 45.8955 163.028 45.8543 163.007 45.8028C162.997 45.741 162.07 44.7627 160.958 43.6094C159.856 42.4561 158.785 41.3439 158.6 41.1277L158.26 40.7364L160.567 38.4194L162.873 36.1127H161.607H160.34L158.188 38.2958L156.036 40.4892L156.025 35.8759V31.2728H154.996H153.966L153.986 38.5533Z" fill="#BDC7CE"/>
19
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M74.6855 32.3949C72.1729 33.0334 70.2267 34.8149 69.5058 37.1421C69.3102 37.7806 69.269 38.141 69.2793 39.1502C69.2793 40.2211 69.3205 40.4992 69.5573 41.1994C70.4017 43.609 72.3789 45.2979 75.0151 45.8642C75.5505 45.9775 76.1066 46.0084 77.0437 45.9672C78.4442 45.9054 79.2165 45.7407 80.2257 45.267C80.9156 44.9477 82.1925 44.093 82.1925 43.9489C82.1925 43.9077 81.8733 43.5782 81.4717 43.228L80.7611 42.5896L80.133 43.053C79.3607 43.6296 78.6501 43.8974 77.5277 44.0415C74.7576 44.4123 72.4098 43.0427 71.6786 40.6227C71.3903 39.6754 71.4418 38.1101 71.7816 37.2245C72.3068 35.8755 73.4189 34.8355 74.8503 34.3515C75.3961 34.1661 75.7874 34.1146 76.5803 34.1146C78.1352 34.1043 79.2165 34.4442 80.2051 35.2577L80.6479 35.6078L81.3687 34.959C81.76 34.5986 82.0895 34.2794 82.0895 34.2485C82.0895 34.1558 81.1112 33.435 80.5346 33.0952C80.2771 32.951 79.6902 32.7039 79.2474 32.5494C78.5368 32.3023 78.2382 32.2611 76.9407 32.2405C75.7359 32.2096 75.3034 32.2405 74.6855 32.3949Z" fill="#BDC7CE"/>
20
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M115.454 39.315V45.9158L118.883 45.8643C121.622 45.8334 122.425 45.7819 122.899 45.648C123.661 45.4421 124.248 45.1435 124.804 44.6904C125.957 43.7533 126.359 42.0542 125.751 40.6846C125.514 40.1491 124.588 39.2017 124.114 38.9958L123.784 38.8619L124.299 38.4088C125.792 37.101 125.762 34.9282 124.237 33.6822C123.949 33.4454 123.445 33.1467 123.105 33.0129C122.528 32.776 122.415 32.7657 118.986 32.7348L115.454 32.7039V39.315ZM122.25 34.6708C122.919 35.0518 123.177 35.4843 123.177 36.2566C123.177 37.0392 122.94 37.4511 122.332 37.7807C121.921 37.9969 121.745 38.0175 119.758 38.0484L117.616 38.0793V36.2154V34.3413L119.707 34.3824C121.694 34.4133 121.807 34.4236 122.25 34.6708ZM122.827 40.18C124.021 40.9214 124.207 42.497 123.208 43.4443C122.6 44.021 122.291 44.0828 119.861 44.124L117.616 44.1652V41.9821V39.8093L119.964 39.8402L122.322 39.8711L122.827 40.18Z" fill="#BDC7CE"/>
21
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M91.2549 34.5162V35.7004H90.3282H89.4014V36.6272V37.554H90.3179H91.2343L91.2755 40.0975C91.3167 42.4041 91.3476 42.7131 91.5433 43.2588C92.192 45.0197 93.7882 46.0495 95.7447 45.9774L96.5582 45.9465L96.5891 44.9991L96.62 44.0415H95.9095C94.6737 44.0415 94.0559 43.7016 93.6337 42.816C93.3762 42.26 93.3659 42.157 93.3351 39.8915L93.2939 37.554H94.5399H95.7859V36.6272V35.7107L94.5811 35.6798L93.3659 35.6489L93.3351 34.4853L93.3042 33.3319H92.2847H91.2549V34.5162Z" fill="#BDC7CE"/>
22
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M131.877 35.6387C129.766 36.3286 128.407 38.1204 128.252 40.3859C128.026 43.7738 130.755 46.4924 133.896 45.9878C134.616 45.8745 135.595 45.442 136.13 45.0095L136.46 44.7315V45.3185V45.8951H137.489H138.519V40.7978V35.7005H137.489H136.46V36.2772V36.8538L136.027 36.4728C135.79 36.2772 135.337 35.9785 135.018 35.8344C134.534 35.5975 134.297 35.5563 133.37 35.5254C132.67 35.5048 132.145 35.546 131.877 35.6387ZM134.863 37.7291C136.254 38.4603 136.892 40.2417 136.377 41.9511C136.12 42.7647 135.708 43.3104 135.039 43.712C134.596 43.9695 134.462 43.9901 133.525 43.9901C132.351 43.9901 131.96 43.8459 131.29 43.1457C130.652 42.4866 130.436 41.8791 130.436 40.7463C130.436 39.8813 130.466 39.696 130.724 39.1811C131.053 38.5014 131.754 37.8424 132.371 37.6158C132.989 37.3893 134.318 37.4511 134.863 37.7291Z" fill="#BDC7CE"/>
23
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M145.677 35.6287C145.09 35.8244 144.647 36.0715 144.235 36.432L143.874 36.7512V36.226V35.7008H142.845H141.815V40.7981V45.9058L142.824 45.8749L143.823 45.844L143.874 42.4973C143.905 40.2524 143.967 39.0578 144.05 38.8828C144.245 38.4297 144.822 37.8427 145.265 37.6471C145.821 37.3896 146.881 37.3896 147.427 37.6471C147.901 37.8633 148.436 38.3988 148.632 38.8416C148.725 39.0681 148.776 40.0567 148.817 42.4973L148.869 45.844H149.899H150.928L150.959 42.8062C150.99 39.3977 150.918 38.6253 150.465 37.6883C150.105 36.9571 149.301 36.1642 148.539 35.8038C147.932 35.5052 146.346 35.4125 145.677 35.6287Z" fill="#BDC7CE"/>
24
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M84.7671 40.6952V45.7925H85.7969H86.8266V40.6952V35.5978H85.7969H84.7671V40.6952Z" fill="#BDC7CE"/>
25
+ <path class="fill-[#000000] dark:fill-[#E3E5E8]" d="M97.5753 35.8243C97.6062 35.9582 98.4815 38.0486 99.5319 40.4685L101.427 44.8759L100.201 47.3988C99.5319 48.789 98.9758 49.9424 98.9758 49.9732C98.9758 50.0041 99.4907 50.0041 100.119 49.9938L101.262 49.9629L104.547 42.8679C106.349 38.9651 107.832 35.7316 107.832 35.6905C107.832 35.639 107.327 35.5978 106.72 35.5978H105.597L104.125 39.0475C103.311 40.9525 102.611 42.4663 102.57 42.4251C102.528 42.3736 101.911 40.8805 101.179 39.099C100.459 37.3175 99.8202 35.7934 99.7687 35.7213C99.7069 35.639 99.3362 35.5978 98.5948 35.5978C97.5238 35.5978 97.5135 35.5978 97.5753 35.8243Z" fill="#BDC7CE"/>
9
26
  </svg>
10
27
  </template>
11
28
 
@@ -3,9 +3,9 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#F14635]" fill-rule="evenodd" clip-rule="evenodd" d="M48.6364 32.5111C52.3951 33.0913 52.9032 35.3154 53.207 37.3853L53.2577 37.7382L53.2922 37.9784L53.4752 39.1966C53.8332 41.5224 54.5803 46.3503 54.5803 48.8697C54.5803 49.4993 54.5249 49.9826 54.4237 50.2481C54.255 50.6573 53.7636 51.05 53.0851 51.3773C51.4433 51.7815 49.7272 52 47.9595 52C47.7723 52 47.5882 51.9909 47.4034 51.9854C46.689 51.7825 46.1521 51.4438 45.8678 50.9808C45.0094 49.5836 44.9577 46.4704 44.9405 42.8325L44.9385 42.4105L44.9316 41.3201C44.9036 37.4688 44.8796 34.1482 46.2789 32.9565C46.8208 32.4982 47.5908 32.3465 48.6364 32.5111ZM40.4414 40.896C41.2559 40.8502 41.7797 44.8566 41.885 47.8946C41.9588 50.0097 41.7367 50.8798 41.382 51.1922C40.9806 51.0582 40.586 50.9131 40.1973 50.7556C39.9379 50.2843 39.7397 49.543 39.6137 48.572C39.2293 45.5206 39.5633 40.9498 40.4414 40.896ZM60.8619 46.8831C60.8111 47.1613 60.7395 47.3763 60.6511 47.5577C59.9547 48.1166 59.2227 48.6296 58.4568 49.0912C58.2128 49.1323 57.9961 49.1037 57.8901 48.9247C56.8749 47.1409 56.4939 41.5449 57.4763 41.0578C58.7572 40.4391 61.0518 45.9156 60.8619 46.8831ZM47.6563 10C59.0931 10 68.3936 19.0571 68.65 30.3271L68.6553 30.7166V30.8967C68.6343 35.9875 66.7608 40.645 63.6743 44.25C63.5624 44.1938 63.3582 44.0099 62.9882 43.4564C62.6053 42.9 59.3036 37.8188 59.3036 31.995C59.3036 30.8521 60.951 29.0667 62.4088 27.4996C63.4986 26.3203 64.5309 25.2079 64.911 24.3337C65.3952 23.2056 65.0564 22.4179 64.5206 22.1509C64.0357 21.9136 63.3076 22.0867 62.7967 22.9941C61.9582 24.4628 61.6896 24.7373 60.4666 25.7199C59.2632 26.7021 57.3499 27.6908 57.3499 26.411C57.3499 25.7199 58.4155 24.1549 58.942 23.0579C59.4796 21.9487 58.9001 21.1457 57.79 21.1457C55.6101 21.1457 54.163 23.9226 54.163 24.8847C54.163 25.8459 54.6294 25.9828 54.6294 27.1023C54.6294 28.2301 52.2376 29.693 49.9846 29.693C47.8154 29.693 46.5575 29.254 46.0363 28.0171L45.9698 27.8434L45.8191 27.3977C45.2846 25.8357 44.9013 24.7029 44.2338 23.519C43.8795 22.893 43.3327 22.4589 42.8598 22.077C42.2417 21.597 41.9211 21.155 41.8542 20.8253C41.7925 20.4982 41.7593 19.8819 42.8158 18.461C43.8702 17.0483 44.0179 15.9811 43.4903 15.4304C43.2991 15.2345 42.9731 15.109 42.5544 15.109C41.8139 15.109 40.7849 15.5013 39.7244 16.5791C38.076 18.2682 39.0118 19.872 39.0118 20.576C39.0118 21.2795 38.7098 21.6775 37.7206 22.6347C36.7241 23.5961 36.3802 24.4203 36.2662 27.7331C36.2225 29.44 35.9219 30.4225 35.6521 31.2937C35.4189 32.0574 35.2045 32.7753 35.1929 33.8126C35.1744 34.962 35.3657 35.7028 35.589 36.5575C35.8082 37.3475 36.0411 38.2527 36.1903 39.767C36.4275 42.111 36.345 44.091 35.9136 46.1147L35.7985 46.6218L35.7716 46.7675C35.6833 47.1231 35.5783 47.5551 35.4363 47.7169C30.1213 43.9418 26.6553 37.7764 26.6553 30.8072C26.6553 19.3167 36.0574 10 47.6563 10Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#000] dark:group-hover:fill-[#fff]" d="M127.09 27.3829C128.651 27.3829 129.865 27.9623 130.732 29.1211C131.599 30.28 132.032 31.873 132.032 33.8999V34.0885C132.032 36.0684 131.589 37.6495 130.703 38.832C129.816 40.0144 128.62 40.6056 127.113 40.6056C125.95 40.6056 124.994 40.1774 124.244 39.3211V45.7551H120.298V27.6186H123.986L124.104 28.7971C124.861 27.8543 125.856 27.3829 127.09 27.3829ZM99.5704 27.3829C101.186 27.3829 102.463 27.7796 103.4 28.5731C104.337 29.3667 104.817 30.4549 104.84 31.8376V37.4826C104.856 38.6533 105.035 39.5489 105.379 40.1695V40.3699H101.432C101.292 40.1106 101.167 39.7296 101.058 39.2268C100.332 40.146 99.3166 40.6056 98.0128 40.6056C96.8183 40.6056 95.8034 40.2422 94.968 39.5155C94.1326 38.7888 93.7149 37.8754 93.7149 36.7754C93.7149 35.3927 94.2224 34.3478 95.2374 33.6407C96.2523 32.9336 97.7279 32.58 99.664 32.58H100.882V31.9083C100.882 30.7377 100.378 30.1523 99.3713 30.1523C98.4344 30.1523 97.966 30.6159 97.966 31.5429H94.0194C94.0194 30.3094 94.5405 29.3078 95.5829 28.5378C96.625 27.7679 97.9543 27.3829 99.5704 27.3829ZM112.417 27.3829C114.087 27.3829 115.43 27.7639 116.445 28.526C117.46 29.2882 117.968 30.2898 117.968 31.5311H114.009C114.009 30.5099 113.475 29.9992 112.405 29.9992C111.991 29.9992 111.644 30.115 111.363 30.3468C111.082 30.5786 110.941 30.8673 110.941 31.213C110.941 31.5666 111.113 31.8533 111.456 32.0733C111.8 32.2933 112.348 32.474 113.102 32.6154C113.855 32.7569 114.517 32.9258 115.087 33.1221C116.992 33.7821 117.944 34.9645 117.944 36.6694C117.944 37.8322 117.431 38.7789 116.404 39.5096C115.377 40.2402 114.048 40.6056 112.417 40.6056C111.331 40.6056 110.363 40.4092 109.512 40.0163C108.661 39.6235 107.998 39.0892 107.521 38.4136C107.045 37.7379 106.807 37.0269 106.807 36.2806H110.496C110.512 36.8697 110.707 37.2999 111.082 37.571C111.456 37.842 111.936 37.9775 112.522 37.9775C113.061 37.9775 113.465 37.8675 113.734 37.6476C114.004 37.4275 114.138 37.1408 114.138 36.7872C114.138 36.4495 113.963 36.1783 113.611 35.9741C113.26 35.7699 112.592 35.5577 111.609 35.3377C110.625 35.1178 109.813 34.829 109.173 34.4715C108.533 34.1141 108.045 33.68 107.709 33.1693C107.373 32.6586 107.205 32.0733 107.205 31.4133C107.205 30.2427 107.686 29.2783 108.646 28.5201C109.606 27.762 110.863 27.3829 112.417 27.3829ZM82.7658 22.2456V30.7769L88.3514 22.2456H93.4339L87.1925 30.8005L92.9542 40.3699H88.0825L84.4522 33.9825L82.7658 35.8445V40.3699H78.6553V22.2456H82.7658ZM138.414 27.6186V40.3699H134.455V27.6186H138.414ZM173.216 27.6186V29.7634L167.572 37.3058H173.345V40.3699H162.583V38.1543L168.204 30.6827H161.582L164.22 27.6186H173.216ZM143.705 36.2567C144.785 36.2567 145.659 37.1403 145.659 38.2304C145.659 39.3204 144.785 40.2042 143.705 40.2042C142.626 40.2042 141.751 39.3204 141.751 38.2304C141.751 37.1403 142.626 36.2567 143.705 36.2567ZM152.871 22.2451V31.7685L153.269 31.2433L156.252 27.5553H160.995L156.546 32.7488L161.289 40.1831H156.757L153.986 35.4797L152.871 36.5885V40.1831H148.913V22.2451H152.871ZM100.882 34.7014H99.7343C98.3602 34.7014 97.6732 35.322 97.6732 36.5634C97.6732 36.9248 97.7942 37.2174 98.0362 37.4414C98.2783 37.6653 98.5866 37.7772 98.9614 37.7772C99.4532 37.7772 99.8612 37.6711 100.185 37.4591C100.509 37.2469 100.741 37.0073 100.882 36.7401V34.7014ZM126.118 30.447C125.181 30.447 124.556 30.7848 124.244 31.4604V36.4809C124.588 37.1879 125.22 37.5415 126.141 37.5415C127.398 37.5415 128.046 36.4495 128.085 34.2653V33.841C128.085 31.5784 127.43 30.447 126.118 30.447ZM136.488 22.2451C137.567 22.2451 138.442 23.1708 138.442 24.3128C138.442 25.4548 137.567 26.3805 136.488 26.3805C135.409 26.3805 134.534 25.4548 134.534 24.3128C134.534 23.1708 135.409 22.2451 136.488 22.2451Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#F14635]" fill-rule="evenodd" clip-rule="evenodd" d="M48.6364 32.5111C52.3951 33.0913 52.9032 35.3154 53.207 37.3853L53.2577 37.7382L53.2922 37.9784L53.4752 39.1966C53.8332 41.5224 54.5803 46.3503 54.5803 48.8697C54.5803 49.4993 54.5249 49.9826 54.4237 50.2481C54.255 50.6573 53.7636 51.05 53.0851 51.3773C51.4433 51.7815 49.7272 52 47.9595 52C47.7723 52 47.5882 51.9909 47.4034 51.9854C46.689 51.7825 46.1521 51.4438 45.8678 50.9808C45.0094 49.5836 44.9577 46.4704 44.9405 42.8325L44.9385 42.4105L44.9316 41.3201C44.9036 37.4688 44.8796 34.1482 46.2789 32.9565C46.8208 32.4982 47.5908 32.3465 48.6364 32.5111ZM40.4414 40.896C41.2559 40.8502 41.7797 44.8566 41.885 47.8946C41.9588 50.0097 41.7367 50.8798 41.382 51.1922C40.9806 51.0582 40.586 50.9131 40.1973 50.7556C39.9379 50.2843 39.7397 49.543 39.6137 48.572C39.2293 45.5206 39.5633 40.9498 40.4414 40.896ZM60.8619 46.8831C60.8111 47.1613 60.7395 47.3763 60.6511 47.5577C59.9547 48.1166 59.2227 48.6296 58.4568 49.0912C58.2128 49.1323 57.9961 49.1037 57.8901 48.9247C56.8749 47.1409 56.4939 41.5449 57.4763 41.0578C58.7572 40.4391 61.0518 45.9156 60.8619 46.8831ZM47.6563 10C59.0931 10 68.3936 19.0571 68.65 30.3271L68.6553 30.7166V30.8967C68.6343 35.9875 66.7608 40.645 63.6743 44.25C63.5624 44.1938 63.3582 44.0099 62.9882 43.4564C62.6053 42.9 59.3036 37.8188 59.3036 31.995C59.3036 30.8521 60.951 29.0667 62.4088 27.4996C63.4986 26.3203 64.5309 25.2079 64.911 24.3337C65.3952 23.2056 65.0564 22.4179 64.5206 22.1509C64.0357 21.9136 63.3076 22.0867 62.7967 22.9941C61.9582 24.4628 61.6896 24.7373 60.4666 25.7199C59.2632 26.7021 57.3499 27.6908 57.3499 26.411C57.3499 25.7199 58.4155 24.1549 58.942 23.0579C59.4796 21.9487 58.9001 21.1457 57.79 21.1457C55.6101 21.1457 54.163 23.9226 54.163 24.8847C54.163 25.8459 54.6294 25.9828 54.6294 27.1023C54.6294 28.2301 52.2376 29.693 49.9846 29.693C47.8154 29.693 46.5575 29.254 46.0363 28.0171L45.9698 27.8434L45.8191 27.3977C45.2846 25.8357 44.9013 24.7029 44.2338 23.519C43.8795 22.893 43.3327 22.4589 42.8598 22.077C42.2417 21.597 41.9211 21.155 41.8542 20.8253C41.7925 20.4982 41.7593 19.8819 42.8158 18.461C43.8702 17.0483 44.0179 15.9811 43.4903 15.4304C43.2991 15.2345 42.9731 15.109 42.5544 15.109C41.8139 15.109 40.7849 15.5013 39.7244 16.5791C38.076 18.2682 39.0118 19.872 39.0118 20.576C39.0118 21.2795 38.7098 21.6775 37.7206 22.6347C36.7241 23.5961 36.3802 24.4203 36.2662 27.7331C36.2225 29.44 35.9219 30.4225 35.6521 31.2937C35.4189 32.0574 35.2045 32.7753 35.1929 33.8126C35.1744 34.962 35.3657 35.7028 35.589 36.5575C35.8082 37.3475 36.0411 38.2527 36.1903 39.767C36.4275 42.111 36.345 44.091 35.9136 46.1147L35.7985 46.6218L35.7716 46.7675C35.6833 47.1231 35.5783 47.5551 35.4363 47.7169C30.1213 43.9418 26.6553 37.7764 26.6553 30.8072C26.6553 19.3167 36.0574 10 47.6563 10Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#000] dark:fill-[#fff]" d="M127.09 27.3829C128.651 27.3829 129.865 27.9623 130.732 29.1211C131.599 30.28 132.032 31.873 132.032 33.8999V34.0885C132.032 36.0684 131.589 37.6495 130.703 38.832C129.816 40.0144 128.62 40.6056 127.113 40.6056C125.95 40.6056 124.994 40.1774 124.244 39.3211V45.7551H120.298V27.6186H123.986L124.104 28.7971C124.861 27.8543 125.856 27.3829 127.09 27.3829ZM99.5704 27.3829C101.186 27.3829 102.463 27.7796 103.4 28.5731C104.337 29.3667 104.817 30.4549 104.84 31.8376V37.4826C104.856 38.6533 105.035 39.5489 105.379 40.1695V40.3699H101.432C101.292 40.1106 101.167 39.7296 101.058 39.2268C100.332 40.146 99.3166 40.6056 98.0128 40.6056C96.8183 40.6056 95.8034 40.2422 94.968 39.5155C94.1326 38.7888 93.7149 37.8754 93.7149 36.7754C93.7149 35.3927 94.2224 34.3478 95.2374 33.6407C96.2523 32.9336 97.7279 32.58 99.664 32.58H100.882V31.9083C100.882 30.7377 100.378 30.1523 99.3713 30.1523C98.4344 30.1523 97.966 30.6159 97.966 31.5429H94.0194C94.0194 30.3094 94.5405 29.3078 95.5829 28.5378C96.625 27.7679 97.9543 27.3829 99.5704 27.3829ZM112.417 27.3829C114.087 27.3829 115.43 27.7639 116.445 28.526C117.46 29.2882 117.968 30.2898 117.968 31.5311H114.009C114.009 30.5099 113.475 29.9992 112.405 29.9992C111.991 29.9992 111.644 30.115 111.363 30.3468C111.082 30.5786 110.941 30.8673 110.941 31.213C110.941 31.5666 111.113 31.8533 111.456 32.0733C111.8 32.2933 112.348 32.474 113.102 32.6154C113.855 32.7569 114.517 32.9258 115.087 33.1221C116.992 33.7821 117.944 34.9645 117.944 36.6694C117.944 37.8322 117.431 38.7789 116.404 39.5096C115.377 40.2402 114.048 40.6056 112.417 40.6056C111.331 40.6056 110.363 40.4092 109.512 40.0163C108.661 39.6235 107.998 39.0892 107.521 38.4136C107.045 37.7379 106.807 37.0269 106.807 36.2806H110.496C110.512 36.8697 110.707 37.2999 111.082 37.571C111.456 37.842 111.936 37.9775 112.522 37.9775C113.061 37.9775 113.465 37.8675 113.734 37.6476C114.004 37.4275 114.138 37.1408 114.138 36.7872C114.138 36.4495 113.963 36.1783 113.611 35.9741C113.26 35.7699 112.592 35.5577 111.609 35.3377C110.625 35.1178 109.813 34.829 109.173 34.4715C108.533 34.1141 108.045 33.68 107.709 33.1693C107.373 32.6586 107.205 32.0733 107.205 31.4133C107.205 30.2427 107.686 29.2783 108.646 28.5201C109.606 27.762 110.863 27.3829 112.417 27.3829ZM82.7658 22.2456V30.7769L88.3514 22.2456H93.4339L87.1925 30.8005L92.9542 40.3699H88.0825L84.4522 33.9825L82.7658 35.8445V40.3699H78.6553V22.2456H82.7658ZM138.414 27.6186V40.3699H134.455V27.6186H138.414ZM173.216 27.6186V29.7634L167.572 37.3058H173.345V40.3699H162.583V38.1543L168.204 30.6827H161.582L164.22 27.6186H173.216ZM143.705 36.2567C144.785 36.2567 145.659 37.1403 145.659 38.2304C145.659 39.3204 144.785 40.2042 143.705 40.2042C142.626 40.2042 141.751 39.3204 141.751 38.2304C141.751 37.1403 142.626 36.2567 143.705 36.2567ZM152.871 22.2451V31.7685L153.269 31.2433L156.252 27.5553H160.995L156.546 32.7488L161.289 40.1831H156.757L153.986 35.4797L152.871 36.5885V40.1831H148.913V22.2451H152.871ZM100.882 34.7014H99.7343C98.3602 34.7014 97.6732 35.322 97.6732 36.5634C97.6732 36.9248 97.7942 37.2174 98.0362 37.4414C98.2783 37.6653 98.5866 37.7772 98.9614 37.7772C99.4532 37.7772 99.8612 37.6711 100.185 37.4591C100.509 37.2469 100.741 37.0073 100.882 36.7401V34.7014ZM126.118 30.447C125.181 30.447 124.556 30.7848 124.244 31.4604V36.4809C124.588 37.1879 125.22 37.5415 126.141 37.5415C127.398 37.5415 128.046 36.4495 128.085 34.2653V33.841C128.085 31.5784 127.43 30.447 126.118 30.447ZM136.488 22.2451C137.567 22.2451 138.442 23.1708 138.442 24.3128C138.442 25.4548 137.567 26.3805 136.488 26.3805C135.409 26.3805 134.534 25.4548 134.534 24.3128C134.534 23.1708 135.409 22.2451 136.488 22.2451Z" fill="#BDC7CE"/>
9
9
  </svg>
10
10
  </template>
11
11
 
@@ -3,8 +3,8 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#000000] dark:group-hover:fill-[#FFFFFF] " d="M75.3816 29.75C75.3816 35.9633 64.1034 41 50.1909 41C36.2784 41 25 35.9633 25 29.75V22.25C25 21.5625 25.4408 20.9999 26.2595 21C26.7434 21.0001 27.699 21.5328 28.617 22.0447C29.1326 22.3322 29.6364 22.6131 30.0382 22.7893C35.4989 25.1842 42.525 26.625 50.1909 26.625C57.8568 26.625 64.8827 25.1842 70.3435 22.7893C70.9751 22.5122 71.588 22.1685 72.144 21.8565C72.9697 21.3932 73.6705 21 74.1221 21C74.9409 21 75.3816 21.5625 75.3816 22.25V29.75ZM165.13 36.5465L160.938 30.9943L165.019 25.4419H161.095L157.731 30.3057V21H154.368V36.5465H157.731V31.6383L161.319 36.5465H165.13ZM94.7634 26.5967C95.3913 25.7084 96.4226 25.1309 98.0146 25.1309C100.593 25.1309 102.275 26.9521 102.275 29.7283V36.5465H98.9115V30.017C98.9115 28.9065 98.3734 28.1958 97.2971 28.1958C96.176 28.1958 95.5481 28.9731 95.5481 30.2835V36.5465H92.1847V30.017C92.1847 28.9065 91.6466 28.1958 90.5704 28.1958C89.4492 28.1958 88.8214 28.9731 88.8214 30.2835V36.5465H85.458V25.4419H88.8214V26.4635C89.3371 25.7084 90.3238 25.1309 91.826 25.1309C93.1489 25.1309 94.1355 25.664 94.7634 26.5967ZM109.311 32.2379L111.418 25.4419H115.006L111.172 36.2134C109.916 39.7446 107.92 41.1439 104.781 40.9884V37.8791C106.351 37.8791 107.091 37.3905 107.584 36.0358L103.122 25.4419H106.822L109.311 32.2379ZM121.189 36.8575C123.386 36.8575 125.292 35.7248 126.256 33.9925L123.319 32.3268C122.96 33.1041 122.13 33.5705 121.144 33.5705C119.686 33.5705 118.61 32.5266 118.61 30.9943C118.61 29.4618 119.686 28.4179 121.144 28.4179C122.13 28.4179 122.938 28.8844 123.319 29.6616L126.256 27.9737C125.292 26.2636 123.364 25.1309 121.189 25.1309C117.78 25.1309 115.247 27.685 115.247 30.9943C115.247 34.3034 117.78 36.8575 121.189 36.8575ZM135.53 26.4857V25.4419H138.894V36.5465H135.53V35.5027C134.79 36.3466 133.691 36.8575 132.189 36.8575C129.252 36.8575 126.83 34.3034 126.83 30.9943C126.83 27.685 129.252 25.1309 132.189 25.1309C133.691 25.1309 134.79 25.6417 135.53 26.4857ZM130.193 30.9943C130.193 32.6599 131.315 33.7038 132.862 33.7038C134.409 33.7038 135.53 32.6599 135.53 30.9943C135.53 29.3285 134.409 28.2847 132.862 28.2847C131.315 28.2847 130.193 29.3285 130.193 30.9943ZM144.724 27.4185V25.4419H141.361V36.5465H144.724V31.5272C144.724 29.3285 146.698 28.7733 148.088 28.9954V25.2198C146.675 25.2198 145.173 25.9305 144.724 27.4185ZM152.12 34.7476C152.12 35.9025 151.155 36.8575 149.989 36.8575C148.824 36.8575 147.859 35.9025 147.859 34.7476C147.859 33.5928 148.824 32.6377 149.989 32.6377C151.155 32.6377 152.12 33.5928 152.12 34.7476ZM174.776 27.6628L170.538 33.4372H175V36.5465H166.031V34.3256L170.269 28.5511H166.255V25.4419H174.776V27.6628Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#000000] dark:fill-[#FFFFFF] " d="M75.3816 29.75C75.3816 35.9633 64.1034 41 50.1909 41C36.2784 41 25 35.9633 25 29.75V22.25C25 21.5625 25.4408 20.9999 26.2595 21C26.7434 21.0001 27.699 21.5328 28.617 22.0447C29.1326 22.3322 29.6364 22.6131 30.0382 22.7893C35.4989 25.1842 42.525 26.625 50.1909 26.625C57.8568 26.625 64.8827 25.1842 70.3435 22.7893C70.9751 22.5122 71.588 22.1685 72.144 21.8565C72.9697 21.3932 73.6705 21 74.1221 21C74.9409 21 75.3816 21.5625 75.3816 22.25V29.75ZM165.13 36.5465L160.938 30.9943L165.019 25.4419H161.095L157.731 30.3057V21H154.368V36.5465H157.731V31.6383L161.319 36.5465H165.13ZM94.7634 26.5967C95.3913 25.7084 96.4226 25.1309 98.0146 25.1309C100.593 25.1309 102.275 26.9521 102.275 29.7283V36.5465H98.9115V30.017C98.9115 28.9065 98.3734 28.1958 97.2971 28.1958C96.176 28.1958 95.5481 28.9731 95.5481 30.2835V36.5465H92.1847V30.017C92.1847 28.9065 91.6466 28.1958 90.5704 28.1958C89.4492 28.1958 88.8214 28.9731 88.8214 30.2835V36.5465H85.458V25.4419H88.8214V26.4635C89.3371 25.7084 90.3238 25.1309 91.826 25.1309C93.1489 25.1309 94.1355 25.664 94.7634 26.5967ZM109.311 32.2379L111.418 25.4419H115.006L111.172 36.2134C109.916 39.7446 107.92 41.1439 104.781 40.9884V37.8791C106.351 37.8791 107.091 37.3905 107.584 36.0358L103.122 25.4419H106.822L109.311 32.2379ZM121.189 36.8575C123.386 36.8575 125.292 35.7248 126.256 33.9925L123.319 32.3268C122.96 33.1041 122.13 33.5705 121.144 33.5705C119.686 33.5705 118.61 32.5266 118.61 30.9943C118.61 29.4618 119.686 28.4179 121.144 28.4179C122.13 28.4179 122.938 28.8844 123.319 29.6616L126.256 27.9737C125.292 26.2636 123.364 25.1309 121.189 25.1309C117.78 25.1309 115.247 27.685 115.247 30.9943C115.247 34.3034 117.78 36.8575 121.189 36.8575ZM135.53 26.4857V25.4419H138.894V36.5465H135.53V35.5027C134.79 36.3466 133.691 36.8575 132.189 36.8575C129.252 36.8575 126.83 34.3034 126.83 30.9943C126.83 27.685 129.252 25.1309 132.189 25.1309C133.691 25.1309 134.79 25.6417 135.53 26.4857ZM130.193 30.9943C130.193 32.6599 131.315 33.7038 132.862 33.7038C134.409 33.7038 135.53 32.6599 135.53 30.9943C135.53 29.3285 134.409 28.2847 132.862 28.2847C131.315 28.2847 130.193 29.3285 130.193 30.9943ZM144.724 27.4185V25.4419H141.361V36.5465H144.724V31.5272C144.724 29.3285 146.698 28.7733 148.088 28.9954V25.2198C146.675 25.2198 145.173 25.9305 144.724 27.4185ZM152.12 34.7476C152.12 35.9025 151.155 36.8575 149.989 36.8575C148.824 36.8575 147.859 35.9025 147.859 34.7476C147.859 33.5928 148.824 32.6377 149.989 32.6377C151.155 32.6377 152.12 33.5928 152.12 34.7476ZM174.776 27.6628L170.538 33.4372H175V36.5465H166.031V34.3256L170.269 28.5511H166.255V25.4419H174.776V27.6628Z" fill="#BDC7CE"/>
8
8
  </svg>
9
9
  </template>
10
10