-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome2.html
1397 lines (1384 loc) · 115 KB
/
home2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 8 ]><html class="ie" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<!--<![endif]-->
<!-- Mirrored from themesflat.com/html/binaboxhtml/home2.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 03 Nov 2022 06:47:40 GMT -->
<head>
<meta charset="utf-8">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<title>Your Organization Name</title>
<meta name="author" content="themesflat.com">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<link rel="shortcut icon" href="assets/icon/Favicon.png">
<link rel="apple-touch-icon-precomposed" href="assets/icon/Favicon.png">
</head>
<body class="body header-fixed counter-scroll home-2">
<div class="preload preload-container">
<div class="preload-logo"></div>
</div>
<div id="wrapper" class="wrapper-style">
<div id="page" class="clearfix">
<header class="header">
<div class="tf-container">
<div class="row">
<div class="col-md-12">
<div id="site-header-inner">
<div id="site-logo" class="clearfix">
<div id="site-logo-inner">
<a href="index-2.html" rel="home" class="main-logo">
<h2 class="text-white">Your Logo</h2>
</a>
</div>
</div>
<div class="header-center">
<nav id="main-nav" class="main-nav">
<ul id="menu-primary-menu" class="menu">
<li class="menu-item menu-item-has-children current-menu-item">
<a href="#">HOME</a>
<ul class="sub-menu">
<li class="menu-item "><a href="index-2.html">HOME 1</a></li>
<li class="menu-item current-item"><a href="home2.html">HOME 2</a></li>
<li class="menu-item"><a href="home3.html">HOME 3</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">ABOUT</a>
<ul class="sub-menu">
<li class="menu-item"><a href="about1.html">ABOUT 1</a></li>
<li class="menu-item"><a href="about2.html">ABOUT 2</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">ROAD MAP</a>
<ul class="sub-menu">
<li class="menu-item"><a href="roadmap-1.html">ROAD MAP 1</a></li>
<li class="menu-item"><a href="roadmap-2.html">ROAD MAP 2</a></li>
<li class="menu-item"><a href="roadmap-3.html">ROAD MAP 3</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">PAGES</a>
<ul class="sub-menu">
<li class="menu-item"><a href="sign-in.html">SIGN IN</a></li>
<li class="menu-item"><a href="sign-up.html">SIGN UP</a></li>
<li class="menu-item"><a href="faq1.html">FAQ 1</a></li>
<li class="menu-item"><a href="faq2.html">FAQ 2</a></li>
<li class="menu-item"><a href="team.html">OUR TEAM</a></li>
<li class="menu-item"><a href="collection.html">COLLECTION</a></li>
<li class="menu-item"><a href="testimonial.html">TESTIMONIAL</a></li>
<li class="menu-item"><a href="item-detail.html">ITEM DETAILS</a></li>
<li class="menu-item"><a href="comming-soon.html">COMMING SOON</a></li>
<li class="menu-item"><a href="404.html">404 PAGE</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">BLOG</a>
<ul class="sub-menu">
<li class="menu-item "><a href="blog.html">BLOG</a></li>
<li class="menu-item "><a href="blog-details.html">BLOG DETAILS</a></li>
</ul>
</li>
<li class="menu-item">
<a href="contact.html">CONTACT</a>
</li>
</ul>
</nav>
</div>
<div class="header-right">
<a href="#" onclick="switchTheme()" class="mode-switch">
<img id="img-mode" src="assets/images/icon/sun.png" alt="Image">
</a>
<a href="contact.html" class="tf-button discord"><i class="icon-fl-vt"></i><span>DISCORD</span></a>
<a href="#" class="tf-button connect" data-toggle="modal" data-target="#popup_bid"> <i class="icon-fl-wallet"></i><span>CONNECT</span></a>
</div>
<div class="mobile-button"><span></span></div>
</div>
</div>
</div>
</div>
</header>
<section class="tf-slider home2">
<div class="swiper-container slider-home-2 ">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="slider-item">
<div class="tf-slider-item style-2">
<div class="overlay"><img src="assets/images/slider/bg-slider-2.jpg" alt="image"></div>
<div class="content-inner">
<h1 class="heading">EXPLORE NFT COLLECTION
</h1>
<p class="sub-heading">We are the best way to check the rarity of NFT collection</p>
<div class="btn-slider ">
<a href="explore-banner.html" class="tf-button ">CONNECT WALLET</a>
<a href="add-NFT.html" class="tf-button style-2">WHITELIST NOW</a>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="slider-item">
<div class="tf-slider-item style-2">
<div class="overlay"><img src="assets/images/slider/bg-slider-3.jpg" alt="image"></div>
<div class="content-inner">
<h1 class="heading">EXPLORE NFT COLLECTION
</h1>
<p class="sub-heading">We are the best way to check the rarity of NFT collection</p>
<div class="btn-slider ">
<a href="explore-banner.html" class="tf-button ">CONNECT WALLET</a>
<a href="add-NFT.html" class="tf-button style-2">WHITELIST NOW</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="tf-section section-work">
<div class="tf-container">
<div class="row">
<div class="col-md-12 ">
<div class="tf-heading mb60 wow fadeInUp">
<h2 class="heading">HOW TO <span> BINABOX </span>WORK</h2>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 ">
<div class="tf-work style-2 wow fadeInUp" data-wow-delay="0.2s">
<div class="image">
<img id="work-5" src="assets/images/svg/work-5.svg" alt="Image">
</div>
<h5 class="step">STEP 1</h5>
<h4 class="title"><a href="#">Connect Your Wallet</a></h4>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 ">
<div class="tf-work style-2 wow fadeInUp" data-wow-delay="0.3s">
<div class="image">
<img id="work-6" src="assets/images/svg/work-6.svg" alt="Image">
</div>
<h5 class="step">STEP 2</h5>
<h4 class="title"><a href="#">Sellect Your Quaility</a></h4>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 ">
<div class="tf-work style-2 wow fadeInUp" data-wow-delay="0.4s">
<div class="image">
<img id="work-7" src="assets/images/svg/work-7.svg" alt="Image">
</div>
<h5 class="step">STEP 3</h5>
<h4 class="title"><a href="#">Confiem the Transaction</a></h4>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 ">
<div class="tf-work style-2 mb30 wow fadeInUp" data-wow-delay="0.5s">
<div class="image">
<img id="work-8" src="assets/images/svg/work-8.svg" alt="Image">
</div>
<h5 class="step">STEP 4</h5>
<h4 class="title"><a href="#">Receive Your NFTs</a></h4>
</div>
</div>
</div>
</div>
</section>
<section class="tf-section tf-about style-2">
<div class="icon">
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_2337_5328)">
<path d="M88.0594 196L88.0594 142.485L50.2119 180.333L27.6674 157.788L65.5149 119.941L12 119.941L12 88.0594L65.5149 88.0594L27.6674 50.2119L50.2119 27.6673L88.0594 65.5148L88.0594 12L119.941 12L119.941 65.5149L157.788 27.6673L180.333 50.2119L142.485 88.0594L196 88.0594L196 119.941L142.485 119.941L180.333 157.788L157.788 180.333L119.941 142.485L119.941 196L88.0594 196Z" fill="url(#paint0_linear_2337_5328)" />
</g>
<defs>
<filter id="filter0_f_2337_5328" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2337_5328" />
</filter>
<linearGradient id="paint0_linear_2337_5328" x1="196" y1="104" x2="12" y2="104" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="var(--primary-color35)" />
<stop offset="1" stop-color="var(--primary-color35)" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<div class="icon-2">
<svg width="302" height="302" viewBox="0 0 302 302" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_2337_5282)">
<path d="M234.678 38.4808L198.329 110.138L274.714 85.1672L289.589 130.668L213.203 155.638L284.86 191.988L263.205 234.677L191.548 198.328L216.518 274.713L171.018 289.588L146.047 213.202L109.698 284.859L67.0084 263.204L103.358 191.547L26.9721 216.517L12.0979 171.017L88.4837 146.046L16.8268 109.697L38.4818 67.0074L110.139 103.357L85.1682 26.9711L130.669 12.0969L155.639 88.4827L191.989 16.8258L234.678 38.4808Z" fill="url(#paint0_linear_2337_5282)" />
</g>
<defs>
<filter id="filter0_f_2337_5282" x="0.0976562" y="0.0966797" width="301.49" height="301.491" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2337_5282" />
</filter>
<linearGradient id="paint0_linear_2337_5282" x1="27.6543" y1="88.352" x2="274.032" y2="213.333" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="var(--primary-color35)" />
<stop offset="1" stop-color="var(--primary-color35)" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<div class="tf-container">
<div class="row ">
<div class="col-xl-6 col-lg-5 col-md-12 ">
<div class="tf-heading style-2 wow fadeInUp">
<h2 class="heading">THE STORY</h2>
<p class="sub-heading">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occae cat cupidatat non proident, sunt in culpa qui officia dese runt mollit anim id est laborum velit esse cillum dolore eu fugiat nulla pariatu epteur sint occaecat</p>
</div>
<div class="counter-wrap">
<div class="tf-counter wow fadeInUp">
<h6>Total Iteam</h6>
<div class="content">
<span class="counter-number" data-to="2240" data-speed="2000">2240</span>+
</div>
</div>
<div class="tf-counter wow fadeInUp">
<h6>Profiles Whitelisted</h6>
<div class="content">
<span class="counter-number" data-to="1000" data-speed="2000">1000</span>+
</div>
</div>
</div>
<a href="about1.html" class="tf-button style-2 wow fadeInUp">READ MORE</a>
</div>
<div class="col-xl-6 col-lg-7 col-md-12">
<div class="row">
<div class="col-md-6">
<div class="tf-step wow fadeInUp" data-wow-delay="0.2s">
<div class="step-title">
<div class="sub-number">
01
</div>
<h3>high quaility</h3>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
</div>
</div>
<div class="col-md-6">
<div class="tf-step wow fadeInUp" data-wow-delay="0.3s">
<div class="step-title">
<div class="sub-number">
02
</div>
<h3>BIG COLLECTION</h3>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
</div>
</div>
<div class="col-md-6">
<div class="tf-step wow fadeInUp" data-wow-delay="0.4s">
<div class="step-title">
<div class="sub-number">
03
</div>
<h3>TOP RESOURCE</h3>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
</div>
</div>
<div class="col-md-6">
<div class="tf-step wow fadeInUp" data-wow-delay="0.5s">
<div class="step-title">
<div class="sub-number">
04
</div>
<h3>BIG COMMUNITY</h3>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class=" tf-collection wow fadeInUp">
<div class="tf-container">
<div class="row">
<div class="col-md-12">
<div class="tf-heading style-2 mb60 ">
<h2 class="heading">HOT COLLECTION</h2>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product ">
<div class="image">
<img src="assets/images/product/product12.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKISIRS #02</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product active">
<div class="image">
<img src="assets/images/product/product13.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKELATON #01</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product">
<div class="image">
<img src="assets/images/product/product14.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKISIRS #02</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product">
<div class="image">
<img src="assets/images/product/product15.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKISIRS #02</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product">
<div class="image">
<img src="assets/images/product/product16.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKISIRS #02</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product">
<div class="image">
<img src="assets/images/product/product17.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKELATON #01</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product">
<div class="image">
<img src="assets/images/product/product18.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKISIRS #02</a></h6>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="tf-product">
<div class="image">
<img src="assets/images/product/product19.jpg" alt="Image">
</div>
<h6 class="name"><a href="item-detail.html">SKISIRS #02</a></h6>
</div>
</div>
</div>
</div>
</section>
<section class="tf-section section-roadmap2 ">
<div class="tf-heading mb87 wow fadeInUp">
<h2 class="heading">ROAD MAP</h2>
</div>
<div class="shape1">
<svg xmlns="http://www.w3.org/2000/svg" width="367" height="383" viewBox="0 0 367 383" fill="none">
<g opacity="0.2" filter="url(#filter0_f_2706_4929)">
<path d="M323.437 313.468L237.275 257.43L258.579 357.999L198.674 370.69L177.369 270.12L121.33 356.283L69.9995 322.898L126.038 236.736L25.4685 258.041L12.7778 198.135L113.347 176.83L27.1845 120.792L60.569 69.4609L146.732 125.499L125.427 24.9298L185.332 12.2392L206.637 112.808L262.676 26.6459L314.007 60.0304L257.968 146.193L358.538 124.888L371.228 184.794L270.659 206.099L356.822 262.137L323.437 313.468Z" fill="url(#paint0_linear_2706_4929)" />
</g>
<defs>
<filter id="filter0_f_2706_4929" x="0.777344" y="0.238281" width="382.451" height="382.451" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2706_4929" />
</filter>
<linearGradient id="paint0_linear_2706_4929" x1="288.341" y1="43.3381" x2="95.6649" y2="339.591" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#1D2328" />
<stop offset="1" stop-color="#1D2328" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<div class="shape2">
<svg xmlns="http://www.w3.org/2000/svg" width="321" height="322" viewBox="0 0 321 322" fill="none">
<g opacity="0.2" filter="url(#filter0_f_2706_4928)">
<path d="M269.213 262.019L197.968 215.683L215.584 298.84L166.05 309.333L148.434 226.176L102.098 297.421L59.6544 269.817L105.99 198.572L22.8334 216.188L12.3399 166.654L95.4969 149.038L24.2523 102.702L51.8567 60.2583L123.101 106.594L105.485 23.4373L155.019 12.9439L172.635 96.1009L218.971 24.8562L261.415 52.4606L215.079 123.705L298.236 106.089L308.729 155.623L225.572 173.239L296.817 219.575L269.213 262.019Z" fill="url(#paint0_linear_2706_4928)" />
</g>
<defs>
<filter id="filter0_f_2706_4928" x="0.339844" y="0.943359" width="320.389" height="320.391" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2706_4928" />
</filter>
<linearGradient id="paint0_linear_2706_4928" x1="240.193" y1="38.6584" x2="80.8762" y2="283.619" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#1D2328" />
<stop offset="1" stop-color="#1D2328" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tf-roadmap style2">
<div class="roadmap-box-2 left active wow fadeInLeft" data-wow-duration="1.5s">
<div class="content">
<h4 class="title">PHASE 1</h4>
<ul class="list-infor">
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6034)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6033)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6033)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6033" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6033" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6035">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Befriending & Chat Functions
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6035)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6034)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6034)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6034" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6034" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6036">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Challenging Feature
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6036)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6035)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6035)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6035" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6035" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6037">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Corsair Wheel
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6037)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6036)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6036)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6036" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6036" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6038">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Mobile Version Launch
</li>
</ul>
</div>
<span></span>
<div class="shape-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="176" height="60" viewBox="0 0 176 60" fill="none">
<path opacity="0.7" d="M0 30L136 30" stroke="var(--primary-color13)" stroke-width="2" stroke-dasharray="6 6" />
<circle cx="146" cy="30" r="30" transform="rotate(90 146 30)" fill="#21E786" fill-opacity="0.2" />
<circle cx="146" cy="30" r="15" transform="rotate(90 146 30)" fill="#21E786" />
</svg>
</div>
</div>
<div class="roadmap-box-2 right wow fadeInRight" data-wow-duration="1.5s">
<span></span>
<div class="content">
<h4 class="title">PHASE 2</h4>
<ul class="list-infor">
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6038)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6037)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6037)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6037" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6037" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6039">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Befriending & Chat Functions
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6039)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6038)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6038)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6038" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6038" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6040">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Challenging Feature
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6040)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6039)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6039)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6039" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6039" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6041">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Corsair Wheel
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6041)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6040)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6040)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6040" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6040" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6032">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Mobile Version Launch
</li>
</ul>
</div>
<div class="shape-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="176" height="60" viewBox="0 0 176 60" fill="none">
<path opacity="0.7" d="M176 30L40 30" stroke="var(--primary-color13)" stroke-width="2" stroke-dasharray="6 6" />
<circle cx="30" cy="30" r="30" transform="rotate(-90 30 30)" fill="#21E786" fill-opacity="0.2" />
<circle cx="30" cy="30" r="15" transform="rotate(-90 30 30)" fill="#21E786" />
</svg>
</div>
</div>
<div class="roadmap-box-2 left wow fadeInLeft" data-wow-duration="1.5s">
<div class="content">
<h4 class="title">PHASE 3</h4>
<ul class="list-infor">
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6032)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6041)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6041)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6041" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6041" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6033">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Befriending & Chat Functions
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6033)">
<path d="M15.8397 9.80787V12.4477C15.8397 12.4781 15.8391 12.5085 15.8373 12.539C15.8367 12.5449 15.8367 12.5515 15.8361 12.5575C15.835 12.5754 15.8338 12.5933 15.832 12.6117C15.8302 12.6296 15.8284 12.6475 15.826 12.6654C15.8242 12.6827 15.8212 12.7 15.8188 12.7167C15.8147 12.7424 15.8105 12.7675 15.8051 12.7931C15.8021 12.8092 15.7986 12.8247 15.795 12.8408C15.7914 12.8546 15.7878 12.8689 15.7842 12.8832C15.7813 12.8963 15.7777 12.9088 15.7735 12.922C15.7574 12.9798 15.7377 13.0371 15.715 13.0932C15.7103 13.1051 15.7055 13.1176 15.7001 13.1296C15.6864 13.1624 15.6715 13.1946 15.6554 13.2262C15.6476 13.2423 15.6393 13.2578 15.6309 13.2733L15.6303 13.2727L12.6439 11.6107L7.9668 9.00727L11.4842 7.38818L15.7765 9.77327L15.8397 9.80787Z" fill="url(#paint0_linear_2346_6042)" />
<path d="M15.7855 4.88138L14.8752 5.58295L14.0692 6.85006L6.40625 2.58459L9.31811 0.539551L11.078 1.55611H11.0786L14.3036 3.418L14.9712 3.80338C15.3822 4.04082 15.6722 4.43217 15.7855 4.88138Z" fill="url(#paint1_linear_2346_6032)" />
<path d="M11.0789 1.556L0 7.90291V5.30544C0 4.68561 0.3305 4.1129 0.866816 3.80328L7.05265 0.232215C7.58896 -0.0774049 8.24996 -0.0774049 8.78687 0.232215L11.0789 1.556Z" fill="#21E786" />
<path d="M15.8389 5.30552V6.20693L1.52781 14.3316L0.866816 13.9498C0.3305 13.6396 0 13.0675 0 12.4476V11.548L14.3045 3.41797L14.9721 3.80335C15.5084 4.11297 15.8389 4.68568 15.8389 5.30552Z" fill="#21E786" />
<path d="M15.8395 9.73633V12.4477C15.8395 12.4782 15.8389 12.5086 15.8371 12.539C15.8365 12.545 15.8365 12.5515 15.8359 12.5575C15.8347 12.5754 15.8335 12.5933 15.8317 12.6118C15.8299 12.6297 15.8282 12.6476 15.8258 12.6655C15.824 12.6828 15.821 12.7001 15.8186 12.7168C15.8144 12.7424 15.8103 12.7675 15.8049 12.7932C15.8019 12.8093 15.7983 12.8248 15.7947 12.8409C15.7912 12.8546 15.7876 12.8689 15.784 12.8832C15.781 12.8964 15.7774 12.9089 15.7733 12.922C15.7572 12.9799 15.7375 13.0371 15.7148 13.0932C15.71 13.1052 15.7053 13.1177 15.6999 13.1296C15.6862 13.1624 15.6713 13.1946 15.6551 13.2263C15.6474 13.2424 15.639 13.2579 15.6307 13.2734C15.6211 13.2907 15.6116 13.308 15.6015 13.3247C15.5919 13.342 15.5812 13.3587 15.571 13.3754C15.5496 13.4082 15.5275 13.441 15.5042 13.4726C15.4804 13.5049 15.4559 13.5359 15.4308 13.5657C15.4177 13.5812 15.4046 13.5961 15.3915 13.6105C15.3783 13.6254 15.3646 13.6397 15.3509 13.654C15.3235 13.6826 15.2948 13.7107 15.265 13.7369C15.2537 13.7477 15.2417 13.7578 15.2298 13.7679C15.2226 13.7739 15.2155 13.7799 15.2083 13.7858C15.194 13.7984 15.1791 13.8103 15.1636 13.8216C15.1487 13.8336 15.1337 13.8449 15.1176 13.8556C15.0878 13.8777 15.0568 13.8986 15.0252 13.9183C15.0079 13.929 14.9906 13.9398 14.9727 13.9499L8.78744 17.521C8.25052 17.8306 7.58952 17.8306 7.05321 17.521L4.79102 16.2151L12.6437 11.6107L15.7762 9.77332L15.8395 9.73633Z" fill="#21E786" />
<path d="M3.11051 2.5083V15.2451L1.52781 14.3317L0.866816 13.9499C0.3305 13.6397 0 13.0676 0 12.4477V5.30562C0 4.68578 0.3305 4.11307 0.866816 3.80345L3.11051 2.5083Z" fill="#21E786" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6042" x1="15.3625" y1="11.7527" x2="9.009" y2="7.39772" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6032" x1="14.3168" y1="5.72732" x2="8.55987" y2="1.99876" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#00FFA3" />
<stop offset="1" stop-color="#00FFA3" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6034">
<rect width="16" height="17.7778" fill="white" />
</clipPath>
</defs>
</svg></div>
Challenging Feature
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6147)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6145)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6146)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6145" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6147" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6148">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Corsair Wheel
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6148)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6146)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6147)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6146" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6148" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6149">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Mobile Version Launch
</li>
</ul>
</div>
<span></span>
<div class="shape-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="176" height="60" viewBox="0 0 176 60" fill="none">
<path opacity="0.7" d="M0 30L136 30" stroke="var(--primary-color13)" stroke-width="2" stroke-dasharray="6 6" />
<circle cx="146" cy="30" r="30" transform="rotate(90 146 30)" fill="#21E786" fill-opacity="0.2" />
<circle cx="146" cy="30" r="15" transform="rotate(90 146 30)" fill="#21E786" />
</svg>
</div>
</div>
<div class="roadmap-box-2 right wow fadeInRight" data-wow-duration="1.5s">
<div class="content">
<h4 class="title">PHASE 4</h4>
<ul class="list-infor">
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6149)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6147)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6148)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6147" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6149" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6158">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Befriending & Chat Functions
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6158)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6148)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6149)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6148" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6150" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6150">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Challenging Feature
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6150)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6149)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6150)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6149" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6151" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6151">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Corsair Wheel
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6151)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6150)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6151)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6150" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6152" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6152">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Mobile Version Launch
</li>
</ul>
</div>
<div class="shape-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="176" height="60" viewBox="0 0 176 60" fill="none">
<path opacity="0.7" d="M176 30L40 30" stroke="var(--primary-color13)" stroke-width="2" stroke-dasharray="6 6" />
<circle cx="30" cy="30" r="30" transform="rotate(-90 30 30)" fill="#767676" fill-opacity="0.2" />
<circle cx="30" cy="30" r="15" transform="rotate(-90 30 30)" fill="#888B8E" />
</svg>
</div>
</div>
<div class="roadmap-box-2 left wow fadeInLeft" data-wow-duration="1.5s">
<span></span>
<div class="content">
<h4 class="title">PHASE 5</h4>
<ul class="list-infor">
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6152)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6151)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6152)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6151" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6153" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6153">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Befriending & Chat Functions
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6153)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6152)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6153)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6152" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6154" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6154">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Challenging Feature
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6154)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6153)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6154)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6153" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6155" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6155">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Corsair Wheel
</li>
<li>
<div class="icon"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="18" viewBox="0 0 16 18" fill="none">
<g clip-path="url(#clip0_2346_6155)">
<path d="M15.8397 9.9192V12.559C15.8397 12.5894 15.8391 12.6199 15.8373 12.6503C15.8367 12.6563 15.8367 12.6628 15.8361 12.6688C15.835 12.6867 15.8338 12.7046 15.832 12.7231C15.8302 12.741 15.8284 12.7589 15.826 12.7768C15.8242 12.7941 15.8212 12.8114 15.8188 12.8281C15.8147 12.8537 15.8105 12.8788 15.8051 12.9044C15.8021 12.9205 15.7986 12.9361 15.795 12.9522C15.7914 12.9659 15.7878 12.9802 15.7842 12.9945C15.7813 13.0076 15.7777 13.0202 15.7735 13.0333C15.7574 13.0912 15.7377 13.1484 15.715 13.2045C15.7103 13.2164 15.7055 13.229 15.7001 13.2409C15.6864 13.2737 15.6715 13.3059 15.6554 13.3375C15.6476 13.3537 15.6393 13.3692 15.6309 13.3847L15.6303 13.3841L12.6439 11.722L7.9668 9.1186L11.4842 7.49951L15.7765 9.8846L15.8397 9.9192Z" fill="url(#paint0_linear_2346_6154)" />
<path d="M15.7855 4.99271L14.8752 5.69428L14.0692 6.96139L6.40625 2.69592L9.31811 0.650879L11.078 1.66743H11.0786L14.3036 3.52933L14.9712 3.91471C15.3822 4.15215 15.6722 4.5435 15.7855 4.99271Z" fill="url(#paint1_linear_2346_6155)" />
<path d="M15.8375 9.84766V12.5591C15.8375 12.5895 15.8369 12.6199 15.8351 12.6503C15.8345 12.6563 15.8346 12.6629 15.834 12.6688C15.8328 12.6867 15.8316 12.7046 15.8298 12.7231C15.828 12.741 15.8262 12.7589 15.8238 12.7768C15.822 12.7941 15.819 12.8114 15.8167 12.8281C15.8125 12.8538 15.8083 12.8788 15.8029 12.9045C15.7999 12.9206 15.7964 12.9361 15.7928 12.9522C15.7892 12.9659 15.7856 12.9802 15.7821 12.9946C15.7791 13.0077 15.7755 13.0202 15.7713 13.0333C15.7552 13.0912 15.7355 13.1485 15.7129 13.2046C15.7081 13.2165 15.7033 13.229 15.6979 13.2409C15.6842 13.2738 15.6693 13.306 15.6532 13.3376C15.6454 13.3537 15.6371 13.3692 15.6287 13.3847C15.6192 13.402 15.6096 13.4193 15.5995 13.436C15.59 13.4533 15.5792 13.47 15.5691 13.4867C15.5476 13.5195 15.5255 13.5524 15.5023 13.584C15.4784 13.6162 15.4539 13.6472 15.4289 13.677C15.4158 13.6925 15.4026 13.7075 15.3895 13.7218C15.3764 13.7367 15.3627 13.751 15.3489 13.7653C15.3215 13.794 15.2929 13.822 15.263 13.8483C15.2517 13.859 15.2398 13.8691 15.2278 13.8793C15.2207 13.8852 15.2135 13.8912 15.2064 13.8972C15.192 13.9097 15.1771 13.9216 15.1616 13.933C15.1467 13.9449 15.1318 13.9562 15.1157 13.967C15.0859 13.989 15.0548 14.0099 15.0232 14.0296C15.0059 14.0403 14.9886 14.0511 14.9707 14.0612L8.78548 17.6323C8.24857 17.9419 7.58757 17.9419 7.05125 17.6323L4.78906 16.3264L12.6417 11.7221L15.7743 9.88464L15.8375 9.84766Z" fill="var(--primary-color34)" />
<path d="M11.0789 1.66733L3.11051 6.23228V10.2718L14.3045 3.90967L14.9721 4.29505C15.5084 4.60467 15.8389 5.17738 15.8389 5.79721V6.69863L3.11051 13.9248V15.7368L0.866816 14.4416C0.3305 14.1314 0 13.5593 0 12.9394V5.41677C0 4.79694 0.3305 4.22423 0.866816 3.91461L7.05265 0.343543C7.58896 0.0339232 8.24996 0.0339232 8.78687 0.343543L11.0789 1.66733Z" fill="var(--primary-color34)" />
</g>
<defs>
<linearGradient id="paint0_linear_2346_6154" x1="15.501" y1="12.5" x2="10.501" y2="9.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint1_linear_2346_6156" x1="15.999" y1="6" x2="8.49902" y2="1.5" gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="#606466" />
<stop offset="1" stop-color="#606466" stop-opacity="0" />
</linearGradient>
<clipPath id="clip0_2346_6156">
<rect width="16" height="17.7778" fill="white" transform="translate(0 0.111328)" />
</clipPath>
</defs>
</svg></div>
Mobile Version Launch
</li>
</ul>
</div>
<div class="shape-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="176" height="60" viewBox="0 0 176 60" fill="none">
<path opacity="0.7" d="M0 30L136 30" stroke="var(--primary-color13)" stroke-width="2" stroke-dasharray="6 6" />
<circle cx="146" cy="30" r="30" fill="#767676" fill-opacity="0.2" />
<circle cx="146" cy="30" r="15" fill="#888B8E" />
</svg>
</div>
</div>
<div class="roadmap-box-2 right wow fadeInRight" data-wow-duration="1.5s">