@levo-so/blocks 0.1.1 → 0.1.52

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 (501) hide show
  1. package/package.json +6 -10
  2. package/src/blocks/about-us/about-us-1.schema.ts +577 -0
  3. package/src/blocks/about-us/about-us-1.tsx +53 -0
  4. package/src/blocks/about-us/about-us-2.schema.ts +269 -0
  5. package/src/blocks/about-us/about-us-2.tsx +47 -0
  6. package/src/blocks/blogs/blog-listing-1.schema.ts +473 -0
  7. package/src/blocks/blogs/blog-listing-1.tsx +102 -0
  8. package/src/blocks/blogs/blog-listing-2.schema.ts +3718 -0
  9. package/src/blocks/blogs/blog-listing-2.tsx +88 -0
  10. package/src/blocks/blogs/blog-listing-3.schema.ts +2476 -0
  11. package/src/blocks/blogs/blog-listing-3.tsx +84 -0
  12. package/src/blocks/blogs/blog-post-1.schema.ts +400 -0
  13. package/src/blocks/blogs/blog-post-1.tsx +52 -0
  14. package/src/blocks/blogs/blog-post-2.schema.ts +791 -0
  15. package/src/blocks/blogs/blog-post-2.tsx +131 -0
  16. package/src/blocks/blogs/blog-post-3.schema.ts +284 -0
  17. package/src/blocks/blogs/blog-post-3.tsx +58 -0
  18. package/src/blocks/cards/cards-10.schema.ts +1012 -0
  19. package/src/blocks/cards/cards-10.tsx +48 -0
  20. package/src/blocks/cards/cards-11.schema.ts +918 -0
  21. package/src/blocks/cards/cards-11.tsx +50 -0
  22. package/src/blocks/cards/cards-12.schema.ts +578 -0
  23. package/src/blocks/cards/cards-12.tsx +54 -0
  24. package/src/blocks/cards/cards-13.schema.ts +615 -0
  25. package/src/blocks/cards/cards-13.tsx +67 -0
  26. package/src/blocks/cards/cards-2.schema.ts +290 -0
  27. package/src/blocks/cards/cards-2.tsx +42 -0
  28. package/src/blocks/cards/cards-3.schema.ts +355 -0
  29. package/src/blocks/cards/cards-3.tsx +49 -0
  30. package/src/blocks/cards/cards-4.schema.ts +655 -0
  31. package/src/blocks/cards/cards-4.tsx +50 -0
  32. package/src/blocks/cards/cards-5.schema.ts +245 -0
  33. package/src/blocks/cards/cards-5.tsx +34 -0
  34. package/src/blocks/cards/cards-6.schema.ts +2139 -0
  35. package/src/blocks/cards/cards-6.tsx +140 -0
  36. package/src/blocks/cards/cards-7.schema.ts +3538 -0
  37. package/src/blocks/cards/cards-7.tsx +197 -0
  38. package/src/blocks/cards/cards-8.schema.ts +691 -0
  39. package/src/blocks/cards/cards-8.tsx +43 -0
  40. package/src/blocks/cards/cards-9.schema.ts +827 -0
  41. package/src/blocks/cards/cards-9.tsx +54 -0
  42. package/src/blocks/carousel/carousel-1.schema.ts +250 -0
  43. package/src/blocks/carousel/carousel-1.tsx +79 -0
  44. package/src/blocks/contact-us/contact-us-1.schema.ts +233 -0
  45. package/src/blocks/contact-us/contact-us-1.tsx +39 -0
  46. package/src/blocks/contact-us/contact-us-2.schema.ts +524 -0
  47. package/src/blocks/contact-us/contact-us-2.tsx +71 -0
  48. package/src/blocks/content/content-1.schema.ts +862 -0
  49. package/src/blocks/content/content-1.tsx +69 -0
  50. package/src/blocks/content/content-2.schema.ts +212 -0
  51. package/src/blocks/content/content-2.tsx +32 -0
  52. package/src/blocks/content/content-3.schema.ts +766 -0
  53. package/src/blocks/content/content-3.tsx +55 -0
  54. package/src/blocks/content/content-4.schema.ts +287 -0
  55. package/src/blocks/content/content-4.tsx +47 -0
  56. package/src/blocks/content/content-5.schema.ts +944 -0
  57. package/src/blocks/content/content-5.tsx +59 -0
  58. package/src/blocks/content/content-6.schema.ts +991 -0
  59. package/src/blocks/content/content-6.tsx +62 -0
  60. package/src/blocks/content/content-7.schema.ts +723 -0
  61. package/src/blocks/content/content-7.tsx +53 -0
  62. package/src/blocks/cta/cta-1.schema.ts +353 -0
  63. package/src/blocks/cta/cta-1.tsx +33 -0
  64. package/src/blocks/cta/cta-2.schema.ts +209 -0
  65. package/src/blocks/cta/cta-2.tsx +28 -0
  66. package/src/blocks/cta/cta-3.schema.ts +216 -0
  67. package/src/blocks/cta/cta-3.tsx +48 -0
  68. package/src/blocks/embed/embed-1.schema.ts +153 -0
  69. package/src/blocks/embed/embed-1.tsx +38 -0
  70. package/src/blocks/event/event-details.schema.ts +732 -0
  71. package/src/blocks/event/event-details.tsx +102 -0
  72. package/src/blocks/event/event-listing-2.schema.ts +555 -0
  73. package/src/blocks/event/event-listing-2.tsx +94 -0
  74. package/src/blocks/event/event-listing-3.schema.ts +621 -0
  75. package/src/blocks/event/event-listing-3.tsx +90 -0
  76. package/src/blocks/event/event-listing-4.schema.ts +3528 -0
  77. package/src/blocks/event/event-listing-4.tsx +97 -0
  78. package/src/blocks/event/event-listing.schema.ts +1353 -0
  79. package/src/blocks/event/event-listing.tsx +88 -0
  80. package/src/blocks/faq/faq-1.schema.ts +360 -0
  81. package/src/blocks/faq/faq-1.tsx +65 -0
  82. package/src/blocks/faq/faq-2.schema.ts +358 -0
  83. package/src/blocks/faq/faq-2.tsx +84 -0
  84. package/src/blocks/faq/faq-3.schema.ts +475 -0
  85. package/src/blocks/faq/faq-3.tsx +70 -0
  86. package/src/blocks/features/features-1/features-1.schema.ts +165 -0
  87. package/src/blocks/features/features-1/features-1.tsx +48 -0
  88. package/src/blocks/features/features-1/variants/default.ts +206 -0
  89. package/{dist/blocks/features/features-1/variants/index.js → src/blocks/features/features-1/variants/index.ts} +7 -1
  90. package/src/blocks/features/features-1/variants/stylized-cards-v1.ts +138 -0
  91. package/src/blocks/features/features-1/variants/stylized-cards-v2.ts +487 -0
  92. package/src/blocks/features/features-2.schema.ts +471 -0
  93. package/src/blocks/features/features-2.tsx +66 -0
  94. package/src/blocks/features/features-3.schema.ts +424 -0
  95. package/src/blocks/features/features-3.tsx +56 -0
  96. package/src/blocks/features/features-4.schema.ts +616 -0
  97. package/src/blocks/features/features-4.tsx +75 -0
  98. package/src/blocks/features/features-5.schema.ts +728 -0
  99. package/src/blocks/features/features-5.tsx +49 -0
  100. package/src/blocks/features/features-6.schema.ts +849 -0
  101. package/src/blocks/features/features-6.tsx +125 -0
  102. package/src/blocks/footer/footer-1.schema.ts +612 -0
  103. package/src/blocks/footer/footer-1.tsx +90 -0
  104. package/src/blocks/footer/footer-2.schema.ts +913 -0
  105. package/src/blocks/footer/footer-2.tsx +77 -0
  106. package/src/blocks/footer/footer-3.schema.ts +412 -0
  107. package/src/blocks/footer/footer-3.tsx +99 -0
  108. package/src/blocks/footer/footer-4.schema.ts +649 -0
  109. package/src/blocks/footer/footer-4.tsx +97 -0
  110. package/src/blocks/footer/footer-5.schema.ts +435 -0
  111. package/src/blocks/footer/footer-5.tsx +99 -0
  112. package/src/blocks/footer/footer-6.schema.ts +730 -0
  113. package/src/blocks/footer/footer-6.tsx +100 -0
  114. package/src/blocks/hero/hero-1.schema.ts +746 -0
  115. package/src/blocks/hero/hero-1.tsx +52 -0
  116. package/src/blocks/hero/hero-10.schema.ts +175 -0
  117. package/src/blocks/hero/hero-10.tsx +35 -0
  118. package/src/blocks/hero/hero-2.schema.ts +272 -0
  119. package/src/blocks/hero/hero-2.tsx +57 -0
  120. package/src/blocks/hero/hero-3.schema.ts +419 -0
  121. package/src/blocks/hero/hero-3.tsx +50 -0
  122. package/src/blocks/hero/hero-4.schema.ts +425 -0
  123. package/src/blocks/hero/hero-4.tsx +89 -0
  124. package/src/blocks/hero/hero-5.schema.ts +198 -0
  125. package/src/blocks/hero/hero-5.tsx +86 -0
  126. package/src/blocks/hero/hero-6.schema.ts +665 -0
  127. package/src/blocks/hero/hero-6.tsx +62 -0
  128. package/src/blocks/hero/hero-7.schema.ts +505 -0
  129. package/src/blocks/hero/hero-7.tsx +115 -0
  130. package/src/blocks/hero/hero-8.schema.ts +376 -0
  131. package/src/blocks/hero/hero-8.tsx +113 -0
  132. package/src/blocks/hero/hero-9.schema.ts +379 -0
  133. package/src/blocks/hero/hero-9.tsx +49 -0
  134. package/src/blocks/index.ts +89 -0
  135. package/src/blocks/logos/logos-1.schema.ts +270 -0
  136. package/src/blocks/logos/logos-1.tsx +60 -0
  137. package/src/blocks/navbar/navbar-1.schema.ts +959 -0
  138. package/src/blocks/navbar/navbar-1.tsx +384 -0
  139. package/src/blocks/navbar/navbar-2.schema.ts +1224 -0
  140. package/src/blocks/navbar/navbar-2.tsx +403 -0
  141. package/src/blocks/navbar/navbar-3.schema.ts +6834 -0
  142. package/src/blocks/navbar/navbar-3.tsx +551 -0
  143. package/src/blocks/pricing/pricing-1.schema.ts +988 -0
  144. package/src/blocks/pricing/pricing-1.tsx +88 -0
  145. package/src/blocks/products/products-listing-1.schema.ts +271 -0
  146. package/src/blocks/products/products-listing-1.tsx +48 -0
  147. package/src/blocks/profile/profile-1.schema.ts +399 -0
  148. package/src/blocks/profile/profile-1.tsx +64 -0
  149. package/src/blocks/stats/stats-1.schema.ts +262 -0
  150. package/src/blocks/stats/stats-1.tsx +38 -0
  151. package/src/blocks/stats/stats-2.schema.ts +111 -0
  152. package/src/blocks/stats/stats-2.tsx +52 -0
  153. package/src/blocks/stats/variants/default.ts +189 -0
  154. package/src/blocks/stats/variants/hero.ts +142 -0
  155. package/{dist/blocks/stats/variants/index.js → src/blocks/stats/variants/index.ts} +1 -0
  156. package/src/blocks/team/team-1.schema.ts +544 -0
  157. package/src/blocks/team/team-1.tsx +86 -0
  158. package/src/blocks/team/team-2.schema.ts +2742 -0
  159. package/src/blocks/team/team-2.tsx +74 -0
  160. package/src/blocks/team/team-3.schema.ts +690 -0
  161. package/src/blocks/team/team-3.tsx +103 -0
  162. package/src/blocks/team/team-4.schema.ts +551 -0
  163. package/src/blocks/team/team-4.tsx +59 -0
  164. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.schema.ts +158 -0
  165. package/src/blocks/termsAndPrivacy/terms-and-conditions-1.tsx +29 -0
  166. package/src/blocks/testimonial/testimonial-1.schema.ts +351 -0
  167. package/src/blocks/testimonial/testimonial-1.tsx +79 -0
  168. package/src/blocks/testimonial/testimonial-2.schema.ts +816 -0
  169. package/src/blocks/testimonial/testimonial-2.tsx +161 -0
  170. package/src/blocks/testimonial/testimonial-3.schema.ts +273 -0
  171. package/src/blocks/testimonial/testimonial-3.tsx +128 -0
  172. package/src/blocks/testimonial/testimonial-4.schema.ts +3378 -0
  173. package/src/blocks/testimonial/testimonial-4.tsx +202 -0
  174. package/src/blocks/testimonial/testimonial-5/variants/default.ts +510 -0
  175. package/src/blocks/testimonial/testimonial-5/variants/index.ts +4 -0
  176. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithLogo.ts +887 -0
  177. package/src/blocks/testimonial/testimonial-5/variants/testimonialWithRatings.ts +923 -0
  178. package/src/blocks/testimonial/testimonial-5.schema.ts +250 -0
  179. package/src/blocks/testimonial/testimonial-5.tsx +130 -0
  180. package/src/blocks/testimonial/testimonial-6.schema.ts +1672 -0
  181. package/src/blocks/testimonial/testimonial-6.tsx +178 -0
  182. package/{dist/index.js → src/index.ts} +5 -2
  183. package/{dist/schemas/blocks.js → src/schemas/blocks.ts} +97 -72
  184. package/src/schemas/categories.ts +140 -0
  185. package/src/styles.d.ts +4 -0
  186. package/dist/blocks/about-us/about-us-1.d.ts +0 -5
  187. package/dist/blocks/about-us/about-us-1.js +0 -5
  188. package/dist/blocks/about-us/about-us-1.schema.d.ts +0 -38
  189. package/dist/blocks/about-us/about-us-1.schema.js +0 -537
  190. package/dist/blocks/blogs/blog-listing-1.d.ts +0 -5
  191. package/dist/blocks/blogs/blog-listing-1.js +0 -12
  192. package/dist/blocks/blogs/blog-listing-1.schema.d.ts +0 -59
  193. package/dist/blocks/blogs/blog-listing-1.schema.js +0 -387
  194. package/dist/blocks/blogs/blog-listing-2.d.ts +0 -5
  195. package/dist/blocks/blogs/blog-listing-2.js +0 -9
  196. package/dist/blocks/blogs/blog-listing-2.schema.d.ts +0 -104
  197. package/dist/blocks/blogs/blog-listing-2.schema.js +0 -572
  198. package/dist/blocks/blogs/blog-post-1.d.ts +0 -6
  199. package/dist/blocks/blogs/blog-post-1.js +0 -8
  200. package/dist/blocks/blogs/blog-post-1.schema.d.ts +0 -48
  201. package/dist/blocks/blogs/blog-post-1.schema.js +0 -358
  202. package/dist/blocks/blogs/blog-post-2.d.ts +0 -6
  203. package/dist/blocks/blogs/blog-post-2.js +0 -8
  204. package/dist/blocks/blogs/blog-post-2.schema.d.ts +0 -74
  205. package/dist/blocks/blogs/blog-post-2.schema.js +0 -779
  206. package/dist/blocks/cards/cards-10.d.ts +0 -6
  207. package/dist/blocks/cards/cards-10.js +0 -4
  208. package/dist/blocks/cards/cards-10.schema.d.ts +0 -44
  209. package/dist/blocks/cards/cards-10.schema.js +0 -405
  210. package/dist/blocks/cards/cards-11.d.ts +0 -6
  211. package/dist/blocks/cards/cards-11.js +0 -4
  212. package/dist/blocks/cards/cards-11.schema.d.ts +0 -58
  213. package/dist/blocks/cards/cards-11.schema.js +0 -406
  214. package/dist/blocks/cards/cards-12.d.ts +0 -6
  215. package/dist/blocks/cards/cards-12.js +0 -4
  216. package/dist/blocks/cards/cards-12.schema.d.ts +0 -38
  217. package/dist/blocks/cards/cards-12.schema.js +0 -545
  218. package/dist/blocks/cards/cards-2.d.ts +0 -5
  219. package/dist/blocks/cards/cards-2.js +0 -4
  220. package/dist/blocks/cards/cards-2.schema.d.ts +0 -46
  221. package/dist/blocks/cards/cards-2.schema.js +0 -260
  222. package/dist/blocks/cards/cards-3.d.ts +0 -6
  223. package/dist/blocks/cards/cards-3.js +0 -5
  224. package/dist/blocks/cards/cards-3.schema.d.ts +0 -36
  225. package/dist/blocks/cards/cards-3.schema.js +0 -351
  226. package/dist/blocks/cards/cards-4.d.ts +0 -6
  227. package/dist/blocks/cards/cards-4.js +0 -4
  228. package/dist/blocks/cards/cards-4.schema.d.ts +0 -40
  229. package/dist/blocks/cards/cards-4.schema.js +0 -648
  230. package/dist/blocks/cards/cards-5.d.ts +0 -5
  231. package/dist/blocks/cards/cards-5.js +0 -4
  232. package/dist/blocks/cards/cards-5.schema.d.ts +0 -48
  233. package/dist/blocks/cards/cards-5.schema.js +0 -238
  234. package/dist/blocks/cards/cards-6.d.ts +0 -5
  235. package/dist/blocks/cards/cards-6.js +0 -45
  236. package/dist/blocks/cards/cards-6.schema.d.ts +0 -50
  237. package/dist/blocks/cards/cards-6.schema.js +0 -608
  238. package/dist/blocks/cards/cards-7.d.ts +0 -5
  239. package/dist/blocks/cards/cards-7.js +0 -45
  240. package/dist/blocks/cards/cards-7.schema.d.ts +0 -87
  241. package/dist/blocks/cards/cards-7.schema.js +0 -1732
  242. package/dist/blocks/cards/cards-8.d.ts +0 -6
  243. package/dist/blocks/cards/cards-8.js +0 -4
  244. package/dist/blocks/cards/cards-8.schema.d.ts +0 -40
  245. package/dist/blocks/cards/cards-8.schema.js +0 -660
  246. package/dist/blocks/cards/cards-9.d.ts +0 -5
  247. package/dist/blocks/cards/cards-9.js +0 -4
  248. package/dist/blocks/cards/cards-9.schema.d.ts +0 -55
  249. package/dist/blocks/cards/cards-9.schema.js +0 -798
  250. package/dist/blocks/carousel/carousel-1.d.ts +0 -5
  251. package/dist/blocks/carousel/carousel-1.js +0 -12
  252. package/dist/blocks/carousel/carousel-1.schema.d.ts +0 -51
  253. package/dist/blocks/carousel/carousel-1.schema.js +0 -236
  254. package/dist/blocks/contact-us/contact-us-1.d.ts +0 -5
  255. package/dist/blocks/contact-us/contact-us-1.js +0 -4
  256. package/dist/blocks/contact-us/contact-us-1.schema.d.ts +0 -31
  257. package/dist/blocks/contact-us/contact-us-1.schema.js +0 -202
  258. package/dist/blocks/contact-us/contact-us-2.d.ts +0 -5
  259. package/dist/blocks/contact-us/contact-us-2.js +0 -4
  260. package/dist/blocks/contact-us/contact-us-2.schema.d.ts +0 -59
  261. package/dist/blocks/contact-us/contact-us-2.schema.js +0 -512
  262. package/dist/blocks/content/content-1.d.ts +0 -6
  263. package/dist/blocks/content/content-1.js +0 -4
  264. package/dist/blocks/content/content-1.schema.d.ts +0 -56
  265. package/dist/blocks/content/content-1.schema.js +0 -807
  266. package/dist/blocks/content/content-2.d.ts +0 -5
  267. package/dist/blocks/content/content-2.js +0 -4
  268. package/dist/blocks/content/content-2.schema.d.ts +0 -78
  269. package/dist/blocks/content/content-2.schema.js +0 -200
  270. package/dist/blocks/content/content-3.d.ts +0 -6
  271. package/dist/blocks/content/content-3.js +0 -5
  272. package/dist/blocks/content/content-3.schema.d.ts +0 -23
  273. package/dist/blocks/content/content-3.schema.js +0 -850
  274. package/dist/blocks/content/content-4.d.ts +0 -6
  275. package/dist/blocks/content/content-4.js +0 -6
  276. package/dist/blocks/content/content-4.schema.d.ts +0 -33
  277. package/dist/blocks/content/content-4.schema.js +0 -252
  278. package/dist/blocks/content/content-5.d.ts +0 -6
  279. package/dist/blocks/content/content-5.js +0 -5
  280. package/dist/blocks/content/content-5.schema.d.ts +0 -37
  281. package/dist/blocks/content/content-5.schema.js +0 -932
  282. package/dist/blocks/content/content-6.d.ts +0 -6
  283. package/dist/blocks/content/content-6.js +0 -5
  284. package/dist/blocks/content/content-6.schema.d.ts +0 -41
  285. package/dist/blocks/content/content-6.schema.js +0 -976
  286. package/dist/blocks/cta/cta-1.d.ts +0 -5
  287. package/dist/blocks/cta/cta-1.js +0 -4
  288. package/dist/blocks/cta/cta-1.schema.d.ts +0 -40
  289. package/dist/blocks/cta/cta-1.schema.js +0 -339
  290. package/dist/blocks/cta/cta-2.d.ts +0 -5
  291. package/dist/blocks/cta/cta-2.js +0 -4
  292. package/dist/blocks/cta/cta-2.schema.d.ts +0 -45
  293. package/dist/blocks/cta/cta-2.schema.js +0 -183
  294. package/dist/blocks/cta/cta-3.d.ts +0 -5
  295. package/dist/blocks/cta/cta-3.js +0 -4
  296. package/dist/blocks/cta/cta-3.schema.d.ts +0 -34
  297. package/dist/blocks/cta/cta-3.schema.js +0 -137
  298. package/dist/blocks/embed/embed-1.d.ts +0 -5
  299. package/dist/blocks/embed/embed-1.js +0 -5
  300. package/dist/blocks/embed/embed-1.schema.d.ts +0 -13
  301. package/dist/blocks/embed/embed-1.schema.js +0 -146
  302. package/dist/blocks/event/event-details.d.ts +0 -5
  303. package/dist/blocks/event/event-details.js +0 -9
  304. package/dist/blocks/event/event-details.schema.d.ts +0 -112
  305. package/dist/blocks/event/event-details.schema.js +0 -685
  306. package/dist/blocks/event/event-listing-2.d.ts +0 -5
  307. package/dist/blocks/event/event-listing-2.js +0 -4
  308. package/dist/blocks/event/event-listing-2.schema.d.ts +0 -84
  309. package/dist/blocks/event/event-listing-2.schema.js +0 -455
  310. package/dist/blocks/event/event-listing-3.d.ts +0 -5
  311. package/dist/blocks/event/event-listing-3.js +0 -10
  312. package/dist/blocks/event/event-listing-3.schema.d.ts +0 -77
  313. package/dist/blocks/event/event-listing-3.schema.js +0 -570
  314. package/dist/blocks/event/event-listing.d.ts +0 -5
  315. package/dist/blocks/event/event-listing.js +0 -10
  316. package/dist/blocks/event/event-listing.schema.d.ts +0 -51
  317. package/dist/blocks/event/event-listing.schema.js +0 -1297
  318. package/dist/blocks/faq/faq-1.d.ts +0 -5
  319. package/dist/blocks/faq/faq-1.js +0 -4
  320. package/dist/blocks/faq/faq-1.schema.d.ts +0 -47
  321. package/dist/blocks/faq/faq-1.schema.js +0 -325
  322. package/dist/blocks/faq/faq-2.d.ts +0 -6
  323. package/dist/blocks/faq/faq-2.js +0 -19
  324. package/dist/blocks/faq/faq-2.schema.d.ts +0 -47
  325. package/dist/blocks/faq/faq-2.schema.js +0 -329
  326. package/dist/blocks/faq/faq-3.d.ts +0 -5
  327. package/dist/blocks/faq/faq-3.js +0 -4
  328. package/dist/blocks/faq/faq-3.schema.d.ts +0 -40
  329. package/dist/blocks/faq/faq-3.schema.js +0 -444
  330. package/dist/blocks/features/features-1/features-1.d.ts +0 -5
  331. package/dist/blocks/features/features-1/features-1.js +0 -4
  332. package/dist/blocks/features/features-1/features-1.schema.d.ts +0 -5
  333. package/dist/blocks/features/features-1/features-1.schema.js +0 -142
  334. package/dist/blocks/features/features-1/variants/default.d.ts +0 -37
  335. package/dist/blocks/features/features-1/variants/default.js +0 -185
  336. package/dist/blocks/features/features-1/variants/index.d.ts +0 -5
  337. package/dist/blocks/features/features-1/variants/stylized-cards-v1.d.ts +0 -3
  338. package/dist/blocks/features/features-1/variants/stylized-cards-v1.js +0 -132
  339. package/dist/blocks/features/features-1/variants/stylized-cards-v2.d.ts +0 -3
  340. package/dist/blocks/features/features-1/variants/stylized-cards-v2.js +0 -484
  341. package/dist/blocks/features/features-2.d.ts +0 -5
  342. package/dist/blocks/features/features-2.js +0 -8
  343. package/dist/blocks/features/features-2.schema.d.ts +0 -41
  344. package/dist/blocks/features/features-2.schema.js +0 -321
  345. package/dist/blocks/features/features-3.d.ts +0 -5
  346. package/dist/blocks/features/features-3.js +0 -4
  347. package/dist/blocks/features/features-3.schema.d.ts +0 -40
  348. package/dist/blocks/features/features-3.schema.js +0 -424
  349. package/dist/blocks/features/features-4.d.ts +0 -5
  350. package/dist/blocks/features/features-4.js +0 -4
  351. package/dist/blocks/features/features-4.schema.d.ts +0 -60
  352. package/dist/blocks/features/features-4.schema.js +0 -594
  353. package/dist/blocks/features/features-5.d.ts +0 -6
  354. package/dist/blocks/features/features-5.js +0 -5
  355. package/dist/blocks/features/features-5.schema.d.ts +0 -28
  356. package/dist/blocks/features/features-5.schema.js +0 -727
  357. package/dist/blocks/features/features-6.d.ts +0 -5
  358. package/dist/blocks/features/features-6.js +0 -31
  359. package/dist/blocks/features/features-6.schema.d.ts +0 -74
  360. package/dist/blocks/features/features-6.schema.js +0 -814
  361. package/dist/blocks/footer/footer-1.d.ts +0 -6
  362. package/dist/blocks/footer/footer-1.js +0 -5
  363. package/dist/blocks/footer/footer-1.schema.d.ts +0 -62
  364. package/dist/blocks/footer/footer-1.schema.js +0 -565
  365. package/dist/blocks/footer/footer-2.d.ts +0 -5
  366. package/dist/blocks/footer/footer-2.js +0 -4
  367. package/dist/blocks/footer/footer-2.schema.d.ts +0 -76
  368. package/dist/blocks/footer/footer-2.schema.js +0 -876
  369. package/dist/blocks/footer/footer-3.d.ts +0 -6
  370. package/dist/blocks/footer/footer-3.js +0 -15
  371. package/dist/blocks/footer/footer-3.schema.d.ts +0 -48
  372. package/dist/blocks/footer/footer-3.schema.js +0 -475
  373. package/dist/blocks/footer/footer-4.d.ts +0 -6
  374. package/dist/blocks/footer/footer-4.js +0 -5
  375. package/dist/blocks/footer/footer-4.schema.d.ts +0 -71
  376. package/dist/blocks/footer/footer-4.schema.js +0 -620
  377. package/dist/blocks/footer/footer-5.d.ts +0 -6
  378. package/dist/blocks/footer/footer-5.js +0 -5
  379. package/dist/blocks/footer/footer-5.schema.d.ts +0 -52
  380. package/dist/blocks/footer/footer-5.schema.js +0 -400
  381. package/dist/blocks/hero/hero-1.d.ts +0 -5
  382. package/dist/blocks/hero/hero-1.js +0 -4
  383. package/dist/blocks/hero/hero-1.schema.d.ts +0 -35
  384. package/dist/blocks/hero/hero-1.schema.js +0 -742
  385. package/dist/blocks/hero/hero-2.d.ts +0 -5
  386. package/dist/blocks/hero/hero-2.js +0 -4
  387. package/dist/blocks/hero/hero-2.schema.d.ts +0 -46
  388. package/dist/blocks/hero/hero-2.schema.js +0 -282
  389. package/dist/blocks/hero/hero-3.d.ts +0 -5
  390. package/dist/blocks/hero/hero-3.js +0 -4
  391. package/dist/blocks/hero/hero-3.schema.d.ts +0 -54
  392. package/dist/blocks/hero/hero-3.schema.js +0 -378
  393. package/dist/blocks/hero/hero-4.d.ts +0 -5
  394. package/dist/blocks/hero/hero-4.js +0 -30
  395. package/dist/blocks/hero/hero-4.schema.d.ts +0 -33
  396. package/dist/blocks/hero/hero-4.schema.js +0 -316
  397. package/dist/blocks/hero/hero-5.d.ts +0 -5
  398. package/dist/blocks/hero/hero-5.js +0 -30
  399. package/dist/blocks/hero/hero-5.schema.d.ts +0 -32
  400. package/dist/blocks/hero/hero-5.schema.js +0 -183
  401. package/dist/blocks/hero/hero-6.d.ts +0 -5
  402. package/dist/blocks/hero/hero-6.js +0 -8
  403. package/dist/blocks/hero/hero-6.schema.d.ts +0 -36
  404. package/dist/blocks/hero/hero-6.schema.js +0 -617
  405. package/dist/blocks/hero/hero-7.d.ts +0 -5
  406. package/dist/blocks/hero/hero-7.js +0 -40
  407. package/dist/blocks/hero/hero-7.schema.d.ts +0 -12
  408. package/dist/blocks/hero/hero-7.schema.js +0 -471
  409. package/dist/blocks/hero/hero-8.d.ts +0 -5
  410. package/dist/blocks/hero/hero-8.js +0 -39
  411. package/dist/blocks/hero/hero-8.schema.d.ts +0 -17
  412. package/dist/blocks/hero/hero-8.schema.js +0 -343
  413. package/dist/blocks/hero/hero-9.d.ts +0 -6
  414. package/dist/blocks/hero/hero-9.js +0 -4
  415. package/dist/blocks/hero/hero-9.schema.d.ts +0 -39
  416. package/dist/blocks/hero/hero-9.schema.js +0 -355
  417. package/dist/blocks/index.d.ts +0 -3
  418. package/dist/blocks/index.js +0 -74
  419. package/dist/blocks/logos/logos-1.d.ts +0 -5
  420. package/dist/blocks/logos/logos-1.js +0 -10
  421. package/dist/blocks/logos/logos-1.schema.d.ts +0 -34
  422. package/dist/blocks/logos/logos-1.schema.js +0 -239
  423. package/dist/blocks/navbar/navbar-1.d.ts +0 -6
  424. package/dist/blocks/navbar/navbar-1.js +0 -100
  425. package/dist/blocks/navbar/navbar-1.schema.d.ts +0 -117
  426. package/dist/blocks/navbar/navbar-1.schema.js +0 -938
  427. package/dist/blocks/navbar/navbar-2.d.ts +0 -6
  428. package/dist/blocks/navbar/navbar-2.js +0 -99
  429. package/dist/blocks/navbar/navbar-2.schema.d.ts +0 -134
  430. package/dist/blocks/navbar/navbar-2.schema.js +0 -1200
  431. package/dist/blocks/pricing/pricing-1.d.ts +0 -5
  432. package/dist/blocks/pricing/pricing-1.js +0 -4
  433. package/dist/blocks/pricing/pricing-1.schema.d.ts +0 -87
  434. package/dist/blocks/pricing/pricing-1.schema.js +0 -976
  435. package/dist/blocks/products/products-listing-1.d.ts +0 -5
  436. package/dist/blocks/products/products-listing-1.js +0 -4
  437. package/dist/blocks/products/products-listing-1.schema.d.ts +0 -36
  438. package/dist/blocks/products/products-listing-1.schema.js +0 -264
  439. package/dist/blocks/stats/stats-1.d.ts +0 -6
  440. package/dist/blocks/stats/stats-1.js +0 -6
  441. package/dist/blocks/stats/stats-1.schema.d.ts +0 -25
  442. package/dist/blocks/stats/stats-1.schema.js +0 -213
  443. package/dist/blocks/stats/stats-2.d.ts +0 -6
  444. package/dist/blocks/stats/stats-2.js +0 -6
  445. package/dist/blocks/stats/stats-2.schema.d.ts +0 -5
  446. package/dist/blocks/stats/stats-2.schema.js +0 -104
  447. package/dist/blocks/stats/variants/default.d.ts +0 -22
  448. package/dist/blocks/stats/variants/default.js +0 -185
  449. package/dist/blocks/stats/variants/hero.d.ts +0 -3
  450. package/dist/blocks/stats/variants/hero.js +0 -151
  451. package/dist/blocks/stats/variants/index.d.ts +0 -4
  452. package/dist/blocks/team/team-1.d.ts +0 -6
  453. package/dist/blocks/team/team-1.js +0 -6
  454. package/dist/blocks/team/team-1.schema.d.ts +0 -65
  455. package/dist/blocks/team/team-1.schema.js +0 -476
  456. package/dist/blocks/team/team-2.d.ts +0 -6
  457. package/dist/blocks/team/team-2.js +0 -6
  458. package/dist/blocks/team/team-2.schema.d.ts +0 -52
  459. package/dist/blocks/team/team-2.schema.js +0 -2732
  460. package/dist/blocks/team/team-3.d.ts +0 -5
  461. package/dist/blocks/team/team-3.js +0 -30
  462. package/dist/blocks/team/team-3.schema.d.ts +0 -32
  463. package/dist/blocks/team/team-3.schema.js +0 -679
  464. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.d.ts +0 -6
  465. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.js +0 -4
  466. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.d.ts +0 -14
  467. package/dist/blocks/termsAndPrivacy/terms-and-conditions-1.schema.js +0 -154
  468. package/dist/blocks/testimonial/testimonial-1.d.ts +0 -5
  469. package/dist/blocks/testimonial/testimonial-1.js +0 -10
  470. package/dist/blocks/testimonial/testimonial-1.schema.d.ts +0 -16
  471. package/dist/blocks/testimonial/testimonial-1.schema.js +0 -314
  472. package/dist/blocks/testimonial/testimonial-2.d.ts +0 -5
  473. package/dist/blocks/testimonial/testimonial-2.js +0 -42
  474. package/dist/blocks/testimonial/testimonial-2.schema.d.ts +0 -54
  475. package/dist/blocks/testimonial/testimonial-2.schema.js +0 -771
  476. package/dist/blocks/testimonial/testimonial-3.d.ts +0 -5
  477. package/dist/blocks/testimonial/testimonial-3.js +0 -38
  478. package/dist/blocks/testimonial/testimonial-3.schema.d.ts +0 -56
  479. package/dist/blocks/testimonial/testimonial-3.schema.js +0 -260
  480. package/dist/blocks/testimonial/testimonial-4.d.ts +0 -5
  481. package/dist/blocks/testimonial/testimonial-4.js +0 -51
  482. package/dist/blocks/testimonial/testimonial-4.schema.d.ts +0 -145
  483. package/dist/blocks/testimonial/testimonial-4.schema.js +0 -3214
  484. package/dist/blocks/testimonial/testimonial-5.d.ts +0 -5
  485. package/dist/blocks/testimonial/testimonial-5.js +0 -31
  486. package/dist/blocks/testimonial/testimonial-5.schema.d.ts +0 -33
  487. package/dist/blocks/testimonial/testimonial-5.schema.js +0 -401
  488. package/dist/blocks/testimonial/testimonial-6.d.ts +0 -5
  489. package/dist/blocks/testimonial/testimonial-6.js +0 -39
  490. package/dist/blocks/testimonial/testimonial-6.schema.d.ts +0 -60
  491. package/dist/blocks/testimonial/testimonial-6.schema.js +0 -695
  492. package/dist/blocks.d.ts +0 -3
  493. package/dist/blocks.js +0 -74
  494. package/dist/index.d.ts +0 -6
  495. package/dist/schemas/blocks.d.ts +0 -3
  496. package/dist/schemas/categories.d.ts +0 -3
  497. package/dist/schemas/categories.js +0 -129
  498. package/dist/schemas/index.d.ts +0 -3
  499. package/dist/schemas.d.ts +0 -3
  500. package/dist/schemas.js +0 -2
  501. /package/{dist/schemas/index.js → src/schemas/index.ts} +0 -0
@@ -0,0 +1,3538 @@
1
+ import type { IBlock } from "@levo-so/studio";
2
+
3
+ const DEFAULT_CONTENT = {
4
+ layout: null,
5
+ container: null,
6
+ header: null,
7
+ "header-content": null,
8
+ title: "Featured Solutions Overview",
9
+ description:
10
+ "Discover comprehensive business solutions designed to accelerate growth and streamline operations across multiple industries.",
11
+ "carousel-container": null,
12
+ "carousel-navigation-arrow-left": " ",
13
+ "carousel-navigation-arrow-right": " ",
14
+ "carousel-navigation-bottom-container": null,
15
+ "carousel-navigation-bottom": null,
16
+ "carousel-navigation-arrow-left-bottom": " ",
17
+ "carousel-navigation-arrow-right-bottom": " ",
18
+ cards: [
19
+ {
20
+ card: null,
21
+ label: "<p>Boston</p>",
22
+ "label-icon": {
23
+ kind: "icon",
24
+ data: {
25
+ id: "location",
26
+ label: "Location",
27
+ tags: ["custom", "location"],
28
+ svgCode:
29
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M11.9999 14.17C9.86988 14.17 8.12988 12.44 8.12988 10.3C8.12988 8.16 9.86988 6.44 11.9999 6.44C14.1299 6.44 15.8699 8.17 15.8699 10.31C15.8699 12.45 14.1299 14.17 11.9999 14.17ZM11.9999 7.94C10.6999 7.94 9.62988 9 9.62988 10.31C9.62988 11.62 10.6899 12.68 11.9999 12.68C13.3099 12.68 14.3699 11.62 14.3699 10.31C14.3699 9 13.2999 7.94 11.9999 7.94Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9997 22.76C10.5197 22.76 9.02969 22.2 7.86969 21.09C4.91969 18.25 1.65969 13.72 2.88969 8.33C3.99969 3.44 8.26969 1.25 11.9997 1.25C11.9997 1.25 11.9997 1.25 12.0097 1.25C15.7397 1.25 20.0097 3.44 21.1197 8.34C22.3397 13.73 19.0797 18.25 16.1297 21.09C14.9697 22.2 13.4797 22.76 11.9997 22.76ZM11.9997 2.75C9.08969 2.75 5.34969 4.3 4.35969 8.66C3.27969 13.37 6.23969 17.43 8.91969 20C10.6497 21.67 13.3597 21.67 15.0897 20C17.7597 17.43 20.7197 13.37 19.6597 8.66C18.6597 4.3 14.9097 2.75 11.9997 2.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
30
+ },
31
+ },
32
+ "image-container": null,
33
+ image: {
34
+ id: "hjB4vGY2wTjw",
35
+ filename: "image.png",
36
+ kind: "image",
37
+ location:
38
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW.png",
39
+ srcset: {
40
+ "1080w":
41
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp",
42
+ "1200w":
43
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp",
44
+ "1920w":
45
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp",
46
+ "320w":
47
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-320w.webp",
48
+ "640w":
49
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-640w.webp",
50
+ "750w":
51
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-750w.webp",
52
+ "828w":
53
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-828w.webp",
54
+ path: "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-320w.webp 320w",
55
+ },
56
+ mimetype: "image/png",
57
+ },
58
+ "content-container": null,
59
+ "header-container": null,
60
+ "card-title": "Enterprise Analytics Platform",
61
+ "card-description":
62
+ "Advanced data analytics and business intelligence solutions for enterprise-level decision making.",
63
+ stats: [
64
+ {
65
+ stat_card: null,
66
+ number: "99.9%",
67
+ label: "Uptime",
68
+ },
69
+ {
70
+ stat_card: null,
71
+ number: "500K+",
72
+ label: "Data Points",
73
+ },
74
+ {
75
+ stat_card: null,
76
+ number: "24/7",
77
+ label: "Support",
78
+ },
79
+ ],
80
+ cta: "Learn More",
81
+ },
82
+ {
83
+ card: null,
84
+ label: "<p>Boston</p>",
85
+ "label-icon": {
86
+ kind: "icon",
87
+ data: {
88
+ id: "location",
89
+ label: "Location",
90
+ tags: ["custom", "location"],
91
+ svgCode:
92
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M11.9999 14.17C9.86988 14.17 8.12988 12.44 8.12988 10.3C8.12988 8.16 9.86988 6.44 11.9999 6.44C14.1299 6.44 15.8699 8.17 15.8699 10.31C15.8699 12.45 14.1299 14.17 11.9999 14.17ZM11.9999 7.94C10.6999 7.94 9.62988 9 9.62988 10.31C9.62988 11.62 10.6899 12.68 11.9999 12.68C13.3099 12.68 14.3699 11.62 14.3699 10.31C14.3699 9 13.2999 7.94 11.9999 7.94Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9997 22.76C10.5197 22.76 9.02969 22.2 7.86969 21.09C4.91969 18.25 1.65969 13.72 2.88969 8.33C3.99969 3.44 8.26969 1.25 11.9997 1.25C11.9997 1.25 11.9997 1.25 12.0097 1.25C15.7397 1.25 20.0097 3.44 21.1197 8.34C22.3397 13.73 19.0797 18.25 16.1297 21.09C14.9697 22.2 13.4797 22.76 11.9997 22.76ZM11.9997 2.75C9.08969 2.75 5.34969 4.3 4.35969 8.66C3.27969 13.37 6.23969 17.43 8.91969 20C10.6497 21.67 13.3597 21.67 15.0897 20C17.7597 17.43 20.7197 13.37 19.6597 8.66C18.6597 4.3 14.9097 2.75 11.9997 2.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
93
+ },
94
+ },
95
+ "image-container": null,
96
+ image: {
97
+ id: "hjB4vGY2wTjw",
98
+ filename: "image.png",
99
+ kind: "image",
100
+ location:
101
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW.png",
102
+ srcset: {
103
+ "1080w":
104
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp",
105
+ "1200w":
106
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp",
107
+ "1920w":
108
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp",
109
+ "320w":
110
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-320w.webp",
111
+ "640w":
112
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-640w.webp",
113
+ "750w":
114
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-750w.webp",
115
+ "828w":
116
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-828w.webp",
117
+ path: "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-320w.webp 320w",
118
+ },
119
+ mimetype: "image/png",
120
+ },
121
+ "content-container": null,
122
+ "header-container": null,
123
+ "card-title": "Enterprise Analytics Platform",
124
+ "card-description":
125
+ "Advanced data analytics and business intelligence solutions for enterprise-level decision making.",
126
+ stats: [
127
+ {
128
+ stat_card: null,
129
+ number: "99.9%",
130
+ label: "Uptime",
131
+ },
132
+ {
133
+ stat_card: null,
134
+ number: "500K+",
135
+ label: "Data Points",
136
+ },
137
+ {
138
+ stat_card: null,
139
+ number: "24/7",
140
+ label: "Support",
141
+ },
142
+ ],
143
+ cta: "Learn More",
144
+ },
145
+ {
146
+ card: null,
147
+ "image-container": null,
148
+ label: "<p>Boston</p>",
149
+ "label-icon": {
150
+ kind: "icon",
151
+ data: {
152
+ id: "location",
153
+ label: "Location",
154
+ tags: ["custom", "location"],
155
+ svgCode:
156
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M11.9999 14.17C9.86988 14.17 8.12988 12.44 8.12988 10.3C8.12988 8.16 9.86988 6.44 11.9999 6.44C14.1299 6.44 15.8699 8.17 15.8699 10.31C15.8699 12.45 14.1299 14.17 11.9999 14.17ZM11.9999 7.94C10.6999 7.94 9.62988 9 9.62988 10.31C9.62988 11.62 10.6899 12.68 11.9999 12.68C13.3099 12.68 14.3699 11.62 14.3699 10.31C14.3699 9 13.2999 7.94 11.9999 7.94Z" fill="var(--color-icon-primary)"/>\n<path d="M11.9997 22.76C10.5197 22.76 9.02969 22.2 7.86969 21.09C4.91969 18.25 1.65969 13.72 2.88969 8.33C3.99969 3.44 8.26969 1.25 11.9997 1.25C11.9997 1.25 11.9997 1.25 12.0097 1.25C15.7397 1.25 20.0097 3.44 21.1197 8.34C22.3397 13.73 19.0797 18.25 16.1297 21.09C14.9697 22.2 13.4797 22.76 11.9997 22.76ZM11.9997 2.75C9.08969 2.75 5.34969 4.3 4.35969 8.66C3.27969 13.37 6.23969 17.43 8.91969 20C10.6497 21.67 13.3597 21.67 15.0897 20C17.7597 17.43 20.7197 13.37 19.6597 8.66C18.6597 4.3 14.9097 2.75 11.9997 2.75Z" fill="var(--color-icon-primary)"/>\n</svg>',
157
+ },
158
+ },
159
+ image: {
160
+ id: "hjB4vGY2wTjw",
161
+ filename: "image.png",
162
+ kind: "image",
163
+ location:
164
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW.png",
165
+ srcset: {
166
+ "1080w":
167
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp",
168
+ "1200w":
169
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp",
170
+ "1920w":
171
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp",
172
+ "320w":
173
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-320w.webp",
174
+ "640w":
175
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-640w.webp",
176
+ "750w":
177
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-750w.webp",
178
+ "828w":
179
+ "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-828w.webp",
180
+ path: "https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-640w.webp 640w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-750w.webp 750w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-828w.webp 828w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1080w.webp 1080w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1200w.webp 1200w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-1920w.webp 1920w, https://static.levostg.online/W6OEVMW8/image-9GFGqRTHaylW-320w.webp 320w",
181
+ },
182
+ mimetype: "image/png",
183
+ },
184
+ "content-container": null,
185
+ "header-container": null,
186
+ "card-title": "Enterprise Analytics Platform",
187
+ "card-description":
188
+ "Advanced data analytics and business intelligence solutions for enterprise-level decision making.",
189
+ stats: [
190
+ {
191
+ stat_card: null,
192
+ number: "99.9%",
193
+ label: "Uptime",
194
+ },
195
+ {
196
+ stat_card: null,
197
+ number: "500K+",
198
+ label: "Data Points",
199
+ },
200
+ {
201
+ stat_card: null,
202
+ number: "24/7",
203
+ label: "Support",
204
+ },
205
+ ],
206
+ cta: "Learn More",
207
+ },
208
+ ],
209
+ "carousel-navigation-arrow-left_leftIcon": {
210
+ kind: "icon",
211
+ data: {
212
+ id: "arrow-left",
213
+ label: "Arrow Left",
214
+ tags: ["arrow", "custom", "directional", "left"],
215
+ svgCode:
216
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
217
+ },
218
+ },
219
+ "carousel-navigation-arrow-right_rightIcon": {
220
+ kind: "icon",
221
+ data: {
222
+ id: "arrow-right-1",
223
+ label: "Arrow Right 1",
224
+ tags: ["arrow", "custom", "directional", "right"],
225
+ svgCode:
226
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
227
+ },
228
+ },
229
+ "carousel-navigation-arrow-left-bottom_leftIcon": {
230
+ kind: "icon",
231
+ data: {
232
+ id: "arrow-left",
233
+ label: "Arrow Left",
234
+ tags: ["arrow", "custom", "directional", "left"],
235
+ svgCode:
236
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M9.57043 18.82C9.38043 18.82 9.19043 18.75 9.04043 18.6L2.97043 12.53C2.68043 12.24 2.68043 11.76 2.97043 11.47L9.04043 5.4C9.33043 5.11 9.81043 5.11 10.1004 5.4C10.3904 5.69 10.3904 6.17 10.1004 6.46L4.56043 12L10.1004 17.54C10.3904 17.83 10.3904 18.31 10.1004 18.6C9.96043 18.75 9.76043 18.82 9.57043 18.82Z" fill="currentColor"/>\n<path d="M20.4999 12.75H3.66992C3.25992 12.75 2.91992 12.41 2.91992 12C2.91992 11.59 3.25992 11.25 3.66992 11.25H20.4999C20.9099 11.25 21.2499 11.59 21.2499 12C21.2499 12.41 20.9099 12.75 20.4999 12.75Z" fill="currentColor"/>\n</svg>',
237
+ },
238
+ },
239
+ "carousel-navigation-arrow-right-bottom_rightIcon": {
240
+ kind: "icon",
241
+ data: {
242
+ id: "arrow-right-1",
243
+ label: "Arrow Right 1",
244
+ tags: ["arrow", "custom", "directional", "right"],
245
+ svgCode:
246
+ '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M14.4301 18.82C14.2401 18.82 14.0501 18.75 13.9001 18.6C13.6101 18.31 13.6101 17.83 13.9001 17.54L19.4401 12L13.9001 6.46C13.6101 6.17 13.6101 5.69 13.9001 5.4C14.1901 5.11 14.6701 5.11 14.9601 5.4L21.0301 11.47C21.3201 11.76 21.3201 12.24 21.0301 12.53L14.9601 18.6C14.8101 18.75 14.6201 18.82 14.4301 18.82Z" fill="currentColor"/>\n<path d="M20.33 12.75H3.5C3.09 12.75 2.75 12.41 2.75 12C2.75 11.59 3.09 11.25 3.5 11.25H20.33C20.74 11.25 21.08 11.59 21.08 12C21.08 12.41 20.74 12.75 20.33 12.75Z" fill="currentColor"/>\n</svg>',
247
+ },
248
+ },
249
+ };
250
+
251
+ export type ICards7Content = typeof DEFAULT_CONTENT;
252
+
253
+ export const Cards7: IBlock = {
254
+ category_id: "cards",
255
+ title: "Cards 7",
256
+ key: "cards-7",
257
+ version: "v1",
258
+ prompt_description:
259
+ "Interactive carousel showcasing feature cards with left-aligned images and right-aligned content including title, description, stats, and CTA button. Includes navigation arrows positioned on the left and right of the carousel.",
260
+ content_schema: [
261
+ {
262
+ key: "layout",
263
+ label: "Layout",
264
+ field_interface: "LayoutWidget",
265
+ hint: {
266
+ prompt_description:
267
+ "Defines the overall layout structure for the cards carousel block with proper spacing and alignment.",
268
+ },
269
+ },
270
+ {
271
+ key: "container",
272
+ label: "Container",
273
+ field_interface: "ContainerWidget",
274
+ hint: {
275
+ prompt_description:
276
+ "Main container providing centered alignment and responsive padding for the entire cards section.",
277
+ },
278
+ },
279
+ {
280
+ key: "header",
281
+ label: "Header",
282
+ field_interface: "BoxWidget",
283
+ hint: {
284
+ prompt_description:
285
+ "Container for the section header elements including title and description.",
286
+ },
287
+ },
288
+ {
289
+ key: "header-content",
290
+ label: "Header Content",
291
+ field_interface: "BoxWidget",
292
+ hint: {
293
+ prompt_description:
294
+ "Wrapper for organizing header title and description with proper spacing.",
295
+ },
296
+ },
297
+ {
298
+ key: "title",
299
+ label: "Title",
300
+ field_interface: "HeadingWidget",
301
+ hint: {
302
+ prompt_description:
303
+ "Main section heading that introduces the featured cards. Should be compelling and descriptive of the solutions or features being showcased.",
304
+ min_characters: 20,
305
+ max_characters: 60,
306
+ },
307
+ },
308
+ {
309
+ key: "description",
310
+ label: "Description",
311
+ field_interface: "TypographyWidget",
312
+ hint: {
313
+ prompt_description:
314
+ "Supporting text that provides additional context about the featured cards and their benefits. Should complement the main title.",
315
+ min_characters: 80,
316
+ max_characters: 200,
317
+ },
318
+ },
319
+ {
320
+ key: "carousel-navigation-container",
321
+ label: "Carousel Navigation Container",
322
+ field_interface: "BoxWidget",
323
+ hint: {
324
+ prompt_description:
325
+ "Container for the navigation dots, providing proper positioning below the carousel.",
326
+ },
327
+ },
328
+ {
329
+ key: "carousel-navigation",
330
+ label: "Carousel Navigation",
331
+ field_interface: "BoxWidget",
332
+ hint: {
333
+ prompt_description:
334
+ "Container for the navigation pills/dots that indicate current position and allow navigation between testimonials.",
335
+ },
336
+ },
337
+ {
338
+ key: "carousel-navigation-pill",
339
+ label: "Carousel Navigation Pill",
340
+ field_interface: "BoxWidget",
341
+ hint: {
342
+ prompt_description:
343
+ "Individual navigation dot that shows current position and allows clicking to navigate to specific testimonial.",
344
+ },
345
+ },
346
+ {
347
+ key: "carousel-container",
348
+ label: "Carousel Container",
349
+ field_interface: "BoxWidget",
350
+ hint: {
351
+ prompt_description:
352
+ "Container that holds the carousel and navigation arrows, positioning them horizontally with proper spacing.",
353
+ },
354
+ },
355
+ {
356
+ key: "carousel-navigation-arrow-left",
357
+ label: "Carousel Navigation Arrow Left",
358
+ field_interface: "ButtonWidget",
359
+ hint: {
360
+ prompt_description:
361
+ "Left navigation arrow to go to the previous card in the carousel. Positioned on the left side of the carousel.",
362
+ },
363
+ },
364
+ {
365
+ key: "carousel-navigation-arrow-right",
366
+ label: "Carousel Navigation Arrow Right",
367
+ field_interface: "ButtonWidget",
368
+ hint: {
369
+ prompt_description:
370
+ "Right navigation arrow to go to the next card in the carousel. Positioned on the right side of the carousel.",
371
+ },
372
+ },
373
+ {
374
+ key: "carousel-navigation-bottom-container",
375
+ label: "Carousel Navigation Bottom Container",
376
+ field_interface: "BoxWidget",
377
+ hint: {
378
+ prompt_description:
379
+ "Container for the bottom navigation arrows that appears on tablet and mobile devices below the carousel.",
380
+ },
381
+ },
382
+ {
383
+ key: "carousel-navigation-bottom",
384
+ label: "Carousel Navigation Bottom",
385
+ field_interface: "BoxWidget",
386
+ hint: {
387
+ prompt_description:
388
+ "Bottom navigation wrapper that holds the left and right arrow buttons for tablet and mobile views.",
389
+ },
390
+ },
391
+ {
392
+ key: "carousel-navigation-arrow-left-bottom",
393
+ label: "Carousel Navigation Arrow Left Bottom",
394
+ field_interface: "ButtonWidget",
395
+ hint: {
396
+ prompt_description:
397
+ "Left navigation arrow for bottom navigation. Visible on tablet and mobile to go to the previous card.",
398
+ },
399
+ },
400
+ {
401
+ key: "carousel-navigation-arrow-right-bottom",
402
+ label: "Carousel Navigation Arrow Right Bottom",
403
+ field_interface: "ButtonWidget",
404
+ hint: {
405
+ prompt_description:
406
+ "Right navigation arrow for bottom navigation. Visible on tablet and mobile to go to the next card.",
407
+ },
408
+ },
409
+ {
410
+ key: "cards",
411
+ label: "Cards",
412
+ field_interface: "CarouselWidget",
413
+ kind: "group",
414
+ fields: [
415
+ {
416
+ key: "card",
417
+ label: "Card",
418
+ field_interface: "BoxWidget",
419
+ hint: {
420
+ prompt_description:
421
+ "Individual card container that organizes the image and content in a horizontal layout.",
422
+ },
423
+ },
424
+ {
425
+ key: "image-container",
426
+ label: "Image Container",
427
+ field_interface: "BoxWidget",
428
+ hint: {
429
+ prompt_description:
430
+ "Container for the card image, providing consistent sizing and positioning on the left side.",
431
+ },
432
+ },
433
+ {
434
+ key: "image",
435
+ label: "Image",
436
+ field_interface: "ImageWidget",
437
+ hint: {
438
+ prompt_description:
439
+ "Visual representation of the featured solution or service. Should be professional and relevant to the card content.",
440
+ orientation: "landscape",
441
+ size: "large",
442
+ },
443
+ },
444
+ {
445
+ key: "content-container",
446
+ label: "Content Container",
447
+ field_interface: "BoxWidget",
448
+ hint: {
449
+ prompt_description:
450
+ "Right-side container that holds all text content, stats, and CTA button with proper vertical spacing.",
451
+ },
452
+ },
453
+ {
454
+ key: "label-container",
455
+ label: "Label Container",
456
+ field_interface: "BoxWidget",
457
+ hint: {
458
+ prompt_description:
459
+ "Container for the card's label, positioned at the top of the content area.",
460
+ },
461
+ },
462
+ {
463
+ key: "label-icon",
464
+ label: "Label Icon",
465
+ field_interface: "IconWidget",
466
+ hint: {
467
+ prompt_description:
468
+ "Icon for the individual card. Should clearly identify the solution or feature being presented.",
469
+ min_characters: 15,
470
+ max_characters: 50,
471
+ },
472
+ },
473
+ {
474
+ key: "label",
475
+ label: "Label",
476
+ field_interface: "TypographyWidget",
477
+ hint: {
478
+ prompt_description:
479
+ "Label for the individual card. Should clearly identify the solution or feature being presented.",
480
+ min_characters: 15,
481
+ max_characters: 50,
482
+ },
483
+ },
484
+ {
485
+ key: "header-container",
486
+ label: "Header Container",
487
+ field_interface: "BoxWidget",
488
+ hint: {
489
+ prompt_description:
490
+ "Container for the card's title and description, positioned at the top of the content area.",
491
+ },
492
+ },
493
+ {
494
+ key: "card-title",
495
+ label: "Card Title",
496
+ field_interface: "HeadingWidget",
497
+ hint: {
498
+ prompt_description:
499
+ "Primary heading for the individual card. Should clearly identify the solution or feature being presented.",
500
+ min_characters: 15,
501
+ max_characters: 50,
502
+ },
503
+ },
504
+ {
505
+ key: "card-description",
506
+ label: "Card Description",
507
+ field_interface: "TypographyWidget",
508
+ hint: {
509
+ prompt_description:
510
+ "Detailed description of the card's solution or feature, explaining its benefits and capabilities.",
511
+ min_characters: 60,
512
+ max_characters: 150,
513
+ },
514
+ },
515
+ {
516
+ key: "stats",
517
+ label: "Stats",
518
+ kind: "group",
519
+ field_interface: "BoxWidget",
520
+ fields: [
521
+ {
522
+ key: "stat_card",
523
+ label: "Stat Card",
524
+ field_interface: "BoxWidget",
525
+ hint: {
526
+ prompt_description:
527
+ "Individual stat container holding a metric number and its descriptive label.",
528
+ },
529
+ },
530
+ {
531
+ key: "number",
532
+ label: "Number",
533
+ field_interface: "HeadingWidget",
534
+ hint: {
535
+ prompt_description:
536
+ "The metric value or statistic (e.g., '99.9%', '500K+', '24/7'). Should be impactful and relevant.",
537
+ min_characters: 2,
538
+ max_characters: 8,
539
+ },
540
+ },
541
+ {
542
+ key: "label",
543
+ label: "Label",
544
+ field_interface: "TypographyWidget",
545
+ hint: {
546
+ prompt_description:
547
+ "Descriptive label explaining what the number represents (e.g., 'Uptime', 'Users', 'Support').",
548
+ min_characters: 4,
549
+ max_characters: 20,
550
+ },
551
+ },
552
+ ],
553
+ hint: {
554
+ prompt_description:
555
+ "Collection of key performance metrics or statistics that demonstrate the value and effectiveness of the featured solution.",
556
+ min_items: 3,
557
+ max_items: 4,
558
+ },
559
+ },
560
+ {
561
+ key: "cta",
562
+ label: "CTA Button",
563
+ field_interface: "ButtonWidget",
564
+ hint: {
565
+ prompt_description:
566
+ "Call-to-action button encouraging users to learn more or engage with the featured solution.",
567
+ },
568
+ },
569
+ ],
570
+ hint: {
571
+ prompt_description:
572
+ "Carousel of feature cards showcasing different solutions or services. Each card combines visual content with detailed information and key metrics.",
573
+ min_items: 3,
574
+ max_items: 6,
575
+ },
576
+ },
577
+ ],
578
+ layouts: [
579
+ {
580
+ key: "default",
581
+ title: "Default",
582
+ styles: {
583
+ layout: {
584
+ "padding-top": "7xl",
585
+ "padding-bottom": "7xl",
586
+ "padding-left": "lg",
587
+ "padding-right": "lg",
588
+ mobile: {
589
+ "padding-top": "4xl",
590
+ "padding-bottom": "4xl",
591
+ "padding-left": "base",
592
+ "padding-right": "base",
593
+ },
594
+ tablet: {
595
+ "padding-left": "none",
596
+ "padding-right": "none",
597
+ "padding-top": "none",
598
+ "padding-bottom": "none",
599
+ },
600
+ },
601
+ container: {
602
+ "margin-left": "auto",
603
+ "margin-right": "auto",
604
+ "max-width": "none",
605
+ tablet: {
606
+ "margin-left": "auto",
607
+ "padding-left": "xl",
608
+ "padding-right": "xl",
609
+ },
610
+ },
611
+ header: {
612
+ "text-align": "center",
613
+ "margin-bottom": "4xl",
614
+ mobile: {
615
+ "margin-bottom": "2xl",
616
+ },
617
+ },
618
+ "header-content": {
619
+ "max-width": "800px",
620
+ "margin-left": "auto",
621
+ "margin-right": "auto",
622
+ },
623
+ title: {
624
+ color: "text-1",
625
+ "margin-bottom": "lg",
626
+ },
627
+ description: {
628
+ color: "text-2",
629
+ },
630
+ "carousel-container": {
631
+ display: "flex",
632
+ "align-items": "center",
633
+ "column-gap": "lg",
634
+ position: "relative",
635
+ mobile: {
636
+ "flex-direction": "column",
637
+ "row-gap": "lg",
638
+ },
639
+ tablet: {
640
+ "padding-left": "none",
641
+ "padding-right": "none",
642
+ },
643
+ },
644
+ "carousel-navigation-arrow-left": {
645
+ display: "flex",
646
+ "align-items": "center",
647
+ "justify-content": "center",
648
+ "border-radius": "50%",
649
+ "background-color": "white",
650
+ color: "text-2",
651
+ cursor: "pointer",
652
+ "font-size": "lg",
653
+ "font-weight": "500",
654
+ "padding-top": "none",
655
+ "padding-bottom": "none",
656
+ "padding-left": "none",
657
+ "padding-right": "none",
658
+ "border-color": "transparent",
659
+ "border-width": "0px",
660
+ "border-style": "solid",
661
+ _hover: {
662
+ opacity: "0.9",
663
+ },
664
+ width: "48px",
665
+ height: "48px",
666
+ border: "1px solid var(--color-border)",
667
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
668
+ mobile: {
669
+ width: "40px",
670
+ height: "40px",
671
+ filter: "none",
672
+ "padding-top": "none",
673
+ "padding-bottom": "none",
674
+ "padding-left": "none",
675
+ "padding-right": "none",
676
+ },
677
+ tablet: {
678
+ display: "none",
679
+ },
680
+ },
681
+ "carousel-navigation-arrow-right": {
682
+ width: "48px",
683
+ height: "48px",
684
+ "border-radius": "50%",
685
+ "background-color": "white",
686
+ border: "1px solid var(--color-border)",
687
+ cursor: "pointer",
688
+ display: "flex",
689
+ "align-items": "center",
690
+ "justify-content": "center",
691
+ mobile: {
692
+ width: "40px",
693
+ height: "40px",
694
+ filter: "none",
695
+ "font-size": "xs",
696
+ },
697
+ "padding-top": "none",
698
+ "padding-bottom": "none",
699
+ "padding-left": "none",
700
+ "padding-right": "none",
701
+ "column-gap": "none",
702
+ color: "text-3",
703
+ tablet: {
704
+ filter: "none",
705
+ display: "none",
706
+ },
707
+ },
708
+ cards_levoGroup: {
709
+ flex: "1",
710
+ mobile: {
711
+ "max-width": "100%",
712
+ order: "1",
713
+ },
714
+ number_of_slides: 1,
715
+ tablet: {
716
+ number_of_slides: 1,
717
+ },
718
+ },
719
+ cards: [
720
+ {
721
+ card: {
722
+ display: "flex",
723
+ "background-color": "white",
724
+ "border-radius": "base",
725
+ "box-shadow": "lg",
726
+ overflow: "hidden",
727
+ "align-items": "stretch",
728
+ mobile: {
729
+ "flex-direction": "column",
730
+ "min-height": "auto",
731
+ "row-gap": "base",
732
+ },
733
+ "border-style": "solid",
734
+ "border-width": "1px",
735
+ "padding-left": "base",
736
+ "padding-right": "base",
737
+ "padding-top": "base",
738
+ "padding-bottom": "base",
739
+ tablet: {
740
+ "flex-direction": "column",
741
+ "align-items": "start",
742
+ },
743
+ },
744
+ "image-container": {
745
+ flex: "0 0 40%",
746
+ mobile: {
747
+ flex: "none",
748
+ width: "100%",
749
+ height: "100%",
750
+ },
751
+ tablet: {
752
+ width: "100%",
753
+ },
754
+ },
755
+ "label-container": {
756
+ display: "none",
757
+ },
758
+ image: {
759
+ width: "100%",
760
+ height: "100%",
761
+ "object-fit": "cover",
762
+ },
763
+ "content-container": {
764
+ flex: "1",
765
+ padding: "2xl",
766
+ display: "flex",
767
+ "flex-direction": "column",
768
+ "justify-content": "space-between",
769
+ mobile: {
770
+ padding: "lg",
771
+ "padding-left": "none",
772
+ "padding-right": "none",
773
+ "padding-bottom": "none",
774
+ "padding-top": "none",
775
+ },
776
+ tablet: {
777
+ "flex-direction": "column",
778
+ },
779
+ },
780
+ "header-container": {
781
+ "margin-bottom": "lg",
782
+ },
783
+ "card-title": {
784
+ "margin-bottom": "sm",
785
+ tablet: {
786
+ "font-size": "xl",
787
+ },
788
+ },
789
+ "card-description": {
790
+ color: "text-2",
791
+ tablet: {
792
+ "max-width": "600px",
793
+ },
794
+ },
795
+ stats_levoGroup: {
796
+ display: "grid",
797
+ "column-gap": "lg",
798
+ "margin-bottom": "lg",
799
+ mobile: {
800
+ "flex-wrap": "wrap",
801
+ "row-gap": "sm",
802
+ "column-gap": "sm",
803
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
804
+ },
805
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
806
+ tablet: {
807
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
808
+ "row-gap": "lg",
809
+ },
810
+ },
811
+ stat_card: {
812
+ "text-align": "center",
813
+ mobile: {
814
+ flex: "1 1 calc(50% - 4px)",
815
+ "min-width": "80px",
816
+ },
817
+ },
818
+ number: {
819
+ color: "text-1",
820
+ "margin-bottom": "xs",
821
+ },
822
+ label: {
823
+ color: "text-2",
824
+ },
825
+ cta: {
826
+ "align-self": "flex-start",
827
+ "border-color": "border",
828
+ "padding-top": "sm",
829
+ "padding-bottom": "sm",
830
+ "padding-left": "lg",
831
+ "padding-right": "lg",
832
+ },
833
+ stats: [
834
+ {
835
+ number: {
836
+ tablet: {
837
+ "font-size": "2xl",
838
+ },
839
+ "font-size": "3xl",
840
+ },
841
+ },
842
+ {
843
+ number: {
844
+ "font-size": "3xl",
845
+ tablet: {
846
+ "font-size": "2xl",
847
+ },
848
+ },
849
+ },
850
+ {
851
+ number: {
852
+ "font-size": "3xl",
853
+ tablet: {
854
+ "font-size": "2xl",
855
+ },
856
+ },
857
+ },
858
+ ],
859
+ },
860
+ {
861
+ card: {
862
+ display: "flex",
863
+ "background-color": "white",
864
+ "border-radius": "base",
865
+ "box-shadow": "lg",
866
+ overflow: "hidden",
867
+ "align-items": "stretch",
868
+ mobile: {
869
+ "flex-direction": "column",
870
+ "min-height": "auto",
871
+ "row-gap": "base",
872
+ },
873
+ "border-style": "solid",
874
+ "border-width": "1px",
875
+ "padding-left": "base",
876
+ "padding-right": "base",
877
+ "padding-top": "base",
878
+ "padding-bottom": "base",
879
+ tablet: {
880
+ "flex-direction": "column",
881
+ "align-items": "start",
882
+ },
883
+ },
884
+ "image-container": {
885
+ flex: "0 0 40%",
886
+ mobile: {
887
+ flex: "none",
888
+ width: "100%",
889
+ height: "100%",
890
+ },
891
+ tablet: {
892
+ width: "100%",
893
+ },
894
+ },
895
+ "label-container": {
896
+ display: "none",
897
+ },
898
+ image: {
899
+ width: "100%",
900
+ height: "100%",
901
+ "object-fit": "cover",
902
+ },
903
+ "content-container": {
904
+ flex: "1",
905
+ padding: "2xl",
906
+ display: "flex",
907
+ "flex-direction": "column",
908
+ "justify-content": "space-between",
909
+ mobile: {
910
+ padding: "lg",
911
+ "padding-left": "none",
912
+ "padding-right": "none",
913
+ "padding-bottom": "none",
914
+ "padding-top": "none",
915
+ },
916
+ tablet: {
917
+ "flex-direction": "column",
918
+ },
919
+ },
920
+ "header-container": {
921
+ "margin-bottom": "lg",
922
+ },
923
+ "card-title": {
924
+ "margin-bottom": "sm",
925
+ tablet: {
926
+ "font-size": "xl",
927
+ },
928
+ },
929
+ "card-description": {
930
+ color: "text-2",
931
+ tablet: {
932
+ "max-width": "600px",
933
+ },
934
+ },
935
+ stats_levoGroup: {
936
+ display: "grid",
937
+ "column-gap": "lg",
938
+ "margin-bottom": "lg",
939
+ mobile: {
940
+ "flex-wrap": "wrap",
941
+ "row-gap": "sm",
942
+ "column-gap": "sm",
943
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
944
+ },
945
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
946
+ tablet: {
947
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
948
+ "row-gap": "lg",
949
+ },
950
+ },
951
+ stat_card: {
952
+ "text-align": "center",
953
+ mobile: {
954
+ flex: "1 1 calc(50% - 4px)",
955
+ "min-width": "80px",
956
+ },
957
+ },
958
+ number: {
959
+ color: "text-1",
960
+ "margin-bottom": "xs",
961
+ },
962
+ label: {
963
+ color: "text-2",
964
+ },
965
+ cta: {
966
+ "align-self": "flex-start",
967
+ "border-color": "border",
968
+ "padding-top": "sm",
969
+ "padding-bottom": "sm",
970
+ "padding-left": "lg",
971
+ "padding-right": "lg",
972
+ },
973
+ stats: [
974
+ {
975
+ number: {
976
+ tablet: {
977
+ "font-size": "2xl",
978
+ },
979
+ "font-size": "3xl",
980
+ },
981
+ },
982
+ {
983
+ number: {
984
+ "font-size": "3xl",
985
+ tablet: {
986
+ "font-size": "2xl",
987
+ },
988
+ },
989
+ },
990
+ {
991
+ number: {
992
+ "font-size": "3xl",
993
+ tablet: {
994
+ "font-size": "2xl",
995
+ },
996
+ },
997
+ },
998
+ ],
999
+ },
1000
+ {
1001
+ card: {
1002
+ display: "flex",
1003
+ "background-color": "white",
1004
+ "border-radius": "base",
1005
+ "box-shadow": "lg",
1006
+ overflow: "hidden",
1007
+ "align-items": "stretch",
1008
+ mobile: {
1009
+ "flex-direction": "column",
1010
+ "min-height": "auto",
1011
+ "row-gap": "base",
1012
+ },
1013
+ "border-style": "solid",
1014
+ "border-width": "1px",
1015
+ "padding-left": "base",
1016
+ "padding-right": "base",
1017
+ "padding-top": "base",
1018
+ "padding-bottom": "base",
1019
+ tablet: {
1020
+ "flex-direction": "column",
1021
+ "align-items": "start",
1022
+ },
1023
+ },
1024
+ "image-container": {
1025
+ flex: "0 0 40%",
1026
+ mobile: {
1027
+ flex: "none",
1028
+ width: "100%",
1029
+ height: "100%",
1030
+ },
1031
+ tablet: {
1032
+ width: "100%",
1033
+ },
1034
+ },
1035
+ "label-container": {
1036
+ display: "none",
1037
+ },
1038
+ image: {
1039
+ width: "100%",
1040
+ height: "100%",
1041
+ "object-fit": "cover",
1042
+ },
1043
+ "content-container": {
1044
+ flex: "1",
1045
+ padding: "2xl",
1046
+ display: "flex",
1047
+ "flex-direction": "column",
1048
+ "justify-content": "space-between",
1049
+ mobile: {
1050
+ padding: "lg",
1051
+ "padding-left": "none",
1052
+ "padding-right": "none",
1053
+ "padding-bottom": "none",
1054
+ "padding-top": "none",
1055
+ },
1056
+ tablet: {
1057
+ "flex-direction": "column",
1058
+ },
1059
+ },
1060
+ "header-container": {
1061
+ "margin-bottom": "lg",
1062
+ },
1063
+ "card-title": {
1064
+ "margin-bottom": "sm",
1065
+ tablet: {
1066
+ "font-size": "xl",
1067
+ },
1068
+ },
1069
+ "card-description": {
1070
+ color: "text-2",
1071
+ tablet: {
1072
+ "max-width": "600px",
1073
+ },
1074
+ },
1075
+ stats_levoGroup: {
1076
+ display: "grid",
1077
+ "column-gap": "lg",
1078
+ "margin-bottom": "lg",
1079
+ mobile: {
1080
+ "flex-wrap": "wrap",
1081
+ "row-gap": "sm",
1082
+ "column-gap": "sm",
1083
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1084
+ },
1085
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
1086
+ tablet: {
1087
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
1088
+ "row-gap": "lg",
1089
+ },
1090
+ },
1091
+ stat_card: {
1092
+ "text-align": "center",
1093
+ mobile: {
1094
+ flex: "1 1 calc(50% - 4px)",
1095
+ "min-width": "80px",
1096
+ },
1097
+ },
1098
+ number: {
1099
+ color: "text-1",
1100
+ "margin-bottom": "xs",
1101
+ },
1102
+ label: {
1103
+ color: "text-2",
1104
+ },
1105
+ cta: {
1106
+ "align-self": "flex-start",
1107
+ "border-color": "border",
1108
+ "padding-top": "sm",
1109
+ "padding-bottom": "sm",
1110
+ "padding-left": "lg",
1111
+ "padding-right": "lg",
1112
+ },
1113
+ stats: [
1114
+ {
1115
+ number: {
1116
+ tablet: {
1117
+ "font-size": "2xl",
1118
+ },
1119
+ "font-size": "3xl",
1120
+ },
1121
+ },
1122
+ {
1123
+ number: {
1124
+ "font-size": "3xl",
1125
+ tablet: {
1126
+ "font-size": "2xl",
1127
+ },
1128
+ },
1129
+ },
1130
+ {
1131
+ number: {
1132
+ "font-size": "3xl",
1133
+ tablet: {
1134
+ "font-size": "2xl",
1135
+ },
1136
+ },
1137
+ },
1138
+ ],
1139
+ },
1140
+ {
1141
+ card: {
1142
+ display: "flex",
1143
+ "background-color": "white",
1144
+ "border-radius": "base",
1145
+ "box-shadow": "lg",
1146
+ overflow: "hidden",
1147
+ "align-items": "stretch",
1148
+ mobile: {
1149
+ "flex-direction": "column",
1150
+ "min-height": "auto",
1151
+ "row-gap": "base",
1152
+ },
1153
+ "border-style": "solid",
1154
+ "border-width": "1px",
1155
+ "padding-left": "base",
1156
+ "padding-right": "base",
1157
+ "padding-top": "base",
1158
+ "padding-bottom": "base",
1159
+ tablet: {
1160
+ "flex-direction": "column",
1161
+ "align-items": "start",
1162
+ },
1163
+ },
1164
+ "image-container": {
1165
+ flex: "0 0 40%",
1166
+ mobile: {
1167
+ flex: "none",
1168
+ width: "100%",
1169
+ height: "100%",
1170
+ },
1171
+ tablet: {
1172
+ width: "100%",
1173
+ },
1174
+ },
1175
+ image: {
1176
+ width: "100%",
1177
+ height: "100%",
1178
+ "object-fit": "cover",
1179
+ },
1180
+ "content-container": {
1181
+ flex: "1",
1182
+ padding: "2xl",
1183
+ display: "flex",
1184
+ "flex-direction": "column",
1185
+ "justify-content": "space-between",
1186
+ mobile: {
1187
+ padding: "lg",
1188
+ "padding-left": "none",
1189
+ "padding-right": "none",
1190
+ "padding-bottom": "none",
1191
+ "padding-top": "none",
1192
+ },
1193
+ tablet: {
1194
+ "flex-direction": "column",
1195
+ },
1196
+ },
1197
+ "header-container": {
1198
+ "margin-bottom": "lg",
1199
+ },
1200
+ "card-title": {
1201
+ "margin-bottom": "sm",
1202
+ tablet: {
1203
+ "font-size": "xl",
1204
+ },
1205
+ },
1206
+ "card-description": {
1207
+ color: "text-2",
1208
+ tablet: {
1209
+ "max-width": "600px",
1210
+ },
1211
+ },
1212
+ stats_levoGroup: {
1213
+ display: "grid",
1214
+ "column-gap": "lg",
1215
+ "margin-bottom": "lg",
1216
+ mobile: {
1217
+ "flex-wrap": "wrap",
1218
+ "row-gap": "sm",
1219
+ "column-gap": "sm",
1220
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1221
+ },
1222
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
1223
+ tablet: {
1224
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1225
+ },
1226
+ },
1227
+ stat_card: {
1228
+ "text-align": "center",
1229
+ mobile: {
1230
+ flex: "1 1 calc(50% - 4px)",
1231
+ "min-width": "80px",
1232
+ },
1233
+ },
1234
+ number: {
1235
+ color: "text-1",
1236
+ "margin-bottom": "xs",
1237
+ },
1238
+ label: {
1239
+ color: "text-2",
1240
+ },
1241
+ cta: {
1242
+ "align-self": "flex-start",
1243
+ "border-color": "border",
1244
+ "padding-top": "sm",
1245
+ "padding-bottom": "sm",
1246
+ "padding-left": "lg",
1247
+ "padding-right": "lg",
1248
+ },
1249
+ stats: [
1250
+ {
1251
+ number: {
1252
+ tablet: {
1253
+ "font-size": "base",
1254
+ },
1255
+ "font-size": "3xl",
1256
+ },
1257
+ },
1258
+ {
1259
+ number: {
1260
+ "font-size": "3xl",
1261
+ },
1262
+ },
1263
+ {
1264
+ number: {
1265
+ "font-size": "3xl",
1266
+ },
1267
+ },
1268
+ ],
1269
+ },
1270
+ {
1271
+ card: {
1272
+ display: "flex",
1273
+ "background-color": "white",
1274
+ "border-radius": "base",
1275
+ "box-shadow": "lg",
1276
+ overflow: "hidden",
1277
+ "align-items": "stretch",
1278
+ mobile: {
1279
+ "flex-direction": "column",
1280
+ "min-height": "auto",
1281
+ "row-gap": "base",
1282
+ },
1283
+ "border-style": "solid",
1284
+ "border-width": "1px",
1285
+ "padding-left": "base",
1286
+ "padding-right": "base",
1287
+ "padding-top": "base",
1288
+ "padding-bottom": "base",
1289
+ tablet: {
1290
+ "flex-direction": "column",
1291
+ "align-items": "start",
1292
+ },
1293
+ },
1294
+ "image-container": {
1295
+ flex: "0 0 40%",
1296
+ mobile: {
1297
+ flex: "none",
1298
+ width: "100%",
1299
+ height: "100%",
1300
+ },
1301
+ tablet: {
1302
+ width: "100%",
1303
+ },
1304
+ },
1305
+ image: {
1306
+ width: "100%",
1307
+ height: "100%",
1308
+ "object-fit": "cover",
1309
+ },
1310
+ "content-container": {
1311
+ flex: "1",
1312
+ padding: "2xl",
1313
+ display: "flex",
1314
+ "flex-direction": "column",
1315
+ "justify-content": "space-between",
1316
+ mobile: {
1317
+ padding: "lg",
1318
+ "padding-left": "none",
1319
+ "padding-top": "none",
1320
+ "padding-right": "none",
1321
+ "padding-bottom": "none",
1322
+ },
1323
+ tablet: {
1324
+ "flex-direction": "column",
1325
+ },
1326
+ },
1327
+ "header-container": {
1328
+ "margin-bottom": "lg",
1329
+ },
1330
+ "card-title": {
1331
+ "margin-bottom": "sm",
1332
+ tablet: {
1333
+ "font-size": "xl",
1334
+ },
1335
+ },
1336
+ "card-description": {
1337
+ color: "text-2",
1338
+ tablet: {
1339
+ "max-width": "600px",
1340
+ },
1341
+ },
1342
+ stats_levoGroup: {
1343
+ display: "grid",
1344
+ "column-gap": "lg",
1345
+ "margin-bottom": "lg",
1346
+ mobile: {
1347
+ "flex-wrap": "wrap",
1348
+ "row-gap": "sm",
1349
+ "column-gap": "sm",
1350
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1351
+ },
1352
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
1353
+ tablet: {
1354
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
1355
+ },
1356
+ },
1357
+ stat_card: {
1358
+ "text-align": "center",
1359
+ mobile: {
1360
+ flex: "1 1 calc(50% - 4px)",
1361
+ "min-width": "80px",
1362
+ },
1363
+ },
1364
+ number: {
1365
+ color: "text-1",
1366
+ "margin-bottom": "xs",
1367
+ },
1368
+ label: {
1369
+ color: "text-2",
1370
+ },
1371
+ cta: {
1372
+ "align-self": "flex-start",
1373
+ "border-color": "border",
1374
+ "padding-top": "sm",
1375
+ "padding-bottom": "sm",
1376
+ "padding-left": "lg",
1377
+ "padding-right": "lg",
1378
+ },
1379
+ stats: [
1380
+ {
1381
+ number: {
1382
+ "font-size": "3xl",
1383
+ },
1384
+ },
1385
+ {
1386
+ number: {
1387
+ "font-size": "3xl",
1388
+ },
1389
+ },
1390
+ {
1391
+ number: {
1392
+ "font-size": "3xl",
1393
+ },
1394
+ },
1395
+ ],
1396
+ },
1397
+ {
1398
+ card: {
1399
+ display: "flex",
1400
+ "background-color": "white",
1401
+ "border-radius": "base",
1402
+ "box-shadow": "lg",
1403
+ overflow: "hidden",
1404
+ "align-items": "stretch",
1405
+ mobile: {
1406
+ "flex-direction": "column",
1407
+ "min-height": "auto",
1408
+ "row-gap": "base",
1409
+ },
1410
+ "border-style": "solid",
1411
+ "border-width": "1px",
1412
+ "padding-left": "base",
1413
+ "padding-right": "base",
1414
+ "padding-top": "base",
1415
+ "padding-bottom": "base",
1416
+ tablet: {
1417
+ "flex-direction": "column",
1418
+ "align-items": "start",
1419
+ width: "fit-content",
1420
+ },
1421
+ },
1422
+ "image-container": {
1423
+ flex: "0 0 40%",
1424
+ mobile: {
1425
+ flex: "none",
1426
+ width: "100%",
1427
+ height: "100%",
1428
+ },
1429
+ tablet: {},
1430
+ },
1431
+ image: {
1432
+ width: "100%",
1433
+ height: "100%",
1434
+ "object-fit": "cover",
1435
+ },
1436
+ "content-container": {
1437
+ flex: "1",
1438
+ padding: "2xl",
1439
+ display: "flex",
1440
+ "flex-direction": "column",
1441
+ "justify-content": "space-between",
1442
+ mobile: {
1443
+ padding: "lg",
1444
+ "padding-left": "none",
1445
+ "padding-right": "none",
1446
+ "padding-bottom": "none",
1447
+ "padding-top": "none",
1448
+ },
1449
+ },
1450
+ "header-container": {
1451
+ "margin-bottom": "lg",
1452
+ },
1453
+ "card-title": {
1454
+ "margin-bottom": "sm",
1455
+ },
1456
+ "card-description": {
1457
+ color: "text-2",
1458
+ },
1459
+ stats_levoGroup: {
1460
+ display: "flex",
1461
+ "column-gap": "lg",
1462
+ "margin-bottom": "lg",
1463
+ mobile: {
1464
+ "flex-wrap": "wrap",
1465
+ "row-gap": "sm",
1466
+ "column-gap": "sm",
1467
+ },
1468
+ },
1469
+ stat_card: {
1470
+ "text-align": "center",
1471
+ mobile: {
1472
+ flex: "1 1 calc(50% - 4px)",
1473
+ "min-width": "80px",
1474
+ },
1475
+ },
1476
+ number: {
1477
+ color: "text-1",
1478
+ "margin-bottom": "xs",
1479
+ },
1480
+ label: {
1481
+ color: "text-2",
1482
+ },
1483
+ cta: {
1484
+ "align-self": "flex-start",
1485
+ "border-color": "border",
1486
+ "padding-top": "sm",
1487
+ "padding-bottom": "sm",
1488
+ "padding-left": "lg",
1489
+ "padding-right": "lg",
1490
+ },
1491
+ },
1492
+ {
1493
+ card: {
1494
+ display: "flex",
1495
+ "background-color": "white",
1496
+ "border-radius": "base",
1497
+ "box-shadow": "lg",
1498
+ overflow: "hidden",
1499
+ "align-items": "stretch",
1500
+ mobile: {
1501
+ "flex-direction": "column",
1502
+ "min-height": "auto",
1503
+ "row-gap": "base",
1504
+ },
1505
+ "border-style": "solid",
1506
+ "border-width": "1px",
1507
+ "padding-left": "base",
1508
+ "padding-right": "base",
1509
+ "padding-top": "base",
1510
+ "padding-bottom": "base",
1511
+ tablet: {
1512
+ "flex-direction": "column",
1513
+ "align-items": "start",
1514
+ width: "fit-content",
1515
+ },
1516
+ },
1517
+ "image-container": {
1518
+ flex: "0 0 40%",
1519
+ mobile: {
1520
+ flex: "none",
1521
+ width: "100%",
1522
+ height: "100%",
1523
+ },
1524
+ tablet: {},
1525
+ },
1526
+ image: {
1527
+ width: "100%",
1528
+ height: "100%",
1529
+ "object-fit": "cover",
1530
+ },
1531
+ "content-container": {
1532
+ flex: "1",
1533
+ padding: "2xl",
1534
+ display: "flex",
1535
+ "flex-direction": "column",
1536
+ "justify-content": "space-between",
1537
+ mobile: {
1538
+ padding: "lg",
1539
+ "padding-left": "none",
1540
+ "padding-top": "none",
1541
+ "padding-right": "none",
1542
+ "padding-bottom": "none",
1543
+ },
1544
+ },
1545
+ "header-container": {
1546
+ "margin-bottom": "lg",
1547
+ },
1548
+ "card-title": {
1549
+ "margin-bottom": "sm",
1550
+ },
1551
+ "card-description": {
1552
+ color: "text-2",
1553
+ },
1554
+ stats_levoGroup: {
1555
+ display: "flex",
1556
+ "column-gap": "lg",
1557
+ "margin-bottom": "lg",
1558
+ mobile: {
1559
+ "flex-wrap": "wrap",
1560
+ "row-gap": "sm",
1561
+ "column-gap": "sm",
1562
+ },
1563
+ },
1564
+ stat_card: {
1565
+ "text-align": "center",
1566
+ mobile: {
1567
+ flex: "1 1 calc(50% - 4px)",
1568
+ "min-width": "80px",
1569
+ },
1570
+ },
1571
+ number: {
1572
+ color: "text-1",
1573
+ "margin-bottom": "xs",
1574
+ },
1575
+ label: {
1576
+ color: "text-2",
1577
+ },
1578
+ cta: {
1579
+ "align-self": "flex-start",
1580
+ "border-color": "border",
1581
+ "padding-top": "sm",
1582
+ "padding-bottom": "sm",
1583
+ "padding-left": "lg",
1584
+ "padding-right": "lg",
1585
+ },
1586
+ },
1587
+ {
1588
+ card: {
1589
+ display: "flex",
1590
+ "background-color": "white",
1591
+ "border-radius": "base",
1592
+ "box-shadow": "lg",
1593
+ overflow: "hidden",
1594
+ "align-items": "stretch",
1595
+ mobile: {
1596
+ "flex-direction": "column",
1597
+ "min-height": "auto",
1598
+ "row-gap": "base",
1599
+ },
1600
+ "border-style": "solid",
1601
+ "border-width": "1px",
1602
+ "padding-left": "base",
1603
+ "padding-right": "base",
1604
+ "padding-top": "base",
1605
+ "padding-bottom": "base",
1606
+ tablet: {
1607
+ "flex-direction": "column",
1608
+ "align-items": "start",
1609
+ width: "fit-content",
1610
+ },
1611
+ },
1612
+ "content-container": {
1613
+ flex: "1",
1614
+ padding: "2xl",
1615
+ display: "flex",
1616
+ "flex-direction": "column",
1617
+ "justify-content": "space-between",
1618
+ mobile: {
1619
+ padding: "lg",
1620
+ "padding-left": "none",
1621
+ "padding-right": "none",
1622
+ "padding-bottom": "none",
1623
+ "padding-top": "none",
1624
+ },
1625
+ },
1626
+ "image-container": {
1627
+ flex: "0 0 40%",
1628
+ mobile: {
1629
+ flex: "none",
1630
+ width: "100%",
1631
+ height: "100%",
1632
+ },
1633
+ tablet: {},
1634
+ },
1635
+ "header-container": {
1636
+ "margin-bottom": "lg",
1637
+ },
1638
+ stats_levoGroup: {
1639
+ display: "flex",
1640
+ "column-gap": "lg",
1641
+ "margin-bottom": "lg",
1642
+ mobile: {
1643
+ "flex-wrap": "wrap",
1644
+ "row-gap": "sm",
1645
+ "column-gap": "sm",
1646
+ },
1647
+ },
1648
+ cta: {
1649
+ "align-self": "flex-start",
1650
+ "border-color": "border",
1651
+ "padding-top": "sm",
1652
+ "padding-bottom": "sm",
1653
+ "padding-left": "lg",
1654
+ "padding-right": "lg",
1655
+ },
1656
+ "card-title": {
1657
+ "margin-bottom": "sm",
1658
+ },
1659
+ image: {
1660
+ mobile: {
1661
+ width: "100%",
1662
+ height: "100%",
1663
+ "object-fit": "cover",
1664
+ },
1665
+ },
1666
+ },
1667
+ {
1668
+ card: {
1669
+ display: "flex",
1670
+ "background-color": "white",
1671
+ "border-radius": "base",
1672
+ "box-shadow": "lg",
1673
+ overflow: "hidden",
1674
+ "align-items": "stretch",
1675
+ mobile: {
1676
+ "flex-direction": "column",
1677
+ "min-height": "auto",
1678
+ "row-gap": "base",
1679
+ },
1680
+ "border-style": "solid",
1681
+ "border-width": "1px",
1682
+ "padding-left": "base",
1683
+ "padding-right": "base",
1684
+ "padding-top": "base",
1685
+ "padding-bottom": "base",
1686
+ tablet: {
1687
+ "flex-direction": "column",
1688
+ "align-items": "start",
1689
+ width: "fit-content",
1690
+ },
1691
+ },
1692
+ "content-container": {
1693
+ flex: "1",
1694
+ padding: "2xl",
1695
+ display: "flex",
1696
+ "flex-direction": "column",
1697
+ "justify-content": "space-between",
1698
+ mobile: {
1699
+ padding: "lg",
1700
+ "padding-left": "none",
1701
+ "padding-top": "none",
1702
+ "padding-right": "none",
1703
+ "padding-bottom": "none",
1704
+ },
1705
+ },
1706
+ "image-container": {
1707
+ flex: "0 0 40%",
1708
+ mobile: {
1709
+ flex: "none",
1710
+ },
1711
+ tablet: {},
1712
+ },
1713
+ "header-container": {
1714
+ "margin-bottom": "lg",
1715
+ },
1716
+ stats_levoGroup: {
1717
+ display: "flex",
1718
+ "column-gap": "lg",
1719
+ "margin-bottom": "lg",
1720
+ mobile: {
1721
+ "flex-wrap": "wrap",
1722
+ "row-gap": "sm",
1723
+ "column-gap": "sm",
1724
+ },
1725
+ },
1726
+ cta: {
1727
+ "align-self": "flex-start",
1728
+ "border-color": "border",
1729
+ "padding-top": "sm",
1730
+ "padding-bottom": "sm",
1731
+ "padding-left": "lg",
1732
+ "padding-right": "lg",
1733
+ },
1734
+ "card-title": {
1735
+ "margin-bottom": "sm",
1736
+ },
1737
+ image: {
1738
+ mobile: {
1739
+ "object-fit": "cover",
1740
+ width: "100%",
1741
+ height: "100%",
1742
+ },
1743
+ },
1744
+ },
1745
+ ],
1746
+ "carousel-navigation-arrow-left_leftIcon": {
1747
+ height: "22px",
1748
+ width: "22px",
1749
+ "font-size": "22px",
1750
+ },
1751
+ "carousel-navigation-arrow-right_rightIcon": {
1752
+ height: "24px",
1753
+ width: "24px",
1754
+ },
1755
+ "carousel-navigation-bottom-container": {
1756
+ display: "none",
1757
+ "justify-content": "center",
1758
+ "margin-top": "2xl",
1759
+ tablet: {
1760
+ display: "flex",
1761
+ },
1762
+ mobile: {
1763
+ display: "flex",
1764
+ },
1765
+ },
1766
+ "carousel-navigation-bottom": {
1767
+ display: "flex",
1768
+ "column-gap": "sm",
1769
+ "align-items": "center",
1770
+ },
1771
+ "carousel-navigation-arrow-left-bottom": {
1772
+ display: "flex",
1773
+ "align-items": "center",
1774
+ "justify-content": "center",
1775
+ "border-radius": "50%",
1776
+ "background-color": "white",
1777
+ color: "text-2",
1778
+ cursor: "pointer",
1779
+ "font-size": "lg",
1780
+ "font-weight": "500",
1781
+ "padding-top": "none",
1782
+ "padding-bottom": "none",
1783
+ "padding-left": "none",
1784
+ "padding-right": "none",
1785
+ "border-color": "transparent",
1786
+ "border-width": "0px",
1787
+ "border-style": "solid",
1788
+ _hover: {
1789
+ opacity: "0.9",
1790
+ },
1791
+ width: "48px",
1792
+ height: "48px",
1793
+ border: "1px solid var(--color-border)",
1794
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1795
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
1796
+ mobile: {
1797
+ width: "40px",
1798
+ height: "40px",
1799
+ },
1800
+ },
1801
+ "carousel-navigation-arrow-right-bottom": {
1802
+ width: "48px",
1803
+ height: "48px",
1804
+ "border-radius": "50%",
1805
+ "background-color": "white",
1806
+ border: "1px solid var(--color-border)",
1807
+ cursor: "pointer",
1808
+ display: "flex",
1809
+ "align-items": "center",
1810
+ "justify-content": "center",
1811
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1812
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
1813
+ "padding-top": "none",
1814
+ "padding-bottom": "none",
1815
+ "padding-left": "none",
1816
+ "padding-right": "none",
1817
+ color: "text-2",
1818
+ mobile: {
1819
+ width: "40px",
1820
+ height: "40px",
1821
+ },
1822
+ },
1823
+ "carousel-navigation-arrow-left-bottom_leftIcon": {
1824
+ height: "22px",
1825
+ width: "22px",
1826
+ "font-size": "22px",
1827
+ },
1828
+ "carousel-navigation-arrow-right-bottom_rightIcon": {
1829
+ height: "22px",
1830
+ width: "22px",
1831
+ "font-size": "22px",
1832
+ },
1833
+ },
1834
+ config: {
1835
+ cards_levoGroup: {
1836
+ carousel: {
1837
+ loop: false,
1838
+ },
1839
+ },
1840
+ "carousel-navigation-arrow-left": {
1841
+ button_icons: {
1842
+ left: {
1843
+ enabled: true,
1844
+ },
1845
+ },
1846
+ },
1847
+ "carousel-navigation-arrow-right": {
1848
+ button_icons: {
1849
+ right: {
1850
+ enabled: true,
1851
+ },
1852
+ },
1853
+ },
1854
+ "carousel-navigation-arrow-left-bottom": {
1855
+ button_icons: {
1856
+ left: {
1857
+ enabled: true,
1858
+ },
1859
+ },
1860
+ },
1861
+ "carousel-navigation-arrow-right-bottom": {
1862
+ button_icons: {
1863
+ right: {
1864
+ enabled: true,
1865
+ },
1866
+ },
1867
+ },
1868
+ title: {
1869
+ heading: {
1870
+ level: 2,
1871
+ },
1872
+ selectedVariants: {
1873
+ Heading_Level: "H2",
1874
+ },
1875
+ },
1876
+ "card-title": {
1877
+ heading: {
1878
+ level: 3,
1879
+ },
1880
+ selectedVariants: {
1881
+ Heading_Level: "H3",
1882
+ },
1883
+ },
1884
+ number: {
1885
+ heading: {
1886
+ level: 4,
1887
+ },
1888
+ selectedVariants: {
1889
+ Heading_Level: "H4",
1890
+ },
1891
+ },
1892
+ },
1893
+ content: DEFAULT_CONTENT,
1894
+ },
1895
+ {
1896
+ key: "variant-1",
1897
+ title: "Variant 1",
1898
+ styles: {
1899
+ layout: {
1900
+ "padding-top": "7xl",
1901
+ "padding-bottom": "7xl",
1902
+ "padding-left": "lg",
1903
+ "padding-right": "lg",
1904
+ mobile: {
1905
+ "padding-top": "4xl",
1906
+ "padding-bottom": "4xl",
1907
+ "padding-left": "base",
1908
+ "padding-right": "base",
1909
+ },
1910
+ tablet: {
1911
+ "padding-left": "none",
1912
+ "padding-right": "none",
1913
+ "padding-top": "none",
1914
+ "padding-bottom": "none",
1915
+ },
1916
+ },
1917
+ container: {
1918
+ "margin-left": "auto",
1919
+ "margin-right": "auto",
1920
+ "max-width": "none",
1921
+ tablet: {
1922
+ "margin-left": "auto",
1923
+ "padding-left": "xl",
1924
+ "padding-right": "xl",
1925
+ },
1926
+ },
1927
+ header: {
1928
+ "text-align": "center",
1929
+ "margin-bottom": "4xl",
1930
+ mobile: {
1931
+ "margin-bottom": "2xl",
1932
+ },
1933
+ },
1934
+ "header-content": {
1935
+ "max-width": "800px",
1936
+ "margin-left": "auto",
1937
+ "margin-right": "auto",
1938
+ },
1939
+ title: {
1940
+ color: "text-1",
1941
+ "margin-bottom": "lg",
1942
+ },
1943
+ description: {
1944
+ color: "text-2",
1945
+ },
1946
+ "carousel-container": {
1947
+ display: "flex",
1948
+ "align-items": "center",
1949
+ "column-gap": "lg",
1950
+ position: "relative",
1951
+ mobile: {
1952
+ "flex-direction": "column",
1953
+ "row-gap": "lg",
1954
+ },
1955
+ tablet: {
1956
+ "padding-left": "none",
1957
+ "padding-right": "none",
1958
+ },
1959
+ },
1960
+ "carousel-navigation-arrow-left": {
1961
+ display: "none",
1962
+ "align-items": "center",
1963
+ "justify-content": "center",
1964
+ "border-radius": "50%",
1965
+ "background-color": "white",
1966
+ color: "text-2",
1967
+ cursor: "pointer",
1968
+ "font-size": "lg",
1969
+ "font-weight": "500",
1970
+ "padding-top": "none",
1971
+ "padding-bottom": "none",
1972
+ "padding-left": "none",
1973
+ "padding-right": "none",
1974
+ "border-color": "transparent",
1975
+ "border-width": "0px",
1976
+ "border-style": "solid",
1977
+ _hover: {
1978
+ opacity: "0.9",
1979
+ },
1980
+ width: "48px",
1981
+ height: "48px",
1982
+ border: "1px solid var(--color-border)",
1983
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
1984
+ mobile: {
1985
+ width: "40px",
1986
+ height: "40px",
1987
+ filter: "none",
1988
+ "padding-top": "none",
1989
+ "padding-bottom": "none",
1990
+ "padding-left": "none",
1991
+ "padding-right": "none",
1992
+ },
1993
+ tablet: {
1994
+ display: "none",
1995
+ },
1996
+ },
1997
+ "carousel-navigation-arrow-right": {
1998
+ width: "48px",
1999
+ height: "48px",
2000
+ "border-radius": "50%",
2001
+ "background-color": "white",
2002
+ border: "1px solid var(--color-border)",
2003
+ cursor: "pointer",
2004
+ display: "none",
2005
+ "align-items": "center",
2006
+ "justify-content": "center",
2007
+ mobile: {
2008
+ width: "40px",
2009
+ height: "40px",
2010
+ filter: "none",
2011
+ "font-size": "xs",
2012
+ },
2013
+ "padding-top": "none",
2014
+ "padding-bottom": "none",
2015
+ "padding-left": "none",
2016
+ "padding-right": "none",
2017
+ "column-gap": "none",
2018
+ color: "text-3",
2019
+ tablet: {
2020
+ filter: "none",
2021
+ display: "none",
2022
+ },
2023
+ },
2024
+ cards_levoGroup: {
2025
+ flex: "1",
2026
+ mobile: {
2027
+ "max-width": "100%",
2028
+ order: "1",
2029
+ },
2030
+ number_of_slides: 1,
2031
+ tablet: {
2032
+ number_of_slides: 1,
2033
+ },
2034
+ },
2035
+ cards: [
2036
+ {
2037
+ card: {
2038
+ display: "flex",
2039
+ "background-color": "white",
2040
+ "border-radius": "base",
2041
+ "box-shadow": "lg",
2042
+ overflow: "hidden",
2043
+ "align-items": "stretch",
2044
+ mobile: {
2045
+ "flex-direction": "column",
2046
+ "min-height": "auto",
2047
+ "row-gap": "base",
2048
+ },
2049
+ "border-style": "solid",
2050
+ "border-width": "1px",
2051
+ "padding-left": "base",
2052
+ "padding-right": "base",
2053
+ "padding-top": "base",
2054
+ "padding-bottom": "base",
2055
+ tablet: {
2056
+ "flex-direction": "column",
2057
+ "align-items": "start",
2058
+ },
2059
+ },
2060
+ "image-container": {
2061
+ flex: "0 0 40%",
2062
+ mobile: {
2063
+ flex: "none",
2064
+ width: "100%",
2065
+ height: "100%",
2066
+ },
2067
+ tablet: {
2068
+ width: "100%",
2069
+ },
2070
+ },
2071
+ image: {
2072
+ width: "100%",
2073
+ height: "100%",
2074
+ "object-fit": "cover",
2075
+ },
2076
+ "content-container": {
2077
+ flex: "1",
2078
+ padding: "2xl",
2079
+ display: "flex",
2080
+ "flex-direction": "column",
2081
+ "justify-content": "space-between",
2082
+ mobile: {
2083
+ padding: "lg",
2084
+ "padding-left": "none",
2085
+ "padding-right": "none",
2086
+ "padding-bottom": "none",
2087
+ "padding-top": "none",
2088
+ },
2089
+ tablet: {
2090
+ "flex-direction": "column",
2091
+ },
2092
+ },
2093
+ "header-container": {
2094
+ "margin-bottom": "lg",
2095
+ },
2096
+ "card-title": {
2097
+ "margin-bottom": "sm",
2098
+ tablet: {
2099
+ "font-size": "xl",
2100
+ },
2101
+ },
2102
+ "card-description": {
2103
+ color: "text-2",
2104
+ tablet: {
2105
+ "max-width": "600px",
2106
+ },
2107
+ },
2108
+ stats_levoGroup: {
2109
+ display: "none",
2110
+ "column-gap": "lg",
2111
+ "margin-bottom": "lg",
2112
+ mobile: {
2113
+ "flex-wrap": "wrap",
2114
+ "row-gap": "sm",
2115
+ "column-gap": "sm",
2116
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2117
+ },
2118
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2119
+ tablet: {
2120
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2121
+ "row-gap": "lg",
2122
+ },
2123
+ },
2124
+ stat_card: {
2125
+ "text-align": "center",
2126
+ mobile: {
2127
+ flex: "1 1 calc(50% - 4px)",
2128
+ "min-width": "80px",
2129
+ },
2130
+ },
2131
+ number: {
2132
+ color: "text-1",
2133
+ "margin-bottom": "xs",
2134
+ },
2135
+ label: {
2136
+ color: "white",
2137
+ },
2138
+ cta: {
2139
+ "align-self": "flex-start",
2140
+ "border-color": "border",
2141
+ "padding-top": "sm",
2142
+ "padding-bottom": "sm",
2143
+ "padding-left": "lg",
2144
+ "padding-right": "lg",
2145
+ },
2146
+ stats: [
2147
+ {
2148
+ number: {
2149
+ tablet: {
2150
+ "font-size": "2xl",
2151
+ },
2152
+ "font-size": "3xl",
2153
+ },
2154
+ },
2155
+ {
2156
+ number: {
2157
+ "font-size": "3xl",
2158
+ tablet: {
2159
+ "font-size": "2xl",
2160
+ },
2161
+ },
2162
+ },
2163
+ {
2164
+ number: {
2165
+ "font-size": "3xl",
2166
+ tablet: {
2167
+ "font-size": "2xl",
2168
+ },
2169
+ },
2170
+ },
2171
+ ],
2172
+ "label-container": {
2173
+ display: "flex",
2174
+ "align-items": "center",
2175
+ "column-gap": "2xs",
2176
+ "background-color": "background-1",
2177
+ width: "fit-content",
2178
+ "border-radius": "3xl",
2179
+ "padding-left": "xs",
2180
+ "padding-right": "xs",
2181
+ "padding-top": "4xs",
2182
+ "padding-bottom": "4xs",
2183
+ },
2184
+ },
2185
+ {
2186
+ card: {
2187
+ display: "flex",
2188
+ "background-color": "white",
2189
+ "border-radius": "base",
2190
+ "box-shadow": "lg",
2191
+ overflow: "hidden",
2192
+ "align-items": "stretch",
2193
+ mobile: {
2194
+ "flex-direction": "column",
2195
+ "min-height": "auto",
2196
+ "row-gap": "base",
2197
+ },
2198
+ "border-style": "solid",
2199
+ "border-width": "1px",
2200
+ "padding-left": "base",
2201
+ "padding-right": "base",
2202
+ "padding-top": "base",
2203
+ "padding-bottom": "base",
2204
+ tablet: {
2205
+ "flex-direction": "column",
2206
+ "align-items": "start",
2207
+ },
2208
+ },
2209
+ "image-container": {
2210
+ flex: "0 0 40%",
2211
+ mobile: {
2212
+ flex: "none",
2213
+ width: "100%",
2214
+ height: "100%",
2215
+ },
2216
+ tablet: {
2217
+ width: "100%",
2218
+ },
2219
+ },
2220
+ image: {
2221
+ width: "100%",
2222
+ height: "100%",
2223
+ "object-fit": "cover",
2224
+ },
2225
+ "content-container": {
2226
+ flex: "1",
2227
+ padding: "2xl",
2228
+ display: "flex",
2229
+ "flex-direction": "column",
2230
+ "justify-content": "space-between",
2231
+ mobile: {
2232
+ padding: "lg",
2233
+ "padding-left": "none",
2234
+ "padding-right": "none",
2235
+ "padding-bottom": "none",
2236
+ "padding-top": "none",
2237
+ },
2238
+ tablet: {
2239
+ "flex-direction": "column",
2240
+ },
2241
+ },
2242
+ "header-container": {
2243
+ "margin-bottom": "lg",
2244
+ },
2245
+ "card-title": {
2246
+ "margin-bottom": "sm",
2247
+ tablet: {
2248
+ "font-size": "xl",
2249
+ },
2250
+ },
2251
+ "card-description": {
2252
+ color: "text-2",
2253
+ tablet: {
2254
+ "max-width": "600px",
2255
+ },
2256
+ },
2257
+ stats_levoGroup: {
2258
+ display: "none",
2259
+ "column-gap": "lg",
2260
+ "margin-bottom": "lg",
2261
+ mobile: {
2262
+ "flex-wrap": "wrap",
2263
+ "row-gap": "sm",
2264
+ "column-gap": "sm",
2265
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2266
+ },
2267
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2268
+ tablet: {
2269
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2270
+ "row-gap": "lg",
2271
+ },
2272
+ },
2273
+ stat_card: {
2274
+ "text-align": "center",
2275
+ mobile: {
2276
+ flex: "1 1 calc(50% - 4px)",
2277
+ "min-width": "80px",
2278
+ },
2279
+ },
2280
+ number: {
2281
+ color: "text-1",
2282
+ "margin-bottom": "xs",
2283
+ },
2284
+ label: {
2285
+ color: "white",
2286
+ },
2287
+ cta: {
2288
+ "align-self": "flex-start",
2289
+ "border-color": "border",
2290
+ "padding-top": "sm",
2291
+ "padding-bottom": "sm",
2292
+ "padding-left": "lg",
2293
+ "padding-right": "lg",
2294
+ },
2295
+ stats: [
2296
+ {
2297
+ number: {
2298
+ tablet: {
2299
+ "font-size": "2xl",
2300
+ },
2301
+ "font-size": "3xl",
2302
+ },
2303
+ },
2304
+ {
2305
+ number: {
2306
+ "font-size": "3xl",
2307
+ tablet: {
2308
+ "font-size": "2xl",
2309
+ },
2310
+ },
2311
+ },
2312
+ {
2313
+ number: {
2314
+ "font-size": "3xl",
2315
+ tablet: {
2316
+ "font-size": "2xl",
2317
+ },
2318
+ },
2319
+ },
2320
+ ],
2321
+ "label-container": {
2322
+ display: "flex",
2323
+ "align-items": "center",
2324
+ "column-gap": "2xs",
2325
+ "background-color": "background-1",
2326
+ width: "fit-content",
2327
+ "border-radius": "3xl",
2328
+ "padding-left": "xs",
2329
+ "padding-right": "xs",
2330
+ "padding-top": "4xs",
2331
+ "padding-bottom": "4xs",
2332
+ },
2333
+ },
2334
+ {
2335
+ card: {
2336
+ display: "flex",
2337
+ "background-color": "white",
2338
+ "border-radius": "base",
2339
+ "box-shadow": "lg",
2340
+ overflow: "hidden",
2341
+ "align-items": "stretch",
2342
+ mobile: {
2343
+ "flex-direction": "column",
2344
+ "min-height": "auto",
2345
+ "row-gap": "base",
2346
+ },
2347
+ "border-style": "solid",
2348
+ "border-width": "1px",
2349
+ "padding-left": "base",
2350
+ "padding-right": "base",
2351
+ "padding-top": "base",
2352
+ "padding-bottom": "base",
2353
+ tablet: {
2354
+ "flex-direction": "column",
2355
+ "align-items": "start",
2356
+ },
2357
+ },
2358
+ "image-container": {
2359
+ flex: "0 0 40%",
2360
+ mobile: {
2361
+ flex: "none",
2362
+ width: "100%",
2363
+ height: "100%",
2364
+ },
2365
+ tablet: {
2366
+ width: "100%",
2367
+ },
2368
+ },
2369
+ image: {
2370
+ width: "100%",
2371
+ height: "100%",
2372
+ "object-fit": "cover",
2373
+ },
2374
+ "content-container": {
2375
+ flex: "1",
2376
+ padding: "2xl",
2377
+ display: "flex",
2378
+ "flex-direction": "column",
2379
+ "justify-content": "space-between",
2380
+ mobile: {
2381
+ padding: "lg",
2382
+ "padding-left": "none",
2383
+ "padding-right": "none",
2384
+ "padding-bottom": "none",
2385
+ "padding-top": "none",
2386
+ },
2387
+ tablet: {
2388
+ "flex-direction": "column",
2389
+ },
2390
+ },
2391
+ "header-container": {
2392
+ "margin-bottom": "lg",
2393
+ },
2394
+ "card-title": {
2395
+ "margin-bottom": "sm",
2396
+ tablet: {
2397
+ "font-size": "xl",
2398
+ },
2399
+ },
2400
+ "card-description": {
2401
+ color: "text-2",
2402
+ tablet: {
2403
+ "max-width": "600px",
2404
+ },
2405
+ },
2406
+ stats_levoGroup: {
2407
+ display: "none",
2408
+ "column-gap": "lg",
2409
+ "margin-bottom": "lg",
2410
+ mobile: {
2411
+ "flex-wrap": "wrap",
2412
+ "row-gap": "sm",
2413
+ "column-gap": "sm",
2414
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2415
+ },
2416
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2417
+ tablet: {
2418
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2419
+ "row-gap": "lg",
2420
+ },
2421
+ },
2422
+ stat_card: {
2423
+ "text-align": "center",
2424
+ mobile: {
2425
+ flex: "1 1 calc(50% - 4px)",
2426
+ "min-width": "80px",
2427
+ },
2428
+ },
2429
+ number: {
2430
+ color: "text-1",
2431
+ "margin-bottom": "xs",
2432
+ },
2433
+ label: {
2434
+ color: "white",
2435
+ },
2436
+ cta: {
2437
+ "align-self": "flex-start",
2438
+ "border-color": "border",
2439
+ "padding-top": "sm",
2440
+ "padding-bottom": "sm",
2441
+ "padding-left": "lg",
2442
+ "padding-right": "lg",
2443
+ },
2444
+ stats: [
2445
+ {
2446
+ number: {
2447
+ tablet: {
2448
+ "font-size": "2xl",
2449
+ },
2450
+ "font-size": "3xl",
2451
+ },
2452
+ },
2453
+ {
2454
+ number: {
2455
+ "font-size": "3xl",
2456
+ tablet: {
2457
+ "font-size": "2xl",
2458
+ },
2459
+ },
2460
+ },
2461
+ {
2462
+ number: {
2463
+ "font-size": "3xl",
2464
+ tablet: {
2465
+ "font-size": "2xl",
2466
+ },
2467
+ },
2468
+ },
2469
+ ],
2470
+ "label-container": {
2471
+ display: "flex",
2472
+ "align-items": "center",
2473
+ "column-gap": "2xs",
2474
+ "background-color": "background-1",
2475
+ width: "fit-content",
2476
+ "border-radius": "3xl",
2477
+ "padding-left": "xs",
2478
+ "padding-right": "xs",
2479
+ "padding-top": "4xs",
2480
+ "padding-bottom": "4xs",
2481
+ },
2482
+ },
2483
+ {
2484
+ card: {
2485
+ display: "flex",
2486
+ "background-color": "white",
2487
+ "border-radius": "base",
2488
+ "box-shadow": "lg",
2489
+ overflow: "hidden",
2490
+ "align-items": "stretch",
2491
+ mobile: {
2492
+ "flex-direction": "column",
2493
+ "min-height": "auto",
2494
+ "row-gap": "base",
2495
+ },
2496
+ "border-style": "solid",
2497
+ "border-width": "1px",
2498
+ "padding-left": "base",
2499
+ "padding-right": "base",
2500
+ "padding-top": "base",
2501
+ "padding-bottom": "base",
2502
+ tablet: {
2503
+ "flex-direction": "column",
2504
+ "align-items": "start",
2505
+ },
2506
+ },
2507
+ "image-container": {
2508
+ flex: "0 0 40%",
2509
+ mobile: {
2510
+ flex: "none",
2511
+ width: "100%",
2512
+ height: "100%",
2513
+ },
2514
+ tablet: {
2515
+ width: "100%",
2516
+ },
2517
+ },
2518
+ image: {
2519
+ width: "100%",
2520
+ height: "100%",
2521
+ "object-fit": "cover",
2522
+ },
2523
+ "content-container": {
2524
+ flex: "1",
2525
+ padding: "2xl",
2526
+ display: "flex",
2527
+ "flex-direction": "column",
2528
+ "justify-content": "space-between",
2529
+ mobile: {
2530
+ padding: "lg",
2531
+ "padding-left": "none",
2532
+ "padding-right": "none",
2533
+ "padding-bottom": "none",
2534
+ "padding-top": "none",
2535
+ },
2536
+ tablet: {
2537
+ "flex-direction": "column",
2538
+ },
2539
+ },
2540
+ "header-container": {
2541
+ "margin-bottom": "lg",
2542
+ },
2543
+ "card-title": {
2544
+ "margin-bottom": "sm",
2545
+ tablet: {
2546
+ "font-size": "xl",
2547
+ },
2548
+ },
2549
+ "card-description": {
2550
+ color: "text-2",
2551
+ tablet: {
2552
+ "max-width": "600px",
2553
+ },
2554
+ },
2555
+ stats_levoGroup: {
2556
+ display: "grid",
2557
+ "column-gap": "lg",
2558
+ "margin-bottom": "lg",
2559
+ mobile: {
2560
+ "flex-wrap": "wrap",
2561
+ "row-gap": "sm",
2562
+ "column-gap": "sm",
2563
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2564
+ },
2565
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2566
+ tablet: {
2567
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2568
+ "row-gap": "lg",
2569
+ },
2570
+ },
2571
+ stat_card: {
2572
+ "text-align": "center",
2573
+ mobile: {
2574
+ flex: "1 1 calc(50% - 4px)",
2575
+ "min-width": "80px",
2576
+ },
2577
+ },
2578
+ number: {
2579
+ color: "text-1",
2580
+ "margin-bottom": "xs",
2581
+ },
2582
+ label: {
2583
+ color: "text-2",
2584
+ },
2585
+ cta: {
2586
+ "align-self": "flex-start",
2587
+ "border-color": "border",
2588
+ "padding-top": "sm",
2589
+ "padding-bottom": "sm",
2590
+ "padding-left": "lg",
2591
+ "padding-right": "lg",
2592
+ },
2593
+ stats: [
2594
+ {
2595
+ number: {
2596
+ tablet: {
2597
+ "font-size": "2xl",
2598
+ },
2599
+ "font-size": "3xl",
2600
+ },
2601
+ },
2602
+ {
2603
+ number: {
2604
+ "font-size": "3xl",
2605
+ tablet: {
2606
+ "font-size": "2xl",
2607
+ },
2608
+ },
2609
+ },
2610
+ {
2611
+ number: {
2612
+ "font-size": "3xl",
2613
+ tablet: {
2614
+ "font-size": "2xl",
2615
+ },
2616
+ },
2617
+ },
2618
+ ],
2619
+ },
2620
+ {
2621
+ card: {
2622
+ display: "flex",
2623
+ "background-color": "white",
2624
+ "border-radius": "base",
2625
+ "box-shadow": "lg",
2626
+ overflow: "hidden",
2627
+ "align-items": "stretch",
2628
+ mobile: {
2629
+ "flex-direction": "column",
2630
+ "min-height": "auto",
2631
+ "row-gap": "base",
2632
+ },
2633
+ "border-style": "solid",
2634
+ "border-width": "1px",
2635
+ "padding-left": "base",
2636
+ "padding-right": "base",
2637
+ "padding-top": "base",
2638
+ "padding-bottom": "base",
2639
+ tablet: {
2640
+ "flex-direction": "column",
2641
+ "align-items": "start",
2642
+ },
2643
+ },
2644
+ "image-container": {
2645
+ flex: "0 0 40%",
2646
+ mobile: {
2647
+ flex: "none",
2648
+ width: "100%",
2649
+ height: "100%",
2650
+ },
2651
+ tablet: {
2652
+ width: "100%",
2653
+ },
2654
+ },
2655
+ image: {
2656
+ width: "100%",
2657
+ height: "100%",
2658
+ "object-fit": "cover",
2659
+ },
2660
+ "content-container": {
2661
+ flex: "1",
2662
+ padding: "2xl",
2663
+ display: "flex",
2664
+ "flex-direction": "column",
2665
+ "justify-content": "space-between",
2666
+ mobile: {
2667
+ padding: "lg",
2668
+ "padding-left": "none",
2669
+ "padding-right": "none",
2670
+ "padding-bottom": "none",
2671
+ "padding-top": "none",
2672
+ },
2673
+ tablet: {
2674
+ "flex-direction": "column",
2675
+ },
2676
+ },
2677
+ "header-container": {
2678
+ "margin-bottom": "lg",
2679
+ },
2680
+ "card-title": {
2681
+ "margin-bottom": "sm",
2682
+ tablet: {
2683
+ "font-size": "xl",
2684
+ },
2685
+ },
2686
+ "card-description": {
2687
+ color: "text-2",
2688
+ tablet: {
2689
+ "max-width": "600px",
2690
+ },
2691
+ },
2692
+ stats_levoGroup: {
2693
+ display: "grid",
2694
+ "column-gap": "lg",
2695
+ "margin-bottom": "lg",
2696
+ mobile: {
2697
+ "flex-wrap": "wrap",
2698
+ "row-gap": "sm",
2699
+ "column-gap": "sm",
2700
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2701
+ },
2702
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2703
+ tablet: {
2704
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2705
+ "row-gap": "lg",
2706
+ },
2707
+ },
2708
+ stat_card: {
2709
+ "text-align": "center",
2710
+ mobile: {
2711
+ flex: "1 1 calc(50% - 4px)",
2712
+ "min-width": "80px",
2713
+ },
2714
+ },
2715
+ number: {
2716
+ color: "text-1",
2717
+ "margin-bottom": "xs",
2718
+ },
2719
+ label: {
2720
+ color: "text-2",
2721
+ },
2722
+ cta: {
2723
+ "align-self": "flex-start",
2724
+ "border-color": "border",
2725
+ "padding-top": "sm",
2726
+ "padding-bottom": "sm",
2727
+ "padding-left": "lg",
2728
+ "padding-right": "lg",
2729
+ },
2730
+ stats: [
2731
+ {
2732
+ number: {
2733
+ tablet: {
2734
+ "font-size": "2xl",
2735
+ },
2736
+ "font-size": "3xl",
2737
+ },
2738
+ },
2739
+ {
2740
+ number: {
2741
+ "font-size": "3xl",
2742
+ tablet: {
2743
+ "font-size": "2xl",
2744
+ },
2745
+ },
2746
+ },
2747
+ {
2748
+ number: {
2749
+ "font-size": "3xl",
2750
+ tablet: {
2751
+ "font-size": "2xl",
2752
+ },
2753
+ },
2754
+ },
2755
+ ],
2756
+ },
2757
+ {
2758
+ card: {
2759
+ display: "flex",
2760
+ "background-color": "white",
2761
+ "border-radius": "base",
2762
+ "box-shadow": "lg",
2763
+ overflow: "hidden",
2764
+ "align-items": "stretch",
2765
+ mobile: {
2766
+ "flex-direction": "column",
2767
+ "min-height": "auto",
2768
+ "row-gap": "base",
2769
+ },
2770
+ "border-style": "solid",
2771
+ "border-width": "1px",
2772
+ "padding-left": "base",
2773
+ "padding-right": "base",
2774
+ "padding-top": "base",
2775
+ "padding-bottom": "base",
2776
+ tablet: {
2777
+ "flex-direction": "column",
2778
+ "align-items": "start",
2779
+ },
2780
+ },
2781
+ "image-container": {
2782
+ flex: "0 0 40%",
2783
+ mobile: {
2784
+ flex: "none",
2785
+ width: "100%",
2786
+ height: "100%",
2787
+ },
2788
+ tablet: {
2789
+ width: "100%",
2790
+ },
2791
+ },
2792
+ image: {
2793
+ width: "100%",
2794
+ height: "100%",
2795
+ "object-fit": "cover",
2796
+ },
2797
+ "content-container": {
2798
+ flex: "1",
2799
+ padding: "2xl",
2800
+ display: "flex",
2801
+ "flex-direction": "column",
2802
+ "justify-content": "space-between",
2803
+ mobile: {
2804
+ padding: "lg",
2805
+ "padding-left": "none",
2806
+ "padding-right": "none",
2807
+ "padding-bottom": "none",
2808
+ "padding-top": "none",
2809
+ },
2810
+ tablet: {
2811
+ "flex-direction": "column",
2812
+ },
2813
+ },
2814
+ "header-container": {
2815
+ "margin-bottom": "lg",
2816
+ },
2817
+ "card-title": {
2818
+ "margin-bottom": "sm",
2819
+ tablet: {
2820
+ "font-size": "xl",
2821
+ },
2822
+ },
2823
+ "card-description": {
2824
+ color: "text-2",
2825
+ tablet: {
2826
+ "max-width": "600px",
2827
+ },
2828
+ },
2829
+ stats_levoGroup: {
2830
+ display: "grid",
2831
+ "column-gap": "lg",
2832
+ "margin-bottom": "lg",
2833
+ mobile: {
2834
+ "flex-wrap": "wrap",
2835
+ "row-gap": "sm",
2836
+ "column-gap": "sm",
2837
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2838
+ },
2839
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2840
+ tablet: {
2841
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2842
+ },
2843
+ },
2844
+ stat_card: {
2845
+ "text-align": "center",
2846
+ mobile: {
2847
+ flex: "1 1 calc(50% - 4px)",
2848
+ "min-width": "80px",
2849
+ },
2850
+ },
2851
+ number: {
2852
+ color: "text-1",
2853
+ "margin-bottom": "xs",
2854
+ },
2855
+ label: {
2856
+ color: "text-2",
2857
+ },
2858
+ cta: {
2859
+ "align-self": "flex-start",
2860
+ "border-color": "border",
2861
+ "padding-top": "sm",
2862
+ "padding-bottom": "sm",
2863
+ "padding-left": "lg",
2864
+ "padding-right": "lg",
2865
+ },
2866
+ stats: [
2867
+ {
2868
+ number: {
2869
+ tablet: {
2870
+ "font-size": "base",
2871
+ },
2872
+ "font-size": "3xl",
2873
+ },
2874
+ },
2875
+ {
2876
+ number: {
2877
+ "font-size": "3xl",
2878
+ },
2879
+ },
2880
+ {
2881
+ number: {
2882
+ "font-size": "3xl",
2883
+ },
2884
+ },
2885
+ ],
2886
+ },
2887
+ {
2888
+ card: {
2889
+ display: "flex",
2890
+ "background-color": "white",
2891
+ "border-radius": "base",
2892
+ "box-shadow": "lg",
2893
+ overflow: "hidden",
2894
+ "align-items": "stretch",
2895
+ mobile: {
2896
+ "flex-direction": "column",
2897
+ "min-height": "auto",
2898
+ "row-gap": "base",
2899
+ },
2900
+ "border-style": "solid",
2901
+ "border-width": "1px",
2902
+ "padding-left": "base",
2903
+ "padding-right": "base",
2904
+ "padding-top": "base",
2905
+ "padding-bottom": "base",
2906
+ tablet: {
2907
+ "flex-direction": "column",
2908
+ "align-items": "start",
2909
+ },
2910
+ },
2911
+ "image-container": {
2912
+ flex: "0 0 40%",
2913
+ mobile: {
2914
+ flex: "none",
2915
+ width: "100%",
2916
+ height: "100%",
2917
+ },
2918
+ tablet: {
2919
+ width: "100%",
2920
+ },
2921
+ },
2922
+ image: {
2923
+ width: "100%",
2924
+ height: "100%",
2925
+ "object-fit": "cover",
2926
+ },
2927
+ "content-container": {
2928
+ flex: "1",
2929
+ padding: "2xl",
2930
+ display: "flex",
2931
+ "flex-direction": "column",
2932
+ "justify-content": "space-between",
2933
+ mobile: {
2934
+ padding: "lg",
2935
+ "padding-left": "none",
2936
+ "padding-top": "none",
2937
+ "padding-right": "none",
2938
+ "padding-bottom": "none",
2939
+ },
2940
+ tablet: {
2941
+ "flex-direction": "column",
2942
+ },
2943
+ },
2944
+ "header-container": {
2945
+ "margin-bottom": "lg",
2946
+ },
2947
+ "card-title": {
2948
+ "margin-bottom": "sm",
2949
+ tablet: {
2950
+ "font-size": "xl",
2951
+ },
2952
+ },
2953
+ "card-description": {
2954
+ color: "text-2",
2955
+ tablet: {
2956
+ "max-width": "600px",
2957
+ },
2958
+ },
2959
+ stats_levoGroup: {
2960
+ display: "grid",
2961
+ "column-gap": "lg",
2962
+ "margin-bottom": "lg",
2963
+ mobile: {
2964
+ "flex-wrap": "wrap",
2965
+ "row-gap": "sm",
2966
+ "column-gap": "sm",
2967
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2968
+ },
2969
+ "grid-template-columns": "repeat(3, minmax(0, 1fr))",
2970
+ tablet: {
2971
+ "grid-template-columns": "repeat(2, minmax(0, 1fr))",
2972
+ },
2973
+ },
2974
+ stat_card: {
2975
+ "text-align": "center",
2976
+ mobile: {
2977
+ flex: "1 1 calc(50% - 4px)",
2978
+ "min-width": "80px",
2979
+ },
2980
+ },
2981
+ number: {
2982
+ color: "text-1",
2983
+ "margin-bottom": "xs",
2984
+ },
2985
+ label: {
2986
+ color: "text-2",
2987
+ },
2988
+ cta: {
2989
+ "align-self": "flex-start",
2990
+ "border-color": "border",
2991
+ "padding-top": "sm",
2992
+ "padding-bottom": "sm",
2993
+ "padding-left": "lg",
2994
+ "padding-right": "lg",
2995
+ },
2996
+ stats: [
2997
+ {
2998
+ number: {
2999
+ "font-size": "3xl",
3000
+ },
3001
+ },
3002
+ {
3003
+ number: {
3004
+ "font-size": "3xl",
3005
+ },
3006
+ },
3007
+ {
3008
+ number: {
3009
+ "font-size": "3xl",
3010
+ },
3011
+ },
3012
+ ],
3013
+ },
3014
+ {
3015
+ card: {
3016
+ display: "flex",
3017
+ "background-color": "white",
3018
+ "border-radius": "base",
3019
+ "box-shadow": "lg",
3020
+ overflow: "hidden",
3021
+ "align-items": "stretch",
3022
+ mobile: {
3023
+ "flex-direction": "column",
3024
+ "min-height": "auto",
3025
+ "row-gap": "base",
3026
+ },
3027
+ "border-style": "solid",
3028
+ "border-width": "1px",
3029
+ "padding-left": "base",
3030
+ "padding-right": "base",
3031
+ "padding-top": "base",
3032
+ "padding-bottom": "base",
3033
+ tablet: {
3034
+ "flex-direction": "column",
3035
+ "align-items": "start",
3036
+ width: "fit-content",
3037
+ },
3038
+ },
3039
+ "image-container": {
3040
+ flex: "0 0 40%",
3041
+ mobile: {
3042
+ flex: "none",
3043
+ width: "100%",
3044
+ height: "100%",
3045
+ },
3046
+ tablet: {},
3047
+ },
3048
+ image: {
3049
+ width: "100%",
3050
+ height: "100%",
3051
+ "object-fit": "cover",
3052
+ },
3053
+ "content-container": {
3054
+ flex: "1",
3055
+ padding: "2xl",
3056
+ display: "flex",
3057
+ "flex-direction": "column",
3058
+ "justify-content": "space-between",
3059
+ mobile: {
3060
+ padding: "lg",
3061
+ "padding-left": "none",
3062
+ "padding-right": "none",
3063
+ "padding-bottom": "none",
3064
+ "padding-top": "none",
3065
+ },
3066
+ },
3067
+ "header-container": {
3068
+ "margin-bottom": "lg",
3069
+ },
3070
+ "card-title": {
3071
+ "margin-bottom": "sm",
3072
+ },
3073
+ "card-description": {
3074
+ color: "text-2",
3075
+ },
3076
+ stats_levoGroup: {
3077
+ display: "flex",
3078
+ "column-gap": "lg",
3079
+ "margin-bottom": "lg",
3080
+ mobile: {
3081
+ "flex-wrap": "wrap",
3082
+ "row-gap": "sm",
3083
+ "column-gap": "sm",
3084
+ },
3085
+ },
3086
+ stat_card: {
3087
+ "text-align": "center",
3088
+ mobile: {
3089
+ flex: "1 1 calc(50% - 4px)",
3090
+ "min-width": "80px",
3091
+ },
3092
+ },
3093
+ number: {
3094
+ color: "text-1",
3095
+ "margin-bottom": "xs",
3096
+ },
3097
+ label: {
3098
+ color: "text-2",
3099
+ },
3100
+ cta: {
3101
+ "align-self": "flex-start",
3102
+ "border-color": "border",
3103
+ "padding-top": "sm",
3104
+ "padding-bottom": "sm",
3105
+ "padding-left": "lg",
3106
+ "padding-right": "lg",
3107
+ },
3108
+ },
3109
+ {
3110
+ card: {
3111
+ display: "flex",
3112
+ "background-color": "white",
3113
+ "border-radius": "base",
3114
+ "box-shadow": "lg",
3115
+ overflow: "hidden",
3116
+ "align-items": "stretch",
3117
+ mobile: {
3118
+ "flex-direction": "column",
3119
+ "min-height": "auto",
3120
+ "row-gap": "base",
3121
+ },
3122
+ "border-style": "solid",
3123
+ "border-width": "1px",
3124
+ "padding-left": "base",
3125
+ "padding-right": "base",
3126
+ "padding-top": "base",
3127
+ "padding-bottom": "base",
3128
+ tablet: {
3129
+ "flex-direction": "column",
3130
+ "align-items": "start",
3131
+ width: "fit-content",
3132
+ },
3133
+ },
3134
+ "image-container": {
3135
+ flex: "0 0 40%",
3136
+ mobile: {
3137
+ flex: "none",
3138
+ width: "100%",
3139
+ height: "100%",
3140
+ },
3141
+ tablet: {},
3142
+ },
3143
+ image: {
3144
+ width: "100%",
3145
+ height: "100%",
3146
+ "object-fit": "cover",
3147
+ },
3148
+ "content-container": {
3149
+ flex: "1",
3150
+ padding: "2xl",
3151
+ display: "flex",
3152
+ "flex-direction": "column",
3153
+ "justify-content": "space-between",
3154
+ mobile: {
3155
+ padding: "lg",
3156
+ "padding-left": "none",
3157
+ "padding-top": "none",
3158
+ "padding-right": "none",
3159
+ "padding-bottom": "none",
3160
+ },
3161
+ },
3162
+ "header-container": {
3163
+ "margin-bottom": "lg",
3164
+ },
3165
+ "card-title": {
3166
+ "margin-bottom": "sm",
3167
+ },
3168
+ "card-description": {
3169
+ color: "text-2",
3170
+ },
3171
+ stats_levoGroup: {
3172
+ display: "flex",
3173
+ "column-gap": "lg",
3174
+ "margin-bottom": "lg",
3175
+ mobile: {
3176
+ "flex-wrap": "wrap",
3177
+ "row-gap": "sm",
3178
+ "column-gap": "sm",
3179
+ },
3180
+ },
3181
+ stat_card: {
3182
+ "text-align": "center",
3183
+ mobile: {
3184
+ flex: "1 1 calc(50% - 4px)",
3185
+ "min-width": "80px",
3186
+ },
3187
+ },
3188
+ number: {
3189
+ color: "text-1",
3190
+ "margin-bottom": "xs",
3191
+ },
3192
+ label: {
3193
+ color: "text-2",
3194
+ },
3195
+ cta: {
3196
+ "align-self": "flex-start",
3197
+ "border-color": "border",
3198
+ "padding-top": "sm",
3199
+ "padding-bottom": "sm",
3200
+ "padding-left": "lg",
3201
+ "padding-right": "lg",
3202
+ },
3203
+ },
3204
+ {
3205
+ card: {
3206
+ display: "flex",
3207
+ "background-color": "white",
3208
+ "border-radius": "base",
3209
+ "box-shadow": "lg",
3210
+ overflow: "hidden",
3211
+ "align-items": "stretch",
3212
+ mobile: {
3213
+ "flex-direction": "column",
3214
+ "min-height": "auto",
3215
+ "row-gap": "base",
3216
+ },
3217
+ "border-style": "solid",
3218
+ "border-width": "1px",
3219
+ "padding-left": "base",
3220
+ "padding-right": "base",
3221
+ "padding-top": "base",
3222
+ "padding-bottom": "base",
3223
+ tablet: {
3224
+ "flex-direction": "column",
3225
+ "align-items": "start",
3226
+ width: "fit-content",
3227
+ },
3228
+ },
3229
+ "content-container": {
3230
+ flex: "1",
3231
+ padding: "2xl",
3232
+ display: "flex",
3233
+ "flex-direction": "column",
3234
+ "justify-content": "space-between",
3235
+ mobile: {
3236
+ padding: "lg",
3237
+ "padding-left": "none",
3238
+ "padding-right": "none",
3239
+ "padding-bottom": "none",
3240
+ "padding-top": "none",
3241
+ },
3242
+ },
3243
+ "image-container": {
3244
+ flex: "0 0 40%",
3245
+ mobile: {
3246
+ flex: "none",
3247
+ width: "100%",
3248
+ height: "100%",
3249
+ },
3250
+ tablet: {},
3251
+ },
3252
+ "header-container": {
3253
+ "margin-bottom": "lg",
3254
+ },
3255
+ stats_levoGroup: {
3256
+ display: "flex",
3257
+ "column-gap": "lg",
3258
+ "margin-bottom": "lg",
3259
+ mobile: {
3260
+ "flex-wrap": "wrap",
3261
+ "row-gap": "sm",
3262
+ "column-gap": "sm",
3263
+ },
3264
+ },
3265
+ cta: {
3266
+ "align-self": "flex-start",
3267
+ "border-color": "border",
3268
+ "padding-top": "sm",
3269
+ "padding-bottom": "sm",
3270
+ "padding-left": "lg",
3271
+ "padding-right": "lg",
3272
+ },
3273
+ "card-title": {
3274
+ "margin-bottom": "sm",
3275
+ },
3276
+ image: {
3277
+ mobile: {
3278
+ width: "100%",
3279
+ height: "100%",
3280
+ "object-fit": "cover",
3281
+ },
3282
+ },
3283
+ },
3284
+ {
3285
+ card: {
3286
+ display: "flex",
3287
+ "background-color": "white",
3288
+ "border-radius": "base",
3289
+ "box-shadow": "lg",
3290
+ overflow: "hidden",
3291
+ "align-items": "stretch",
3292
+ mobile: {
3293
+ "flex-direction": "column",
3294
+ "min-height": "auto",
3295
+ "row-gap": "base",
3296
+ },
3297
+ "border-style": "solid",
3298
+ "border-width": "1px",
3299
+ "padding-left": "base",
3300
+ "padding-right": "base",
3301
+ "padding-top": "base",
3302
+ "padding-bottom": "base",
3303
+ tablet: {
3304
+ "flex-direction": "column",
3305
+ "align-items": "start",
3306
+ width: "fit-content",
3307
+ },
3308
+ },
3309
+ "content-container": {
3310
+ flex: "1",
3311
+ padding: "2xl",
3312
+ display: "flex",
3313
+ "flex-direction": "column",
3314
+ "justify-content": "space-between",
3315
+ mobile: {
3316
+ padding: "lg",
3317
+ "padding-left": "none",
3318
+ "padding-top": "none",
3319
+ "padding-right": "none",
3320
+ "padding-bottom": "none",
3321
+ },
3322
+ },
3323
+ "image-container": {
3324
+ flex: "0 0 40%",
3325
+ mobile: {
3326
+ flex: "none",
3327
+ },
3328
+ tablet: {},
3329
+ },
3330
+ "header-container": {
3331
+ "margin-bottom": "lg",
3332
+ },
3333
+ stats_levoGroup: {
3334
+ display: "flex",
3335
+ "column-gap": "lg",
3336
+ "margin-bottom": "lg",
3337
+ mobile: {
3338
+ "flex-wrap": "wrap",
3339
+ "row-gap": "sm",
3340
+ "column-gap": "sm",
3341
+ },
3342
+ },
3343
+ cta: {
3344
+ "align-self": "flex-start",
3345
+ "border-color": "border",
3346
+ "padding-top": "sm",
3347
+ "padding-bottom": "sm",
3348
+ "padding-left": "lg",
3349
+ "padding-right": "lg",
3350
+ },
3351
+ "card-title": {
3352
+ "margin-bottom": "sm",
3353
+ },
3354
+ image: {
3355
+ mobile: {
3356
+ "object-fit": "cover",
3357
+ width: "100%",
3358
+ height: "100%",
3359
+ },
3360
+ },
3361
+ },
3362
+ ],
3363
+ "carousel-navigation-arrow-left_leftIcon": {
3364
+ height: "22px",
3365
+ width: "22px",
3366
+ "font-size": "22px",
3367
+ },
3368
+ "carousel-navigation-arrow-right_rightIcon": {
3369
+ height: "24px",
3370
+ width: "24px",
3371
+ },
3372
+ "carousel-navigation-bottom-container": {
3373
+ display: "none",
3374
+ "justify-content": "center",
3375
+ "margin-top": "2xl",
3376
+ tablet: {
3377
+ display: "flex",
3378
+ },
3379
+ mobile: {
3380
+ display: "flex",
3381
+ },
3382
+ },
3383
+ "carousel-navigation-bottom": {
3384
+ display: "flex",
3385
+ "column-gap": "sm",
3386
+ "align-items": "center",
3387
+ mobile: {
3388
+ display: "none",
3389
+ },
3390
+ },
3391
+ "carousel-navigation-arrow-left-bottom": {
3392
+ display: "flex",
3393
+ "align-items": "center",
3394
+ "justify-content": "center",
3395
+ "border-radius": "50%",
3396
+ "background-color": "white",
3397
+ color: "text-2",
3398
+ cursor: "pointer",
3399
+ "font-size": "lg",
3400
+ "font-weight": "500",
3401
+ "padding-top": "none",
3402
+ "padding-bottom": "none",
3403
+ "padding-left": "none",
3404
+ "padding-right": "none",
3405
+ "border-color": "transparent",
3406
+ "border-width": "0px",
3407
+ "border-style": "solid",
3408
+ _hover: {
3409
+ opacity: "0.9",
3410
+ },
3411
+ width: "48px",
3412
+ height: "48px",
3413
+ border: "1px solid var(--color-border)",
3414
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
3415
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
3416
+ mobile: {
3417
+ width: "40px",
3418
+ height: "40px",
3419
+ },
3420
+ },
3421
+ "carousel-navigation-arrow-right-bottom": {
3422
+ width: "48px",
3423
+ height: "48px",
3424
+ "border-radius": "50%",
3425
+ "background-color": "white",
3426
+ border: "1px solid var(--color-border)",
3427
+ cursor: "pointer",
3428
+ display: "flex",
3429
+ "align-items": "center",
3430
+ "justify-content": "center",
3431
+ transition: "opacity 0.3s ease, cursor 0.3s ease",
3432
+ "box-shadow": "0 2px 8px rgba(0, 0, 0, 0.1)",
3433
+ "padding-top": "none",
3434
+ "padding-bottom": "none",
3435
+ "padding-left": "none",
3436
+ "padding-right": "none",
3437
+ color: "text-2",
3438
+ mobile: {
3439
+ width: "40px",
3440
+ height: "40px",
3441
+ },
3442
+ },
3443
+ "carousel-navigation-arrow-left-bottom_leftIcon": {
3444
+ height: "22px",
3445
+ width: "22px",
3446
+ "font-size": "22px",
3447
+ },
3448
+ "carousel-navigation-arrow-right-bottom_rightIcon": {
3449
+ height: "22px",
3450
+ width: "22px",
3451
+ "font-size": "22px",
3452
+ },
3453
+ "carousel-navigation-container": {
3454
+ display: "flex",
3455
+ "justify-content": "center",
3456
+ "margin-top": "2xl",
3457
+ },
3458
+ "carousel-navigation": {
3459
+ display: "flex",
3460
+ "column-gap": "sm",
3461
+ "align-items": "center",
3462
+ },
3463
+ "carousel-navigation-pill": {
3464
+ width: "8px",
3465
+ height: "8px",
3466
+ "border-radius": "8px",
3467
+ "background-color": "var(--color-border)",
3468
+ cursor: "pointer",
3469
+ transition: "all 0.3s ease",
3470
+ "&:hover": {
3471
+ "background-color": "var(--color-brand-secondary)",
3472
+ },
3473
+ filter: "none",
3474
+ },
3475
+ },
3476
+ config: {
3477
+ cards_levoGroup: {
3478
+ carousel: {
3479
+ loop: false,
3480
+ },
3481
+ },
3482
+ "carousel-navigation-arrow-left": {
3483
+ button_icons: {
3484
+ left: {
3485
+ enabled: true,
3486
+ },
3487
+ },
3488
+ },
3489
+ "carousel-navigation-arrow-right": {
3490
+ button_icons: {
3491
+ right: {
3492
+ enabled: true,
3493
+ },
3494
+ },
3495
+ },
3496
+ "carousel-navigation-arrow-left-bottom": {
3497
+ button_icons: {
3498
+ left: {
3499
+ enabled: true,
3500
+ },
3501
+ },
3502
+ },
3503
+ "carousel-navigation-arrow-right-bottom": {
3504
+ button_icons: {
3505
+ right: {
3506
+ enabled: true,
3507
+ },
3508
+ },
3509
+ },
3510
+ title: {
3511
+ heading: {
3512
+ level: 2,
3513
+ },
3514
+ selectedVariants: {
3515
+ Heading_Level: "H2",
3516
+ },
3517
+ },
3518
+ "card-title": {
3519
+ heading: {
3520
+ level: 3,
3521
+ },
3522
+ selectedVariants: {
3523
+ Heading_Level: "H3",
3524
+ },
3525
+ },
3526
+ number: {
3527
+ heading: {
3528
+ level: 4,
3529
+ },
3530
+ selectedVariants: {
3531
+ Heading_Level: "H4",
3532
+ },
3533
+ },
3534
+ },
3535
+ content: DEFAULT_CONTENT,
3536
+ },
3537
+ ],
3538
+ };