@fynd-design-engineering/fynd-one-v2 3.4.63 → 3.4.65

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 (79) hide show
  1. package/dist/accordians/dropdown.js +1 -95
  2. package/dist/accordians/index.js +1 -391
  3. package/dist/cms-listing/index.js +1 -24
  4. package/dist/filters/clear-search.js +1 -32
  5. package/dist/filters/konnect.js +1 -165
  6. package/dist/filters/show-count.js +1 -66
  7. package/dist/form/country-dropdown.css +1 -160
  8. package/dist/form/cs-gated-redirection.js +1 -40
  9. package/dist/form/download-file.js +1 -70
  10. package/dist/form/validation.css +1 -1019
  11. package/dist/form/validation.js +7 -10611
  12. package/dist/global/anchor-scroll.js +1 -174
  13. package/dist/global/auth.js +1 -87
  14. package/dist/global/chat.js +1 -185
  15. package/dist/global/console-links.js +1 -89
  16. package/dist/global/contact-popup.js +2 -83
  17. package/dist/global/css/in-page-embed.css +1 -1043
  18. package/dist/global/css/in-project-settings.css +1 -173
  19. package/dist/global/css/temp.css +1 -89
  20. package/dist/global/custom-bg-video.js +1 -40
  21. package/dist/global/footer-accordion.js +1 -44
  22. package/dist/global/lazy-loader.js +1 -135
  23. package/dist/global/loader.js +2 -166
  24. package/dist/global/media-card.js +1 -166
  25. package/dist/global/miscellaneous.js +1 -136
  26. package/dist/global/number-count.js +1 -82
  27. package/dist/global/popup-video.js +1 -276
  28. package/dist/global/progressive-scroll.js +1 -222
  29. package/dist/global/responsive-video.js +1 -321
  30. package/dist/global/style.css +1 -1065
  31. package/dist/global/video-card.js +1 -50
  32. package/dist/hacktimus/2025.js +1 -177
  33. package/dist/hacktimus/styles.css +1 -91
  34. package/dist/home/index.js +1 -17
  35. package/dist/marquee/index.js +1 -3104
  36. package/dist/marquee/marquee-swiper.js +1 -36
  37. package/dist/navigation/announcement/index.js +1 -5169
  38. package/dist/navigation/context-menu/index.js +1 -31
  39. package/dist/navigation/desktop/index.js +1 -4603
  40. package/dist/navigation/initialization.js +1 -602
  41. package/dist/navigation/main.js +1 -4911
  42. package/dist/navigation/mobile/index.js +1 -286
  43. package/dist/navigation/scroll/index.js +1 -62
  44. package/dist/navigation/secondary-navigation/index.js +1 -437
  45. package/dist/navigation/style.css +1 -154
  46. package/dist/navigation/temp.css +0 -2
  47. package/dist/navigation/theme.css +1 -69
  48. package/dist/navigation-v2/index.js +1 -4990
  49. package/dist/navigation-v2/styles.css +1 -233
  50. package/dist/others/feature-detail.js +1 -75
  51. package/dist/others/geolocation.js +1 -50
  52. package/dist/others/hero-aniamtion.js +1 -53
  53. package/dist/others/hero-india-animation-2.js +1 -70
  54. package/dist/others/hero-india-animation.js +1 -93
  55. package/dist/others/home-solution-tab.js +1 -115
  56. package/dist/others/storefront-chat/index.js +1 -487
  57. package/dist/others/storefront-chat/styles.css +1 -107
  58. package/dist/playbook-2026/hero-reveal.js +1 -47
  59. package/dist/playbook-2026/index.js +1 -536
  60. package/dist/playbook-2026/styles.css +1 -110
  61. package/dist/posthog-and-ga/attributes.js +1 -190
  62. package/dist/posthog-and-ga/main.js +1 -528
  63. package/dist/progressive-scroll/index.js +1 -147
  64. package/dist/quick-fix/reload.js +1 -22
  65. package/dist/seo/schema.js +1 -465
  66. package/dist/slider/freescroll.js +1 -34
  67. package/dist/test/sample.js +1 -15
  68. package/dist/testimonials/index.js +1 -2654
  69. package/dist/timeline/index.js +1 -160
  70. package/dist/timeline/style.css +1 -42
  71. package/dist/tracking/custom-id.js +1 -75
  72. package/dist/tracking/fill-form-fields.js +1 -238
  73. package/dist/tracking/form-tracker.js +1 -146
  74. package/dist/tracking/page-categories.js +1 -20
  75. package/dist/tracking/user-journey.js +1 -839
  76. package/dist/tracking/utm-links.js +1 -194
  77. package/dist/utils/sample.js +1 -17
  78. package/dist/validations/localhost.js +1 -221
  79. package/package.json +1 -1
@@ -1,1065 +1 @@
1
- /* src/global/style.css */
2
- :root {
3
- --Primary: "Fynd Sans", sans-serif;
4
- --Secondary: "Inter Display", sans-serif;
5
- }
6
- html,
7
- body {
8
- -webkit-font-smoothing: antialiased;
9
- -moz-osx-font-smoothing: grayscale;
10
- text-rendering: optimizeLegibility;
11
- font-smooth: always;
12
- }
13
- .w-background-video {
14
- position: absolute;
15
- inset: 0;
16
- z-index: 0;
17
- }
18
- .video {
19
- width: 100%;
20
- height: auto;
21
- object-fit: cover;
22
- display: block;
23
- }
24
- [data-padding=big] {
25
- padding-top: 9rem;
26
- padding-bottom: 9rem;
27
- }
28
- [data-padding=medium] {
29
- padding-top: 5rem;
30
- padding-bottom: 5rem;
31
- }
32
- [data-padding=small] {
33
- padding-top: 4rem;
34
- padding-bottom: 4rem;
35
- }
36
- [data-text-style=heading-xxl] {
37
- font-family: var(--Primary);
38
- font-size: 4.5rem;
39
- font-weight: 500;
40
- line-height: 110%;
41
- letter-spacing: -0.04em;
42
- }
43
- [data-text-style=heading-xl] {
44
- font-family: var(--Primary);
45
- font-size: 3.5rem;
46
- font-weight: 400;
47
- line-height: 110%;
48
- letter-spacing: -0.04em;
49
- }
50
- [data-text-style=heading-l] {
51
- font-family: var(--Primary);
52
- font-size: 2.5rem;
53
- font-weight: 400;
54
- line-height: 110%;
55
- letter-spacing: -0.03em;
56
- }
57
- [data-text-style=heading-m] {
58
- font-family: var(--Primary);
59
- font-size: 2rem;
60
- font-weight: 400;
61
- line-height: 120%;
62
- letter-spacing: -0.02em;
63
- }
64
- [data-text-style=heading-s] {
65
- font-family: var(--Secondary);
66
- font-size: 1.625rem;
67
- font-weight: 500;
68
- line-height: 130%;
69
- letter-spacing: -0.02em;
70
- }
71
- [data-text-style=heading-xs] {
72
- font-family: var(--Secondary);
73
- font-size: 1.25rem;
74
- font-weight: 400;
75
- line-height: 140%;
76
- }
77
- [data-text-style=font-weight-500] {
78
- font-weight: 500;
79
- }
80
- @media (max-width: 1023px) {
81
- [data-text-style=heading-xxl] {
82
- font-size: 3.5rem;
83
- }
84
- [data-text-style=heading-xl] {
85
- font-size: 2.5rem;
86
- }
87
- [data-text-style=heading-l] {
88
- font-size: 2rem;
89
- }
90
- [data-text-style=heading-m] {
91
- font-size: 1.5rem;
92
- }
93
- [data-text-style=heading-s] {
94
- font-size: 1.25rem;
95
- }
96
- }
97
- @media (max-width: 767px) {
98
- [data-text-style=heading-xxl] {
99
- font-size: 2.5rem;
100
- }
101
- [data-text-style=heading-xl] {
102
- font-size: 2rem;
103
- }
104
- [data-text-style=heading-xs] {
105
- font-size: 1.2rem;
106
- }
107
- [data-text-style=heading-l] {
108
- font-size: 1.5rem;
109
- }
110
- [data-text-style=heading-m] {
111
- font-size: 1.25rem;
112
- }
113
- [data-text-style=heading-s] {
114
- font-size: 1.125rem;
115
- }
116
- [data-padding=big],
117
- [data-padding=medium],
118
- [data-padding=small] {
119
- padding-top: 2.5rem;
120
- padding-bottom: 2.5rem;
121
- }
122
- }
123
- [data-text-style=body-xs-regular] {
124
- font-size: 0.75rem;
125
- font-weight: 400;
126
- line-height: 130%;
127
- }
128
- [data-text-style=body-xs-medium] {
129
- font-size: 0.75rem;
130
- font-weight: 500;
131
- line-height: 130%;
132
- }
133
- [data-text-style=body-xs-semibold] {
134
- font-size: 0.75rem;
135
- font-weight: 600;
136
- line-height: 130%;
137
- }
138
- [data-text-style=body-s-regular] {
139
- font-size: 0.875rem;
140
- font-weight: 400;
141
- line-height: 140%;
142
- }
143
- [data-text-style=body-s-medium] {
144
- font-size: 0.875rem;
145
- font-weight: 500;
146
- line-height: 140%;
147
- }
148
- [data-text-style=body-m-regular] {
149
- font-size: 1rem;
150
- font-weight: 400;
151
- line-height: 155%;
152
- }
153
- [data-text-style=body-m-medium] {
154
- font-size: 1rem;
155
- font-weight: 500;
156
- line-height: 135%;
157
- }
158
- [data-text-style=body-l-regular] {
159
- font-size: 1.125rem;
160
- font-weight: 400;
161
- line-height: 145%;
162
- }
163
- [data-text-style=body-l-medium] {
164
- font-size: 1.125rem;
165
- font-weight: 500;
166
- line-height: 150%;
167
- }
168
- [data-text-style=body-xl-regular] {
169
- font-size: 1.25rem;
170
- font-weight: 400;
171
- line-height: 140%;
172
- }
173
- [data-text-style=body-xl-medium] {
174
- font-size: 1.25rem;
175
- font-weight: 500;
176
- line-height: 140%;
177
- }
178
- @media (max-width: 991px) {
179
- [data-text-style=body-xs-regular],
180
- [data-text-style=body-xs-medium],
181
- [data-text-style=body-xs-semibold] {
182
- font-size: 0.6875rem;
183
- }
184
- [data-text-style=body-s-regular],
185
- [data-text-style=body-s-medium] {
186
- font-size: 0.8125rem;
187
- }
188
- [data-text-style=body-m-regular],
189
- [data-text-style=body-m-medium] {
190
- font-size: 0.9375rem;
191
- }
192
- [data-text-style=body-l-regular],
193
- [data-text-style=body-l-medium] {
194
- font-size: 1rem;
195
- }
196
- [data-text-style=body-xl-regular],
197
- [data-text-style=body-xl-medium] {
198
- font-size: 1.125rem;
199
- }
200
- }
201
- @media (max-width: 767px) {
202
- [data-text-style=body-xs-regular],
203
- [data-text-style=body-xs-medium],
204
- [data-text-style=body-xs-semibold] {
205
- font-size: 0.75rem;
206
- }
207
- [data-text-style=body-s-regular],
208
- [data-text-style=body-m-regular] {
209
- font-size: 0.875rem;
210
- }
211
- [data-text-style=body-s-medium],
212
- [data-text-style=body-m-medium],
213
- [data-text-style=body-l-regular],
214
- [data-text-style=body-l-medium],
215
- [data-text-style=body-xl-regular] {
216
- font-size: 1rem;
217
- }
218
- [data-text-style=body-xl-medium] {
219
- font-size: 1.2rem;
220
- }
221
- }
222
- [data-text-color=title] {
223
- color: #101319;
224
- }
225
- [data-text-color=subtext] {
226
- color: #5B5C5D;
227
- }
228
- [data-text-color=title-inverse] {
229
- color: #ffffff;
230
- }
231
- [data-text-color=subtext-inverse] {
232
- color: #A0A1A2;
233
- }
234
- [data-icon-color=darkest] {
235
- color: #0E0E0E;
236
- }
237
- [data-icon-color=dark] {
238
- color: #797A7C;
239
- }
240
- [data-icon-color=medium] {
241
- color: #F2F2F2;
242
- }
243
- [data-icon-color=darkest] {
244
- color: #FFFFFF;
245
- }
246
- [data-spacing=tiny] {
247
- height: 0.25rem;
248
- }
249
- [data-spacing=xxsmall] {
250
- height: 0.5rem;
251
- }
252
- [data-spacing=xsmall] {
253
- height: 1rem;
254
- }
255
- [data-spacing=small] {
256
- height: 1.5rem;
257
- }
258
- [data-spacing=medium] {
259
- height: 2.5rem;
260
- }
261
- [data-spacing=large] {
262
- height: 3.5rem;
263
- }
264
- [data-spacing=xlarge] {
265
- height: 4rem;
266
- }
267
- [data-spacing=xxlarge] {
268
- height: 5rem;
269
- }
270
- [data-spacing=huge] {
271
- height: 6rem;
272
- }
273
- [data-spacing=xhuge] {
274
- height: 7rem;
275
- }
276
- [data-spacing=xxhuge] {
277
- height: 8rem;
278
- }
279
- [data-badge-bg=blue] {
280
- background: #5C98F7;
281
- }
282
- [data-badge-bg=peach] {
283
- background: #EEB384;
284
- }
285
- [data-badge-bg=green] {
286
- background: #80D99F;
287
- }
288
- [data-badge-bg=yellow] {
289
- background: #FDF6DB;
290
- }
291
- [data-badge-bg=lavender] {
292
- background: #E382FF;
293
- }
294
- [data-badge-bg=violet] {
295
- background: #8D61F6;
296
- }
297
- [data-badge-bg=red] {
298
- background: #FDDBDB;
299
- }
300
- [data-badge-bg=gray] {
301
- background: #F8F8F9;
302
- }
303
- [data-badge-bg=transparent] {
304
- background: transparent;
305
- }
306
- [data-badge-bg=teal] {
307
- background: #89D0E0;
308
- }
309
- [data-bg=blue] {
310
- background: #D4E5FF;
311
- }
312
- [data-bg=peach] {
313
- background: #FCEADB;
314
- }
315
- [data-bg=green] {
316
- background: #C9EBD7;
317
- }
318
- [data-bg=yellow] {
319
- background: #FDF6DB;
320
- }
321
- [data-bg=lavender] {
322
- background: #EBDDEF;
323
- }
324
- [data-bg=red] {
325
- background: #FDDBDB;
326
- }
327
- [data-bg=gray] {
328
- background: #F8F8F9;
329
- }
330
- [data-bg=dark],
331
- .card_badge[data-bg=dark] {
332
- background: #0E0E0E;
333
- color: #FFFFFF;
334
- }
335
- [data-bg=transparent] {
336
- background: transparent;
337
- }
338
- [data-bg=tea-green] {
339
- background: #E5F2C2;
340
- }
341
- @media (min-width: 1280px) {
342
- [data-glow=star]::before {
343
- left: 30vw;
344
- height: 1370px;
345
- }
346
- }
347
- @media (min-width: 768px) {
348
- .hero--right-image-wrap[data-bg] {
349
- background: transparent;
350
- }
351
- [data-glow=star]::before {
352
- content: "";
353
- position: absolute;
354
- z-index: 1;
355
- background-image: url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67b44aabaca043782cd38488_background-shimmer.gif);
356
- background-size: contain;
357
- background-repeat: no-repeat;
358
- opacity: 0.5;
359
- mix-blend-mode: screen;
360
- height: 1200px;
361
- width: 200vw;
362
- left: 10vw;
363
- top: -50%;
364
- }
365
- [data-glow=star]::after {
366
- content: "";
367
- z-index: 0;
368
- opacity: .5;
369
- mix-blend-mode: multiply;
370
- object-fit: cover;
371
- background-position: 0 0;
372
- background-repeat: repeat;
373
- background-size: contain;
374
- width: 100%;
375
- height: 100%;
376
- position: absolute;
377
- inset: 0%;
378
- }
379
- }
380
- @media (max-width: 767px) {
381
- .section_hero-50-50[data-bg] {
382
- background: transparent;
383
- }
384
- [data-glow=star] .hero--right-image-wrap::before {
385
- content: "";
386
- position: absolute;
387
- inset: -35% 0% 0% auto;
388
- z-index: 1;
389
- background-image: url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67b44aabaca043782cd38488_background-shimmer.gif);
390
- background-size: cover;
391
- background-position: -120px 0;
392
- opacity: 0.5;
393
- mix-blend-mode: screen;
394
- height: 165%;
395
- width: 100%;
396
- }
397
- [data-glow=star] .hero--right-image-wrap::after {
398
- content: "";
399
- z-index: 0;
400
- opacity: .5;
401
- mix-blend-mode: multiply;
402
- object-fit: cover;
403
- background-image: url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67e014ba0be011b4a7adb7a3_grain-hero.avif);
404
- background-position: 0 0;
405
- background-repeat: repeat;
406
- background-size: contain;
407
- width: 100%;
408
- height: 100%;
409
- position: absolute;
410
- inset: 0%;
411
- }
412
- .section_hero-50-50[data-bg-mobile=True] {
413
- background: #0e0e0e;
414
- }
415
- }
416
- .hide-scrollbar::-webkit-scrollbar {
417
- display: none;
418
- }
419
- .hide-scrollbar {
420
- -ms-overflow-style: none;
421
- scrollbar-width: none;
422
- }
423
- [data-truncate=yes] {
424
- display: -webkit-box;
425
- -webkit-line-clamp: 3;
426
- -webkit-box-orient: vertical;
427
- overflow: hidden;
428
- text-overflow: ellipsis;
429
- }
430
- [style-line-clamp] {
431
- display: -webkit-box;
432
- -webkit-box-orient: vertical;
433
- overflow: hidden;
434
- }
435
- [style-line-clamp="1"] {
436
- -webkit-line-clamp: 1;
437
- }
438
- [style-line-clamp="2"] {
439
- -webkit-line-clamp: 2;
440
- }
441
- [style-line-clamp="3"] {
442
- -webkit-line-clamp: 3;
443
- }
444
- [style-line-clamp="4"] {
445
- -webkit-line-clamp: 4;
446
- }
447
- [data-color="#0A4020"] {
448
- color: #0A4020;
449
- }
450
- [data-color="#043B77"] {
451
- color: #043B77;
452
- }
453
- [data-color="#FF0000"] {
454
- color: #FF0000;
455
- }
456
- [data-color="#48310F"] {
457
- color: #48310F;
458
- }
459
- [data-color="#F8F8F9"] {
460
- color: #F8F8F9;
461
- }
462
- [data-color=white] {
463
- color: #FFFFFF;
464
- }
465
- [data-color=subtext-white] {
466
- color: #A0A1A2;
467
- }
468
- [data-color=green-dark] {
469
- color: #427C5A;
470
- }
471
- [data-color=green-light] {
472
- color: #B2E0C3;
473
- }
474
- [data-height="25rem"] {
475
- height: 25rem;
476
- }
477
- [data-height="26rem"] {
478
- height: 26.06rem;
479
- }
480
- [data-height="31rem"] {
481
- height: 31.25rem;
482
- }
483
- [data-height="39rem"] {
484
- height: 39.125rem;
485
- }
486
- [data-bg-color] {
487
- background-color: #F8F8F9;
488
- }
489
- @media screen and (max-width: 767px) {
490
- *[data-height] {
491
- height: 15.62rem;
492
- }
493
- div div.bento-card_text {
494
- font-size: 1rem;
495
- }
496
- div p.bento-card_subtext {
497
- font-size: 0.875rem;
498
- }
499
- }
500
- [fynd-sticky-bg-theme=blue-1] {
501
- background: url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67e1b4072adad40eb22e201e_97d7b26441d6a95f90db1952a9d3e122_bg-theme-1.avif) no-repeat;
502
- background-size: cover;
503
- }
504
- .w-richtext figure.w-richtext-align-fullwidth > figcaption {
505
- font-size: 14px;
506
- }
507
- .blog_rich-text strong {
508
- font-weight: 500;
509
- }
510
- .metric-rich-text strong {
511
- font-weight: 500;
512
- }
513
- [data-bg=white] {
514
- background: white;
515
- }
516
- a.blog-details.w-inline-block {
517
- display: flex;
518
- }
519
- .bento-card:hover .btn.global_card_btn {
520
- opacity: 1;
521
- }
522
- #fc_frame {
523
- visibility: hidden;
524
- display: none;
525
- }
526
- [data-bg=white] {
527
- background: white;
528
- }
529
- a.blog-details.w-inline-block {
530
- display: flex;
531
- }
532
- .bento-card:hover .btn.global_card_btn {
533
- opacity: 1;
534
- }
535
- @media (width <=767px) {
536
- [data-text-style=body-l-regular] {
537
- line-height: 145%;
538
- }
539
- [data-text-style=heading-xl] {
540
- line-height: 115%;
541
- }
542
- [data-text-style=heading-l] {
543
- line-height: 135%;
544
- }
545
- [data-text-style=body-xl-regular] {
546
- font-size: 1rem;
547
- }
548
- [data-text-style=heading-s] {
549
- font-size: 1.125rem;
550
- line-height: 140%;
551
- }
552
- }
553
- [card-bg=dark] {
554
- background: #1A1A1A;
555
- }
556
- [circle-bg=dark] {
557
- background: #333333;
558
- }
559
- [circle-bg=light] {
560
- background: #1A1A1A;
561
- }
562
- [bottom-line-border=dark] {
563
- border-color: #333333;
564
- }
565
- [bottom-line-border=light] {
566
- border-color: #1A1A1A;
567
- }
568
- .accordian-richtext[data-text-color]:not([data-text-color=""]) > * {
569
- color: inherit;
570
- }
571
- @media (max-width: 767px) {
572
- [data-glow=star] .hero--right-image-wrap::before {
573
- top: 0%;
574
- height: 100%;
575
- }
576
- }
577
- .iti {
578
- position: relative;
579
- display: inline-block;
580
- width: 100%;
581
- }
582
- h1 a,
583
- h2 a,
584
- h3 a,
585
- h6 a {
586
- height: var(--sizes--40);
587
- padding: 0px var(--_spacing---24);
588
- grid-column-gap: var(--_spacing---8);
589
- grid-row-gap: var(--_spacing---8);
590
- border-radius: var(--_border-radius---radius-32);
591
- color: var(--_color-palette---button--primary--button-text-default) !important;
592
- font-size: var(--sizes--16);
593
- line-height: var(--_typography---line-height--160);
594
- font-weight: var(--_typography---font-weight--medium);
595
- white-space: nowrap;
596
- border: 1px solid #0000;
597
- justify-content: center;
598
- align-items: center;
599
- transition: all .3s;
600
- display: inline-flex;
601
- background: black;
602
- letter-spacing: 0.02px;
603
- }
604
- .scroll_visibility_hidden {
605
- -ms-overflow-style: none;
606
- scrollbar-width: none;
607
- }
608
- .scroll_visibility_hidden::-webkit-scrollbar {
609
- display: none;
610
- }
611
- @media screen and (max-width: 991px) {
612
- .global_card_title-3.bottom-caption-31 {
613
- font-size: 1rem !important;
614
- }
615
- }
616
- @media screen and (max-width: 479px) {
617
- .global_card_title-3.bottom-caption-31 {
618
- font-size: .875rem !important;
619
- }
620
- }
621
- input#phone-number {
622
- padding-left: 89px !important;
623
- }
624
- .iti__selected-flag {
625
- border-radius: 4px;
626
- }
627
- @media (max-width: 992px) {
628
- [hide-from-tablet=true] {
629
- display: none !important;
630
- visibility: hidden !important;
631
- }
632
- }
633
- [loop-video] {
634
- width: 100%;
635
- height: 100%;
636
- }
637
- [data-zindex="1"] {
638
- z-index: 1 !important;
639
- }
640
- [richtext-button] {
641
- height: var(--sizes--40);
642
- padding: 0 var(--_spacing---24);
643
- gap: var(--_spacing---8);
644
- border-radius: var(--_border-radius---radius-32);
645
- font-size: var(--sizes--16);
646
- line-height: var(--_typography---line-height--160);
647
- font-weight: var(--_typography---font-weight--medium);
648
- white-space: nowrap;
649
- border: 1px solid transparent;
650
- justify-content: center;
651
- align-items: center;
652
- transition: all 0.3s;
653
- display: inline-flex;
654
- font-style: normal !important;
655
- }
656
- [richtext-button=primary] {
657
- background-color: var(--button-primary\<deleted\|variable-99fb50d1-1e0d-8a24-83db-2993f67e9130\>);
658
- color: var(--_color-palette---button--primary--button-text-default) !important;
659
- }
660
- [richtext-button=secondary] {
661
- background-color: var(--_color-palette---button--secondary--button-bg-default);
662
- border-color: var(--_color-palette---button--secondary--button-border-default);
663
- color: var(--_color-palette---extension--text-primary) !important;
664
- }
665
- [data-corner-cutout="1.5rem"] {
666
- position: relative;
667
- }
668
- [data-corner-cutout="1.5rem"]::after {
669
- content: "";
670
- position: absolute;
671
- top: 0;
672
- right: 0;
673
- width: 1.5rem;
674
- height: 1.5rem;
675
- background: var(--_color-palette---text--title);
676
- -webkit-mask-image:
677
- radial-gradient(
678
- circle at bottom left,
679
- transparent 24px,
680
- var(--_color-palette---text--title) 25px);
681
- mask-image:
682
- radial-gradient(
683
- circle at bottom left,
684
- transparent 24px,
685
- var(--_color-palette---text--title) 25px);
686
- }
687
- [data-corner-cutout="1.5rem"]::before {
688
- content: "";
689
- position: absolute;
690
- top: 0;
691
- left: 0;
692
- width: 1.5rem;
693
- height: 1.5rem;
694
- background: var(--_color-palette---text--title);
695
- -webkit-mask-image:
696
- radial-gradient(
697
- circle at bottom right,
698
- transparent 24px,
699
- var(--_color-palette---text--title) 25px);
700
- mask-image:
701
- radial-gradient(
702
- circle at bottom right,
703
- transparent 24px,
704
- var(--_color-palette---text--title) 25px);
705
- }
706
- .accordian-richtext p:first-child {
707
- margin-bottom: 1rem;
708
- }
709
- .splide__pagination__page.is-active {
710
- background: var(--_color-palette---text--title);
711
- transform: scale(1);
712
- }
713
- [fynd-timeline-element=dot-wrapper] {
714
- display: flex;
715
- gap: 2px;
716
- align-items: center;
717
- }
718
- @media (max-width: 991px) {
719
- [fynd-timeline-element=dot-wrapper] {
720
- flex-direction: column;
721
- }
722
- [fynd-timeline-element=dot],
723
- [fynd-timeline-element=dot-filled] {
724
- width: 2px !important;
725
- height: 4px;
726
- }
727
- [fynd-timeline-element=circle] {
728
- box-shadow: inset 0 0 0 6px #A0A1A2;
729
- }
730
- [fynd-timeline-element=circle-filled] {
731
- box-shadow: inset 0 0 0 8px #0E0E0E !important;
732
- }
733
- }
734
- [fynd-timeline-element=dot],
735
- [fynd-timeline-element=dot-filled] {
736
- width: 100%;
737
- height: 2px;
738
- border-radius: 10px;
739
- background: #A0A1A2;
740
- transition: background-color 0.3s ease;
741
- }
742
- [fynd-timeline-element=dot-filled] {
743
- background: #0E0E0E;
744
- }
745
- [fynd-timeline-element=circle] {
746
- transform: scale(.7);
747
- box-shadow: inset 0 0 0 20px #A0A1A2;
748
- }
749
- [fynd-timeline-element=circle-filled] {
750
- transform: scale(1);
751
- box-shadow: inset 0 0 0 10px #0E0E0E;
752
- }
753
- [fynd-show-clear=true] {
754
- background-image: url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/6889f30ed6b4ea10c3b618c0_close.svg) !important;
755
- background-size: 20px !important;
756
- }
757
- [fynd-show-clear=false] {
758
- background-image: url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67ce756d3fd77fc0515461fd_ic_search.svg) !important;
759
- background-size: 20px !important;
760
- }
761
- [fynd-richtext=accordian] ul > li strong {
762
- font-weight: normal;
763
- }
764
- th {
765
- font-weight: 600 !important;
766
- }
767
- .fynd-table_cell b {
768
- font-weight: 600;
769
- }
770
- .fynd-table_head b {
771
- font-weight: 600;
772
- }
773
- [data-style-over=richtext-comp] {
774
- color: black !important;
775
- text-decoration: none !important;
776
- }
777
- [data-style-over=richtext-comp] :hover {
778
- color: white !important;
779
- text-decoration: none !important;
780
- }
781
- ul {
782
- color: var(--_color-palette---text--subtext);
783
- line-height: var(--_typography---line-height--160);
784
- }
785
- .fynd-table_instance {
786
- overflow: auto;
787
- overflow-x: auto;
788
- overflow-y: auto;
789
- }
790
- [strict-display=none] {
791
- display: none !important;
792
- }
793
- blockquote > strong {
794
- font-weight: 500 !important;
795
- font-size: 1rem;
796
- font-style: normal;
797
- line-height: 1;
798
- color: var(--_primitives---neutral--neutral-100);
799
- }
800
- [data-popup-video=injected] {
801
- width: 100%;
802
- height: 100%;
803
- object-fit: cover;
804
- position: absolute;
805
- z-index: 2;
806
- }
807
- .gradient_blur {
808
- opacity: 1;
809
- }
810
- .gradient_blur > div,
811
- .gradient_blur::before,
812
- .gradient_blur::after {
813
- position: absolute;
814
- inset: 0;
815
- }
816
- .gradient_blur::before {
817
- content: "";
818
- z-index: 1;
819
- backdrop-filter: blur(0.5px);
820
- mask:
821
- linear-gradient(
822
- to top,
823
- rgba(0, 0, 0, 0) 0%,
824
- rgba(0, 0, 0, 1) 12.5%,
825
- rgba(0, 0, 0, 1) 25%,
826
- rgba(0, 0, 0, 0) 37.5%);
827
- }
828
- .gradient_blur > div:nth-of-type(1) {
829
- z-index: 2;
830
- backdrop-filter: blur(1px);
831
- mask:
832
- linear-gradient(
833
- to top,
834
- rgba(0, 0, 0, 0) 12.5%,
835
- rgba(0, 0, 0, 1) 25%,
836
- rgba(0, 0, 0, 1) 37.5%,
837
- rgba(0, 0, 0, 0) 50%);
838
- }
839
- .gradient_blur > div:nth-of-type(2) {
840
- z-index: 3;
841
- backdrop-filter: blur(2px);
842
- mask:
843
- linear-gradient(
844
- to top,
845
- rgba(0, 0, 0, 0) 25%,
846
- rgba(0, 0, 0, 1) 37.5%,
847
- rgba(0, 0, 0, 1) 50%,
848
- rgba(0, 0, 0, 0) 62.5%);
849
- }
850
- .gradient_blur > div:nth-of-type(3) {
851
- z-index: 4;
852
- backdrop-filter: blur(4px);
853
- mask:
854
- linear-gradient(
855
- to top,
856
- rgba(0, 0, 0, 0) 37.5%,
857
- rgba(0, 0, 0, 1) 50%,
858
- rgba(0, 0, 0, 1) 62.5%,
859
- rgba(0, 0, 0, 0) 75%);
860
- }
861
- .gradient_blur > div:nth-of-type(4) {
862
- z-index: 5;
863
- backdrop-filter: blur(8px);
864
- mask:
865
- linear-gradient(
866
- to top,
867
- rgba(0, 0, 0, 0) 50%,
868
- rgba(0, 0, 0, 1) 62.5%,
869
- rgba(0, 0, 0, 1) 75%,
870
- rgba(0, 0, 0, 0) 87.5%);
871
- }
872
- .gradient_blur > div:nth-of-type(5) {
873
- z-index: 6;
874
- backdrop-filter: blur(16px);
875
- mask:
876
- linear-gradient(
877
- to top,
878
- rgba(0, 0, 0, 0) 62.5%,
879
- rgba(0, 0, 0, 1) 75%,
880
- rgba(0, 0, 0, 1) 87.5%,
881
- rgba(0, 0, 0, 0) 100%);
882
- }
883
- .gradient_blur > div:nth-of-type(6) {
884
- z-index: 7;
885
- backdrop-filter: blur(32px);
886
- mask:
887
- linear-gradient(
888
- to top,
889
- rgba(0, 0, 0, 0) 75%,
890
- rgba(0, 0, 0, 1) 87.5%,
891
- rgba(0, 0, 0, 1) 100%);
892
- }
893
- .gradient_blur::after {
894
- content: "";
895
- z-index: 8;
896
- backdrop-filter: blur(64px);
897
- mask:
898
- linear-gradient(
899
- to top,
900
- rgba(0, 0, 0, 0) 87.5%,
901
- rgba(0, 0, 0, 1) 100%);
902
- }
903
- .navigation {
904
- z-index: 99999 !important;
905
- }
906
- #mobile-menu {
907
- top: 0px !important;
908
- transform: translateY(0px) !important;
909
- }
910
- @media (min-width: 768px) {
911
- #mobile-menu {
912
- top: 0px !important;
913
- transform: translateY(0px) !important;
914
- }
915
- }
916
- @media (max-width: 767px) and (orientation: landscape) {
917
- #mobile-menu {
918
- top: 50px !important;
919
- transform: translateY(0px) !important;
920
- }
921
- }
922
- [style-height=full] {
923
- height: 100%;
924
- }
925
- .custom-form_layout.w-variant-ccdd1f5c-cbc6-911f-3402-92637f9b226d {
926
- height: auto;
927
- }
928
- .custom-form_layout {
929
- height: auto;
930
- }
931
- .form_right-column {
932
- padding-left: 0rem !important;
933
- padding-right: 0rem !important;
934
- }
935
- @media screen and (max-width: 767px) {
936
- .hero-form {
937
- padding-top: 0rem !important;
938
- }
939
- }
940
- .is-select {
941
- appearance: none;
942
- -webkit-appearance: none;
943
- -moz-appearance: none;
944
- }
945
- .is-select::-ms-expand {
946
- display: none;
947
- }
948
- [data-popup-video=youtube-container] {
949
- z-index: 4;
950
- }
951
- #widget-copilot {
952
- z-index: 10;
953
- position: relative;
954
- }
955
- [fynd-sticky-target] {
956
- height: 90vh;
957
- position: sticky;
958
- top: 12vh;
959
- z-index: 2;
960
- }
961
- [fynd-scroll-blocks] {
962
- display: none;
963
- }
964
- [fynd-scroll-source] {
965
- height: 80vh;
966
- }
967
- [fynd-sticky-source] {
968
- height: 80vh;
969
- width: 100%;
970
- position: absolute;
971
- top: 0px;
972
- opacity: 0;
973
- background-color: transparent;
974
- }
975
- [fynd-scroll-container] {
976
- opacity: 0;
977
- }
978
- [fynd-sticky-target] {
979
- height: 80vh;
980
- border-radius: 1rem;
981
- overflow: hidden;
982
- }
983
- [fynd-scroll-column] {
984
- padding-left: 0rem;
985
- padding-right: 0rem;
986
- }
987
- .progressive-scroll-image {
988
- object-fit: cover;
989
- }
990
- @media (max-width: 991px) {
991
- [fynd-scroll-container] {
992
- opacity: 0;
993
- display: none;
994
- }
995
- [fynd-scroll-blocks] {
996
- display: flex;
997
- }
998
- [fynd-sticky-source] {
999
- height: auto;
1000
- position: static;
1001
- opacity: 1;
1002
- }
1003
- [fynd-scroll-source] {
1004
- height: auto;
1005
- }
1006
- }
1007
- [contact-form-popup=open] {
1008
- z-index: 100000000000;
1009
- }
1010
- .fynd-bg-video > video {
1011
- position: static !important;
1012
- }
1013
- button#fynd-schema-copy-btn {
1014
- display: none !important;
1015
- }
1016
- @media (max-width: 768px) {
1017
- #widget-copilot {
1018
- z-index: 1000000000000 !important;
1019
- }
1020
- }
1021
- [card-blur=black] {
1022
- backdrop-filter: blur(25px) brightness(0.8);
1023
- -webkit-backdrop-filter: blur(25px) brightness(0.9);
1024
- mask-image:
1025
- linear-gradient(
1026
- to top,
1027
- rgba(0, 0, 0, 0) 35%,
1028
- rgba(0, 0, 0, 1) 70%);
1029
- -webkit-mask-image:
1030
- linear-gradient(
1031
- to top,
1032
- rgba(0, 0, 0, 0) 35%,
1033
- rgba(0, 0, 0, 1) 70%);
1034
- }
1035
- [card-blur=white] {
1036
- backdrop-filter: blur(25px) brightness(1);
1037
- -webkit-backdrop-filter: blur(25px) brightness(0.9);
1038
- mask-image:
1039
- linear-gradient(
1040
- to top,
1041
- rgba(0, 0, 0, 0) 35%,
1042
- rgba(0, 0, 0, 1) 70%);
1043
- -webkit-mask-image:
1044
- linear-gradient(
1045
- to top,
1046
- rgba(0, 0, 0, 0) 35%,
1047
- rgba(0, 0, 0, 1) 70%);
1048
- }
1049
- [media-card-padding="24"] {
1050
- padding: 24px;
1051
- }
1052
- @media (max-width: 600px) {
1053
- [media-card-padding="24"] {
1054
- padding: 20px;
1055
- }
1056
- }
1057
- [media-card-padding="20"] {
1058
- padding: 20px;
1059
- }
1060
- @media (max-width: 600px) {
1061
- [media-card-padding="20"] {
1062
- padding: 20px;
1063
- }
1064
- }
1065
- /*# sourceMappingURL=style.css.map */
1
+ :root{--Primary: "Fynd Sans", sans-serif;--Secondary: "Inter Display", sans-serif}html,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-smooth:always}.w-background-video{position:absolute;inset:0;z-index:0}.video{width:100%;height:auto;object-fit:cover;display:block}[data-padding=big]{padding-top:9rem;padding-bottom:9rem}[data-padding=medium]{padding-top:5rem;padding-bottom:5rem}[data-padding=small]{padding-top:4rem;padding-bottom:4rem}[data-text-style=heading-xxl]{font-family:var(--Primary);font-size:4.5rem;font-weight:500;line-height:110%;letter-spacing:-.04em}[data-text-style=heading-xl]{font-family:var(--Primary);font-size:3.5rem;font-weight:400;line-height:110%;letter-spacing:-.04em}[data-text-style=heading-l]{font-family:var(--Primary);font-size:2.5rem;font-weight:400;line-height:110%;letter-spacing:-.03em}[data-text-style=heading-m]{font-family:var(--Primary);font-size:2rem;font-weight:400;line-height:120%;letter-spacing:-.02em}[data-text-style=heading-s]{font-family:var(--Secondary);font-size:1.625rem;font-weight:500;line-height:130%;letter-spacing:-.02em}[data-text-style=heading-xs]{font-family:var(--Secondary);font-size:1.25rem;font-weight:400;line-height:140%}[data-text-style=font-weight-500]{font-weight:500}@media (max-width: 1023px){[data-text-style=heading-xxl]{font-size:3.5rem}[data-text-style=heading-xl]{font-size:2.5rem}[data-text-style=heading-l]{font-size:2rem}[data-text-style=heading-m]{font-size:1.5rem}[data-text-style=heading-s]{font-size:1.25rem}}@media (max-width: 767px){[data-text-style=heading-xxl]{font-size:2.5rem}[data-text-style=heading-xl]{font-size:2rem}[data-text-style=heading-xs]{font-size:1.2rem}[data-text-style=heading-l]{font-size:1.5rem}[data-text-style=heading-m]{font-size:1.25rem}[data-text-style=heading-s]{font-size:1.125rem}[data-padding=big],[data-padding=medium],[data-padding=small]{padding-top:2.5rem;padding-bottom:2.5rem}}[data-text-style=body-xs-regular]{font-size:.75rem;font-weight:400;line-height:130%}[data-text-style=body-xs-medium]{font-size:.75rem;font-weight:500;line-height:130%}[data-text-style=body-xs-semibold]{font-size:.75rem;font-weight:600;line-height:130%}[data-text-style=body-s-regular]{font-size:.875rem;font-weight:400;line-height:140%}[data-text-style=body-s-medium]{font-size:.875rem;font-weight:500;line-height:140%}[data-text-style=body-m-regular]{font-size:1rem;font-weight:400;line-height:155%}[data-text-style=body-m-medium]{font-size:1rem;font-weight:500;line-height:135%}[data-text-style=body-l-regular]{font-size:1.125rem;font-weight:400;line-height:145%}[data-text-style=body-l-medium]{font-size:1.125rem;font-weight:500;line-height:150%}[data-text-style=body-xl-regular]{font-size:1.25rem;font-weight:400;line-height:140%}[data-text-style=body-xl-medium]{font-size:1.25rem;font-weight:500;line-height:140%}@media (max-width: 991px){[data-text-style=body-xs-regular],[data-text-style=body-xs-medium],[data-text-style=body-xs-semibold]{font-size:.6875rem}[data-text-style=body-s-regular],[data-text-style=body-s-medium]{font-size:.8125rem}[data-text-style=body-m-regular],[data-text-style=body-m-medium]{font-size:.9375rem}[data-text-style=body-l-regular],[data-text-style=body-l-medium]{font-size:1rem}[data-text-style=body-xl-regular],[data-text-style=body-xl-medium]{font-size:1.125rem}}@media (max-width: 767px){[data-text-style=body-xs-regular],[data-text-style=body-xs-medium],[data-text-style=body-xs-semibold]{font-size:.75rem}[data-text-style=body-s-regular],[data-text-style=body-m-regular]{font-size:.875rem}[data-text-style=body-s-medium],[data-text-style=body-m-medium],[data-text-style=body-l-regular],[data-text-style=body-l-medium],[data-text-style=body-xl-regular]{font-size:1rem}[data-text-style=body-xl-medium]{font-size:1.2rem}}[data-text-color=title]{color:#101319}[data-text-color=subtext]{color:#5b5c5d}[data-text-color=title-inverse]{color:#fff}[data-text-color=subtext-inverse]{color:#a0a1a2}[data-icon-color=darkest]{color:#0e0e0e}[data-icon-color=dark]{color:#797a7c}[data-icon-color=medium]{color:#f2f2f2}[data-icon-color=darkest]{color:#fff}[data-spacing=tiny]{height:.25rem}[data-spacing=xxsmall]{height:.5rem}[data-spacing=xsmall]{height:1rem}[data-spacing=small]{height:1.5rem}[data-spacing=medium]{height:2.5rem}[data-spacing=large]{height:3.5rem}[data-spacing=xlarge]{height:4rem}[data-spacing=xxlarge]{height:5rem}[data-spacing=huge]{height:6rem}[data-spacing=xhuge]{height:7rem}[data-spacing=xxhuge]{height:8rem}[data-badge-bg=blue]{background:#5c98f7}[data-badge-bg=peach]{background:#eeb384}[data-badge-bg=green]{background:#80d99f}[data-badge-bg=yellow]{background:#fdf6db}[data-badge-bg=lavender]{background:#e382ff}[data-badge-bg=violet]{background:#8d61f6}[data-badge-bg=red]{background:#fddbdb}[data-badge-bg=gray]{background:#f8f8f9}[data-badge-bg=transparent]{background:transparent}[data-badge-bg=teal]{background:#89d0e0}[data-bg=blue]{background:#d4e5ff}[data-bg=peach]{background:#fceadb}[data-bg=green]{background:#c9ebd7}[data-bg=yellow]{background:#fdf6db}[data-bg=lavender]{background:#ebddef}[data-bg=red]{background:#fddbdb}[data-bg=gray]{background:#f8f8f9}[data-bg=dark],.card_badge[data-bg=dark]{background:#0e0e0e;color:#fff}[data-bg=transparent]{background:transparent}[data-bg=tea-green]{background:#e5f2c2}@media (min-width: 1280px){[data-glow=star]:before{left:30vw;height:1370px}}@media (min-width: 768px){.hero--right-image-wrap[data-bg]{background:transparent}[data-glow=star]:before{content:"";position:absolute;z-index:1;background-image:url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67b44aabaca043782cd38488_background-shimmer.gif);background-size:contain;background-repeat:no-repeat;opacity:.5;mix-blend-mode:screen;height:1200px;width:200vw;left:10vw;top:-50%}[data-glow=star]:after{content:"";z-index:0;opacity:.5;mix-blend-mode:multiply;object-fit:cover;background-position:0 0;background-repeat:repeat;background-size:contain;width:100%;height:100%;position:absolute;inset:0%}}@media (max-width: 767px){.section_hero-50-50[data-bg]{background:transparent}[data-glow=star] .hero--right-image-wrap:before{content:"";position:absolute;inset:-35% 0% 0% auto;z-index:1;background-image:url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67b44aabaca043782cd38488_background-shimmer.gif);background-size:cover;background-position:-120px 0;opacity:.5;mix-blend-mode:screen;height:165%;width:100%}[data-glow=star] .hero--right-image-wrap:after{content:"";z-index:0;opacity:.5;mix-blend-mode:multiply;object-fit:cover;background-image:url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67e014ba0be011b4a7adb7a3_grain-hero.avif);background-position:0 0;background-repeat:repeat;background-size:contain;width:100%;height:100%;position:absolute;inset:0%}.section_hero-50-50[data-bg-mobile=True]{background:#0e0e0e}}.hide-scrollbar::-webkit-scrollbar{display:none}.hide-scrollbar{-ms-overflow-style:none;scrollbar-width:none}[data-truncate=yes]{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}[style-line-clamp]{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}[style-line-clamp="1"]{-webkit-line-clamp:1}[style-line-clamp="2"]{-webkit-line-clamp:2}[style-line-clamp="3"]{-webkit-line-clamp:3}[style-line-clamp="4"]{-webkit-line-clamp:4}[data-color="#0A4020"]{color:#0a4020}[data-color="#043B77"]{color:#043b77}[data-color="#FF0000"]{color:red}[data-color="#48310F"]{color:#48310f}[data-color="#F8F8F9"]{color:#f8f8f9}[data-color=white]{color:#fff}[data-color=subtext-white]{color:#a0a1a2}[data-color=green-dark]{color:#427c5a}[data-color=green-light]{color:#b2e0c3}[data-height="25rem"]{height:25rem}[data-height="26rem"]{height:26.06rem}[data-height="31rem"]{height:31.25rem}[data-height="39rem"]{height:39.125rem}[data-bg-color]{background-color:#f8f8f9}@media screen and (max-width: 767px){*[data-height]{height:15.62rem}div div.bento-card_text{font-size:1rem}div p.bento-card_subtext{font-size:.875rem}}[fynd-sticky-bg-theme=blue-1]{background:url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67e1b4072adad40eb22e201e_97d7b26441d6a95f90db1952a9d3e122_bg-theme-1.avif) no-repeat;background-size:cover}.w-richtext figure.w-richtext-align-fullwidth>figcaption{font-size:14px}.blog_rich-text strong,.metric-rich-text strong{font-weight:500}#fc_frame{visibility:hidden;display:none}[data-bg=white]{background:#fff}a.blog-details.w-inline-block{display:flex}.bento-card:hover .btn.global_card_btn{opacity:1}@media (width <=767px){[data-text-style=body-l-regular]{line-height:145%}[data-text-style=heading-xl]{line-height:115%}[data-text-style=heading-l]{line-height:135%}[data-text-style=body-xl-regular]{font-size:1rem}[data-text-style=heading-s]{font-size:1.125rem;line-height:140%}}[card-bg=dark]{background:#1a1a1a}[circle-bg=dark]{background:#333}[circle-bg=light]{background:#1a1a1a}[bottom-line-border=dark]{border-color:#333}[bottom-line-border=light]{border-color:#1a1a1a}.accordian-richtext[data-text-color]:not([data-text-color=""])>*{color:inherit}@media (max-width: 767px){[data-glow=star] .hero--right-image-wrap:before{top:0%;height:100%}}.iti{position:relative;display:inline-block;width:100%}h1 a,h2 a,h3 a,h6 a{height:var(--sizes--40);padding:0px var(--_spacing---24);grid-column-gap:var(--_spacing---8);grid-row-gap:var(--_spacing---8);border-radius:var(--_border-radius---radius-32);color:var(--_color-palette---button--primary--button-text-default)!important;font-size:var(--sizes--16);line-height:var(--_typography---line-height--160);font-weight:var(--_typography---font-weight--medium);white-space:nowrap;border:1px solid #0000;justify-content:center;align-items:center;transition:all .3s;display:inline-flex;background:#000;letter-spacing:.02px}.scroll_visibility_hidden{-ms-overflow-style:none;scrollbar-width:none}.scroll_visibility_hidden::-webkit-scrollbar{display:none}@media screen and (max-width: 991px){.global_card_title-3.bottom-caption-31{font-size:1rem!important}}@media screen and (max-width: 479px){.global_card_title-3.bottom-caption-31{font-size:.875rem!important}}input#phone-number{padding-left:89px!important}.iti__selected-flag{border-radius:4px}@media (max-width: 992px){[hide-from-tablet=true]{display:none!important;visibility:hidden!important}}[loop-video]{width:100%;height:100%}[data-zindex="1"]{z-index:1!important}[richtext-button]{height:var(--sizes--40);padding:0 var(--_spacing---24);gap:var(--_spacing---8);border-radius:var(--_border-radius---radius-32);font-size:var(--sizes--16);line-height:var(--_typography---line-height--160);font-weight:var(--_typography---font-weight--medium);white-space:nowrap;border:1px solid transparent;justify-content:center;align-items:center;transition:all .3s;display:inline-flex;font-style:normal!important}[richtext-button=primary]{background-color:var(--button-primary\<deleted\|variable-99fb50d1-1e0d-8a24-83db-2993f67e9130\>);color:var(--_color-palette---button--primary--button-text-default)!important}[richtext-button=secondary]{background-color:var(--_color-palette---button--secondary--button-bg-default);border-color:var(--_color-palette---button--secondary--button-border-default);color:var(--_color-palette---extension--text-primary)!important}[data-corner-cutout="1.5rem"]{position:relative}[data-corner-cutout="1.5rem"]:after{content:"";position:absolute;top:0;right:0;width:1.5rem;height:1.5rem;background:var(--_color-palette---text--title);-webkit-mask-image:radial-gradient(circle at bottom left,transparent 24px,var(--_color-palette---text--title) 25px);mask-image:radial-gradient(circle at bottom left,transparent 24px,var(--_color-palette---text--title) 25px)}[data-corner-cutout="1.5rem"]:before{content:"";position:absolute;top:0;left:0;width:1.5rem;height:1.5rem;background:var(--_color-palette---text--title);-webkit-mask-image:radial-gradient(circle at bottom right,transparent 24px,var(--_color-palette---text--title) 25px);mask-image:radial-gradient(circle at bottom right,transparent 24px,var(--_color-palette---text--title) 25px)}.accordian-richtext p:first-child{margin-bottom:1rem}.splide__pagination__page.is-active{background:var(--_color-palette---text--title);transform:scale(1)}[fynd-timeline-element=dot-wrapper]{display:flex;gap:2px;align-items:center}@media (max-width: 991px){[fynd-timeline-element=dot-wrapper]{flex-direction:column}[fynd-timeline-element=dot],[fynd-timeline-element=dot-filled]{width:2px!important;height:4px}[fynd-timeline-element=circle]{box-shadow:inset 0 0 0 6px #a0a1a2}[fynd-timeline-element=circle-filled]{box-shadow:inset 0 0 0 8px #0e0e0e!important}}[fynd-timeline-element=dot],[fynd-timeline-element=dot-filled]{width:100%;height:2px;border-radius:10px;background:#a0a1a2;transition:background-color .3s ease}[fynd-timeline-element=dot-filled]{background:#0e0e0e}[fynd-timeline-element=circle]{transform:scale(.7);box-shadow:inset 0 0 0 20px #a0a1a2}[fynd-timeline-element=circle-filled]{transform:scale(1);box-shadow:inset 0 0 0 10px #0e0e0e}[fynd-show-clear=true]{background-image:url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/6889f30ed6b4ea10c3b618c0_close.svg)!important;background-size:20px!important}[fynd-show-clear=false]{background-image:url(https://cdn.prod.website-files.com/67a9c8e5f2c74ac8c2c9b88b/67ce756d3fd77fc0515461fd_ic_search.svg)!important;background-size:20px!important}[fynd-richtext=accordian] ul>li strong{font-weight:400}th{font-weight:600!important}.fynd-table_cell b,.fynd-table_head b{font-weight:600}[data-style-over=richtext-comp]{color:#000!important;text-decoration:none!important}[data-style-over=richtext-comp] :hover{color:#fff!important;text-decoration:none!important}ul{color:var(--_color-palette---text--subtext);line-height:var(--_typography---line-height--160)}.fynd-table_instance{overflow:auto;overflow-x:auto;overflow-y:auto}[strict-display=none]{display:none!important}blockquote>strong{font-weight:500!important;font-size:1rem;font-style:normal;line-height:1;color:var(--_primitives---neutral--neutral-100)}[data-popup-video=injected]{width:100%;height:100%;object-fit:cover;position:absolute;z-index:2}.gradient_blur{opacity:1}.gradient_blur>div,.gradient_blur:before,.gradient_blur:after{position:absolute;inset:0}.gradient_blur:before{content:"";z-index:1;backdrop-filter:blur(.5px);mask:linear-gradient(to top,rgba(0,0,0,0) 0%,rgba(0,0,0,1) 12.5%,rgba(0,0,0,1) 25%,rgba(0,0,0,0) 37.5%)}.gradient_blur>div:nth-of-type(1){z-index:2;backdrop-filter:blur(1px);mask:linear-gradient(to top,rgba(0,0,0,0) 12.5%,rgba(0,0,0,1) 25%,rgba(0,0,0,1) 37.5%,rgba(0,0,0,0) 50%)}.gradient_blur>div:nth-of-type(2){z-index:3;backdrop-filter:blur(2px);mask:linear-gradient(to top,rgba(0,0,0,0) 25%,rgba(0,0,0,1) 37.5%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 62.5%)}.gradient_blur>div:nth-of-type(3){z-index:4;backdrop-filter:blur(4px);mask:linear-gradient(to top,rgba(0,0,0,0) 37.5%,rgba(0,0,0,1) 50%,rgba(0,0,0,1) 62.5%,rgba(0,0,0,0) 75%)}.gradient_blur>div:nth-of-type(4){z-index:5;backdrop-filter:blur(8px);mask:linear-gradient(to top,rgba(0,0,0,0) 50%,rgba(0,0,0,1) 62.5%,rgba(0,0,0,1) 75%,rgba(0,0,0,0) 87.5%)}.gradient_blur>div:nth-of-type(5){z-index:6;backdrop-filter:blur(16px);mask:linear-gradient(to top,rgba(0,0,0,0) 62.5%,rgba(0,0,0,1) 75%,rgba(0,0,0,1) 87.5%,rgba(0,0,0,0) 100%)}.gradient_blur>div:nth-of-type(6){z-index:7;backdrop-filter:blur(32px);mask:linear-gradient(to top,rgba(0,0,0,0) 75%,rgba(0,0,0,1) 87.5%,rgba(0,0,0,1) 100%)}.gradient_blur:after{content:"";z-index:8;backdrop-filter:blur(64px);mask:linear-gradient(to top,rgba(0,0,0,0) 87.5%,rgba(0,0,0,1) 100%)}.navigation{z-index:99999!important}#mobile-menu{top:0!important;transform:translateY(0)!important}@media (min-width: 768px){#mobile-menu{top:0!important;transform:translateY(0)!important}}@media (max-width: 767px) and (orientation: landscape){#mobile-menu{top:50px!important;transform:translateY(0)!important}}[style-height=full]{height:100%}.custom-form_layout.w-variant-ccdd1f5c-cbc6-911f-3402-92637f9b226d,.custom-form_layout{height:auto}.form_right-column{padding-left:0rem!important;padding-right:0rem!important}@media screen and (max-width: 767px){.hero-form{padding-top:0rem!important}}.is-select{appearance:none;-webkit-appearance:none;-moz-appearance:none}.is-select::-ms-expand{display:none}[data-popup-video=youtube-container]{z-index:4}#widget-copilot{z-index:10;position:relative}[fynd-sticky-target]{height:90vh;position:sticky;top:12vh;z-index:2}[fynd-scroll-blocks]{display:none}[fynd-scroll-source]{height:80vh}[fynd-sticky-source]{height:80vh;width:100%;position:absolute;top:0;opacity:0;background-color:transparent}[fynd-scroll-container]{opacity:0}[fynd-sticky-target]{height:80vh;border-radius:1rem;overflow:hidden}[fynd-scroll-column]{padding-left:0rem;padding-right:0rem}.progressive-scroll-image{object-fit:cover}@media (max-width: 991px){[fynd-scroll-container]{opacity:0;display:none}[fynd-scroll-blocks]{display:flex}[fynd-sticky-source]{height:auto;position:static;opacity:1}[fynd-scroll-source]{height:auto}}[contact-form-popup=open]{z-index:100000000000}.fynd-bg-video>video{position:static!important}button#fynd-schema-copy-btn{display:none!important}@media (max-width: 768px){#widget-copilot{z-index:1000000000000!important}}[card-blur=black]{backdrop-filter:blur(25px) brightness(.8);-webkit-backdrop-filter:blur(25px) brightness(.9);mask-image:linear-gradient(to top,#0000 35%,#000 70%);-webkit-mask-image:linear-gradient(to top,rgba(0,0,0,0) 35%,rgba(0,0,0,1) 70%)}[card-blur=white]{backdrop-filter:blur(25px) brightness(1);-webkit-backdrop-filter:blur(25px) brightness(.9);mask-image:linear-gradient(to top,#0000 35%,#000 70%);-webkit-mask-image:linear-gradient(to top,rgba(0,0,0,0) 35%,rgba(0,0,0,1) 70%)}[media-card-padding="24"]{padding:24px}@media (max-width: 600px){[media-card-padding="24"]{padding:20px}}[media-card-padding="20"]{padding:20px}@media (max-width: 600px){[media-card-padding="20"]{padding:20px}}