-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
971 lines (832 loc) · 91 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Hype Girles</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@600&display=swap" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="css/swiper.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="sass/style.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link rel="icon" href="images/favicon.png">
<meta name="theme-color" content="#4F0153">
</head>
<body data-spy="scroll" data-target=".fixed-top" id="mint" >
<div id="preloading" style ="
z-index: 99999999999999999;
position: fixed;
width: 100%;
background: #770149; height: 100%;
display: flex; align-items: center;
justify-content: center;
">
<div class="pinwheel">
<div class="pinwheel__line"></div>
<div class="pinwheel__line"></div>
<div class="pinwheel__line"></div>
<div class="pinwheel__line"></div>
<div class="pinwheel__line"></div>
<div class="pinwheel__line"></div>
</div>
</div>
<nav class="navbar navbar-expand-lg fixed-top navbar-dark">
<div class="container p-0 m-0 col-12">
<a class="navbar-brand ml-5 logo-image" href="index.html">
<svg width="176" height="60" viewBox="0 0 176 60" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1290_60)">
<path d="M1.4799 45.19C0.929902 45.19 0.649902 44.94 0.649902 44.44C0.649902 40.98 2.6499 35.5867 6.6499 28.26C6.9399 27.73 7.3899 26.95 7.9999 25.93C7.13812 26.0051 6.29576 26.2284 5.5099 26.59C5.113 26.804 4.68415 26.9526 4.2399 27.03C3.7199 27.03 3.4599 26.78 3.4599 26.28C3.4599 25.52 5.26324 24.8533 8.8699 24.28C9.3699 23.43 9.9899 22.37 10.7499 21.11L13.5399 16.67C14.3266 15.41 14.9932 14.31 15.5399 13.37C16.0395 12.5146 16.4934 11.6334 16.8999 10.73C16.9326 10.6057 17.0049 10.4954 17.106 10.416C17.2071 10.3365 17.3314 10.2923 17.4599 10.29C18.0199 10.29 18.2899 10.58 18.2899 11.17C18.052 11.9021 17.7155 12.5985 17.2899 13.24C16.6499 14.44 15.5499 16.16 14.0999 18.54L10.6499 24.12C11.7499 24 12.9199 23.92 14.1399 23.86C15.3599 23.8 16.6199 23.77 17.8999 23.77C20.4599 23.77 25.1599 23.99 31.9999 24.43C32.5799 23.17 33.1899 21.94 33.8299 20.74C34.4999 19.5 35.1999 18.29 35.9299 17.08C36.7436 15.6315 37.6522 14.2385 38.6499 12.91C39.1578 12.1809 39.7447 11.5102 40.3999 10.91C40.6493 10.6712 40.9678 10.5172 41.3099 10.47C41.7499 10.47 41.9699 10.7 41.9699 11.17C41.9633 11.2981 41.924 11.4223 41.8557 11.5308C41.7875 11.6394 41.6925 11.7286 41.5799 11.79C40.8424 12.3896 40.1928 13.0898 39.6499 13.87C38.724 15.1236 37.8757 16.4327 37.1099 17.79C35.7199 20.16 34.5199 22.42 33.5299 24.56C34.5499 24.56 35.0599 24.81 35.0599 25.31C35.0621 25.4088 35.0437 25.5069 35.0058 25.5982C34.9679 25.6895 34.9114 25.7718 34.8399 25.84C34.7514 25.9156 34.647 25.9702 34.5344 25.9996C34.4218 26.0291 34.3041 26.0326 34.1899 26.01L32.8799 25.93C29.9666 32.5233 28.5099 37.0267 28.5099 39.44V40.44C28.5099 40.79 28.2599 40.97 27.7599 40.97C27.2599 40.97 27.0699 40.44 27.0699 39.44C27.0699 36.86 28.4966 32.3133 31.3499 25.8C27.7899 25.6 24.8699 25.45 22.5699 25.36C20.2699 25.27 18.6499 25.22 17.6499 25.22C15.0378 25.2055 12.4269 25.339 9.8299 25.62L7.9499 28.92C6.68893 31.1349 5.56677 33.426 4.5899 35.78C3.7699 37.78 3.2199 39.27 2.9299 40.26C2.64324 41.4133 2.45324 42.2933 2.3599 42.9C2.2799 43.52 2.1999 44.09 2.1399 44.62C2.0799 45.15 1.8899 45.19 1.4799 45.19Z" fill="url(#paint0_linear_1290_60)"/>
<path d="M35.6502 55.44C33.8802 55.44 32.9902 54.38 32.9902 52.27C32.9907 50.478 33.3797 48.7073 34.1302 47.08C34.1608 46.9619 34.2272 46.8562 34.3203 46.7774C34.4134 46.6986 34.5287 46.6506 34.6502 46.64C35.1802 46.64 35.4402 46.88 35.4402 47.35C35.4316 47.5048 35.3871 47.6554 35.3102 47.79C35.2502 47.99 35.1802 48.21 35.0902 48.45C34.8979 49.0243 34.7508 49.6128 34.6502 50.21C34.5312 50.8463 34.4743 51.4927 34.4802 52.14C34.428 52.6716 34.5323 53.2069 34.7802 53.68C34.8724 53.8029 34.9915 53.9028 35.1285 53.9722C35.2655 54.0416 35.4167 54.0785 35.5702 54.08C36.5413 53.9935 37.4659 53.6251 38.2302 53.02C39.4926 52.1026 40.5856 50.9724 41.4602 49.68C42.3455 48.4348 43.1634 47.1429 43.9102 45.81C44.7502 44.31 45.6502 42.6 46.6102 40.66C47.8902 38.11 49.0702 35.51 50.1502 32.88C49.4202 33.81 48.6702 34.72 47.8802 35.6C47.0921 36.4781 46.247 37.3032 45.3502 38.07C42.9302 40.15 40.9302 41.19 39.3502 41.19C37.4302 41.19 36.4702 40.07 36.4702 37.85C36.497 36.882 36.6448 35.9212 36.9102 34.99C37.2302 33.87 37.6602 32.6 38.2202 31.16C38.2921 30.9777 38.3359 30.7855 38.3502 30.59C38.3504 30.4055 38.395 30.2237 38.4802 30.06C39.0882 28.8155 39.8656 27.6612 40.7902 26.63C41.0302 26.37 41.2302 26.23 41.4002 26.23C41.8402 26.23 42.0602 26.56 42.0602 27.23C39.2002 31.37 37.7669 34.91 37.7602 37.85C37.7602 39.08 38.2402 39.69 39.2002 39.69C40.1602 39.69 41.7802 38.95 43.7002 37.45C45.0779 36.3877 46.3504 35.1956 47.5002 33.89C48.6442 32.5701 49.6967 31.1735 50.6502 29.71C51.2029 28.8863 51.7135 28.0352 52.1802 27.16C52.4637 26.6652 52.711 26.1505 52.9202 25.62C53.0702 25.18 53.2702 24.96 53.5402 24.96C54.0902 24.96 54.3702 25.19 54.3702 25.66C54.3165 26.1014 54.1986 26.5326 54.0202 26.94C53.8102 27.52 53.5502 28.23 53.2302 29.05C52.7602 30.25 52.1002 31.86 51.2302 33.89C50.3602 35.92 49.2302 38.31 47.9602 41.1C46.6133 44.0678 45.0035 46.9091 43.1502 49.59C42.0793 51.1618 40.7858 52.5699 39.3102 53.77C38.312 54.7212 37.023 55.3094 35.6502 55.44V55.44Z" fill="url(#paint1_linear_1290_60)"/>
<path d="M52.2602 53.02C50.8902 53.02 50.2002 52.02 50.2002 50.07C50.2002 47.49 51.3235 43.3867 53.5702 37.76C53.9402 36.82 54.4002 35.84 54.9202 34.76C55.4402 33.68 56.0502 32.65 56.7502 31.51C57.4502 30.37 58.1702 29.2 58.8102 28.29C59.4502 27.38 60.0602 26.65 60.5502 26.1C60.6782 25.9588 60.8265 25.8375 60.9902 25.74C61.1003 25.6901 61.2193 25.6629 61.3402 25.66C62.2342 25.6938 63.1105 25.9189 63.9102 26.32C64.8495 26.7433 65.7194 27.3063 66.4902 27.99C67.1917 28.5731 67.7697 29.2905 68.1902 30.1C68.6201 30.8814 68.847 31.7582 68.8502 32.65C68.8452 33.3351 68.713 34.0132 68.4602 34.65C68.1961 35.3269 67.8609 35.9739 67.4602 36.58C68.4202 36.3698 69.3483 36.0335 70.2202 35.58C71.4832 34.9664 72.6409 34.1563 73.6502 33.18C73.7146 33.1208 73.7904 33.0753 73.8729 33.046C73.9553 33.0168 74.0429 33.0046 74.1302 33.01C74.5702 33.01 74.7802 33.18 74.7802 33.54C74.7581 33.7444 74.686 33.9402 74.5702 34.11C74.3811 34.3977 74.1596 34.6627 73.9102 34.9C71.7773 36.881 69.0412 38.0889 66.1402 38.33C65.6708 38.8123 65.1733 39.2665 64.6502 39.69C64.1463 40.1036 63.6187 40.4876 63.0702 40.84C61.7921 41.727 60.3012 42.2585 58.7502 42.38C58.524 42.3875 58.2987 42.3478 58.0886 42.2635C57.8786 42.1791 57.6884 42.0519 57.5302 41.89C57.3797 41.7488 57.2596 41.5785 57.177 41.3894C57.0945 41.2003 57.0514 40.9963 57.0502 40.79C57.0502 39.44 58.2102 38.42 60.5402 37.71C61.3902 37.48 62.2302 37.27 63.0702 37.1C63.9102 36.93 64.7502 36.73 65.5602 36.53C66.0639 35.7822 66.4894 34.9847 66.8302 34.15C67.0911 33.6151 67.244 33.034 67.2802 32.44C67.2802 30.88 66.1302 29.3967 63.8302 27.99C63.1926 27.5264 62.4368 27.2525 61.6502 27.2C58.8343 30.5248 56.5505 34.2659 54.8802 38.29C52.7269 43.1833 51.6502 47.0367 51.6502 49.85C51.6175 50.3141 51.6787 50.7801 51.8302 51.22C51.8845 51.3333 51.9718 51.4274 52.0808 51.4899C52.1897 51.5524 52.315 51.5803 52.4402 51.57C52.5131 51.5813 52.5873 51.5813 52.6602 51.57H52.8302C53.2102 51.57 53.4002 51.8 53.4002 52.27C53.4002 52.74 52.9802 53.02 52.2602 53.02ZM59.0702 41.02C60.1369 41.02 61.6935 40.17 63.7402 38.47C63.2702 38.53 62.8202 38.6 62.3902 38.69C61.9602 38.78 61.3902 38.94 60.6002 39.17C59.2902 39.55 58.6002 40.04 58.6002 40.62C58.6502 40.84 58.7802 40.97 59.0702 40.97V41.02Z" fill="url(#paint2_linear_1290_60)"/>
<path d="M76.7199 41.67C76.1776 41.7004 75.6355 41.6052 75.136 41.3919C74.6365 41.1785 74.1929 40.8528 73.8399 40.44C73.1456 39.5484 72.7911 38.439 72.8399 37.31C72.9079 34.9862 73.6325 32.7291 74.9299 30.8C75.3253 30.1711 75.763 29.5697 76.2399 29C76.7428 28.3802 77.2838 27.7924 77.8599 27.24C78.6863 26.4263 79.61 25.7176 80.6099 25.13C81.4512 24.6044 82.4182 24.3143 83.4099 24.29C84.8899 24.29 85.6299 25 85.6299 26.41C85.6299 28.1633 84.6132 29.76 82.5799 31.2C80.9549 32.3958 79.0062 33.072 76.9899 33.14C76.6968 33.1564 76.403 33.1564 76.1099 33.14L75.4599 32.97C75.1201 33.6271 74.8487 34.3174 74.6499 35.03C74.4378 35.7757 74.3202 36.545 74.2999 37.32C74.2999 39.25 75.1499 40.22 76.8299 40.22C78.1587 40.2293 79.4777 39.992 80.7199 39.52C82.2944 38.7972 83.7643 37.8655 85.0899 36.75C86.0899 35.93 86.9199 35.27 87.4399 34.75L89.1499 33.16C89.2902 33.0583 89.4569 32.9993 89.6299 32.99C89.7857 32.9922 89.9379 33.0372 90.0699 33.12C90.1378 33.1615 90.1932 33.2206 90.2301 33.291C90.2671 33.3614 90.2843 33.4406 90.2799 33.52C90.2799 33.84 89.9899 34.29 89.4099 34.88L87.8099 36.44C87.2599 36.94 86.3799 37.65 85.1899 38.56C83.9199 39.5453 82.5069 40.331 80.9999 40.89C79.6292 41.3962 78.181 41.6601 76.7199 41.67V41.67ZM76.7199 31.67C77.6282 31.6728 78.5305 31.5241 79.3899 31.23C80.2484 30.9235 81.0571 30.4922 81.7899 29.95C83.4765 28.69 84.3199 27.5033 84.3199 26.39C84.3199 25.89 84.0199 25.64 83.4099 25.64C82.2399 25.64 80.8899 26.36 79.3399 27.8C78.6798 28.4067 78.0554 29.0511 77.4699 29.73C76.9846 30.3108 76.5466 30.9294 76.1599 31.58C76.3168 31.6409 76.482 31.6779 76.6499 31.69L76.7199 31.67Z" fill="url(#paint3_linear_1290_60)"/>
<path d="M100.97 42.77C98.7764 42.8126 96.6059 42.3146 94.6502 41.32C92.8569 40.3862 91.3606 38.9695 90.3302 37.23C89.2556 35.3434 88.713 33.2006 88.7602 31.03C88.7332 28.6742 89.2391 26.3427 90.2402 24.21C91.2934 22.0768 92.7464 20.1655 94.5202 18.58C99.6476 13.8058 106.425 11.2037 113.43 11.32C114.94 11.3142 116.438 11.5994 117.84 12.16C119.189 12.6354 120.391 13.4519 121.33 14.53C122.22 15.5691 122.691 16.9026 122.65 18.27C122.675 19.3971 122.283 20.4937 121.55 21.35C121.29 21.6835 120.999 21.9916 120.68 22.27C120.425 22.5656 120.068 22.7547 119.68 22.8C119.425 22.7921 119.179 22.7008 118.98 22.54C118.881 22.4672 118.799 22.3743 118.739 22.2674C118.679 22.1606 118.641 22.0422 118.63 21.92C118.645 21.8225 118.68 21.7292 118.733 21.6464C118.787 21.5636 118.857 21.4932 118.94 21.44C119.14 21.23 119.44 20.94 119.85 20.56C120.219 20.2171 120.514 19.8025 120.717 19.3417C120.919 18.8809 121.026 18.3835 121.03 17.88C121.048 17.3179 120.944 16.7586 120.724 16.2407C120.505 15.7227 120.176 15.2585 119.76 14.88C118.883 14.0497 117.815 13.4486 116.65 13.13C115.337 12.7131 113.968 12.5039 112.59 12.51C109.348 12.5191 106.146 13.225 103.2 14.58C100.211 15.9113 97.4978 17.7903 95.2002 20.12C93.7082 21.5895 92.4952 23.3175 91.6202 25.22C90.7779 27.1488 90.3585 29.2356 90.3902 31.34C90.3337 32.9649 90.6771 34.5788 91.3902 36.04C92.0442 37.2466 92.9516 38.2973 94.0502 39.12C95.143 39.9043 96.36 40.4993 97.6502 40.88C98.8717 41.2194 100.132 41.3976 101.4 41.41C102.904 41.3965 104.401 41.2052 105.86 40.84C107.457 40.4567 109.019 39.9416 110.53 39.3C111.968 38.675 113.356 37.9394 114.68 37.1C115.116 36.8123 115.537 36.5019 115.94 36.17C116.202 35.9864 116.45 35.7824 116.68 35.56L117.99 33.32C118.34 32.73 118.77 32 119.26 31.12C119.75 30.24 120.32 29.21 120.96 28.04C119.817 28.0668 118.679 28.1973 117.56 28.43C116.19 28.7 114.76 29.03 113.28 29.43C112.38 29.67 111.47 29.95 110.57 30.27C110.035 30.4792 109.478 30.6269 108.91 30.71C108.42 30.71 108.17 30.45 108.17 29.92C108.166 29.8558 108.175 29.7913 108.197 29.7309C108.22 29.6705 108.255 29.6156 108.3 29.57C108.461 29.3996 108.655 29.2636 108.87 29.17C109.689 28.7304 110.55 28.3752 111.44 28.11C112.585 27.7368 113.754 27.4461 114.94 27.24C116.079 27.0047 117.231 26.8411 118.39 26.75C119.494 26.6607 120.603 26.6307 121.71 26.66L121.84 26.4C121.88 26.2699 121.961 26.1564 122.071 26.0769C122.181 25.9974 122.314 25.9564 122.45 25.96C122.651 25.9532 122.846 26.021 123 26.1503C123.153 26.2797 123.253 26.4613 123.28 26.66C124.116 26.7063 124.948 26.8099 125.77 26.97C125.867 26.9764 125.962 27.0019 126.05 27.045C126.137 27.0882 126.215 27.1482 126.279 27.2216C126.343 27.295 126.392 27.3804 126.423 27.4728C126.454 27.5652 126.467 27.6628 126.46 27.76C126.473 27.8488 126.466 27.9395 126.438 28.0249C126.41 28.1103 126.363 28.188 126.3 28.252C126.237 28.316 126.16 28.3645 126.075 28.3936C125.99 28.4228 125.899 28.4318 125.81 28.42C125.4 28.3913 124.992 28.3345 124.59 28.25C123.958 28.125 123.315 28.0647 122.67 28.07C122.03 29.33 120.76 31.58 118.87 34.8C118.49 35.45 118.17 36 117.87 36.47C117.57 36.94 117.4 37.34 117.26 37.66C116.761 38.6149 116.365 39.6207 116.08 40.66C115.99 40.98 115.81 41.14 115.55 41.14C114.97 41.14 114.68 40.88 114.68 40.35C114.781 39.6082 114.986 38.8843 115.29 38.2C113.864 39.112 112.358 39.8919 110.79 40.53C109.147 41.1991 107.455 41.744 105.73 42.16C104.172 42.5466 102.575 42.7513 100.97 42.77V42.77Z" fill="url(#paint4_linear_1290_60)"/>
<path d="M135.17 23.55C135.068 23.5652 134.964 23.5563 134.866 23.5239C134.768 23.4916 134.679 23.4368 134.606 23.3639C134.533 23.291 134.478 23.202 134.446 23.1041C134.414 23.0061 134.405 22.902 134.42 22.8C134.473 22.5197 134.578 22.2517 134.73 22.01C134.941 21.5874 135.174 21.1768 135.43 20.78C135.606 20.4811 135.81 20.1998 136.04 19.94C136.363 19.5366 136.744 19.1828 137.17 18.89C137.413 18.7565 137.683 18.6812 137.96 18.67C138.57 18.67 138.88 18.95 138.88 19.5C138.843 19.7882 138.705 20.0539 138.49 20.25C138.24 20.5275 137.961 20.7788 137.66 21C137.328 21.1803 137.03 21.4172 136.78 21.7L135.78 23.07C135.768 23.2021 135.723 23.3292 135.65 23.44C135.583 23.4931 135.506 23.5305 135.423 23.5495C135.339 23.5685 135.253 23.5687 135.17 23.55ZM127.74 41.36C127.106 41.4111 126.474 41.2415 125.95 40.88C125.767 40.6877 125.627 40.4594 125.537 40.2097C125.448 39.9601 125.411 39.6945 125.43 39.43C125.483 38.5681 125.676 37.7204 126 36.92C126.421 35.7363 126.901 34.5748 127.44 33.44C128.05 32.21 128.69 31.03 129.36 29.92C129.922 28.9575 130.564 28.0443 131.28 27.19C131.92 26.46 132.43 26.09 132.81 26.09C133.19 26.09 133.6 26.33 133.6 26.8C133.467 27.393 133.212 27.9516 132.85 28.44C132.36 29.26 131.85 30.11 131.24 30.99C131 31.31 130.667 31.75 130.24 32.31L129.06 33.89C128.796 34.2104 128.549 34.5441 128.32 34.89C127.921 35.5636 127.612 36.2864 127.4 37.04C127.106 37.7715 126.928 38.5439 126.87 39.33C126.858 39.5172 126.907 39.7033 127.01 39.86C127.226 40.0105 127.49 40.0747 127.75 40.04C128.608 40.002 129.445 39.7585 130.19 39.33C131.157 38.8252 132.077 38.2362 132.94 37.57C133.87 36.84 134.75 36.09 135.56 35.33C136.37 34.57 137.12 33.91 137.7 33.33C137.772 33.2656 137.855 33.2165 137.947 33.1856C138.038 33.1546 138.134 33.1425 138.23 33.15C138.66 33.15 138.88 33.33 138.88 33.68C138.826 34.1115 138.607 34.5055 138.27 34.78C137.49 35.57 136.76 36.28 136.09 36.89C135.42 37.5 134.78 38.05 134.17 38.52C133.174 39.2451 132.121 39.8873 131.02 40.44C130.015 41.0018 128.891 41.3171 127.74 41.36V41.36Z" fill="url(#paint5_linear_1290_60)"/>
<path d="M134.91 41.98C134.44 41.98 134.21 41.79 134.21 41.41C134.215 41.2261 134.259 41.0454 134.34 40.88C134.452 40.7397 134.556 40.5928 134.65 40.44L138.65 32.35C140.337 28.89 141.18 26.97 141.18 26.59C141.167 26.5064 141.173 26.4209 141.199 26.3402C141.224 26.2596 141.269 26.1861 141.328 26.1258C141.388 26.0654 141.46 26.0199 141.541 25.9929C141.621 25.9658 141.706 25.958 141.79 25.97C141.903 25.9549 142.019 25.9663 142.127 26.0033C142.235 26.0404 142.334 26.102 142.414 26.1834C142.494 26.2648 142.555 26.3638 142.591 26.4725C142.626 26.5812 142.636 26.6967 142.62 26.81C142.57 27.2953 142.438 27.7686 142.23 28.21C141.97 28.86 141.63 29.61 141.23 30.46C140.53 31.98 139.94 33.15 139.48 33.97C140.35 32.97 141.24 31.97 142.14 31.07C143.04 30.17 143.96 29.3 144.89 28.48C147.66 26.04 149.78 24.83 151.27 24.83C152.27 24.83 152.8 25.31 152.8 26.28C152.8 27.25 152.49 27.69 151.88 27.69C151.593 27.69 151.373 27.44 151.22 26.94C151.205 26.7906 151.133 26.6527 151.02 26.5542C150.907 26.4557 150.76 26.4041 150.61 26.41C150.12 26.41 149.16 26.95 147.73 28.04C146.04 29.3115 144.449 30.7088 142.97 32.22C141.152 34.1426 139.481 36.1983 137.97 38.37L135.7 41.44C135.599 41.5713 135.481 41.6889 135.35 41.79C135.297 41.8546 135.23 41.9056 135.153 41.9387C135.077 41.9718 134.993 41.9859 134.91 41.98V41.98Z" fill="url(#paint6_linear_1290_60)"/>
<path d="M155.23 42.07C154.655 42.1048 154.079 42.0127 153.543 41.8002C153.007 41.5876 152.525 41.2598 152.13 40.84C151.413 39.8756 151.059 38.6895 151.13 37.49C151.159 36.2735 151.334 35.0649 151.65 33.89C152.436 31.0469 153.474 28.2793 154.75 25.62C155.89 23.24 157.113 20.9067 158.42 18.62C159.73 16.31 161.17 14.03 162.74 11.81C165.25 8.23 166.99 6.44 167.98 6.44C168.62 6.44 168.98 6.62 168.98 6.97C168.98 7.47 168.17 8.71 166.54 10.71L163.39 14.44C160.86 17.4832 158.68 20.8006 156.89 24.33C155.279 27.5703 153.976 30.9553 153 34.44C152.751 35.3291 152.62 36.2469 152.61 37.17C152.61 39.39 153.51 40.51 155.31 40.51C156.015 40.4997 156.705 40.303 157.31 39.94C157.66 39.737 158.024 39.5598 158.4 39.41C158.75 39.41 158.92 39.66 158.92 40.16C158.93 40.3535 158.891 40.5464 158.807 40.7211C158.723 40.8958 158.597 41.0467 158.44 41.16C157.475 41.7558 156.364 42.0709 155.23 42.07V42.07Z" fill="url(#paint7_linear_1290_60)"/>
<path d="M162.39 42.33C160.75 42.33 159.94 41.79 159.94 40.7C159.963 39.9774 160.207 39.2792 160.64 38.7C161.146 38.0147 161.734 37.3935 162.39 36.85C162.963 36.3573 163.591 35.9313 164.26 35.58C164.486 35.4715 164.72 35.3812 164.96 35.31C165.217 35.2362 165.482 35.1926 165.75 35.18C165.98 35.18 166.1 35.27 166.1 35.45C166.1 35.63 165.94 35.75 165.62 35.93C164.417 36.4744 163.343 37.2687 162.47 38.26C161.878 38.8477 161.495 39.6136 161.38 40.44C161.38 40.96 161.83 41.23 162.73 41.23C163.577 41.2108 164.411 41.0168 165.18 40.66C166.088 40.2775 166.939 39.7728 167.71 39.16C168.473 38.5973 169.147 37.9231 169.71 37.16C170.18 36.5945 170.456 35.8938 170.5 35.16C170.5 34.7236 170.344 34.3015 170.06 33.97C169.72 33.5725 169.26 33.2954 168.75 33.18L165.87 32.3C165.272 32.1426 164.729 31.8244 164.3 31.38C163.995 31.023 163.825 30.5698 163.82 30.1C163.832 29.21 164.191 28.3598 164.82 27.73C165.517 26.9993 166.363 26.4264 167.3 26.05C168.214 25.6581 169.196 25.4508 170.19 25.44C171.056 25.42 171.907 25.6641 172.63 26.14C172.943 26.3161 173.203 26.5735 173.383 26.8849C173.562 27.1964 173.655 27.5505 173.65 27.91C173.648 28.3502 173.512 28.7793 173.26 29.14C173.184 29.2999 173.068 29.4369 172.922 29.5371C172.776 29.6372 172.606 29.6969 172.43 29.71C171.93 29.71 171.69 29.5 171.69 29.09C171.707 28.8967 171.78 28.7125 171.9 28.56C172.057 28.3786 172.149 28.1497 172.16 27.91C172.16 27.03 171.5 26.59 170.16 26.59C169.404 26.5956 168.659 26.7591 167.97 27.07C167.31 27.3343 166.716 27.7406 166.23 28.26C165.792 28.6867 165.541 29.2689 165.53 29.88C165.53 30.4733 166.11 30.9433 167.27 31.29L170.07 32.17C170.758 32.3351 171.373 32.7215 171.82 33.27C172.138 33.7049 172.306 34.2312 172.3 34.77C172.3 36.1033 171.497 37.4667 169.89 38.86C167.303 41.1667 164.803 42.3233 162.39 42.33Z" fill="url(#paint8_linear_1290_60)"/>
<path d="M1.4799 45.19C0.929902 45.19 0.649902 44.94 0.649902 44.44C0.649902 40.98 2.6499 35.5867 6.6499 28.26C6.9399 27.73 7.3899 26.95 7.9999 25.93C7.13812 26.0051 6.29576 26.2284 5.5099 26.59C5.113 26.804 4.68415 26.9526 4.2399 27.03C3.7199 27.03 3.4599 26.78 3.4599 26.28C3.4599 25.52 5.26324 24.8533 8.8699 24.28C9.3699 23.43 9.9899 22.37 10.7499 21.11L13.5399 16.67C14.3266 15.41 14.9932 14.31 15.5399 13.37C16.0395 12.5146 16.4934 11.6334 16.8999 10.73C16.9326 10.6057 17.0049 10.4954 17.106 10.416C17.2071 10.3365 17.3314 10.2923 17.4599 10.29C18.0199 10.29 18.2899 10.58 18.2899 11.17C18.052 11.9021 17.7155 12.5985 17.2899 13.24C16.6499 14.44 15.5499 16.16 14.0999 18.54L10.6499 24.12C11.7499 24 12.9199 23.92 14.1399 23.86C15.3599 23.8 16.6199 23.77 17.8999 23.77C20.4599 23.77 25.1599 23.99 31.9999 24.43C32.5799 23.17 33.1899 21.94 33.8299 20.74C34.4999 19.5 35.1999 18.29 35.9299 17.08C36.7436 15.6315 37.6522 14.2385 38.6499 12.91C39.1578 12.1809 39.7447 11.5102 40.3999 10.91C40.6493 10.6712 40.9678 10.5172 41.3099 10.47C41.7499 10.47 41.9699 10.7 41.9699 11.17C41.9633 11.2981 41.924 11.4223 41.8557 11.5308C41.7875 11.6394 41.6925 11.7286 41.5799 11.79C40.8424 12.3896 40.1928 13.0898 39.6499 13.87C38.724 15.1236 37.8757 16.4327 37.1099 17.79C35.7199 20.16 34.5199 22.42 33.5299 24.56C34.5499 24.56 35.0599 24.81 35.0599 25.31C35.0621 25.4088 35.0437 25.5069 35.0058 25.5982C34.9679 25.6895 34.9114 25.7718 34.8399 25.84C34.7514 25.9156 34.647 25.9702 34.5344 25.9996C34.4218 26.0291 34.3041 26.0326 34.1899 26.01L32.8799 25.93C29.9666 32.5233 28.5099 37.0267 28.5099 39.44V40.44C28.5099 40.79 28.2599 40.97 27.7599 40.97C27.2599 40.97 27.0699 40.44 27.0699 39.44C27.0699 36.86 28.4966 32.3133 31.3499 25.8C27.7899 25.6 24.8699 25.45 22.5699 25.36C20.2699 25.27 18.6499 25.22 17.6499 25.22C15.0378 25.2055 12.4269 25.339 9.8299 25.62L7.9499 28.92C6.68893 31.1349 5.56677 33.426 4.5899 35.78C3.7699 37.78 3.2199 39.27 2.9299 40.26C2.64324 41.4133 2.45324 42.2933 2.3599 42.9C2.2799 43.52 2.1999 44.09 2.1399 44.62C2.0799 45.15 1.8899 45.19 1.4799 45.19Z" stroke="url(#paint9_linear_1290_60)" stroke-width="0.6"/>
<path d="M35.6502 55.44C33.8802 55.44 32.9902 54.38 32.9902 52.27C32.9907 50.478 33.3797 48.7073 34.1302 47.08C34.1608 46.9619 34.2272 46.8562 34.3203 46.7774C34.4134 46.6986 34.5287 46.6506 34.6502 46.64C35.1802 46.64 35.4402 46.88 35.4402 47.35C35.4316 47.5048 35.3871 47.6554 35.3102 47.79C35.2502 47.99 35.1802 48.21 35.0902 48.45C34.8979 49.0243 34.7508 49.6128 34.6502 50.21C34.5312 50.8463 34.4743 51.4927 34.4802 52.14C34.428 52.6716 34.5323 53.2069 34.7802 53.68C34.8724 53.8029 34.9915 53.9028 35.1285 53.9722C35.2655 54.0416 35.4167 54.0785 35.5702 54.08C36.5413 53.9935 37.4659 53.6251 38.2302 53.02C39.4926 52.1026 40.5856 50.9724 41.4602 49.68C42.3455 48.4348 43.1634 47.1429 43.9102 45.81C44.7502 44.31 45.6502 42.6 46.6102 40.66C47.8902 38.11 49.0702 35.51 50.1502 32.88C49.4202 33.81 48.6702 34.72 47.8802 35.6C47.0921 36.4781 46.247 37.3032 45.3502 38.07C42.9302 40.15 40.9302 41.19 39.3502 41.19C37.4302 41.19 36.4702 40.07 36.4702 37.85C36.497 36.882 36.6448 35.9212 36.9102 34.99C37.2302 33.87 37.6602 32.6 38.2202 31.16C38.2921 30.9777 38.3359 30.7855 38.3502 30.59C38.3504 30.4055 38.395 30.2237 38.4802 30.06C39.0882 28.8155 39.8656 27.6612 40.7902 26.63C41.0302 26.37 41.2302 26.23 41.4002 26.23C41.8402 26.23 42.0602 26.56 42.0602 27.23C39.2002 31.37 37.7669 34.91 37.7602 37.85C37.7602 39.08 38.2402 39.69 39.2002 39.69C40.1602 39.69 41.7802 38.95 43.7002 37.45C45.0779 36.3877 46.3504 35.1956 47.5002 33.89C48.6442 32.5701 49.6967 31.1735 50.6502 29.71C51.2029 28.8863 51.7135 28.0352 52.1802 27.16C52.4637 26.6652 52.711 26.1505 52.9202 25.62C53.0702 25.18 53.2702 24.96 53.5402 24.96C54.0902 24.96 54.3702 25.19 54.3702 25.66C54.3165 26.1014 54.1986 26.5326 54.0202 26.94C53.8102 27.52 53.5502 28.23 53.2302 29.05C52.7602 30.25 52.1002 31.86 51.2302 33.89C50.3602 35.92 49.2302 38.31 47.9602 41.1C46.6133 44.0678 45.0035 46.9091 43.1502 49.59C42.0793 51.1618 40.7858 52.5699 39.3102 53.77C38.312 54.7212 37.023 55.3094 35.6502 55.44V55.44Z" stroke="url(#paint10_linear_1290_60)" stroke-width="0.6"/>
<path d="M52.2602 53.02C50.8902 53.02 50.2002 52.02 50.2002 50.07C50.2002 47.49 51.3235 43.3867 53.5702 37.76C53.9402 36.82 54.4002 35.84 54.9202 34.76C55.4402 33.68 56.0502 32.65 56.7502 31.51C57.4502 30.37 58.1702 29.2 58.8102 28.29C59.4502 27.38 60.0602 26.65 60.5502 26.1C60.6782 25.9588 60.8265 25.8375 60.9902 25.74C61.1003 25.6901 61.2193 25.6629 61.3402 25.66C62.2342 25.6938 63.1105 25.9189 63.9102 26.32C64.8495 26.7433 65.7194 27.3063 66.4902 27.99C67.1917 28.5731 67.7697 29.2905 68.1902 30.1C68.6201 30.8814 68.847 31.7582 68.8502 32.65C68.8452 33.3351 68.713 34.0132 68.4602 34.65C68.1961 35.3269 67.8609 35.9739 67.4602 36.58C68.4202 36.3698 69.3483 36.0335 70.2202 35.58C71.4832 34.9664 72.6409 34.1563 73.6502 33.18C73.7146 33.1208 73.7904 33.0753 73.8729 33.046C73.9553 33.0168 74.0429 33.0046 74.1302 33.01C74.5702 33.01 74.7802 33.18 74.7802 33.54C74.7581 33.7444 74.686 33.9402 74.5702 34.11C74.3811 34.3977 74.1596 34.6627 73.9102 34.9C71.7773 36.881 69.0412 38.0889 66.1402 38.33C65.6708 38.8123 65.1733 39.2665 64.6502 39.69C64.1463 40.1036 63.6187 40.4876 63.0702 40.84C61.7921 41.727 60.3012 42.2585 58.7502 42.38C58.524 42.3875 58.2987 42.3478 58.0886 42.2635C57.8786 42.1791 57.6884 42.0519 57.5302 41.89C57.3797 41.7488 57.2596 41.5785 57.177 41.3894C57.0945 41.2003 57.0514 40.9963 57.0502 40.79C57.0502 39.44 58.2102 38.42 60.5402 37.71C61.3902 37.48 62.2302 37.27 63.0702 37.1C63.9102 36.93 64.7502 36.73 65.5602 36.53C66.0639 35.7822 66.4894 34.9847 66.8302 34.15C67.0911 33.6151 67.244 33.034 67.2802 32.44C67.2802 30.88 66.1302 29.3967 63.8302 27.99C63.1926 27.5264 62.4368 27.2525 61.6502 27.2C58.8343 30.5248 56.5505 34.2659 54.8802 38.29C52.7269 43.1833 51.6502 47.0367 51.6502 49.85C51.6175 50.3141 51.6787 50.7801 51.8302 51.22C51.8845 51.3333 51.9718 51.4274 52.0808 51.4899C52.1897 51.5524 52.315 51.5803 52.4402 51.57C52.5131 51.5813 52.5873 51.5813 52.6602 51.57H52.8302C53.2102 51.57 53.4002 51.8 53.4002 52.27C53.4002 52.74 52.9802 53.02 52.2602 53.02ZM59.0702 41.02C60.1369 41.02 61.6935 40.17 63.7402 38.47C63.2702 38.53 62.8202 38.6 62.3902 38.69C61.9602 38.78 61.3902 38.94 60.6002 39.17C59.2902 39.55 58.6002 40.04 58.6002 40.62C58.6502 40.84 58.7802 40.97 59.0702 40.97V41.02Z" stroke="url(#paint11_linear_1290_60)" stroke-width="0.6"/>
<path d="M76.7199 41.67C76.1776 41.7004 75.6355 41.6052 75.136 41.3919C74.6365 41.1785 74.1929 40.8528 73.8399 40.44C73.1456 39.5484 72.7911 38.439 72.8399 37.31C72.9079 34.9862 73.6325 32.7291 74.9299 30.8C75.3253 30.1711 75.763 29.5697 76.2399 29C76.7428 28.3802 77.2838 27.7924 77.8599 27.24C78.6863 26.4263 79.61 25.7176 80.6099 25.13C81.4512 24.6044 82.4182 24.3143 83.4099 24.29C84.8899 24.29 85.6299 25 85.6299 26.41C85.6299 28.1633 84.6132 29.76 82.5799 31.2C80.9549 32.3958 79.0062 33.072 76.9899 33.14C76.6968 33.1564 76.403 33.1564 76.1099 33.14L75.4599 32.97C75.1201 33.6271 74.8487 34.3174 74.6499 35.03C74.4378 35.7757 74.3202 36.545 74.2999 37.32C74.2999 39.25 75.1499 40.22 76.8299 40.22C78.1587 40.2293 79.4777 39.992 80.7199 39.52C82.2944 38.7972 83.7643 37.8655 85.0899 36.75C86.0899 35.93 86.9199 35.27 87.4399 34.75L89.1499 33.16C89.2902 33.0583 89.4569 32.9993 89.6299 32.99C89.7857 32.9922 89.9379 33.0372 90.0699 33.12C90.1378 33.1615 90.1932 33.2206 90.2301 33.291C90.2671 33.3614 90.2843 33.4406 90.2799 33.52C90.2799 33.84 89.9899 34.29 89.4099 34.88L87.8099 36.44C87.2599 36.94 86.3799 37.65 85.1899 38.56C83.9199 39.5453 82.5069 40.331 80.9999 40.89C79.6292 41.3962 78.181 41.6601 76.7199 41.67V41.67ZM76.7199 31.67C77.6282 31.6728 78.5305 31.5241 79.3899 31.23C80.2484 30.9235 81.0571 30.4922 81.7899 29.95C83.4765 28.69 84.3199 27.5033 84.3199 26.39C84.3199 25.89 84.0199 25.64 83.4099 25.64C82.2399 25.64 80.8899 26.36 79.3399 27.8C78.6798 28.4067 78.0554 29.0511 77.4699 29.73C76.9846 30.3108 76.5466 30.9294 76.1599 31.58C76.3168 31.6409 76.482 31.6779 76.6499 31.69L76.7199 31.67Z" stroke="url(#paint12_linear_1290_60)" stroke-width="0.6"/>
<path d="M100.97 42.77C98.7764 42.8126 96.6059 42.3146 94.6502 41.32C92.8569 40.3862 91.3606 38.9695 90.3302 37.23C89.2556 35.3434 88.713 33.2006 88.7602 31.03C88.7332 28.6742 89.2391 26.3427 90.2402 24.21C91.2934 22.0768 92.7464 20.1655 94.5202 18.58C99.6476 13.8058 106.425 11.2037 113.43 11.32C114.94 11.3142 116.438 11.5994 117.84 12.16C119.189 12.6354 120.391 13.4519 121.33 14.53C122.22 15.5691 122.691 16.9026 122.65 18.27C122.675 19.3971 122.283 20.4937 121.55 21.35C121.29 21.6835 120.999 21.9916 120.68 22.27C120.425 22.5656 120.068 22.7547 119.68 22.8C119.425 22.7921 119.179 22.7008 118.98 22.54C118.881 22.4672 118.799 22.3743 118.739 22.2674C118.679 22.1606 118.641 22.0422 118.63 21.92C118.645 21.8225 118.68 21.7292 118.733 21.6464C118.787 21.5636 118.857 21.4932 118.94 21.44C119.14 21.23 119.44 20.94 119.85 20.56C120.219 20.2171 120.514 19.8025 120.717 19.3417C120.919 18.8809 121.026 18.3835 121.03 17.88C121.048 17.3179 120.944 16.7586 120.724 16.2407C120.505 15.7227 120.176 15.2585 119.76 14.88C118.883 14.0497 117.815 13.4486 116.65 13.13C115.337 12.7131 113.968 12.5039 112.59 12.51C109.348 12.5191 106.146 13.225 103.2 14.58C100.211 15.9113 97.4978 17.7903 95.2002 20.12C93.7082 21.5895 92.4952 23.3175 91.6202 25.22C90.7779 27.1488 90.3585 29.2356 90.3902 31.34C90.3337 32.9649 90.6771 34.5788 91.3902 36.04C92.0442 37.2466 92.9516 38.2973 94.0502 39.12C95.143 39.9043 96.36 40.4993 97.6502 40.88C98.8717 41.2194 100.132 41.3976 101.4 41.41C102.904 41.3965 104.401 41.2052 105.86 40.84C107.457 40.4567 109.019 39.9416 110.53 39.3C111.968 38.675 113.356 37.9394 114.68 37.1C115.116 36.8123 115.537 36.5019 115.94 36.17C116.202 35.9864 116.45 35.7824 116.68 35.56L117.99 33.32C118.34 32.73 118.77 32 119.26 31.12C119.75 30.24 120.32 29.21 120.96 28.04C119.817 28.0668 118.679 28.1973 117.56 28.43C116.19 28.7 114.76 29.03 113.28 29.43C112.38 29.67 111.47 29.95 110.57 30.27C110.035 30.4792 109.478 30.6269 108.91 30.71C108.42 30.71 108.17 30.45 108.17 29.92C108.166 29.8558 108.175 29.7913 108.197 29.7309C108.22 29.6705 108.255 29.6156 108.3 29.57C108.461 29.3996 108.655 29.2636 108.87 29.17C109.689 28.7304 110.55 28.3752 111.44 28.11C112.585 27.7368 113.754 27.4461 114.94 27.24C116.079 27.0047 117.231 26.8411 118.39 26.75C119.494 26.6607 120.603 26.6307 121.71 26.66L121.84 26.4C121.88 26.2699 121.961 26.1564 122.071 26.0769C122.181 25.9974 122.314 25.9564 122.45 25.96C122.651 25.9532 122.846 26.021 123 26.1503C123.153 26.2797 123.253 26.4613 123.28 26.66C124.116 26.7063 124.948 26.8099 125.77 26.97C125.867 26.9764 125.962 27.0019 126.05 27.045C126.137 27.0882 126.215 27.1482 126.279 27.2216C126.343 27.295 126.392 27.3804 126.423 27.4728C126.454 27.5652 126.467 27.6628 126.46 27.76C126.473 27.8488 126.466 27.9395 126.438 28.0249C126.41 28.1103 126.363 28.188 126.3 28.252C126.237 28.316 126.16 28.3645 126.075 28.3936C125.99 28.4228 125.899 28.4318 125.81 28.42C125.4 28.3913 124.992 28.3345 124.59 28.25C123.958 28.125 123.315 28.0647 122.67 28.07C122.03 29.33 120.76 31.58 118.87 34.8C118.49 35.45 118.17 36 117.87 36.47C117.57 36.94 117.4 37.34 117.26 37.66C116.761 38.6149 116.365 39.6207 116.08 40.66C115.99 40.98 115.81 41.14 115.55 41.14C114.97 41.14 114.68 40.88 114.68 40.35C114.781 39.6082 114.986 38.8843 115.29 38.2C113.864 39.112 112.358 39.8919 110.79 40.53C109.147 41.1991 107.455 41.744 105.73 42.16C104.172 42.5466 102.575 42.7513 100.97 42.77V42.77Z" stroke="url(#paint13_linear_1290_60)" stroke-width="0.6"/>
<path d="M135.17 23.55C135.068 23.5652 134.964 23.5563 134.866 23.5239C134.768 23.4916 134.679 23.4368 134.606 23.3639C134.533 23.291 134.478 23.202 134.446 23.1041C134.414 23.0061 134.405 22.902 134.42 22.8C134.473 22.5197 134.578 22.2517 134.73 22.01C134.941 21.5874 135.174 21.1768 135.43 20.78C135.606 20.4811 135.81 20.1998 136.04 19.94C136.363 19.5366 136.744 19.1828 137.17 18.89C137.413 18.7565 137.683 18.6812 137.96 18.67C138.57 18.67 138.88 18.95 138.88 19.5C138.843 19.7882 138.705 20.0539 138.49 20.25C138.24 20.5275 137.961 20.7788 137.66 21C137.328 21.1803 137.03 21.4172 136.78 21.7L135.78 23.07C135.768 23.2021 135.723 23.3292 135.65 23.44C135.583 23.4931 135.506 23.5305 135.423 23.5495C135.339 23.5685 135.253 23.5687 135.17 23.55ZM127.74 41.36C127.106 41.4111 126.474 41.2415 125.95 40.88C125.767 40.6877 125.627 40.4594 125.537 40.2097C125.448 39.9601 125.411 39.6945 125.43 39.43C125.483 38.5681 125.676 37.7204 126 36.92C126.421 35.7363 126.901 34.5748 127.44 33.44C128.05 32.21 128.69 31.03 129.36 29.92C129.922 28.9575 130.564 28.0443 131.28 27.19C131.92 26.46 132.43 26.09 132.81 26.09C133.19 26.09 133.6 26.33 133.6 26.8C133.467 27.393 133.212 27.9516 132.85 28.44C132.36 29.26 131.85 30.11 131.24 30.99C131 31.31 130.667 31.75 130.24 32.31L129.06 33.89C128.796 34.2104 128.549 34.5441 128.32 34.89C127.921 35.5636 127.612 36.2864 127.4 37.04C127.106 37.7715 126.928 38.5439 126.87 39.33C126.858 39.5172 126.907 39.7033 127.01 39.86C127.226 40.0105 127.49 40.0747 127.75 40.04C128.608 40.002 129.445 39.7585 130.19 39.33C131.157 38.8252 132.077 38.2362 132.94 37.57C133.87 36.84 134.75 36.09 135.56 35.33C136.37 34.57 137.12 33.91 137.7 33.33C137.772 33.2656 137.855 33.2165 137.947 33.1856C138.038 33.1546 138.134 33.1425 138.23 33.15C138.66 33.15 138.88 33.33 138.88 33.68C138.826 34.1115 138.607 34.5055 138.27 34.78C137.49 35.57 136.76 36.28 136.09 36.89C135.42 37.5 134.78 38.05 134.17 38.52C133.174 39.2451 132.121 39.8873 131.02 40.44C130.015 41.0018 128.891 41.3171 127.74 41.36V41.36Z" stroke="url(#paint14_linear_1290_60)" stroke-width="0.6"/>
<path d="M134.91 41.98C134.44 41.98 134.21 41.79 134.21 41.41C134.215 41.2261 134.259 41.0454 134.34 40.88C134.452 40.7397 134.556 40.5928 134.65 40.44L138.65 32.35C140.337 28.89 141.18 26.97 141.18 26.59C141.167 26.5064 141.173 26.4209 141.199 26.3402C141.224 26.2596 141.269 26.1861 141.328 26.1258C141.388 26.0654 141.46 26.0199 141.541 25.9929C141.621 25.9658 141.706 25.958 141.79 25.97C141.903 25.9549 142.019 25.9663 142.127 26.0033C142.235 26.0404 142.334 26.102 142.414 26.1834C142.494 26.2648 142.555 26.3638 142.591 26.4725C142.626 26.5812 142.636 26.6967 142.62 26.81C142.57 27.2953 142.438 27.7686 142.23 28.21C141.97 28.86 141.63 29.61 141.23 30.46C140.53 31.98 139.94 33.15 139.48 33.97C140.35 32.97 141.24 31.97 142.14 31.07C143.04 30.17 143.96 29.3 144.89 28.48C147.66 26.04 149.78 24.83 151.27 24.83C152.27 24.83 152.8 25.31 152.8 26.28C152.8 27.25 152.49 27.69 151.88 27.69C151.593 27.69 151.373 27.44 151.22 26.94C151.205 26.7906 151.133 26.6527 151.02 26.5542C150.907 26.4557 150.76 26.4041 150.61 26.41C150.12 26.41 149.16 26.95 147.73 28.04C146.04 29.3115 144.449 30.7088 142.97 32.22C141.152 34.1426 139.481 36.1983 137.97 38.37L135.7 41.44C135.599 41.5713 135.481 41.6889 135.35 41.79C135.297 41.8546 135.23 41.9056 135.153 41.9387C135.077 41.9718 134.993 41.9859 134.91 41.98V41.98Z" stroke="url(#paint15_linear_1290_60)" stroke-width="0.6"/>
<path d="M155.23 42.07C154.655 42.1048 154.079 42.0127 153.543 41.8002C153.007 41.5876 152.525 41.2598 152.13 40.84C151.413 39.8756 151.059 38.6895 151.13 37.49C151.159 36.2735 151.334 35.0649 151.65 33.89C152.436 31.0469 153.474 28.2793 154.75 25.62C155.89 23.24 157.113 20.9067 158.42 18.62C159.73 16.31 161.17 14.03 162.74 11.81C165.25 8.23 166.99 6.44 167.98 6.44C168.62 6.44 168.98 6.62 168.98 6.97C168.98 7.47 168.17 8.71 166.54 10.71L163.39 14.44C160.86 17.4832 158.68 20.8006 156.89 24.33C155.279 27.5703 153.976 30.9553 153 34.44C152.751 35.3291 152.62 36.2469 152.61 37.17C152.61 39.39 153.51 40.51 155.31 40.51C156.015 40.4997 156.705 40.303 157.31 39.94C157.66 39.737 158.024 39.5598 158.4 39.41C158.75 39.41 158.92 39.66 158.92 40.16C158.93 40.3535 158.891 40.5464 158.807 40.7211C158.723 40.8958 158.597 41.0467 158.44 41.16C157.475 41.7558 156.364 42.0709 155.23 42.07V42.07Z" stroke="url(#paint16_linear_1290_60)" stroke-width="0.6"/>
<path d="M162.39 42.33C160.75 42.33 159.94 41.79 159.94 40.7C159.963 39.9774 160.207 39.2792 160.64 38.7C161.146 38.0147 161.734 37.3935 162.39 36.85C162.963 36.3573 163.591 35.9313 164.26 35.58C164.486 35.4715 164.72 35.3812 164.96 35.31C165.217 35.2362 165.482 35.1926 165.75 35.18C165.98 35.18 166.1 35.27 166.1 35.45C166.1 35.63 165.94 35.75 165.62 35.93C164.417 36.4744 163.343 37.2687 162.47 38.26C161.878 38.8477 161.495 39.6136 161.38 40.44C161.38 40.96 161.83 41.23 162.73 41.23C163.577 41.2108 164.411 41.0168 165.18 40.66C166.088 40.2775 166.939 39.7728 167.71 39.16C168.473 38.5973 169.147 37.9231 169.71 37.16C170.18 36.5945 170.456 35.8938 170.5 35.16C170.5 34.7236 170.344 34.3015 170.06 33.97C169.72 33.5725 169.26 33.2954 168.75 33.18L165.87 32.3C165.272 32.1426 164.729 31.8244 164.3 31.38C163.995 31.023 163.825 30.5698 163.82 30.1C163.832 29.21 164.191 28.3598 164.82 27.73C165.517 26.9993 166.363 26.4264 167.3 26.05C168.214 25.6581 169.196 25.4508 170.19 25.44C171.056 25.42 171.907 25.6641 172.63 26.14C172.943 26.3161 173.203 26.5735 173.383 26.8849C173.562 27.1964 173.655 27.5505 173.65 27.91C173.648 28.3502 173.512 28.7793 173.26 29.14C173.184 29.2999 173.068 29.4369 172.922 29.5371C172.776 29.6372 172.606 29.6969 172.43 29.71C171.93 29.71 171.69 29.5 171.69 29.09C171.707 28.8967 171.78 28.7125 171.9 28.56C172.057 28.3786 172.149 28.1497 172.16 27.91C172.16 27.03 171.5 26.59 170.16 26.59C169.404 26.5956 168.659 26.7591 167.97 27.07C167.31 27.3343 166.716 27.7406 166.23 28.26C165.792 28.6867 165.541 29.2689 165.53 29.88C165.53 30.4733 166.11 30.9433 167.27 31.29L170.07 32.17C170.758 32.3351 171.373 32.7215 171.82 33.27C172.138 33.7049 172.306 34.2312 172.3 34.77C172.3 36.1033 171.497 37.4667 169.89 38.86C167.303 41.1667 164.803 42.3233 162.39 42.33Z" stroke="url(#paint17_linear_1290_60)" stroke-width="0.6"/>
<path d="M33.9702 53.24C35.5402 57.05 39.3802 59.34 44.9702 59.81C50.5602 60.28 57.7202 58.89 65.4102 55.81C73.5418 52.5327 81.1783 48.1406 88.1002 42.76C94.6333 37.8346 100.33 31.8884 104.97 25.15C108.91 19.15 110.7 13.62 110.12 9.23999C109.54 4.85999 106.65 1.85999 101.73 0.629993C96.8102 -0.600007 90.2202 -6.91414e-06 82.7302 2.34999C74.597 5.03905 66.8994 8.89967 59.8802 13.81L61.1002 15.49C67.4132 11.0836 74.3364 7.62372 81.6502 5.21999C88.3502 3.10999 94.2802 2.56999 98.6502 3.66999C103.02 4.76999 105.65 7.43999 106.14 11.44C106.63 15.44 105.05 20.33 101.52 25.7C97.3542 31.7214 92.2494 37.0355 86.4002 41.44C80.2058 46.2687 73.3705 50.2131 66.0902 53.16C59.2002 55.89 52.8102 57.16 47.7702 56.71C42.7302 56.26 39.2902 54.24 37.8902 50.82L33.9702 53.24Z" fill="url(#paint18_linear_1290_60)"/>
<path d="M9.6499 14.44L11.0499 22.04L18.6499 23.44L11.0499 24.84L9.6499 32.44L8.2499 24.84L0.649902 23.44L8.2499 22.04L9.6499 14.44Z" fill="white"/>
<path d="M166.65 32.44L168.05 40.04L175.65 41.44L168.05 42.84L166.65 50.44L165.25 42.84L157.65 41.44L165.25 40.04L166.65 32.44Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_1290_60" x1="-1.4601" y1="25.33" x2="174.41" y2="44.64" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint1_linear_1290_60" x1="-2.51977" y1="35.04" x2="173.35" y2="54.34" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint2_linear_1290_60" x1="-2.2898" y1="32.87" x2="173.58" y2="52.18" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint3_linear_1290_60" x1="-1.32009" y1="24.03" x2="174.55" y2="43.34" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint4_linear_1290_60" x1="-0.349832" y1="15.25" x2="175.52" y2="34.56" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint5_linear_1290_60" x1="-0.369895" y1="15.4" x2="175.5" y2="34.71" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint6_linear_1290_60" x1="-0.610017" y1="17.63" x2="175.26" y2="36.93" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint7_linear_1290_60" x1="0.599945" y1="6.59" x2="176.47" y2="25.9" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint8_linear_1290_60" x1="-0.390137" y1="15.57" x2="175.48" y2="34.88" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint9_linear_1290_60" x1="-1.4601" y1="25.33" x2="174.41" y2="44.64" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint10_linear_1290_60" x1="-2.51977" y1="35.04" x2="173.35" y2="54.34" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint11_linear_1290_60" x1="-2.2898" y1="32.87" x2="173.58" y2="52.18" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint12_linear_1290_60" x1="-1.32009" y1="24.03" x2="174.55" y2="43.34" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint13_linear_1290_60" x1="-0.349832" y1="15.25" x2="175.52" y2="34.56" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint14_linear_1290_60" x1="-0.369895" y1="15.4" x2="175.5" y2="34.71" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint15_linear_1290_60" x1="-0.610017" y1="17.63" x2="175.26" y2="36.93" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint16_linear_1290_60" x1="0.599945" y1="6.59" x2="176.47" y2="25.9" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint17_linear_1290_60" x1="-0.390137" y1="15.57" x2="175.48" y2="34.88" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF46B5"/>
<stop offset="0.48" stop-color="#FF9CE9"/>
<stop offset="1" stop-color="#FF4A60"/>
</linearGradient>
<linearGradient id="paint18_linear_1290_60" x1="109.85" y1="33.61" x2="47.3502" y2="27.61" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF3093"/>
<stop offset="0.49" stop-color="#E649FF"/>
<stop offset="0.61" stop-color="#FAAEFF"/>
<stop offset="0.83" stop-color="#FF3AEB" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0_1290_60">
<rect width="175.3" height="59.89" fill="white" transform="translate(0.350098)"/>
</clipPath>
</defs>
</svg>
</a>
<button class="navbar-toggler p-0 border-0" type="button" data-toggle="offcanvas">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse offcanvas-collapse" id="navbarsExampleDefault">
<button class="navbar-toggler p-0 crros-menu border-0" type="button" data-toggle="offcanvas"> <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width="30" height="30"
viewBox="0 0 50 50"
style=" fill:#ffffff;"><path d="M 7.71875 6.28125 L 6.28125 7.71875 L 23.5625 25 L 6.28125 42.28125 L 7.71875 43.71875 L 25 26.4375 L 42.28125 43.71875 L 43.71875 42.28125 L 26.4375 25 L 43.71875 7.71875 L 42.28125 6.28125 L 25 23.5625 Z"></path>
</svg> </button>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#mint">Mint <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#roadmap">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#wos">WOS</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll mr-lg-5 ml-0" href="#faqs">FAq</a>
</li>
<li class="nav-item">
<a class="btn-solid-lgdis page-scroll ml-lg-5 ml-2 mr-lg-2 ml-1 " href="https://discord.com/invite/P3H858DMyE"> <i class=" fab fa-discord"></i> Join Our Discord</a>
</li>
<li class="nav-item">
<a class="mx-2 d-none d-lg-block page-scroll" href="https://www.instagram.com/sin.appeal/?igshid=YmMyMTA2M2Y="> <img width="24px" src="images/insta.svg" alt="" ></a>
</li>
<li class="nav-item">
<a class=" d-none d-lg-block page-scroll" href="https://twitter.com/AppealSin"> <img width="24px" src="images/fb.svg" alt="" ></a>
</li>
<li class="nav-item ">
<a class=" mr-lg-5 mr-2 ml-2 d-none d-lg-block page-scroll" href="https://opensea.io/DrSin"> <img width="24px" src="images/opne.svg" alt="" ></a>
</li>
</ul>
<span class="nav-item social-icons d-block d-md-none text-center">
<span class="fa-stack">
<a href="#">
<img src="images/fb.svg" alt="" >
</a>
</span>
<span class="fa-stack">
<a href="#">
<img src="images/insta.svg" alt="" >
</a>
</span> <span class="fa-stack">
<a href="#">
<img src="images/opne.svg" alt="" >
</a>
</span>
</span>
</div> <!-- end of navbar-collapse -->
</div> <!-- end of container -->
</nav> <!-- end of navbar -->
<!-- end of navigation -->
<!-- Header -->
<header id="header" class="header">
<div class="img-home-div">
<div class="row m-0 p-0">
<div class="col img-home-div">
<img class="img-home" src="images/tittle.svg" alt="">
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row m-0 p-0">
<div class="col">
<p class="text-metaverse"> IN THE METAVERSE</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row rlimg m-0 p-0">
<div class="right-img d-none d-xl-block col-lg-3 col-12 text-lg-left" >
<img src="images/right.png" alt="">
</div>
<div class="col-12 col-xl-6 text-xl-right text-center">
<p class="p-text-metaverse text-center p-xl-0 p-4">
Piece: 20.000 formats jpg file size 14.4 GB partly NSFW I have
created 20,000 unique NFTs. Hype Girls represents the hottest girls in the MetaVerse
Partly the girls are a bit lightly dressed. The firls are also all game characters from
my game.</p>
<div class="btn-home row w-100 m-0 p-0">
<a href="" class="btn btn-PAPER mx-sm-4 mx-0">WHITE PAPER</a>
<a href="" class="btn btn-OPENSEA mx-sm-2 mx-1"> <img src="images/opesea.png" width="20px" alt="" > OPENSEA</a>
</div>
</div>
<div class="left-img col-xl-3 col-12 text-xl-right text-center">
<img src="images/left.png" alt="">
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</header> <!-- end of header -->
<!-- end of header -->
<section class="form-home">
<div class="container">
<br>
<h3><img src="images/Mint.svg" class="mint-h" alt="" ></h3>
<br><br>
<div class="row">
<div class="col-lg-6">
<!-- Card -->
<div class="card gradient-border" >
<div class="card-image">
</div>
<div class="card-body">
<!-- Contact Form -->
<form id="contactForm">
<div class="form-group counter">
<label class=" h5 text-white text-left w-100" for="cname">MINT</label>
<input type="number" class="form-control-input counter--output" id="cname" readonly>
<button type="button" for="cname" class="counter--arrow-inc arrow-btn"><span><svg width="17" height="10" viewBox="0 0 17 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8L8.5 2L15 8" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span></button>
<button type="button" for="cname" class="counter--arrow-dec arrow-btn"><span><svg width="17" height="10" viewBox="0 0 17 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2L8.5 8L15 2" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span></button>
</div>
<div class="form-group">
<div class="form-group counter">
<label class=" h5 text-white text-left w-100" for="RAISED">TOTAL RAISED</label>
<input type="text" class="form-control-input counter--outpute text-right pr-3" id="RAISED" value="0.08 ETH " readonly>
<button type="button" class="arrow-btn raised-eth"><span>
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.0537 0.195063V0.212797C18.0714 0.301467 18.0714 0.407871 18.0714 0.514275V13.3005C18.0537 13.3714 18.0005 13.3892 17.9473 13.4246C17.5749 13.602 17.2202 13.7616 16.8478 13.9212C16.3335 14.1517 15.8015 14.4 15.2872 14.6305L13.4251 15.4818C12.9108 15.7123 12.3965 15.9428 11.9 16.1734C11.297 16.4571 10.6763 16.7231 10.0734 17.0069C9.55911 17.2374 9.04482 17.4857 8.5128 17.7162C8.08719 17.9113 7.66157 18.0887 7.25369 18.2837C7.21822 18.3015 7.18275 18.3192 7.14728 18.3192C7.12955 18.3192 7.12955 18.3192 7.11182 18.3015L7.59063 17.5034C8.5128 15.9783 9.41724 14.4709 10.3394 12.9458C11.3148 11.3143 12.3079 9.68275 13.2832 8.05122C14.1877 6.54383 15.1098 5.03644 16.0143 3.52905C16.6704 2.42955 17.3443 1.33004 18.0005 0.230531C18.0182 0.195063 18.036 0.177329 18.036 0.141861H18.0537C18.036 0.159595 18.0537 0.177329 18.0537 0.195063Z" fill="#E3BDFF"/>
<path d="M28.9422 18.3015L28.9599 18.3192L26.353 19.862L18.1599 24.7034C18.1245 24.7212 18.089 24.7389 18.0713 24.7566C18.0181 24.7566 18.0181 24.7034 18.0181 24.6857V24.5261V13.5665C18.0181 13.5133 18.0181 13.4423 18.0358 13.3891C18.0535 13.3182 18.1067 13.3359 18.1599 13.3537C18.3905 13.4601 18.6388 13.5665 18.8693 13.6729C19.5609 13.9921 20.2525 14.3113 20.9442 14.6128C21.5471 14.8788 22.1324 15.1625 22.7353 15.4286C23.3383 15.6946 23.9412 15.9783 24.5442 16.2443C25.0585 16.4749 25.5905 16.7231 26.1048 16.9537C26.6191 17.1842 27.1511 17.4325 27.6654 17.663C28.0732 17.8404 28.4811 18.0354 28.889 18.2128C28.889 18.266 28.9067 18.2837 28.9422 18.3015Z" fill="#904BC5"/>
<path d="M18.0532 35.7694C18.0532 35.7872 18.0355 35.8049 18.0355 35.8226H18.0177C18.0177 35.7872 17.9823 35.7694 17.9645 35.734C16.865 34.1911 15.7655 32.6305 14.666 31.0877C13.5488 29.5093 12.4138 27.9133 11.2965 26.335C10.2148 24.8098 9.11527 23.267 8.0335 21.7419C7.74975 21.334 7.46601 20.9438 7.18226 20.5359C7.16453 20.5005 7.1468 20.4827 7.11133 20.4295C7.16453 20.4295 7.2 20.465 7.21773 20.4827C8.76059 21.3872 10.2857 22.2916 11.8286 23.196C13.602 24.2423 15.3576 25.2886 17.131 26.335L18.0355 26.867C18.0709 26.9024 18.0709 26.9379 18.0709 26.9734V35.5212C18.0709 35.6098 18.0709 35.6985 18.0532 35.7694Z" fill="#E3BDFF"/>
<path d="M7.09375 18.3369V18.3192C7.66124 18.0709 8.21099 17.8049 8.77848 17.5566C9.50557 17.2197 10.2327 16.9005 10.9598 16.5635C11.5095 16.3152 12.077 16.0492 12.6268 15.801C13.4425 15.4285 14.2405 15.0739 15.0563 14.7015C15.6061 14.4532 16.1558 14.2049 16.7233 13.9389C17.1135 13.7616 17.5213 13.5842 17.9115 13.4069C17.947 13.3891 18.0002 13.3714 18.0179 13.3359C18.0356 13.3359 18.0356 13.3537 18.0179 13.3714V24.6325C18.0179 24.6857 18.0002 24.7389 18.0356 24.7744C18.0002 24.8276 17.9647 24.7744 17.947 24.7566C17.7873 24.668 17.6277 24.5793 17.4681 24.4729C14.0455 22.4512 10.6051 20.4118 7.18242 18.3901C7.16469 18.3724 7.12922 18.3547 7.09375 18.3369Z" fill="#B677E4"/>
<path d="M28.9066 20.4295H28.9243C28.9243 20.465 28.8888 20.5005 28.8711 20.5359C25.6081 25.129 22.345 29.7399 19.0819 34.333C18.745 34.8118 18.3903 35.2906 18.0534 35.7694C18.0356 35.7517 18.0356 35.734 18.0356 35.7162V35.6098V27.0088V26.8492C18.7805 26.4059 19.5076 25.9803 20.2524 25.5369C23.1253 23.8345 25.9982 22.1497 28.8534 20.4473C28.8711 20.465 28.8888 20.4473 28.9066 20.4295Z" fill="#C381F4"/>
<path d="M18.0355 13.3714V13.336V13.2295V0.354671C18.0355 0.301469 18.0177 0.266001 18.0532 0.212799C21.6532 6.18915 25.2532 12.1478 28.8355 18.1241C28.8709 18.1773 28.9241 18.2483 28.9419 18.3192C28.6936 18.2305 28.4631 18.1064 28.2325 18C27.9488 17.8759 27.6473 17.734 27.3635 17.6098C27.1862 17.5212 26.9911 17.4502 26.8138 17.3616C26.5123 17.2197 26.2108 17.0956 25.9094 16.9537C25.732 16.8828 25.5547 16.7941 25.3773 16.7054L24.2069 16.1734C24.0118 16.0847 23.8168 15.9961 23.6039 15.9074L22.7527 15.535C22.5754 15.464 22.398 15.3754 22.2207 15.2867L21.0502 14.7547C20.8552 14.666 20.6601 14.5773 20.4473 14.4887L19.5961 14.1162C19.401 14.0276 19.2236 13.9389 19.0286 13.8502C18.6916 13.6906 18.3547 13.531 18 13.3892C18.0532 13.3714 18.0355 13.3714 18.0355 13.3714Z" fill="#C381F4"/>
</svg>
</span></button>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-mint px-0 px-sm-2"> <img src="images/mintv.svg" alt="" > MINT NOW</button>
</div>
</form>
<!-- end of contact form -->
</div>
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
<br>
<br><br>
<br>
<img src="images/arror.png" alt="" >
</section>
<section class="about-img" id="about">
<div class="container-fluid">
<div class="svg-about d-none d-lg-block">
<svg width="1262" height="665" viewBox="0 0 1262 665" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="-18.5849" y="457.127" width="951.424" height="951.424" rx="59.5" transform="rotate(-30 -18.5849 457.127)" stroke="url(#paint0_linear_801_14)" stroke-width="5"/>
<rect x="-18.5849" y="805.373" width="951.424" height="951.424" rx="59.5" transform="rotate(-60 -18.5849 805.373)" stroke="url(#paint1_linear_801_14)" stroke-width="5"/>
<defs>
<linearGradient id="paint0_linear_801_14" x1="758.621" y1="410.138" x2="473.121" y2="904.638" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF68D5"/>
<stop offset="0.171875" stop-color="#F3A7FF"/>
<stop offset="1" stop-color="#FF33AD" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear_801_14" x1="1021.82" y1="957.659" x2="456.304" y2="1284.16" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF68D5"/>
<stop offset="0.171875" stop-color="#F3A7FF"/>
<stop offset="1" stop-color="#FF33AD" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
</div>
<div class="svg-about-r d-none d-lg-block">
<img src="images/bgimg/bgr.png" alt="" >
</div>
<div class="row">
<div class="col-lg-6 col-12 text-left">
<img src="images/about.svg" class="about-title" alt="" >
<p> <span> HYPE GIRLS </span> is a unique and beautiful collection of the 20,000 hottest girls in the metaverse. Our <span> HYPE GIRLS</span> are fantastically beautiful, independent, authentic and fascinating personalities.
<br><br>
They are often called angels of the metaverse. With their great charisma and their beautiful bodies they brighten up the very technical verse.
<br><br>
They like to spend time with you and sweeten your everyday life. Each girl embodies an original character from the video game "Wings of Silicon".</p>
</div>
<div class="col-lg-6 col-12 text-right">
<img src="images/abouts.png" class="abouts" alt="" >
</div>
</div>
</div>
</section>
<section class="Specification">
<div class="container-fluid">
<h3><img src="images/sp.svg" alt="" ></h3>
<br>
<div class="row">
<div class="col-lg-3 col-sm-6 col-12"><img src="images/s1.png" alt="" ><p>BEAUTIFUL</p></div>
<div class="col-lg-3 col-sm-6 col-12"><img src="images/sp2.png" alt="" ><p>INDEPENDENT</p></div>
<div class="col-lg-3 col-sm-6 col-12"><img src="images/sp3.png" alt="" ><p>AUTHENTIC</p></div>
<div class="col-lg-3 col-sm-6 col-12"><img src="images/sp4.png" alt="" ><p>FASCINATING</p></div>
</div>
</div>
<div class="svg-mid d-none d-lg-block">
<svg width="635" height="978" viewBox="0 0 635 978" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1251_191)">
<circle cx="146" cy="489" r="239" fill="#9F24FF"/>
</g>
<defs>
<filter id="filter0_f_1251_191" x="-343" y="0" width="978" height="978" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_1251_191"/>
</filter>
</defs>
</svg>
</div>
</div>
</section>
<section class="noname" >
<br><br>
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-12 order-last order-lg-0 text-lg-left text-center">
<img src="images/no.png" class="about-title" alt="" ></div>
<div class="col-lg-6 order-first order-lg-1 col-12 ">
<p>Each <span> HYPE GIRL </span>is unique and programmatically generated from over 300 possible features, including facial expressions, clothing, hair color, accessories, specials and many more.
<br<br>
All girls are hot, but some are rarer than others.
<br><br>
The GIRLS are stored as ERC-721 tokens on the Ethereum blockchain and hosted on IPFS. It costs 0.08 ETH to purchase a girl. (See record and proof)
<br><br>
To access members-only areas, such as "Wings of Silicon Game," <span> Hype Girls </span> owners must be logged into their Metamask wallet.
</p>
</div>
</div>
</section>
<section class="sexy">
<div class="container ">
<h3><img src="images/sexyx.svg" alt="" ></h3>
<div class="row m-0 p-0"><p>
When you purchase a <span>HYPE GIRL </span> ,
you're not just buying an avatar or a certifiably rare piece of art.
You're getting a membership to an exclusive club whose benefits and offerings will
increase over time. Your <span> HYPE GIRL </span> can serve as your digital companion and open digital doors for you.</p>
<br><br> <br><br><br>
</div>
<div>
<div class="slider-container">
<span class="arrow-left"></span>
<span class="arrow-right"></span>
<div class="slider" id="slider">
<div class="slide prev-2">
<img src="images/slider/1.png" alt="" >
</div>
<div class="slide prev-1">
<img src="images/slider/2.png" alt="" >
</div>
<div class="slide active">
<img src="images/slider/3.png" alt="" >
</div>
<div class="slide next-1">
<img src="images/slider/4.png" alt="" >
</div>
<div class="slide next-2">
<img src="images/slider/5.png" alt="" >
</div>
<div class="slide">
<img src="images/slider/6.png" alt="" >
</div>
<div class="slide">
<img src="images/slider/7.png" alt="" > </div>
</div>
<div class="dots">
<span></span>
<span></span>
<span class="active"></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div> <br><br><br>
</div>
<br><br>
</div> <br><br>
</section>
<section class="rd" id="roadmap">
<div class="container-fluid">
<h3><img src="images/rd.svg" alt="" ></h3>
<h5>We are a long-term and constantly growing project.</h5>
<p>Therefore, we would like to use the roadmap to illustrate the MINT goals we have set and the project milestones. <br>
elow are the currently planned stages of <span> HYPE GIRLS. </span> Don't forget to visit our Discord regularly.
There you will get the latest news about <br> our roadmap and all raffles</p>
<br><br>
<div class="row">
<div class="col-lg-5 col-12 colrdm "><img src="images/rdm1.png" class="rdm" alt="" ></div>
<div class="col-lg-5 col-12 colhm rdpmv "><img src="images/1.svg" alt="" class="rdmn" ><p>
<h4>FREE MINT</h4>
100x HYPE GIRLS will be given away.<br>
The first 100 entries will receive a free HYPE GIRL.<br>
Sign up for the whitelist today!</p></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="row">
<div class="col-12 col-lg-5 order-lg-1 colhm rdpmv"><img src="images/2.svg" alt="" class="rdmn" ><p> <h4>PREE MINT ROUND 1</h4>
Wow, we are really making progress and the project is growing. Mega cool! <br>
The pre-sale continues. <br>
You have the chance to get a limited number of 250x HYPE GIRLS for just 0.005 ETH</p></div>
<div class="col-12 col-lg-5 order-first order-lg-0 colrdm"><img src="images/rdm2.png" class="rdm" alt="" ></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br> <div class="rdglowr d-none d-lg-block">
<svg width="493" height="986" viewBox="0 0 493 986" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="-18.5849" y="630.37" width="749.349" height="749.349" rx="59.5" transform="rotate(-60 -18.5849 630.37)" stroke="url(#paint0_linear_1251_176)" stroke-width="5"/>
<defs>
<linearGradient id="paint0_linear_1251_176" x1="801.278" y1="750.674" x2="355.247" y2="1008.19" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF68D5"/>
<stop offset="0.171875" stop-color="#F7C8FF"/>
<stop offset="1" stop-color="#FF33AD" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
</div>
<div class="row"> <div class="col-12 col-lg-5 colrdm order-lg-1 order-first"><img src="images/rdm3.png" class="rdm" alt="" ></div>
<div class="col-12 col-lg-5 order-lg-0 colhm rdpmv order-lg-0 rdpmv"><img src="images/3.svg" alt="" class="rdmn" ><p> <h4>PREE MINT ROUND 2</h4>
The presale starts with a unique promotion! <br> 125x HYPE GIRLS are up for grabs for only <br> 0.003 ETH!
</p></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="row">
<div class="col-12 col-lg-5 colhm rdpmv order-lg-1 rdpmv "><img src="images/4.svg" alt="" class="rdmn" ><p> <h4>PREE MINT ROUND 3</h4>
You guys are amazing! <br>
You love our girls and that's why we give you another chance to get a top price for our hot girls. This time we are extending the offer.<br>
Get one of 500x HYPE GIRLS in presale for only 0.0075 ETH.<br>
Remember it's the last chance before the official MINT!
</p></div><div class="col-12 col-lg-5 colrdm order-lg-0 order-first rdpmv"><img src="images/rdm4.png" class="rdm" alt="" ></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="row"> <div class="col-12 col-lg-5 colrdm order-lg-1 order-first rdpmv"><img src="images/rdm5.png" class="rdm" alt="" ></div>
<div class="col-12 col-lg-5 colhm rdpmv order-lg-0"><img src="images/5.svg" alt="" class="rdmn" ><p> <h4>OFFICIAL MINT</h4>
The time has finally come! We have all been waiting for this DAY together! <br>
We’re making history with HYPE GIRLS! Thanks to the HYPE GIRLS ARMY! You are absolute madness and have made this project possible with your support!
<br> Get YOUR HYPE GIRLS and become PART of our ARMY!
<br> MINT PRICE 0.01
</p></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<!-- ==================================== -->
<div class="row">
<div class="col-12 col-lg-5 colhm rdpmv order-lg-1 rdpmv"><img src="images/6.svg" alt="" class="rdmn" ><p> <h4>SOLD 975</h4>
Let's face it, without our family support the project would never have been possible. <br>
We are using the income to pay back our parents' expenses.
</p></div>
<div class="col-12 col-lg-5 colrdm order-lg-0 order-first rdpmv"><img src="images/rdm8.png" class="rdm" alt="" ></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="rdglowr d-none d-lg-block">
<svg width="735" height="1179" viewBox="0 0 735 1179" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1251_174)">
<circle cx="589" cy="589.505" r="239" fill="#9F24FF"/>
</g>
<defs>
<filter id="filter0_f_1251_174" x="0" y="0.504883" width="1178" height="1178" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="175" result="effect1_foregroundBlur_1251_174"/>
</filter>
</defs>
</svg>
</div>
<div class="row">
<div class="col-12 col-lg-5 colrdm order-lg-1 order-first"><img src="images/rdm6.png" class="rdm" alt="" ></div>
<div class="col-12 col-lg-5 colhm rdpmv order-lg-0 rdpmv"><img src="images/7.svg" alt="" class="rdmn" ><p> <h4>SOLD 2222</h4>
Gross!!! Over 10% of all HYPE GIRLS now have a new owner! <br>
We want to celebrate that and are hosting a giveaway.<br>
We will randomly give away another 10 HYPE GIRLS to all previous owners.<br>
We will also give away 10 x 0.1 ETH among all owners!<br>
<br> Our GIRLS are into techno and good bass at cool places. Being music obsessed ourselves, our YOUTUBE music channel launched, the first HYPE GIRLS techno club spoils your ears with sonorous digital music!
<br> Wings of Silicon is getting a complete overhaul of the already released chapters.
</p></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="rdglowl d-none d-lg-block">
<svg width="630" height="1179" viewBox="0 0 630 1179" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1251_173)">
<circle cx="41" cy="589.505" r="239" fill="#9F24FF"/>
</g>
<defs>
<filter id="filter0_f_1251_173" x="-548" y="0.504883" width="1178" height="1178" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="175" result="effect1_foregroundBlur_1251_173"/>
</filter>
</defs>
</svg>
</div>
<div class="row">
<div class="col-12 col-lg-5 colhm rdpmv order-lg-1 rdpmv"><img src="images/8.svg" alt="" class="rdmn" >
<p> <h4>OSOLD 4444</h4>
Meanwhile our GIRLS are 25% sold out!
Who wouldn't like to have such a hot babe as his own!
Since you support the project so great, we would like to give you a little treat.
We put one more on it and give away another 25 HYPE GIRLS for free!
Furthermore EVERY owner has the chance to be one of the 15 lucky winners of 0.15 ETH each.
But the best is: We give away a timeless beautiful and stylish ROLEX SUBMARINER watch! Every HYPE GIRLS owner has the chance to win this cool gift.
Wings of Silicon gets a completely new game interface
In addition, a high-end render station will finally be purchased just for animation to give you an even better gaming experience.
</p>
</div> <div class="col-12 col-lg-5 colrdm order-lg-0 order-first rdpmv"><img src="images/rdm7.png" class="rdm" alt="" ></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="rdglowr d-none d-lg-block">
<svg width="735" height="1179" viewBox="0 0 735 1179" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1251_174)">
<circle cx="589" cy="589.505" r="239" fill="#9F24FF"/>
</g>
<defs>
<filter id="filter0_f_1251_174" x="0" y="0.504883" width="1178" height="1178" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="175" result="effect1_foregroundBlur_1251_174"/>
</filter>
</defs>
</svg>
</div>
<div class="row"> <div class="col-12 col-lg-5 colrdm order-lg-1 order-first"><img src="images/rdm9.png" class="rdm" alt="" ></div>
<div class="col-12 col-lg-5 colhm rdpmv order-lg-0 rdpmv"><img src="images/9.svg" alt="" class="rdmn" ><p> <h4>SOLD 8888</h4>
Gross!!! Over 10% of all HYPE GIRLS now have a new owner! <br>
We want to celebrate that and are hosting a giveaway.<br>
We will randomly give away another 10 HYPE GIRLS to all previous owners.<br>
We will also give away 10 x 0.1 ETH among all owners!<br>
Our GIRLS are into techno and good bass at cool places. Being music obsessed ourselves, our YOUTUBE music channel launched, the first HYPE GIRLS techno club spoils your ears with sonorous digital music!
<br>Wings of Silicon is getting a complete overhaul of the already released chapters.
</p></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br> <div class="rdglowl d-none d-lg-block">
<svg width="630" height="1179" viewBox="0 0 630 1179" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_1251_173)">
<circle cx="41" cy="589.505" r="239" fill="#9F24FF"/>
</g>
<defs>
<filter id="filter0_f_1251_173" x="-548" y="0.504883" width="1178" height="1178" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="175" result="effect1_foregroundBlur_1251_173"/>
</filter>
</defs>
</svg>
</div> <div class="row">
<div class="col-12 col-lg-5 colhm rdpmv order-lg-1 rdpmv"><img src="images/10.svg" alt="" class="rdmn" ><p> <h4>SOLD 15555</h4>
Meanwhile our GIRLS are 25% sold out! Who wouldn't like to have such a hot babe as his own! Since you support the project so great, we would like to give you a little treat.
<br> We put one more on it and give away another 25 HYPE GIRLS for free!
<br> Furthermore EVERY owner has the chance to be one of the 15 lucky winners of 0.15 ETH each.
<br> But the best is: We give away a timeless beautiful and stylish ROLEX SUBMARINER watch! Every HYPE GIRLS owner has the chance to win this cool gift.
<br> If you don't have one yet, get one now ;)!
<br> Wings of Silicon gets a completely new game interface
<br> In addition, a high-end render station will finally be purchased just for animation to give you an even better gaming experience.
</p></div> <div class="col-12 col-lg-5 colrdm order-lg-0 order-first rdpmv"><img src="images/rdm10.png" class="rdm" alt="" ></div>
</div>
<br><br><br><br>
<img src="images/aro.svg" class="aro" alt="" >
<br><br><br><br>
<div class="row"> <div class="col-12 col-lg-5 colrdm order-lg-1 order-first rdpmv"><img src="images/rdm11.png" class="rdm" alt="" ></div>
<div class="col-12 col-lg-5 colhm rdpmv order-lg-0"><img src="images/11.svg" alt="" class="rdmn" ><p> <h4>SOLD OUT</h4>
We are speechless!!! We never thought that our little project would cause such a HYPE! You make us proud and we are humbled with gratitude!<br>
We can hardly put our joy into words! Let's make HYPE GIRLS even bigger. The fun is just beginning!
</p></div>
</div>
<br><br><br><br>
<p class="rdp">As a big THANK YOU, we are giving away a TESLA Model 3 as the grand prize!!!
So you can experience the HYPE METAVERSE feeling on the road as well.
The main prize including the key card will of course be handed over by a hot GIRL!
<br> <br> <span> What are our further plans?</span> <br>
HYPE GIRLS will become a physical LABEL of its own. With digital models, who take over
all the tasks, like the real models. Catwalks in VR, rad photoshoots with sexy GIRLS
in over-the-top cool locations and a lot of fun for everyone!
<br><br> <span> Once we reach this goal, we will release our Roadmap 2.0!</span><br>
And of course it's clear that our HYPE GIRLS are into quick AUtos. So we think it's about
TIME to create a CONTINUATION :D!
<br><br>
We would also like to donate a large portion of the capital to non-profit and charitable ORganizations. Especially considering the bad events lately, we want to help people in need.
Last but not least, a large percentage goes to the further development of Wings of Silicon.
It's time for real voice actresses and a lot of new super cool stuff!
Look forward to it!</p>
<br><br><br><br>
</div>
</section>
<section class="team" id="team">
<div class="container-fluid">
<h3><img src="images/Team.svg" alt="" ></h3>
<p>All <span >HYPE GIRLS </span> have been developed and conceptualized by four good friends who met in the
<br> endless expanses of the Metaverse. We are just normal dudes, like you, who like to surround ourselves with
<br> attractive girls and want to cheer up the tech-heavy and dreary space with hot variety.A few months ago we
<br> started Wings of Silicone. Events have been flying since then and now we are already here! It's hard to believe
<br> what will happen in the future.</p><br><br><br><br>
<div class="row">
<div class="col-lg-3 col-sm-6 col-12">
<img src="images/team/t1.png" alt="" >
<br><br> <h4>SinApe</h4><p>
Founder / 3D Game-Designer<br>
(Traveler from the future)</p>
</div>
<div class=" col-lg-3 col-sm-6 col-12"><img src="images/team/t2.png" alt="" >
<br><br> <h4>W1lD</h4><p>Co-founder / Community <br> Manager</p> </div>
<div class="col-lg-3 col-sm-6 col-12"><img src="images/team/t3.png" alt="" >
<br><br> <h4>HxR</h4><p>Community Manager / <br>Marketer</p></div>
<div class="col-lg-3 col-sm-6 col-12"><img src="images/team/t4.png" alt="" >
<br><br> <h4>gr33dyLust</h4><p>
Blockchain Dev</p> </div>
</div>
</div>
</section>
<section class="silicon" id="wos">
<div class="container-fluid">
<h3><img src="images/silicon.svg" alt="" ></h3>
<br> <br><br>
<div class="row">
<div class="col-12 col-lg-5">
<img src="images/si1.png" alt="" >
</div>
<div class="col-12 col-lg-5">
<p>
Two years ago, you came to Silicon Gorge, <br> the world's hippest tech city, as a Graphic Designer.
<br><br>
You had big plans and goals, but all those lies shattered now. These days, you keep your head above water with your own game project, but the work can be even more demanding than your last job.
</p>
</div>
</div>
<br>
<div class="row">
<div class="col-12 col-lg-5 order-lg-0">
<p>
Luckily, one day, a cute and attractive girl comes to your door. You imagine she might be the missing piece of code to not only inspire you but so much more. Of course, nothing in the Gorge is simple. You discover that she lives with her aunt, a beautiful and mature woman. Will you go for the charming college student? Or the amazing and driven executive?
Then again, perhaps the temptations of the innovative capital of the world will lead you elsewhere. Only YOU can decide.
</p>
</div> <div class="col-12 col-lg-5 order-first order-lg-1">
<img src="images/si2.png" alt="" >
</div>
</div>
<br><br>
<div class="btn-div">
<a href="" class="btn btn-mint btn-play"> <img src="images/play.svg" class="mr-2" alt="" > PLAY NOW FOR FREE!</a>
</div>
</div>
</section>
<section class="faq" id="faqs">
<div class="container-fluid">
<h3><img src="images/faq.svg" alt="" ></h3>
<br><br><br>
<div class="row">
<div class="col-md-8 col-12 ">
<ul class="faq-list">
<li data-aos="fade-up" data-aos-delay="100" class="aos-init aos-animate">
<a data-toggle="collapse" class="collapsed" href="#faq1" aria-expanded="false">Non consectetur a erat nam at lectus urna duis? <i class="fas fa-arrow-up"></i></a>
<div id="faq1" class="collapse" data-parent=".faq-list" style="">
<p>
Feugiat pretium nibh ipsum consequat. Tempus iaculis urna id volutpat lacus laoreet non curabitur gravida. Venenatis lectus magna fringilla urna porttitor rhoncus dolor purus non.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200" class="aos-init aos-animate">
<a data-toggle="collapse" href="#faq2" class="collapsed">Feugiat scelerisque varius morbi enim nunc faucibus a pellentesque? <i class="fas fa-arrow-up"></i></a>
<div id="faq2" class="collapse" data-parent=".faq-list">
<p>
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300" class="aos-init aos-animate">
<a data-toggle="collapse" href="#faq3" class="collapsed">Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi? <i class="fas fa-arrow-up"></i></a>
<div id="faq3" class="collapse" data-parent=".faq-list">
<p>
Eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci. Faucibus pulvinar elementum integer enim. Sem nulla pharetra diam sit amet nisl suscipit. Rutrum tellus pellentesque eu tincidunt. Lectus urna duis convallis convallis tellus. Urna molestie at elementum eu facilisis sed odio morbi quis
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400" class="aos-init aos-animate">
<a data-toggle="collapse" href="#faq4" class="collapsed">Ac odio tempor orci dapibus. Aliquam eleifend mi in nulla? <i class="fas fa-arrow-up"></i></a>
<div id="faq4" class="collapse" data-parent=".faq-list">
<p>
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="500" class="aos-init aos-animate">
<a data-toggle="collapse" href="#faq5" class="collapsed">Tempus quam pellentesque nec nam aliquam sem et tortor consequat? <i class="fas fa-arrow-up"></i></a>
<div id="faq5" class="collapse" data-parent=".faq-list">
<p>
Molestie a iaculis at erat pellentesque adipiscing commodo. Dignissim suspendisse in est ante in. Nunc vel risus commodo viverra maecenas accumsan. Sit amet nisl suscipit adipiscing bibendum est. Purus gravida quis blandit turpis cursus in
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="600" class="aos-init aos-animate">
<a data-toggle="collapse" href="#faq6" class="collapsed">Tortor vitae purus faucibus ornare. Varius vel pharetra vel turpis nunc eget lorem dolor? <i class="fas fa-arrow-up"></i></a>
<div id="faq6" class="collapse" data-parent=".faq-list">
<p>
Laoreet sit amet cursus sit amet dictum sit amet justo. Mauris vitae ultricies leo integer malesuada nunc vel. Tincidunt eget nullam non nisi est sit amet. Turpis nunc eget lorem dolor sed. Ut venenatis tellus in metus vulputate eu scelerisque. Pellentesque diam volutpat commodo sed egestas egestas fringilla phasellus faucibus. Nibh tellus molestie nunc non blandit massa enim nec.
</p>
</div>
</li>
</ul>
</div>
</div>
<br><br><br>
<div class="join">
<div class="container">
<h3><img src="images/joinw.svg" alt="" ></h3>
<div class="row">
<div class="col-4 d-none d-lg-block"><img src="images/jw1.png" alt="" ></div>
<div class="col-12 col-lg-4"><a href="#" target="_blank" class="btn btn-mint btn-play btn-end" rel="noopener noreferrer">JOIN THE WHITELIST!</a></div>
<div class="col-12 col-lg-4"><img src="images/jw2.png" alt="" ></div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container-fluid">
<h3><img src="images/flogo.svg" alt="" ></h3>
<div class="row">
<div class="col text-right"><a href="https://twitter.com/AppealSin" target="_blank" rel="noopener noreferrer">
<img src="images/fb.svg" alt="" >
</a></div>
<div class="col text-center"><a href="https://www.instagram.com/sin.appeal/?igshid=YmMyMTA2M2Y=" target="_blank" rel="noopener noreferrer">
<img src="images/insta.svg" alt="" >
</a></div>
<div class="col text-left"><a href="https://opensea.io/DrSin" target="_blank" rel="noopener noreferrer">
<img src="images/opne.svg" alt="" >
</a></div>
</div>
<h4><p class="pt-1" style="color:white"><i>© All right Reversed 2022. <a class="text-green " href="#" target="_blank">hypegirls.com</a> .Developed by<a class="text-green ml-2" href="https://docs.google.com/forms/d/17Fcv36a7qdKUcbcVu_5nUBEww7J9yUaJbVuZ8FNmcNM/" target="_blank">Pawan Meena</a></h4>
</div>
</footer>
<!-- Scripts -->
<script src="js/jquery.min.js"></script> <!-- jQuery for Bootstrap's JavaScript plugins -->
<script src="js/bootstrap.min.js"></script> <!-- Bootstrap framework -->
<script src="js/jquery.easing.min.js"></script> <!-- jQuery Easing for smooth scrolling between anchors -->
<script src="js/swiper.min.js"></script> <!-- Swiper for image and text sliders -->
<script src="js/jquery.magnific-popup.js"></script> <!-- Magnific Popup for lightboxes -->
<script src="js/scripts.js"></script> <!-- Custom scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js"></script>
</body>
</html>