-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1555 lines (1445 loc) · 62.9 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 class="no-js" lang="zxx">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Evanesco</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Place favicon.ico in the root directory -->
<link
rel="shortcut icon"
type="image/x-icon"
href="favicon.ico"
/>
<!-- new CSS here -->
<!--Theme custom css -->
<link rel="stylesheet" href="assets/newcss/style.css" />
<!--Theme Responsive css-->
<link rel="stylesheet" href="assets/newcss/responsive.css" />
<!-- CSS here -->
<link rel="stylesheet" href="assets/css/preloader.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/meanmenu.css" />
<link rel="stylesheet" href="assets/css/owl.carousel.min.css" />
<link rel="stylesheet" href="assets/css/animate.min.css" />
<link rel="stylesheet" href="assets/css/jquery.fancybox.min.css" />
<link rel="stylesheet" href="assets/css/fontAwesome5Pro.css" />
<link rel="stylesheet" href="assets/css/elegantFont.css" />
<link rel="stylesheet" href="assets/css/default.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<style>
.partner {
background-image: url(./assets/partner/consensus.jpg);
}
.main-fetured {
position: relative;
background: url(./assets/img/blur_image.png) no-repeat center
center/cover;
z-index: 1;
-webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
border-radius: 11px;
-moz-border-radius: 11px;
-webkit-border-radius: 11px;
overflow: hidden;
}
.main-fetured:before {
background: rgba(25, 12, 109, 0.79);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
content: "";
}
.main-fetured .single-feaured {
text-align: center;
padding: 0 39px;
}
.main-fetured .single-feaured img {
margin-bottom: 40px;
}
.main-fetured .single-feaured .feature-title {
margin-bottom: 17px;
}
.main-fetured .single-feaured p {
margin-bottom: 0;
}
.main-fetured-p {
position: relative;
/* background: url(./assets/img/blur_image.png) no-repeat center center/cover; */
z-index: 1;
-webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
border-radius: 11px;
-moz-border-radius: 11px;
-webkit-border-radius: 11px;
overflow: hidden;
}
.main-fetured-p:before {
background: rgba(241, 241, 241, 0.9);
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
content: "";
}
.middle {
display: flex;
justify-content: center;
align-items: center;
}
.tittle {
font-family: "Frank Ruhl Libre", serif;
color: #d6007f;
font-size: 32px;
margin-top: 0px;
font-weight: 900;
line-height: 1.2;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
}
@media (min-width:876px) {
.logoImg {
max-width:200px !important;
padding: 10px;
}
.logoBox {
height: 100px;
width: 200px;
margin: 15px;
}
}
@media (max-width:875px) {
.logoImg {
max-width:150px !important;
padding: 10px;
}
.logoBox {
height: 100px;
width: 170px;
}
}
</style>
</head>
<body >
<!--[if lte IE 9]>
<p class="browserupgrade">
You are using an <strong>outdated</strong> browser. Please
<a href="https://browsehappy.com/">upgrade your browser</a> to improve
your experience and security.
</p>
<![endif]-->
<!-- Add your site or application content here -->
<!-- preloader area start -->
<!-- <div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="object" id="object_one"></div>
<div class="object" id="object_two"></div>
<div class="object" id="object_three"></div>
<div class="object" id="object_four"></div>
<div class="object" id="object_five"></div>
<div class="object" id="object_six"></div>
<div class="object" id="object_seven"></div>
<div class="object" id="object_eight"></div>
</div>
</div>
</div> -->
<!-- preloader area end -->
<!-- scroll up area start -->
<div class="scroll-up" id="scroll" style="display: none">
<a href="javascript:void(0);"><i class="fas fa-level-up-alt"></i></a>
</div>
<!-- scroll up area end -->
<!-- header area start -->
<header>
<div class="header__area p-relative header__transparent">
<div id="header__sticky" class="header__bottom">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-6 col-lg-6 col-md-9 col-sm-9 col-9" style="padding: 5px 0">
<div class="logo">
<a href="index.html">
<img
style="width: 150px;margin-left: 10px"
src="assets/img/logo1.png"
class="eva"
alt="logo"
/>
</a>
<!-- remove web3 logo info by Null
<a href="index.html">
<img
style="width: 100px; margin-left: 15px"
src="assets/img/web31.png"
alt="logo"
/>
</a>
-->
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-3 col-sm-3 col-3">
<div
class="header__bottom-right d-flex justify-content-end align-items-center"
>
<div class="main-menu">
<nav id="mobile-menu">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li><a href="./assets/whitepaper.pdf">White Paper</a></li>
<li><a href="finance.html">Finance</a></li>
<li><a class="contact" onclick="smoothSctollBottom()" href="javascript:;">Contact Us</a></li>
<!-- remove by Null
<li>
<a href="javascript:;">Language</a>
<ul class="submenu">
<li><a href="index.html">English</a></li>
<li><a href="./zh/index.html">Chinese</a></li>
</ul>
</li>
-->
</ul>
</nav>
</div>
<!-- <div class="header__btn d-none d-sm-block d-lg-none d-xl-block ml-50">
<a href="contact.html" class="z-btn z-btn-white">Get a Quote</a>
</div> -->
<div class="sidebar__menu d-lg-none">
<div class="sidebar-toggle-btn" id="sidebar-toggle">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header__search-wrapper">
<div class="container">
<div class="row">
<div class="col-xl-12">
<form action="#">
<input type="text" placeholder="Your Keywords" />
<button type="submit"><i class="far fa-search"></i></button>
</form>
</div>
</div>
</div>
</div>
<div class="body-overlay-2"></div>
</div>
</header>
<!-- header area end -->
<!-- sidebar area start -->
<section class="sidebar__area">
<div class="sidebar__wrapper">
<div class="sidebar__close">
<button class="sidebar__close-btn" id="sidebar__close-btn">
<span><i class="fal fa-times"></i></span>
<span>close</span>
</button>
</div>
<div class="sidebar__tab">
<ul class="nav nav-tabs" id="sidebar-tab" role="tablist">
<li class="nav-item">
<a
class="nav-link active"
id="menu-tab"
data-toggle="tab"
href="#menu"
role="tab"
aria-controls="menu"
aria-selected="false"
>menu</a
>
</li>
</ul>
</div>
<div class="sidebar__content">
<div class="tab-content" id="sidebar-tab-content">
<div
class="tab-pane fade show active"
id="menu"
role="tabpanel"
aria-labelledby="menu-tab"
>
<div class="logo mb-40">
<a href="index.html">
<img
style="width: 90px;; margin-top: 10px"
src="assets/img/logo1.png"
alt="logo"
/>
</a>
</div>
<div class="mobile-menu"></div>
</div>
<div
class="tab-pane fade"
id="info"
role="tabpanel"
aria-labelledby="info-tab"
>
<div class="sidebar__info">
<div class="logo mb-40">
<a href="index.html">
<img
style="width: 90px;; margin-top: 10px"
src="assets/img/logo1.png"
alt="logo"
/>
</a>
</div>
<p>Do you have any question? Feel free to contact us.</p>
<!-- <p>I will give you a complete system description of EVANESCO.</p> -->
<!-- <a
href="contact.html"
style="height: 40px; line-height: 35px"
class="z-btn z-btn-white"
>contact us</a
> -->
<div class="sidebar__contact mt-30">
<ul>
<li>
<div class="icon">
<i class="fal fa-envelope"></i>
</div>
<div class="text">
<span
><a href="mailto:contact@evanesco.org"
>contact@evanesco.org</a
></span
>
</div>
</li>
<li>
<div class="icon">
<i class="fal fa-paper-plane"></i>
</div>
<div class="text">
<span>
<a href="https://t.me/EvanescoIO">
https://t.me/EvanescoIO
</a>
</span>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="body-overlay"></div>
<!-- sidebar area end -->
<main>
<!-- slider area start -->
<section class="slider__area">
<div class="slider-active">
<div
class="single-slider slider__height d-flex align-items-center"
data-background="assets/img/slider/slider-6.jpg"
>
<!-- <div class="single-slider slider__height d-flex align-items-center" data-background="assets/img/slider/slider-4.jpg"> -->
<div class="slider__shape">
<!-- <img class="shape triangle" src="assets/img/icon/slider/triangle.png" alt="triangle"> -->
<img
class="shape dotted-square"
style="width: 80px; height: 80px"
src="assets/img/ui/bigred.svg"
alt="dotted-square"
/>
<img
class="shape bigred"
src="assets/img/ui/red.svg"
alt="dotted-square"
/>
<img
class="shape solid-square"
src="assets/img/ui/bule.svg"
alt="solid-square"
/>
<img
class="shape circle"
src="assets/img/icon/slider/circle.png"
alt="circle"
/>
</div>
<div class="container">
<div class="row">
<div class="col-xl-9 col-lg-9 col-md-10 col-sm-10">
<div class="slider__content">
<h1 id="text" data-animation="fadeInUp" data-delay=".3s" >Next Privacy Finance Ecology Protocol</h1>
<h1 data-animation="fadeInUp" data-delay=".5s">
A Fairer and More Trustworthy Decentralized Ecology of
Next Privacy Finance
</h1>
<h4
data-animation="fadeInUp"
class="brief"
data-delay=".7s"
style="color: aliceblue; padding-bottom: 30px"
>
EVA is the unique financial protocol platform in the Web3 ecology that combines Layer0 network infrastructure and privacy computing framework & provides safe, reliable and efficient network access and encrypted financial services for the Web3.0 application and DeFi
ecology.
</h4>
<div
class="slider__btn"
data-animation="fadeInUp"
data-delay=".7s"
>
<a href="./assets/whitepaper.pdf" class="z-btn z-btn-transparent"
>White Paper</a
>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-2 col-sm-2">
<div
class="slider__play"
data-animation="fadeInRight"
data-delay=".9s"
>
<a href="javaScript:;" onclick="startup()" class="slider__play-btn" >
<i class="fal fa-play"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- slider area end -->
<!-- features area start -->
<div class="briefBox" style="display: none">
<section
class="features__area mt--100 wow fadeInUp"
data-wow-delay=".5s"
>
<div class="container">
<div class="main-fetured features__inner fix">
<div class="row no-gutters">
<div class="col-xl-12 col-lg-12 col-md-14 col-sm-14">
<div class="features__item text-center">
<div class="features__content">
<h3>
EVA continuously fabricates a fairer new ecology network
of privacy finance, relying on the underlying secure
privacy network, mainstream cross-chain adaptation
mechanism, powerful privacy transaction engine and
standardized PEX as a Service.
</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- features area end -->
<!-- Features start -->
<section class="services__area pt-80">
<div class="container">
<div class="row">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<h1>Features</h1>
<div class="tittle">Next Privacy Network</div>
</div>
<p>
EVA provides privacy schemes for each step and different levels
of the complete transaction process to achieve higher security
of encrypted assets, based on a variety of privacy technologies.
</p>
</div>
</div>
<div class="row mt-50">
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/1.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">Routing Privacy</h3>
<p style="text-align: center">
Multi-hop private network transmission conceals routing
information of both parties to the transaction and isolates
their identity information.
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/2.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">Asset Privacy</h3>
<p style="text-align: center">
It offers increased security for encrypted token assets and
non-fungible token, and makes anonymous mechanisms available
at the ledger and the account level.
</p>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/3.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">Transaction Privacy</h3>
<p style="text-align: center">
Protecting private transactions at the application layer
conceals transaction contents, and allows user to view and
transfer transaction contents and assets according to
contract authority.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<div class="tittle">Efficient and Safe Consensus System</div>
</div>
<p>
EVA's unique dual consensus system enables enhanced security,
increased decentralization and efficiency, lower user
transaction costs and superior transaction experience.
</p>
</div>
</div>
<div class="row mt-50">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/4.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">POW Hash Rate Safety</h3>
<p style="text-align: center">
EVA using the traditional reliable POW hash rate model
delivers a fairer and more stable miner community and ensure
the overall network security.
</p>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/5.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">Efficient Trading Network</h3>
<p style="text-align: center">
EVA integrating a POS-based two-tier transaction collector
network is more consistent with Polkadot ecology and reaches
upgraded operation efficiency, guaranteeing the final
consistency of transactions.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<div class="tittle">Powerful Privacy Transaction Engine</div>
</div>
</div>
</div>
<div class="row mt-50">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/6.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">
Decentralized Transaction Group
</h3>
<p style="text-align: center">
EVA presents varied decentralized private transaction groups
and standard external interfaces for different tokens and
non-fungible assets, and facilitates financial ecological
expansion with superb scalability.
</p>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/7.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">Asset Aggregation Group</h3>
<p style="text-align: center">
EVA boasts the core components for the synthesis and
dismantling of various assets, thus handing over a complete
private financial derivatives solution to the customers.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features end -->
<!-- brand area start -->
<section class="brand__area p-relative pb-30">
<div class="brand__shape">
<img class="square" src="assets/img/icon/globe1.png" alt="" />
<img class="circle" src="assets/img/icon/brand/circle.png" alt="" />
<img
class="circle-2"
src="assets/img/icon/brand/circle-2.png"
alt=""
/>
<img
class="triangle"
src="assets/img/icon/globe2.png"
alt=""
/>
</div>
<div class="container">
<div class="row mb-10 mt-50">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<h1>Cooperative Partner</h1>
<!-- <div class="tittle">New Privacy Network</div> -->
</div>
<!-- <p>
EVA provides privacy schemes for each step and different levels
of the complete transaction process to achieve higher security
of encrypted assets, based on a variety of privacy technologies.
</p> -->
</div>
</div>
<div class="row">
<div class="col-xl-12 main-fetured-p">
<div class="owl-carousel " >
<div class="brand__item-wrapper" style="display: flex;flex-wrap: wrap;justify-content: space-around;">
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/AU21.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="" src="assets/partner/allchaineed.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/BLOCKARK.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/blocksynk.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/bitz.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/candaq.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/cabin.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/consensus.jpg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/cryptodicover.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/logo_dlzb.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/DFG.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="" src="assets/partner/DAO.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/FBGCapital.jpg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/gateio.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/hot.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/krypital.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/LD.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/mars.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/mxc.svg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/0.jpg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/NGC.png" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/oke.svg" alt="">
</div>
</div>
<!-- remove by Null
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/R8.png" alt="">
</div>
</div>
-->
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/spark.jpeg" alt="">
</div>
</div>
<div class="brand__item__45 middle logoBox" >
<div>
<img class="logoImg" src="assets/partner/ZB.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- brand area end -->
<!-- Features start -->
<section class="services__area">
<div class="container">
<div class="row">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<h1>How Eva Works</h1>
</div>
</div>
</div>
<div class="row middle">
<div class="col-xl-8 col-lg-8 col-md-8 col-sm-8">
<div class="work-video">
<img src="assets/img/video.svg" alt="" />
<a
href="javaScript:;"
onclick="startup()"
class="video-btn xs-video"
data-effect="mfp-zoom-in"
>
<i class="fal fa-play"></i>
<span class="btn-hover-anim"></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- featured section start -->
<section class="featured-sec" id="featured">
<div class="container">
<div class="row mt-50">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<h1>All-round Ecological Drive</h1>
</div>
</div>
</div>
<!-- row end -->
<div class="main-fetured-item">
<div class="row">
<div class="col-md-6 wow fadeInUp" data-wow-duration="1.5s">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/9.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">POW Mining </h3>
<p style="text-align: center">
EVA is built on the traditional POW hash rate network, where miners maintain the core position in the ecology, and the distribution of new tokens can only be generated through miners' mining, which is fairer and caters for
requirements of a more sustainable ecology.
</p>
</div>
</div>
</div>
<div class="col-md-6 wow fadeInUp" data-wow-duration="1.5s">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/8.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">PEX as a Service</h3>
<p style="text-align: center">
EVA endows privacy liquidity to OTC, wallet, Exchanges and aggregated trading services. The conversion, diversion and collection of interface-based encrypted asset liquidity lead to the intelligent service of private transactions.
</p>
</div>
</div>
</div>
<div class="col-md-6 wow fadeInUp" data-wow-duration="1.5s">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/10.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">DAO</h3>
<p style="text-align: center">
EVA will gradually establish DAO voting iteration mechanism, improve DeFi support system, refine technology development proposals in the community, and shape a decentralized governance model in steps.
</p>
</div>
</div>
</div>
<div class="col-md-6 wow fadeInUp" data-wow-duration="1.5s">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">
<img src="assets/img/ui/11.svg" alt="services" />
</div>
<div class="services__content">
<h3 style="text-align: center">Decentralized Finance</h3>
<p style="text-align: center">
EVA bridges the gap between existing decentralized finance and privacy ecology by building a privacy DeFi platform-XV-Core, and boosts community participants to transplant different projects or innovate models in EVA.
</p>
</div>
</div>
</div>
</div>
<!-- row end -->
</div>
<!-- main-fetured-item end -->
<div
class="featured-poligonal-img wow fadeInUp"
data-wow-duration="1.5s"
>
<img
class="poligonal-img"
src="assets/images/feature/poligonal.png"
alt=""
/>
</div>
</div>
</section>
<!-- Features end -->
<section class="featured-sec" id="featured">
<div class="container">
<div class="row mt-50">
<div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
<div
class="section__title section__title-3 text-center mb-50 wow fadeInUp"
data-wow-delay=".2s"
>
<h1>Full-stack Private Finance Protocol Platform</h1>
</div>
</div>
</div>
<!-- row end -->
<div class="main-fetured-item">
<div class="row">
<div class="col-md-6 wow fadeInUp" data-wow-duration="1.5s">
<div
class="services__item mb-90 wow fadeInUp"
data-wow-delay=".4s"
>
<div class="services__icon mb-35 middle">