-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
2093 lines (2064 loc) · 205 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
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>
<html lang="en-US">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="shortcut icon" href=" ">
<link rel="preconnect" href="https://fonts.googleapis.com/">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Manrope:wght@400;600;700;800&family=Noto+Sans:wght@400;600;800;900&display=swap" rel="stylesheet">
<meta property="og:image:secure_url" content=" " />
<meta property="og:image" content=" " />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="1200" />
<meta name="twitter:card" content="summary_large_image" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5WQ38CL');</script>
<!-- End Google Tag Manager -->
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- This site is optimized with the Yoast SEO plugin v19.0 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Crypto Derivatives Exchange • Decentralized Crypto Exchange (DEX) | psst..Crypto</title>
<meta name="description" content="psst..Crypto is Decentralized Crypto Exchange 📊 (DEX Crypto). We provide the best platform for trading crypto derivatives: ✅ Extremely low fees ✅ Decentralized limit order book ✅ Self-Custody and Permissionless" />
<link rel="canonical" href="index.html" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="ru_RU" />
<meta property="og:locale:alternate" content="es_ES" />
<meta property="og:locale:alternate" content="zh_CN" />
<meta property="og:locale:alternate" content="hi_IN" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Crypto Derivatives Exchange • Decentralized Crypto Exchange (DEX) | psst..Crypto" />
<meta property="og:description" content="psst..Crypto is Decentralized Crypto Exchange 📊 (DEX Crypto). We provide the best platform for trading crypto derivatives: ✅ Extremely low fees ✅ Decentralized limit order book ✅ Self-Custody and Permissionless" />
<meta property="og:url" content=" " />
<meta property="og:site_name" content="psst..Crypto" />
<meta property="article:modified_time" content="2022-11-30T12:34:30+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"","url":" ","name":" ","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":" "},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":" ","url":" ","name":"Crypto Derivatives Exchange • Decentralized Crypto Exchange (DEX) | psst..Crypto","isPartOf":{"@id":" "},"datePublished":"2022-10-09T19:27:58+00:00","dateModified":"2022-11-30T12:34:30+00:00","description":"psst..Crypto is Decentralized Crypto Exchange 📊 (DEX Crypto). We provide the best platform for trading crypto derivatives: ✅ Extremely low fees ✅ Decentralized limit order book ✅ Self-Custody and Permissionless","breadcrumb":{"@id":" "},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":[" "]}]},{"@type":"BreadcrumbList","@id":" ","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel="alternate" href="index.html" hreflang="en" />
<link rel="alternate" href="ru/index.html" hreflang="ru" />
<link rel="alternate" href="es/index.html" hreflang="es" />
<link rel="alternate" href="zh/index.html" hreflang="zh" />
<link rel="alternate" href="hi/index.html" hreflang="hi" />
<link rel='dns-prefetch' href='http://ajax.googleapis.com/' />
<link rel='dns-prefetch' href='http://cdnjs.cloudflare.com/' />
<link rel="alternate" type="application/rss+xml" title="psst..Crypto » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="psst..Crypto » Comments Feed" href="comments/feed/index.html" />
<link rel='stylesheet' id='wp-block-library-css' href='wp-includes/css/dist/block-library/style.min6a4d.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='classic-theme-styles-css' href='wp-includes/css/classic-themes.min68b3.css?ver=1' media='all' />
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='contact-form-7-css' href='wp-content/plugins/contact-form-7/includes/css/styles04dd.css?ver=5.5.6.1' media='all' />
<link rel='stylesheet' id='normalize-css' href='wp-content/themes/psstCrypto/assets/css/new-style/normalize6a4d.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='modal-css' href='wp-content/themes/psstCrypto/assets/css/new-style/modal6a4d.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='blog-css' href='wp-content/themes/psstCrypto/assets/css/new-style/blog6a4d.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='article-css' href='wp-content/themes/psstCrypto/assets/css/new-style/article-page6a4d.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='slick-css' href='https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='style-css' href='wp-content/themes/psstCrypto/assets/css/new-style/style6a4d.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='mcw-crypto-css' href='wp-content/plugins/massive-cryptocurrency-widgets/assets/public/css/styleee9a.css?ver=3.2.2' media='all' />
<link rel='stylesheet' id='mcw-crypto-select-css' href='wp-content/plugins/massive-cryptocurrency-widgets/assets/public/css/selectize.customee9a.css?ver=3.2.2' media='all' />
<link rel='stylesheet' id='mcw-crypto-datatable-css' href='wp-content/plugins/massive-cryptocurrency-widgets/assets/public/css/jquery.dataTables.min47e3.css?ver=1.10.16' media='all' />
<script src='wp-includes/js/jquery/jquery.mina7a0.js?ver=3.6.1' id='jquery-core-js'></script>
<script src='wp-includes/js/jquery/jquery-migrate.mind617.js?ver=3.3.2' id='jquery-migrate-js'></script>
<link rel="https://api.w.org/" href="wp-json/index.html" /><link rel="alternate" type="application/json" href="wp-json/wp/v2/pages/640.json" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 6.1.1" />
<link rel='shortlink' href='index.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed6c90.json?url=https%3A%2F%2FpsstCrypto.io%2F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed115a?url=https%3A%2F%2FpsstCrypto.io%2F&format=xml" />
<meta name="google-site-verification" content="0Qn7X8S9dVG-HCH4DBf6WbgJIIJ36zmwr6zBHpHsCuk" />
</head>
<body class="home page-template page-template-new-homepage page-template-new-homepage-php page page-id-640">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WQ38CL"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-dark-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0.49803921568627" /><feFuncG type="table" tableValues="0 0.49803921568627" /><feFuncB type="table" tableValues="0 0.49803921568627" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-grayscale"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-red"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 0.27843137254902" /><feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-midnight"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0 0" /><feFuncG type="table" tableValues="0 0.64705882352941" /><feFuncB type="table" tableValues="0 1" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-magenta-yellow"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.78039215686275 1" /><feFuncG type="table" tableValues="0 0.94901960784314" /><feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-purple-green"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0.44705882352941 0.4" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;" ><defs><filter id="wp-duotone-blue-orange"><feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " /><feComponentTransfer color-interpolation-filters="sRGB" ><feFuncR type="table" tableValues="0.098039215686275 1" /><feFuncG type="table" tableValues="0 0.66274509803922" /><feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" /><feFuncA type="table" tableValues="1 1" /></feComponentTransfer><feComposite in2="SourceGraphic" operator="in" /></filter></defs></svg><div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary">Skip to content</a>
<!-- header -->
<header class="new-header">
<div class=" container header-container">
<a class="header-logotype" href="index.html">
<svg width="208" height="43" viewBox="0 0 208 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 43V8.75566H5.14094V12.9389H5.37351C5.60199 12.2687 5.93248 11.5877 6.36497 10.8959C6.80563 10.1933 7.37684 9.6096 8.07862 9.1448C8.78856 8.66918 9.66986 8.43137 10.7225 8.43137C12.0935 8.43137 13.3583 8.90699 14.517 9.85822C15.6758 10.7986 16.602 12.2201 17.2956 14.1225C17.9892 16.0142 18.336 18.3869 18.336 21.2406C18.336 24.0186 17.9974 26.3643 17.3201 28.2775C16.6509 30.18 15.737 31.6231 14.5782 32.6067C13.4276 33.5796 12.1383 34.066 10.7103 34.066C9.69843 34.066 8.83752 33.8444 8.12758 33.4012C7.4258 32.958 6.85051 32.4013 6.40169 31.7311C5.95288 31.0502 5.61015 30.3637 5.37351 29.6719H5.21438V43H0ZM5.10422 21.2081C5.10422 22.689 5.25926 23.9808 5.56935 25.0833C5.87944 26.1859 6.32825 27.0452 6.91579 27.6614C7.50332 28.2667 8.21734 28.5694 9.05785 28.5694C9.90651 28.5694 10.6246 28.2613 11.2121 27.6452C11.7997 27.0182 12.2444 26.1535 12.5463 25.0509C12.8564 23.9375 13.0115 22.6566 13.0115 21.2081C13.0115 19.7705 12.8605 18.5058 12.5586 17.414C12.2567 16.3223 11.8119 15.4683 11.2244 14.8522C10.6369 14.236 9.91467 13.928 9.05785 13.928C8.20918 13.928 7.49108 14.2252 6.90355 14.8198C6.32417 15.4143 5.87944 16.2574 5.56935 17.3492C5.25926 18.4409 5.10422 19.7273 5.10422 21.2081Z" fill="url(#paint0_linear_1237_6)"/>
<path d="M37.4554 15.8575L32.6817 16.2466C32.6001 15.7061 32.4246 15.2197 32.1554 14.7873C31.8861 14.3441 31.5311 13.9928 31.0904 13.7334C30.658 13.4632 30.1398 13.3281 29.5359 13.3281C28.7281 13.3281 28.0467 13.5551 27.4918 14.009C26.9369 14.4522 26.6594 15.0468 26.6594 15.7926C26.6594 16.3871 26.839 16.8898 27.198 17.3005C27.5571 17.7113 28.1732 18.041 29.0463 18.2896L32.4491 19.1976C34.277 19.6948 35.6398 20.4947 36.5374 21.5973C37.435 22.6998 37.8838 24.1483 37.8838 25.9427C37.8838 27.5749 37.5207 29.0072 36.7944 30.2394C36.0763 31.4717 35.089 32.4338 33.8323 33.1256C32.5838 33.8066 31.1435 34.1471 29.5114 34.1471C27.0226 34.1471 25.0396 33.4607 23.5626 32.0879C22.0938 30.7042 21.2329 28.8234 20.9799 26.4453L26.1086 26.0886C26.2637 27.0939 26.639 27.8614 27.2347 28.391C27.8304 28.9099 28.5934 29.1693 29.5237 29.1693C30.4376 29.1693 31.1721 28.9369 31.7269 28.4721C32.29 27.9965 32.5756 27.3857 32.5838 26.6399C32.5756 26.0129 32.3757 25.4995 31.984 25.0995C31.5923 24.6888 30.9884 24.3753 30.1724 24.1591L26.9165 23.2998C25.0804 22.8133 23.7136 21.9702 22.816 20.7704C21.9265 19.5705 21.4818 18.041 21.4818 16.1817C21.4818 14.5819 21.8082 13.2037 22.461 12.0471C23.122 10.8905 24.0482 9.99874 25.2396 9.37179C26.4391 8.74485 27.8427 8.43137 29.4502 8.43137C31.8249 8.43137 33.6936 9.09615 35.0563 10.4257C36.4272 11.7553 37.2269 13.5659 37.4554 15.8575Z" fill="url(#paint1_linear_1237_6)"/>
<path d="M56.8105 15.8575L52.0367 16.2466C51.9551 15.7061 51.7797 15.2197 51.5104 14.7873C51.2411 14.3441 50.8861 13.9928 50.4455 13.7334C50.013 13.4632 49.4948 13.3281 48.891 13.3281C48.0831 13.3281 47.4017 13.5551 46.8468 14.009C46.2919 14.4522 46.0145 15.0468 46.0145 15.7926C46.0145 16.3871 46.194 16.8898 46.5531 17.3005C46.9121 17.7113 47.5282 18.041 48.4013 18.2896L51.8042 19.1976C53.632 19.6948 54.9948 20.4947 55.8924 21.5973C56.7901 22.6998 57.2389 24.1483 57.2389 25.9427C57.2389 27.5749 56.8757 29.0072 56.1495 30.2394C55.4314 31.4717 54.444 32.4338 53.1873 33.1256C51.9388 33.8066 50.4985 34.1471 48.8665 34.1471C46.3776 34.1471 44.3947 33.4607 42.9177 32.0879C41.4488 30.7042 40.5879 28.8234 40.335 26.4453L45.4637 26.0886C45.6187 27.0939 45.9941 27.8614 46.5898 28.391C47.1855 28.9099 47.9484 29.1693 48.8787 29.1693C49.7927 29.1693 50.5271 28.9369 51.082 28.4721C51.645 27.9965 51.9306 27.3857 51.9388 26.6399C51.9306 26.0129 51.7307 25.4995 51.339 25.0995C50.9473 24.6888 50.3435 24.3753 49.5275 24.1591L46.2715 23.2998C44.4355 22.8133 43.0686 21.9702 42.171 20.7704C41.2815 19.5705 40.8368 18.041 40.8368 16.1817C40.8368 14.5819 41.1632 13.2037 41.816 12.0471C42.477 10.8905 43.4032 9.99874 44.5946 9.37179C45.7942 8.74485 47.1977 8.43137 48.8053 8.43137C51.1799 8.43137 53.0486 9.09615 54.4113 10.4257C55.7823 11.7553 56.582 13.5659 56.8105 15.8575Z" fill="url(#paint2_linear_1237_6)"/>
<path d="M70.5227 8.75566V13.9442H59.2004V8.75566H70.5227ZM61.7708 2.78884H66.9852V26.0075C66.9852 26.6453 67.0587 27.1425 67.2056 27.4992C67.3524 27.8451 67.5564 28.0884 67.8176 28.2289C68.0869 28.3694 68.3969 28.4397 68.7478 28.4397C68.9926 28.4397 69.2374 28.4126 69.4823 28.3586C69.7271 28.2937 69.9147 28.2451 70.0453 28.2127L70.8654 33.3526C70.6043 33.4607 70.2371 33.585 69.7638 33.7255C69.2905 33.8768 68.7152 33.9687 68.0379 34.0011C66.7812 34.066 65.6796 33.8444 64.733 33.3363C63.7946 32.8283 63.0642 32.0392 62.542 30.9691C62.0197 29.8989 61.7627 28.5478 61.7708 26.9155V2.78884Z" fill="url(#paint3_linear_1237_6)"/>
<path d="M76.9672 34.0822C76.1594 34.0822 75.4657 33.7039 74.8864 32.9472C74.3152 32.1797 74.0295 31.2609 74.0295 30.1908C74.0295 29.1315 74.3152 28.2235 74.8864 27.4668C75.4657 26.7102 76.1594 26.3318 76.9672 26.3318C77.7506 26.3318 78.4361 26.7102 79.0236 27.4668C79.6111 28.2235 79.9049 29.1315 79.9049 30.1908C79.9049 30.9042 79.7662 31.5582 79.4887 32.1527C79.2194 32.7364 78.8645 33.2066 78.4238 33.5633C77.9832 33.9093 77.4976 34.0822 76.9672 34.0822Z" fill="url(#paint4_linear_1237_6)"/>
<path d="M87.2338 34.0822C86.4259 34.0822 85.7323 33.7039 85.1529 32.9472C84.5817 32.1797 84.2961 31.2609 84.2961 30.1908C84.2961 29.1315 84.5817 28.2235 85.1529 27.4668C85.7323 26.7102 86.4259 26.3318 87.2338 26.3318C88.0172 26.3318 88.7026 26.7102 89.2902 27.4668C89.8777 28.2235 90.1715 29.1315 90.1715 30.1908C90.1715 30.9042 90.0328 31.5582 89.7553 32.1527C89.486 32.7364 89.1311 33.2066 88.6904 33.5633C88.2498 33.9093 87.7642 34.0822 87.2338 34.0822Z" fill="url(#paint5_linear_1237_6)"/>
<path d="M116.669 12.0796H111.307C111.21 11.1608 111.01 10.3446 110.708 9.63122C110.406 8.90699 110.018 8.29085 109.545 7.78281C109.072 7.27476 108.525 6.88562 107.905 6.61538C107.293 6.34515 106.628 6.21003 105.909 6.21003C104.612 6.21003 103.482 6.637 102.519 7.49095C101.556 8.33409 100.809 9.56636 100.279 11.1878C99.7485 12.7984 99.4833 14.7549 99.4833 17.0573C99.4833 19.4246 99.7485 21.4135 100.279 23.0241C100.818 24.6347 101.568 25.8508 102.531 26.6723C103.494 27.4938 104.608 27.9046 105.873 27.9046C106.583 27.9046 107.24 27.7803 107.843 27.5317C108.455 27.2831 108.998 26.9209 109.471 26.4453C109.945 25.9589 110.336 25.3698 110.646 24.678C110.965 23.9862 111.185 23.1971 111.307 22.3107L116.669 22.3431C116.53 23.8673 116.183 25.3374 115.628 26.7534C115.082 28.1586 114.343 29.4179 113.413 30.5313C112.491 31.6339 111.389 32.5094 110.108 33.158C108.835 33.7958 107.395 34.1146 105.787 34.1146C103.551 34.1146 101.552 33.4444 99.7893 32.1041C98.0349 30.7637 96.6476 28.8234 95.6276 26.2832C94.6157 23.743 94.1098 20.6677 94.1098 17.0573C94.1098 13.4361 94.6239 10.3555 95.6521 7.81523C96.6803 5.27501 98.0757 3.34012 99.8383 2.01056C101.601 0.670186 103.584 0 105.787 0C107.24 0 108.586 0.270236 109.826 0.810709C111.075 1.35118 112.181 2.14027 113.144 3.17798C114.106 4.20488 114.89 5.46418 115.494 6.95588C116.106 8.44759 116.497 10.1555 116.669 12.0796Z" fill="url(#paint6_linear_1237_6)"/>
<path d="M120.371 33.6606V8.75566H125.427V13.1011H125.623C125.965 11.5553 126.541 10.3879 127.348 9.59879C128.156 8.79889 129.087 8.39894 130.139 8.39894C130.4 8.39894 130.682 8.42056 130.984 8.4638C131.286 8.50704 131.551 8.56649 131.779 8.64216V14.7711C131.535 14.6738 131.196 14.5874 130.763 14.5117C130.331 14.436 129.935 14.3982 129.576 14.3982C128.809 14.3982 128.124 14.6198 127.52 15.063C126.924 15.4953 126.451 16.1007 126.1 16.879C125.757 17.6572 125.586 18.5544 125.586 19.5705V33.6606H120.371Z" fill="url(#paint7_linear_1237_6)"/>
<path d="M138.267 43C137.606 43 136.986 42.9297 136.406 42.7892C135.835 42.6595 135.362 42.492 134.986 42.2866L136.161 37.1305C136.773 37.3791 137.324 37.5142 137.814 37.5358C138.312 37.5574 138.74 37.4061 139.099 37.0818C139.466 36.7575 139.764 36.2063 139.993 35.428L140.299 34.3741L133.554 8.75566H139.038L142.93 27.0452H143.126L147.055 8.75566H152.576L145.268 36.3522C144.917 37.6926 144.44 38.86 143.836 39.8544C143.24 40.8597 142.486 41.6326 141.572 42.1731C140.658 42.7244 139.556 43 138.267 43Z" fill="url(#paint8_linear_1237_6)"/>
<path d="M155.244 43V8.75566H160.385V12.9389H160.618C160.846 12.2687 161.177 11.5877 161.609 10.8959C162.05 10.1933 162.621 9.6096 163.323 9.1448C164.033 8.66918 164.914 8.43137 165.967 8.43137C167.338 8.43137 168.602 8.90699 169.761 9.85822C170.92 10.7986 171.846 12.2201 172.54 14.1225C173.233 16.0142 173.58 18.3869 173.58 21.2406C173.58 24.0186 173.242 26.3643 172.564 28.2775C171.895 30.18 170.981 31.6231 169.822 32.6067C168.672 33.5796 167.382 34.066 165.954 34.066C164.943 34.066 164.082 33.8444 163.372 33.4012C162.67 32.958 162.095 32.4013 161.646 31.7311C161.197 31.0502 160.854 30.3637 160.618 29.6719H160.459V43H155.244ZM160.348 21.2081C160.348 22.689 160.503 23.9808 160.814 25.0833C161.124 26.1859 161.572 27.0452 162.16 27.6614C162.747 28.2667 163.461 28.5694 164.302 28.5694C165.151 28.5694 165.869 28.2613 166.456 27.6452C167.044 27.0182 167.489 26.1535 167.791 25.0509C168.101 23.9375 168.256 22.6566 168.256 21.2081C168.256 19.7705 168.105 18.5058 167.803 17.414C167.501 16.3223 167.056 15.4683 166.469 14.8522C165.881 14.236 165.159 13.928 164.302 13.928C163.453 13.928 162.735 14.2252 162.148 14.8198C161.568 15.4143 161.124 16.2574 160.814 17.3492C160.503 18.4409 160.348 19.7273 160.348 21.2081Z" fill="url(#paint9_linear_1237_6)"/>
<path d="M187.057 8.75566V13.9442H175.734V8.75566H187.057ZM178.305 2.78884H183.519V26.0075C183.519 26.6453 183.593 27.1425 183.74 27.4992C183.887 27.8451 184.091 28.0884 184.352 28.2289C184.621 28.3694 184.931 28.4397 185.282 28.4397C185.527 28.4397 185.772 28.4126 186.016 28.3586C186.261 28.2937 186.449 28.2451 186.579 28.2127L187.4 33.3526C187.138 33.4607 186.771 33.585 186.298 33.7255C185.825 33.8768 185.249 33.9687 184.572 34.0011C183.315 34.066 182.214 33.8444 181.267 33.3363C180.329 32.8283 179.598 32.0392 179.076 30.9691C178.554 29.8989 178.297 28.5478 178.305 26.9155V2.78884Z" fill="url(#paint10_linear_1237_6)"/>
<path d="M198.746 34.1471C196.845 34.1471 195.201 33.612 193.813 32.5419C192.434 31.4609 191.369 29.9584 190.619 28.0343C189.868 26.0994 189.493 23.8565 189.493 21.3054C189.493 18.7328 189.868 16.4844 190.619 14.5603C191.369 12.6254 192.434 11.1229 193.813 10.0528C195.201 8.97184 196.845 8.43137 198.746 8.43137C200.648 8.43137 202.288 8.97184 203.667 10.0528C205.054 11.1229 206.123 12.6254 206.874 14.5603C207.625 16.4844 208 18.7328 208 21.3054C208 23.8565 207.625 26.0994 206.874 28.0343C206.123 29.9584 205.054 31.4609 203.667 32.5419C202.288 33.612 200.648 34.1471 198.746 34.1471ZM198.771 28.7964C199.636 28.7964 200.358 28.4721 200.937 27.8235C201.517 27.1642 201.953 26.267 202.247 25.132C202.549 23.997 202.7 22.7053 202.7 21.2568C202.7 19.8083 202.549 18.5166 202.247 17.3816C201.953 16.2466 201.517 15.3494 200.937 14.69C200.358 14.0307 199.636 13.701 198.771 13.701C197.898 13.701 197.163 14.0307 196.568 14.69C195.98 15.3494 195.535 16.2466 195.233 17.3816C194.94 18.5166 194.793 19.8083 194.793 21.2568C194.793 22.7053 194.94 23.997 195.233 25.132C195.535 26.267 195.98 27.1642 196.568 27.8235C197.163 28.4721 197.898 28.7964 198.771 28.7964Z" fill="url(#paint11_linear_1237_6)"/>
<defs>
<linearGradient id="paint0_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint3_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint5_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint6_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint8_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint9_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint10_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear_1237_6" x1="103.788" y1="-10.9113" x2="103.788" y2="44.5319" gradientUnits="userSpaceOnUse">
<stop offset="0.208333" stop-color="#2DCAC2"/>
<stop offset="0.614583" stop-color="#2DCAC2"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
</a>
<div class="navigation-container">
<nav class="header-navigation">
<a href="/" class="header-link active" data-anchor>
Home </a>
<a href="#trading-pairs" class="header-link" data-anchor>
Trading Pairs </a>
<a href="#key-features" class="header-link" data-anchor>
Key Features </a>
<a href="#how-it-works" class="header-link" data-anchor>
How it works </a>
<a href="#roadmap" class="header-link" data-anchor>
Roadmap </a>
<a href="#blog" class="header-link" data-anchor>
Blog </a>
<a href="#faq" class="header-link" data-anchor>
FAQ </a>
</nav>
<a href="https://testnet.psstCrypto.io/" target="_blank" class="btn">
Testnet <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8524_2092)">
<path
d="M8 5.5H11V14.5H8V17.5H6V14.5H3V5.5H6V2.5H8V5.5ZM5 7.5V12.5H9V7.5H5ZM18 10.5H21V19.5H18V22.5H16V19.5H13V10.5H16V7.5H18V10.5ZM15 12.5V17.5H19V12.5H15Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8524_2092">
<rect width="24" height="24" fill="white" transform="translate(0 0.5)" />
</clipPath>
</defs>
</svg>
</a>
<div class="language-container">
<!-- <button class="language-btn">
EN
</button> -->
<div class="lang-wrap lang-wrap-desktop">
<div id="polylang-3" class="widget widget_polylang"><ul>
<div class="dropdown lang-switcher-header">
<a class="dropdown-toggle lang-switcher-current-lang language-btn" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"><span>en</span>
</a>
<div class="dropdown-menu dropdown-menu-1 lang-switcher-dropdown" aria-labelledby="dropdownMenuLink"><a
class="dropdown-item lang-switcher-dropdown-item active-item" href="index.html">English<svg data-v-ed558de2=""
width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path data-v-ed558de2="" d="M0.75 4.74038L4.425 8.375L11.25 1.625" stroke="white" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round"></path>
<!--</svg></a><a class="dropdown-item lang-switcher-dropdown-item" href="ru/index.html">Русский<svg
data-v-ed558de2="" width="12" height="10" viewBox="0 0 12 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path data-v-ed558de2="" d="M0.75 4.74038L4.425 8.375L11.25 1.625" stroke="white" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round"></path>
</svg></a><a class="dropdown-item lang-switcher-dropdown-item" href="es/index.html">Español<svg
data-v-ed558de2="" width="12" height="10" viewBox="0 0 12 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path data-v-ed558de2="" d="M0.75 4.74038L4.425 8.375L11.25 1.625" stroke="white" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round"></path>
</svg></a><a class="dropdown-item lang-switcher-dropdown-item" href="zh/index.html">中文 (中国)<svg
data-v-ed558de2="" width="12" height="10" viewBox="0 0 12 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path data-v-ed558de2="" d="M0.75 4.74038L4.425 8.375L11.25 1.625" stroke="white" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round"></path>
</svg></a><a class="dropdown-item lang-switcher-dropdown-item" href="hi/index.html">हिन्दी<svg
data-v-ed558de2="" width="12" height="10" viewBox="0 0 12 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path data-v-ed558de2="" d="M0.75 4.74038L4.425 8.375L11.25 1.625" stroke="white" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round"></path>
</svg>-->
</a></div></ul>
</div> </div>
</div>
<div>
<button class="mob-menu-btn">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8429_216523)">
<path
d="M3.375 4H21.375V6H3.375V4ZM9.375 11H21.375V13H9.375V11ZM3.375 18H21.375V20H3.375V18Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8429_216523">
<rect width="24" height="24" fill="white" transform="translate(0.375)" />
</clipPath>
</defs>
</svg>
</button>
<div class="mob-menu">
<div class="mob-menu-top">
<div class="mob-logo-container">
<a href="#" class="mob-logo">
<svg width="102" height="30" viewBox="0 0 102 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M15.4049 9.96191C16.2115 9.97151 16.9269 10.1107 17.5511 10.3794C18.1752 10.6481 18.6938 11.008 19.1067 11.459C19.5292 11.9005 19.8461 12.4187 20.0573 13.0137C20.2782 13.5991 20.3886 14.2229 20.3886 14.885V15.0002C20.3886 15.672 20.2686 16.3102 20.0285 16.9148C19.7885 17.5194 19.4476 18.052 19.0058 18.5126C18.5641 18.9637 18.036 19.3283 17.4214 19.6066C16.8069 19.8754 16.1251 20.0193 15.3761 20.0385H11.3574V9.96191H15.4049ZM18.156 14.9858C18.1656 14.5348 18.108 14.1221 17.9832 13.7478C17.8583 13.364 17.6663 13.0377 17.407 12.769C17.1478 12.4907 16.8165 12.2747 16.4132 12.1212C16.0099 11.958 15.5393 11.8765 15.0016 11.8765H13.5324V18.1239H14.8431C15.3905 18.1143 15.8658 18.028 16.2691 17.8648C16.682 17.7017 17.0277 17.4858 17.3062 17.2171C17.5847 16.9387 17.7959 16.6173 17.94 16.2526C18.084 15.8783 18.156 15.48 18.156 15.0578V14.9858Z"
fill="#2DCAC2" />
<path
d="M62.5718 9.69107L64.6739 6.55322L66.3411 7.55999L64.9342 9.74709L64.568 10.2761H62.166L62.5718 9.69107Z"
fill="#2DCAC2" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M84.46 20.49C83.7206 20.49 83.034 20.3652 82.4002 20.1157C81.7665 19.8566 81.2143 19.4967 80.7438 19.0361C80.2733 18.5754 79.9036 18.0284 79.6347 17.395C79.3754 16.7616 79.2458 16.0659 79.2458 15.3077V15.1926C79.265 14.4728 79.3994 13.8058 79.6491 13.1916C79.9084 12.5775 80.2685 12.0448 80.7294 11.5938C81.1903 11.1331 81.7377 10.7733 82.3714 10.5142C83.0148 10.255 83.7302 10.1255 84.5176 10.1255H84.6184C85.4346 10.1255 86.1596 10.2598 86.7934 10.5286C87.4368 10.7973 87.9793 11.1619 88.421 11.6226C88.8627 12.0832 89.194 12.6206 89.4149 13.2348C89.6453 13.849 89.7606 14.5016 89.7606 15.1926V15.3077C89.7606 16.0659 89.6261 16.7664 89.3573 17.4094C89.0884 18.0428 88.7187 18.5898 88.2482 19.0505C87.7873 19.5015 87.2399 19.8566 86.6061 20.1157C85.9724 20.3652 85.281 20.49 84.532 20.49H84.46ZM84.5032 18.5034C84.9737 18.5034 85.3962 18.4219 85.7707 18.2587C86.1452 18.086 86.4621 17.8557 86.7214 17.5678C86.9806 17.2799 87.1775 16.9488 87.3119 16.5745C87.4464 16.1906 87.5136 15.7828 87.5136 15.3509V15.2645C87.5136 14.8135 87.4416 14.4008 87.2975 14.0266C87.1631 13.6427 86.9662 13.3116 86.707 13.0333C86.4573 12.755 86.1452 12.5391 85.7707 12.3855C85.4058 12.2224 84.9929 12.1408 84.532 12.1408C84.0615 12.1408 83.639 12.2224 83.2645 12.3855C82.89 12.5487 82.5683 12.7694 82.2994 13.0477C82.0305 13.326 81.8241 13.6571 81.68 14.041C81.536 14.4248 81.464 14.8375 81.464 15.2789V15.3509C81.464 15.7828 81.5312 16.1906 81.6656 16.5745C81.8097 16.9584 82.0113 17.2943 82.2706 17.5822C82.5395 17.8605 82.8611 18.086 83.2356 18.2587C83.6101 18.4219 84.0327 18.5034 84.5032 18.5034ZM39.109 10.2694C39.9156 10.279 40.631 10.4182 41.2552 10.6869C41.8793 10.9556 42.3979 11.3155 42.8108 11.7665C43.2333 12.208 43.5502 12.7262 43.7614 13.3212C43.9823 13.9066 44.0927 14.5304 44.0927 15.1926V15.3077C44.0927 15.9795 43.9727 16.6177 43.7326 17.2223C43.4926 17.8269 43.1517 18.3595 42.7099 18.8201C42.2682 19.2712 41.7401 19.6359 41.1255 19.9142C40.511 20.1829 39.8292 20.3268 39.0802 20.346H35.0615V10.2694H39.109ZM41.8601 15.2933C41.8697 14.8423 41.8121 14.4296 41.6873 14.0554C41.5624 13.6715 41.3704 13.3452 41.1111 13.0765C40.8519 12.7982 40.5206 12.5823 40.1173 12.4287C39.714 12.2656 39.2434 12.184 38.7057 12.184H37.2365V18.4315H38.5472C39.0946 18.4219 39.5699 18.3355 39.9732 18.1724C40.3861 18.0092 40.7318 17.7933 41.0103 17.5246C41.2888 17.2463 41.5 16.9248 41.6441 16.5601C41.7881 16.1858 41.8601 15.7876 41.8601 15.3653V15.2933ZM48.0675 18.5466H53.8146V20.346H45.8925V10.2694H53.6562V12.0688H48.0675V14.4296H53.2673V16.1858H48.0675V18.5466ZM62.2648 20.346H64.7999L61.1701 15.2214L64.5694 10.2694H62.164L59.8738 13.5947L57.5116 10.2694H55.0053L58.4334 15.1782L55.9744 18.6244L55.9686 18.6199L54.4504 20.7392L53.6587 21.892H56.1884L57.2896 20.346H57.2955L59.773 16.8192L62.2648 20.346ZM66.2055 20.346V10.2694H68.3805V20.346H66.2055ZM78.5835 18.5466H72.9084V10.2694H70.7335V20.346H78.5835V18.5466ZM100.438 10.2694H98.3642V16.7472L93.4957 10.2694H91.5656V20.346H93.6253V13.8106L98.5082 20.346H100.438V10.2694Z"
fill="#2DCAC2" />
<path d="M68.0579 3.03689L68.0918 8.719L62.8733 5.45996L68.0579 3.03689Z"
fill="#2DCAC2" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.9748 25.3032C20.6056 25.3032 25.1702 20.7755 25.1702 15.1903C25.1702 9.60517 20.6056 5.0775 14.9748 5.0775C9.34409 5.0775 4.77947 9.60517 4.77947 15.1903C4.77947 20.7755 9.34409 25.3032 14.9748 25.3032ZM14.9748 26.9568C21.5263 26.9568 26.8373 21.6888 26.8373 15.1903C26.8373 8.69187 21.5263 3.42383 14.9748 3.42383C8.42334 3.42383 3.1123 8.69187 3.1123 15.1903C3.1123 21.6888 8.42334 26.9568 14.9748 26.9568Z"
fill="#2DCAC2" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.9524 27.9157C22.0497 27.9157 27.8033 22.2087 27.8033 15.1687C27.8033 8.1288 22.0497 2.42181 14.9524 2.42181C7.85497 2.42181 2.10141 8.1288 2.10141 15.1687C2.10141 22.2087 7.85497 27.9157 14.9524 27.9157ZM14.9524 30.0001C23.2103 30.0001 29.9047 23.3599 29.9047 15.1687C29.9047 6.97762 23.2103 0.337402 14.9524 0.337402C6.6944 0.337402 0 6.97762 0 15.1687C0 23.3599 6.6944 30.0001 14.9524 30.0001Z"
fill="#2DCAC2" />
</svg>
</a>
</div>
<button class="close-btn">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230420)">
<path
d="M11.9997 10.5862L16.9497 5.63623L18.3637 7.05023L13.4137 12.0002L18.3637 16.9502L16.9497 18.3642L11.9997 13.4142L7.04974 18.3642L5.63574 16.9502L10.5857 12.0002L5.63574 7.05023L7.04974 5.63623L11.9997 10.5862Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230420">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</button>
</div>
<div class="mob-menu-content">
<div class="mob-menu-left-side">
<nav class="mob-list">
<a class="mob-link" href="#what-is-psstCrypto" data-anchor>
<span class="link-title">Home</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
<a class="mob-link" href="#trading-pairs" data-anchor>
<span class="link-title">Trading Pairs</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
<a class="mob-link" href="#key-features" data-anchor>
<span class="link-title">Key Features</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
<a class="mob-link" href="#how-it-works" data-anchor>
<span class="link-title">How it works</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
<a class="mob-link" href="#roadmap" data-anchor>
<span class="link-title">Roadmap</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
<a class="mob-link" href="#blog" data-anchor>
<span class="link-title"> Blog</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
<a class="mob-link" href="#faq" data-anchor>
<span class="link-title">FAQ</span>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8445_230357)">
<path
d="M16.172 11.0002L10.808 5.63617L12.222 4.22217L20 12.0002L12.222 19.7782L10.808 18.3642L16.172 13.0002H4V11.0002H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8445_230357">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</nav>
<a href="https://testnet.psstCrypto.io/" target="_blank" class="btn demo-btn">
Try demo <svg width="24" height="24" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8524_2092)">
<path
d="M8 5.5H11V14.5H8V17.5H6V14.5H3V5.5H6V2.5H8V5.5ZM5 7.5V12.5H9V7.5H5ZM18 10.5H21V19.5H18V22.5H16V19.5H13V10.5H16V7.5H18V10.5ZM15 12.5V17.5H19V12.5H15Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8524_2092">
<rect width="24" height="24" fill="white"
transform="translate(0 0.5)" />
</clipPath>
</defs>
</svg>
</a>
<div class="network-listmob">
<a href="#" class="net-link">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M25.0436 8.68915C27.98 13.0477 29.4302 17.964 28.8881 23.6238C28.8858 23.6477 28.8734 23.6697 28.8539 23.6841C26.6303 25.3325 24.4759 26.3329 22.3517 26.9964C22.3351 27.0014 22.3174 27.0011 22.3011 26.9956C22.2847 26.99 22.2704 26.9793 22.2603 26.9652C21.7696 26.2758 21.3237 25.5491 20.933 24.7859C20.9106 24.741 20.9311 24.6868 20.9772 24.6691C21.6854 24.3997 22.3588 24.0769 23.0065 23.6946C23.0576 23.6645 23.0608 23.5906 23.0137 23.5552C22.8762 23.4522 22.74 23.3439 22.6097 23.2356C22.5853 23.2156 22.5525 23.2117 22.5249 23.2251C18.3197 25.1855 13.7132 25.1855 9.45829 23.2251C9.43067 23.2127 9.39784 23.2169 9.37412 23.2366C9.24412 23.3449 9.10762 23.4522 8.97144 23.5552C8.92432 23.5906 8.92822 23.6645 8.97957 23.6946C9.62729 24.0697 10.3007 24.3997 11.0079 24.6704C11.0537 24.6881 11.0755 24.741 11.0527 24.7859C10.6705 25.5501 10.2246 26.2768 9.72479 26.9662C9.70302 26.9941 9.66727 27.0069 9.63347 26.9964C7.51935 26.3329 5.36492 25.3325 3.14128 23.6841C3.12275 23.6697 3.10943 23.6467 3.10748 23.6228C2.65443 18.7272 3.57775 13.7702 6.94832 8.68816C6.95645 8.67471 6.9688 8.66421 6.9831 8.65798C8.64157 7.88956 10.4183 7.32424 12.2754 7.00138C12.3092 6.99613 12.343 7.01188 12.3605 7.04207C12.59 7.4522 12.8523 7.97815 13.0297 8.40796C14.9872 8.10611 16.9752 8.10611 18.9736 8.40796C19.1511 7.98733 19.4043 7.4522 19.6327 7.04207C19.6409 7.02709 19.6535 7.0151 19.6688 7.00779C19.6841 7.00048 19.7012 6.99824 19.7179 7.00138C21.5759 7.32522 23.3527 7.89054 25.0098 8.65798C25.0245 8.66421 25.0365 8.67471 25.0436 8.68915ZM14.0249 17.9974C14.0453 16.5502 13.0001 15.3526 11.6881 15.3526C10.3868 15.3526 9.35169 16.5397 9.35169 17.9974C9.35169 19.4549 10.4073 20.642 11.6881 20.642C12.9897 20.642 14.0249 19.4549 14.0249 17.9974ZM22.664 17.9974C22.6845 16.5502 21.6393 15.3526 20.3276 15.3526C19.026 15.3526 17.9908 16.5397 17.9908 17.9974C17.9908 19.4549 19.0464 20.642 20.3276 20.642C21.6393 20.642 22.664 19.4549 22.664 17.9974Z"
fill="white" />
</svg>
</a>
<a href="#" class="net-link">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M25.2054 11.7351C25.2194 11.9429 25.2194 12.1508 25.2194 12.3586C25.2194 18.6968 20.6826 26 12.3907 26C9.83609 26 7.463 25.2132 5.4668 23.8477C5.82976 23.8922 6.17871 23.907 6.55563 23.907C8.66347 23.907 10.6039 23.15 12.1534 21.8586C10.1711 21.8141 8.50994 20.4336 7.9376 18.5336C8.21681 18.5781 8.49598 18.6078 8.78915 18.6078C9.19396 18.6078 9.59882 18.5484 9.9757 18.4445C7.90971 17.9992 6.36016 16.0695 6.36016 13.7391V13.6797C6.9604 14.036 7.65843 14.2586 8.39822 14.2883C7.18375 13.4273 6.38809 11.9578 6.38809 10.2953C6.38809 9.40467 6.6114 8.58826 7.00229 7.87576C9.22185 10.7851 12.5582 12.6851 16.2993 12.8929C16.2295 12.5367 16.1876 12.1656 16.1876 11.7945C16.1876 9.15232 18.1978 7 20.6965 7C21.9947 7 23.1673 7.5789 23.9909 8.51406C25.0099 8.30626 25.9871 7.90546 26.8526 7.35625C26.5175 8.46956 25.8056 9.40472 24.8704 9.99842C25.7777 9.89457 26.6572 9.62732 27.4668 9.25627C26.8527 10.2062 26.0849 11.0523 25.2054 11.7351Z"
fill="white" />
</svg>
</a>
<a href="#" class="net-link">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M6.51424 14.7489C12.6882 12.2087 16.8052 10.534 18.8651 9.72489C24.7467 7.4147 25.9688 7.01339 26.7654 7.00014C26.9406 6.99723 27.3323 7.03823 27.586 7.23267C27.8003 7.39685 27.8593 7.61863 27.8875 7.77429C27.9157 7.92995 27.9508 8.28455 27.9229 8.56163C27.6042 11.7241 26.2251 19.3986 25.5234 22.9406C25.2266 24.4394 24.642 24.9419 24.0761 24.9911C22.8462 25.098 21.9123 24.2235 20.7211 23.4861C18.8571 22.3323 17.804 21.614 15.9947 20.488C13.9037 19.1868 15.2592 18.4716 16.4509 17.3027C16.7627 16.9969 22.1816 12.3423 22.2865 11.92C22.2996 11.8672 22.3118 11.6704 22.188 11.5664C22.0641 11.4625 21.8814 11.498 21.7495 11.5263C21.5625 11.5664 18.5848 13.425 12.8162 17.1022C11.971 17.6503 11.2054 17.9174 10.5195 17.9034C9.76327 17.888 8.30867 17.4996 7.22733 17.1677C5.90101 16.7606 4.84689 16.5453 4.93868 15.8539C4.98649 15.4937 5.51167 15.1254 6.51424 14.7489Z"
fill="white" />
</svg>
</a>
<a href="#" class="net-link">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M18.1993 16.5C18.1993 20.6391 14.6707 24 10.2996 24C5.92843 24 2.3999 20.6391 2.3999 16.5C2.3999 12.3609 5.92843 9 10.2996 9C14.6707 9 18.1993 12.3609 18.1993 16.5ZM26.8538 16.5C26.8538 20.3907 25.0808 23.553 22.904 23.553C20.7272 23.553 18.9541 20.3907 18.9541 16.5C18.9541 12.6093 20.7272 9.44702 22.904 9.44702C25.0808 9.44702 26.8538 12.5927 26.8538 16.5ZM30.3999 16.5C30.3999 19.9934 29.7855 22.8245 29.0131 22.8245C28.2407 22.8245 27.6262 19.9934 27.6262 16.5C27.6262 13.0066 28.2407 10.1755 29.0131 10.1755C29.7855 10.1755 30.3999 13.0066 30.3999 16.5Z"
fill="white" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<section id="what-is-psstCrypto" class="trade-section section">
<div class="trade-container">
<div class="trade-img_left">
<img src="wp-content/themes/psstCrypto/assets/images/trade_img.png">
</div>
<div class="trade-section-content">
<span class="text">created by traders for traders </span>
<h1 class="main-title">Trade Decentralized Derivatives with Limit Orderbook</h1>
<p class="trade-text">psst..Crypto is the first DEX that is run on a limit order book powered by the native blockchain. Democratically managed by the community in a trustless and verifiable way</p>
<div class="trade-btn-container">
<a href="https://testnet.psstCrypto.io/" target="_blank" class="btn">
Try it now
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8524_1609)">
<path
d="M8.5 5H11.5V14H8.5V17H6.5V14H3.5V5H6.5V2H8.5V5ZM5.5 7V12H9.5V7H5.5ZM18.5 10H21.5V19H18.5V22H16.5V19H13.5V10H16.5V7H18.5V10ZM15.5 12V17H19.5V12H15.5Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8524_1609">
<rect width="24" height="24" fill="white" transform="translate(0.5)" />
</clipPath>
</defs>
</svg>
</a>
<a href="#how-it-works" class="link-to-video-btn transparent-btn">
How it works
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8524_1759)">
<path
d="M8.252 5.43924L18.76 11.5692C18.8353 11.6133 18.8978 11.6763 18.9412 11.752C18.9846 11.8277 19.0074 11.9135 19.0074 12.0007C19.0074 12.088 18.9846 12.1737 18.9412 12.2494C18.8978 12.3251 18.8353 12.3882 18.76 12.4322L8.252 18.5622C8.17587 18.6067 8.08935 18.6302 8.0012 18.6304C7.91305 18.6306 7.82642 18.6075 7.75007 18.5634C7.67373 18.5194 7.61039 18.4559 7.56647 18.3795C7.52256 18.3031 7.49963 18.2164 7.5 18.1282V5.87124C7.49998 5.78326 7.52317 5.69684 7.56723 5.62069C7.61129 5.54454 7.67466 5.48136 7.75094 5.43754C7.82723 5.39372 7.91373 5.3708 8.0017 5.3711C8.08968 5.3714 8.17602 5.3949 8.252 5.43924Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8524_1759">
<rect width="24" height="24" fill="white" transform="translate(0.5)" />
</clipPath>
</defs>
</svg>
</a>
<div class="network-list">
<a href="https://discord.com" target="_blank" class="net-link">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M25.0436 8.68915C27.98 13.0477 29.4302 17.964 28.8881 23.6238C28.8858 23.6477 28.8734 23.6697 28.8539 23.6841C26.6303 25.3325 24.4759 26.3329 22.3517 26.9964C22.3351 27.0014 22.3174 27.0011 22.3011 26.9956C22.2847 26.99 22.2704 26.9793 22.2603 26.9652C21.7696 26.2758 21.3237 25.5491 20.933 24.7859C20.9106 24.741 20.9311 24.6868 20.9772 24.6691C21.6854 24.3997 22.3588 24.0769 23.0065 23.6946C23.0576 23.6645 23.0608 23.5906 23.0137 23.5552C22.8762 23.4522 22.74 23.3439 22.6097 23.2356C22.5853 23.2156 22.5525 23.2117 22.5249 23.2251C18.3197 25.1855 13.7132 25.1855 9.45829 23.2251C9.43067 23.2127 9.39784 23.2169 9.37412 23.2366C9.24412 23.3449 9.10762 23.4522 8.97144 23.5552C8.92432 23.5906 8.92822 23.6645 8.97957 23.6946C9.62729 24.0697 10.3007 24.3997 11.0079 24.6704C11.0537 24.6881 11.0755 24.741 11.0527 24.7859C10.6705 25.5501 10.2246 26.2768 9.72479 26.9662C9.70302 26.9941 9.66727 27.0069 9.63347 26.9964C7.51935 26.3329 5.36492 25.3325 3.14128 23.6841C3.12275 23.6697 3.10943 23.6467 3.10748 23.6228C2.65443 18.7272 3.57775 13.7702 6.94832 8.68816C6.95645 8.67471 6.9688 8.66421 6.9831 8.65798C8.64157 7.88956 10.4183 7.32424 12.2754 7.00138C12.3092 6.99613 12.343 7.01188 12.3605 7.04207C12.59 7.4522 12.8523 7.97815 13.0297 8.40796C14.9872 8.10611 16.9752 8.10611 18.9736 8.40796C19.1511 7.98733 19.4043 7.4522 19.6327 7.04207C19.6409 7.02709 19.6535 7.0151 19.6688 7.00779C19.6841 7.00048 19.7012 6.99824 19.7179 7.00138C21.5759 7.32522 23.3527 7.89054 25.0098 8.65798C25.0245 8.66421 25.0365 8.67471 25.0436 8.68915ZM14.0249 17.9974C14.0453 16.5502 13.0001 15.3526 11.6881 15.3526C10.3868 15.3526 9.35169 16.5397 9.35169 17.9974C9.35169 19.4549 10.4073 20.642 11.6881 20.642C12.9897 20.642 14.0249 19.4549 14.0249 17.9974ZM22.664 17.9974C22.6845 16.5502 21.6393 15.3526 20.3276 15.3526C19.026 15.3526 17.9908 16.5397 17.9908 17.9974C17.9908 19.4549 19.0464 20.642 20.3276 20.642C21.6393 20.642 22.664 19.4549 22.664 17.9974Z"
fill="white" />
</svg>
</a>
<a href="https://twitter.com" target="_blank" class="net-link">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M25.2054 11.7351C25.2194 11.9429 25.2194 12.1508 25.2194 12.3586C25.2194 18.6968 20.6826 26 12.3907 26C9.83609 26 7.463 25.2132 5.4668 23.8477C5.82976 23.8922 6.17871 23.907 6.55563 23.907C8.66347 23.907 10.6039 23.15 12.1534 21.8586C10.1711 21.8141 8.50994 20.4336 7.9376 18.5336C8.21681 18.5781 8.49598 18.6078 8.78915 18.6078C9.19396 18.6078 9.59882 18.5484 9.9757 18.4445C7.90971 17.9992 6.36016 16.0695 6.36016 13.7391V13.6797C6.9604 14.036 7.65843 14.2586 8.39822 14.2883C7.18375 13.4273 6.38809 11.9578 6.38809 10.2953C6.38809 9.40467 6.6114 8.58826 7.00229 7.87576C9.22185 10.7851 12.5582 12.6851 16.2993 12.8929C16.2295 12.5367 16.1876 12.1656 16.1876 11.7945C16.1876 9.15232 18.1978 7 20.6965 7C21.9947 7 23.1673 7.5789 23.9909 8.51406C25.0099 8.30626 25.9871 7.90546 26.8526 7.35625C26.5175 8.46956 25.8056 9.40472 24.8704 9.99842C25.7777 9.89457 26.6572 9.62732 27.4668 9.25627C26.8527 10.2062 26.0849 11.0523 25.2054 11.7351Z"
fill="white" />
</svg>
</a>
<a href="https://t.me/" target="_blank" class="net-link">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M6.51424 14.7489C12.6882 12.2087 16.8052 10.534 18.8651 9.72489C24.7467 7.4147 25.9688 7.01339 26.7654 7.00014C26.9406 6.99723 27.3323 7.03823 27.586 7.23267C27.8003 7.39685 27.8593 7.61863 27.8875 7.77429C27.9157 7.92995 27.9508 8.28455 27.9229 8.56163C27.6042 11.7241 26.2251 19.3986 25.5234 22.9406C25.2266 24.4394 24.642 24.9419 24.0761 24.9911C22.8462 25.098 21.9123 24.2235 20.7211 23.4861C18.8571 22.3323 17.804 21.614 15.9947 20.488C13.9037 19.1868 15.2592 18.4716 16.4509 17.3027C16.7627 16.9969 22.1816 12.3423 22.2865 11.92C22.2996 11.8672 22.3118 11.6704 22.188 11.5664C22.0641 11.4625 21.8814 11.498 21.7495 11.5263C21.5625 11.5664 18.5848 13.425 12.8162 17.1022C11.971 17.6503 11.2054 17.9174 10.5195 17.9034C9.76327 17.888 8.30867 17.4996 7.22733 17.1677C5.90101 16.7606 4.84689 16.5453 4.93868 15.8539C4.98649 15.4937 5.51167 15.1254 6.51424 14.7489Z"
fill="white" />
</svg>
</a>
<a href="https://medium.com/" target="_blank" class="net-link">
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M18.1993 16.5C18.1993 20.6391 14.6707 24 10.2996 24C5.92843 24 2.3999 20.6391 2.3999 16.5C2.3999 12.3609 5.92843 9 10.2996 9C14.6707 9 18.1993 12.3609 18.1993 16.5ZM26.8538 16.5C26.8538 20.3907 25.0808 23.553 22.904 23.553C20.7272 23.553 18.9541 20.3907 18.9541 16.5C18.9541 12.6093 20.7272 9.44702 22.904 9.44702C25.0808 9.44702 26.8538 12.5927 26.8538 16.5ZM30.3999 16.5C30.3999 19.9934 29.7855 22.8245 29.0131 22.8245C28.2407 22.8245 27.6262 19.9934 27.6262 16.5C27.6262 13.0066 28.2407 10.1755 29.0131 10.1755C29.7855 10.1755 30.3999 13.0066 30.3999 16.5Z"
fill="white" />
</svg>
</a>
</div>
</div>
</div>
<div class="trade-img-right">
<img src="wp-content/themes/psstCrypto/assets/images/trade_img2.png">
</div>
<div class="img-mob">
<img src="wp-content/themes/psstCrypto/assets/images/trading-mob.png" alt="trading img" />
</div>
</div>
</section>
<section id="" class="partners-section section">
<div class="marguee-infinite">
<div class="scroll_bg">
<div id="scroll_bg">
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotypy1.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype2.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype3.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype4.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype5.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype6.svg" alt="logo">
</div>
</div>
<div id="scroll_bg">
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotypy1.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype2.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype3.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype4.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype5.svg" alt="logo">
</div>
<div class="img-box">
<img src="wp-content/themes/psstCrypto/assets/images/logotype6.svg" alt="logo">
</div>
</div>
</div>
</div>
</section>
<section id="trading-pairs" class="trading-section section">
<div class="container">
<span class="section-subtitle">
Our trading pairs
</span>
<h2 class="section-title">
This is The Right Time to Start Trading
</h2>
<div class="tranding-container">
<div class="cryptoboxes mcw-table light" id="mcw-643" data-realtime="on"><div class="title-bar">aval</div><table class="mcw-datatable dataTable display nowrap" style="width: 100%" data-length="25" data-total="11"><thead><tr><th class="col-rank text-left" data-col=rank>#</th><th class="col-name text-left" data-col=name>Cryptocurrency</th><th class="col-price_usd" data-col=price_usd>Price</th><th class="col-market_cap_usd" data-col=market_cap_usd>Marketcap</th><th class="col-volume_usd_24h" data-col=volume_usd_24h>Volume (24h)</th><th class="col-available_supply" data-col=available_supply>Supply</th><th class="col-percent_change_24h" data-col=percent_change_24h>Change</th><th class="col-weekly" data-col=weekly>Dynamic</th><th class="col-trading chart-wrapper" data-col="trading" tabindex="0" aria-controls="DataTables_Table_0" rowspan="1" colspan="1" style="width: 170px;" aria-label="Dynamyc: activate to sort column ascending">Trading</th></tr></thead><tbody></tbody></table></div>
<ul class="tranding-table">
<li class="table-row">
<div class="name-row">
<span class="td-title">
Cryptocurrency
</span>
</div>
<div class="price-row">
<span class="td-title">
Last Price
</span>
</div>
<div class="one-h-row">
<span class="td-title">
1h %
</span>
</div>
<div class="24h-row">
<span class="td-title">
24h %
</span>
</div>
<div class="seven-d-row">
<span class="td-title">
7d %
</span>
</div>
<div class="dynamyc-row">
<span class="td-title">
Dynamyc
</span>
</div>
<div class="trading-row">
<span class="td-title">
Trading
</span>
</div>
</li>
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/coin/bitcoin.svg">
<span class="currency">Bitcoin</span>
<span class="currency-abreviation">BTC</span>
</div>
<div class="price-row">
<span>$24,110.49</span>
</div>
<div class="one-h-row increase">0.09%</div>
<div class="24h-row decrease">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/chart.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
BTC/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/ethereum.svg">
<span class="currency">Ethereum</span>
<span class="currency-abreviation">ETH</span>
</div>
<div class="price-row">
<span>$1,568.01</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/dynamic2.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
ETH/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>
<!--<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/ethereum.svg">
<span class="currency">Ethereum</span>
<span class="currency-abreviation">ETH</span>
</div>
<div class="price-row">
<span>$1,568.01</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/dynamic2.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
ETH/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>--
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/coin/solana.svg">
<span class="currency">Solana</span>
<span class="currency-abreviation">SOL</span>
</div>
<div class="price-row">
<span>$1,568.01</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/dynamic2.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
ETH/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/bitcoin.svg">
<span class="currency">Bitcoin</span>
<span class="currency-abreviation">BTC</span>
</div>
<div class="price-row">
<span>$24,110.49</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/chart.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
BTC/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/ethereum.svg">
<span class="currency">Ethereum</span>
<span class="currency-abreviation">ETH</span>
</div>
<div class="price-row">
<span>$1,568.01</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/dynamic2.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
ETH/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/coin/ethereum.svg">
<span class="currency">Ethereum</span>
<span class="currency-abreviation">ETH</span>
</div>
<div class="price-row">
<span>$1,568.01</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/dynamic2.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
ETH/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>-->
<li class="table-row">
<div class="name-row">
<img src="/wp-content/themes/psstCrypto/assets/images/coin/solana.svg">
<span class="currency">Solana</span>
<span class="currency-abreviation">SOL</span>
</div>
<div class="price-row">
<span>$1,568.01</span>
</div>
<div class="one-h-row">0.09%</div>
<div class="24h-row">4.49%</div>
<div class="seven-d-row">3.22%</div>
<div class="dynamyc-row">
<div class="dynamic-img-container">
<img src="/wp-content/themes/psstCrypto/assets/images/dynamic2.svg">
</div>
</div>
<div class="trading-row">
<button class="btn">
SOL/USDC
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M8.7334 5H11.7334V14H8.7334V17H6.7334V14H3.7334V5H6.7334V2H8.7334V5ZM5.7334 7V12H9.7334V7H5.7334ZM18.7334 10H21.7334V19H18.7334V22H16.7334V19H13.7334V10H16.7334V7H18.7334V10ZM15.7334 12V17H19.7334V12H15.7334Z"
fill="white" />
</svg>
</button>
</div>
</li>
</ul>
<div class="trading-bottom-container">
<p class="trading-text">Trading and entering into perpetual contracts involves substrantial financial and other risks. psst..Crypto doesn’t provide financial advice.</p>
<button class="transparent-btn show_more">
Show More
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M7.20711 9C6.76165 9 6.53857 9.53857 6.85355 9.85355L11.6464 14.6464C11.8417 14.8417 12.1583 14.8417 12.3536 14.6464L17.1464 9.85355C17.4614 9.53857 17.2383 9 16.7929 9L7.20711 9Z"
fill="white" />
</svg>
</button>
<button class="btn trading-btn-mob">
Start trading
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8741_2233)">
<path
d="M8.5 5H11.5V14H8.5V17H6.5V14H3.5V5H6.5V2H8.5V5ZM5.5 7V12H9.5V7H5.5ZM18.5 10H21.5V19H18.5V22H16.5V19H13.5V10H16.5V7H18.5V10ZM15.5 12V17H19.5V12H15.5Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8741_2233">
<rect width="24" height="24" fill="white" transform="translate(0.5)" />
</clipPath>
</defs>
</svg>
</button>
</div>
</div>
</div>
</section>
<section id="key-features" class="features-section section">
<div class="container">
<span class="section-subtitle">
Why psst..Crypto?
</span>
<h2 class="section-title">
Key Features
</h2>
<div class="features-list" id="features-list">
<div class="features-item">
<img src="wp-content/themes/psstCrypto/assets/images/features.png">
<div class="features-content">
<h3 class="secondary-title">Decentralized Derivatives</h3>
<p class="features-description">
psst..Crypto will offer wide range of liquid derivatives. Perpetual Futures, Cash Settled Delivery Futures, Options and Exotic Derivatives
</p>
</div>
</div>
<div class="features-item">
<img src="wp-content/themes/psstCrypto/assets/images/features2.png">
<div class="features-content">
<h3 class="secondary-title">Decentralized limit order book</h3>
<p class="features-description">
Run across distributed network that ensures sustainability without compromising matching engine performance and TPS
</p>
</div>
</div>
<div class="features-item">
<img src="wp-content/themes/psstCrypto/assets/images/features3.png">
<div class="features-content">
<h3 class="secondary-title">Self-Custody and Permissionless</h3>
<p class="features-description">
Customers connect crypto-wallet and lock their funds on the smart contract just like typical DEX
</p>
</div>
</div>
<div class="features-item">
<img src="wp-content/themes/psstCrypto/assets/images/features4.png">
<div class="features-content">
<h3 class="secondary-title">Decentralized Data Oracles</h3>
<p class="features-description">
Price oracles will supply real-time price of the asset to form the index of the underlying.
</p>
</div>
</div>
<div class="features-item">
<img src="wp-content/themes/psstCrypto/assets/images/features5.png">
<div class="features-content">
<h3 class="secondary-title">Transparent and Auditable Trading</h3>
<p class="features-description">
Trade settlement, Liquidations, Fees are on-chain, that ensures complete transparency
</p>
</div>
</div>
<div class="features-item">
<img src="wp-content/themes/psstCrypto/assets/images/features6.png">
<div class="features-content">
<h3 class="secondary-title">Liquidity Incentives</h3>
<p class="features-description">
Trading Fees are redistributed between takers and market makers.
</p>
</div>
</div>
</div>
<div class="features-mob-container">
<div class="features-btn-mob">
<button class="slide-btn features_prev">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8512_1784)">
<path
d="M7.828 11H20V13H7.828L13.192 18.364L11.778 19.778L4 12L11.778 4.22198L13.192 5.63598L7.828 11Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8512_1784">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</button>
<button class=" slide-btn features_next">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_8512_1351)">
<path
d="M16.172 11L10.808 5.63598L12.222 4.22198L20 12L12.222 19.778L10.808 18.364L16.172 13H4V11H16.172Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_8512_1351">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>