-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1151 lines (767 loc) · 34 KB
/
index.html
File metadata and controls
1151 lines (767 loc) · 34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="author" content="DSAThemes"/>
<meta name="description" content="OLMO - Software, App, SaaS & Startup Landing Pages Pack"/>
<meta name="keywords" content="Responsive, HTML5, DSAThemes, One Page, Landing, Software, Mobile App, SaaS, Startup, Creative, Freelancers, Digital Product">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- SITE TITLE -->
<title>SIMPLICY - Simplify Crypto-currency payments</title>
<!-- FAVICON AND TOUCH ICONS -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- <link rel="apple-touch-icon" sizes="152x152" href="images/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="icon" href="images/apple-touch-icon.png" type="image/x-icon"> -->
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- BOOTSTRAP CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- FONT ICONS -->
<link href="css/flaticon.css" rel="stylesheet">
<!-- PLUGINS STYLESHEET -->
<link href="css/menu.css" rel="stylesheet">
<link id="effect" href="css/dropdown-effects/fade-down.css" media="all" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/owl.carousel.min.css" rel="stylesheet">
<link href="css/owl.theme.default.min.css" rel="stylesheet">
<!-- ON SCROLL ANIMATION -->
<link href="css/animate.css" rel="stylesheet">
<!-- TEMPLATE CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- RESPONSIVE CSS -->
<link href="css/responsive.css" rel="stylesheet">
</head>
<body>
<!-- PRELOADER SPINNER
============================================= -->
<div id="loading" class="orange-red-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>
</div>
</div>
<!-- PAGE CONTENT
============================================= -->
<div id="page" class="page">
<!-- HEADER
============================================= -->
<header id="header" class="header tra-menu navbar-light">
<div class="header-wrapper">
<!-- MOBILE HEADER -->
<div class="wsmobileheader clearfix">
<span class="smllogo"><img src="images/logo-01.png" alt="mobile-logo"/></span>
<a id="wsnavtoggle" class="wsanimated-arrow"><span></span></a>
</div>
<!-- NAVIGATION MENU -->
<div class="wsmainfull menu clearfix">
<div class="wsmainwp clearfix">
<!-- HEADER LOGO -->
<div class="desktoplogo"><a href="#hero-1" class="logo-black"><img src="images/logo-01.png" alt="header-logo"></a></div>
<div class="desktoplogo"><a href="#hero-1" class="logo-white"><img src="images/logo-02.png" alt="header-logo"></a></div>
<!-- MAIN MENU -->
<nav class="wsmenu clearfix">
<ul class="wsmenu-list nav-orange-red-hover">
<li class="nl-simple" aria-haspopup="true"><a href="#">Home</a></li>
<li class="nl-simple" aria-haspopup="true"><a href="#content-2">Wallet</a></li>
<li class="nl-simple" aria-haspopup="true"><a href="#content-3">About</a></li>
<li class="nl-simple" aria-haspopup="true"><a href="#content-4">Merchants</a></li>
<li class="nl-simple" aria-haspopup="true"><a href="#content-5">Guardian</a></li>
<!-- MEGAMENU -->
<!-- HEADER SOCIAL LINKS
<li class="nl-simple white-color header-socials ico-20 clearfix" aria-haspopup="true">
<span><a href="#" class="ico-facebook"><span class="flaticon-facebook"></span></a></span>
<span><a href="#" class="ico-twitter"><span class="flaticon-twitter"></span></a></span>
<span><a href="#" class="ico-instagram"><span class="flaticon-instagram"></span></a></span>
<span><a href="#" class="ico-dribbble"><span class="flaticon-dribbble"></span></a></span>
</li> -->
</ul>
</nav> <!-- END MAIN MENU -->
</div>
</div> <!-- END NAVIGATION MENU -->
</div> <!-- End header-wrapper -->
</header> <!-- END HEADER -->
<!-- HERO-1
============================================= -->
<section id="hero-1" class="bg-scroll hero-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- HERO TEXT -->
<div class="col-md-7 col-lg-6">
<div class="hero-1-txt white-color wow fadeInRight">
<!-- Title -->
<h2 class="h2-md">Simplify your crypto-currency payments with SIMPLICY.</h2>
<!-- Text -->
<p class="p-xl">
With our easy-to-use platform, you can accept mobile-, e-commerce-, and point-of-sale payments using Blockchain technology. With SIMPLICY, there's no need to worry about the complexities of crypto-currency payments. We make it easy for you to get started and accept payments from anywhere in the world.
</p>
<!-- Buttons Group -->
<div class="btns-group mb-20">
<a href="#content-3" class="btn btn-orange-red tra-white-hover mr-15">Learn More</a>
<a href="https://www.youtube.com/watch?v=7e90gBu4pas" class="video-popup2 btn btn-md btn-transparent ico-20 ico-left">
<!-- <span class="flaticon-play"></span> See SIMP in Action -->
</a>
</div>
<!-- Advantages List -->
<ul class="advantages">
<li class="first-li"><p>Simplicy</p></li>
<!-- <li class="last-li"><p>With SIMPLICY, you can be sure that your investment will be simplifying crypto-currency payments for years to come!</p></li> -->
<li class="last-li"><p>is a blockchain company that is looking to transform the way people trade through the use of decentralized smart contracts and zero-knowledge technology. </p></li>
</ul>
</div>
</div> <!-- END HERO TEXT -->
<!-- HERO IMAGE -->
<div class="col-md-5 col-lg-6">
<div class="hero-1-img wow fadeInLeft">
<img class="img-fluid" src="images/hero-1-img.png" alt="hero-image">
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
<!-- WAVE SHAPE BOTTOM -->
<div class="wave-shape-bottom">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 130"><path fill="#ffffff" fill-opacity="1" d="M0,64L120,80C240,96,480,128,720,128C960,128,1200,96,1320,80L1440,64L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z"></path></svg>
</div>
</section> <!-- END HERO-1 -->
<!-- FEATURES-2
============================================= -->
<section id="features-2" class="wide-60 features-section division">
<div class="container">
<!-- FEATURES-2 WRAPPER -->
<div class="fbox-2-wrapper text-center">
<div class="row row-cols-1 row-cols-md-3">
<!-- FEATURE BOX #1 -->
<div class="col">
<div class="fbox-2 mb-40 wow fadeInUp">
<!-- Icon -->
<div class="fbox-ico-center ico-65 shape-ico orange-red-color">
<img class="ico-bkg" src="images/ico-bkg.png" alt="ico-bkg">
<span class="flaticon-double-click"></span>
</div>
<!-- Text -->
<div class="fbox-txt-center">
<!-- Title -->
<h5 class="h5-md">Seamless Wallet Interaction</h5>
<!-- Text -->
<p class="p-lg">
Fully adjustable, self-custody solutions such as private keys, guardians, sso- and otp- calls.
</p>
</div>
</div>
</div>
<!-- FEATURE BOX #2 -->
<div class="col">
<div class="fbox-2 mb-40 wow fadeInUp">
<!-- Icon -->
<div class="fbox-ico-center ico-65 shape-ico orange-red-color">
<img class="ico-bkg" src="images/ico-bkg.png" alt="ico-bkg">
<span class="flaticon-web-browser"></span>
</div>
<!-- Text -->
<div class="fbox-txt-center">
<!-- Title -->
<h5 class="h5-md">Reputation</h5>
<!-- Text -->
<p class="p-lg">More info soon.
</p>
</div>
</div>
</div>
<!-- FEATURE BOX #3 -->
<div class="col">
<div class="fbox-2 mb-40 wow fadeInUp">
<!-- Icon -->
<div class="fbox-ico-center ico-65 shape-ico orange-red-color">
<img class="ico-bkg" src="images/ico-bkg.png" alt="ico-bkg">
<span class="flaticon-web-programming"></span>
</div>
<!-- Text -->
<div class="fbox-txt-center">
<!-- Title -->
<h5 class="h5-md">KYC</h5>
<!-- Text -->
<p class="p-lg">More info soon.
</p>
</div>
</div>
</div>
</div>
</div> <!-- END FEATURES-2 WRAPPER -->
</div> <!-- End container -->
</section> <!-- END FEATURES-2 -->
<!-- DIVIDER LINE -->
<hr class="divider">
<!-- CONTENT-2
============================================= -->
<section id="content-2" class="content-2 wide-60 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- IMAGE BLOCK -->
<div class="col-md-5 col-lg-6">
<div class="rel img-block left-column wow fadeInRight">
<img class="img-fluid" src="images/img-09.png" alt="content-image">
</div>
</div>
<!-- TEXT BLOCK -->
<div class="col-md-7 col-lg-6">
<div class="txt-block right-column wow fadeInLeft">
<!-- Title -->
<h2 class="h2-xs">Simplicy Wallet</h2>
<!-- Text -->
<p class="p-lg">is the world’s first wallet aimed at average users that
uses zk-SNARKS to provide social recovery and privacy-focused smart contract wallets.
</p>
<p class="p-lg">Frictionless, privacy-focused, and secure smart contract wallet that is
perfect for users who want to keep their private keys safe and secure.
</p>
<p class="p-lg">
</p>
<!-- Text -->
<p class="p-lg">zk-SNARKS is a
zero-knowledge proof protocol that allows for the verification of information without
revealing that information. This means that if a user loses their private key,
they can still recover their wallet without revealing their private key to anyone.
</p>
</div>
</div> <!-- END TEXT BLOCK -->
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END CONTENT-2 -->
<section id="" class="ws-wrapper content-section division">
<div class="container">
<div class="content-5-wrapper bg-whitesmoke">
<div class="row d-flex align-items-center">
<!-- TEXT BLOCK -->
<div class="col-md-7 col-lg-6">
<div class="txt-block left-column wow fadeInRight">
<!-- CONTENT BOX #1 -->
<div class="cbox mb-40">
<!-- Icon -->
<div class="cbox-ico">
<div class="orange-red-color ico-65">
<span class="flaticon-speech-bubble-2"></span>
</div>
</div>
<!-- Text -->
<div class="cbox-txt">
<h5 class="h5-md">Smart Contract Wallet</h5>
<p class="p-lg">Simplicy Wallet is the perfect wallet for users who value simplicity, security, privacy, and self-sovereignty.
</p>
</div>
</div>
<!-- CONTENT BOX #2 -->
<div class="cbox mb-40">
<!-- Icon -->
<div class="cbox-ico">
<div class="orange-red-color ico-65">
<span class="flaticon-tongue"></span>
</div>
</div>
<!-- Text -->
<div class="cbox-txt">
<h5 class="h5-md">Reputation</h5>
<p class="p-lg">More information about Simplicy Reputation system will be announced shortly.
</p>
</div>
</div>
<!-- CONTENT BOX #3 -->
<div class="cbox mb-40">
<!-- Icon -->
<div class="cbox-ico">
<div class="orange-red-color ico-65">
<span class="flaticon-shield-2"></span>
</div>
</div>
<!-- Text -->
<div class="cbox-txt">
<h5 class="h5-md">Guardians</h5>
<p class="p-lg">More information about Simplicy Guardians system will be announced shortly.
</p>
</div>
</div>
</div>
</div> <!-- END TEXT BLOCK -->
<!-- IMAGE BLOCK -->
<div class="col-md-5 col-lg-6">
<div class="img-block right-column wow fadeInLeft">
<img class="img-fluid" src="images/img-12.png" alt="content-image">
</div>
</div>
</div>
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END CONTENT-5 -->
<!-- CONTENT-5
============================================= -->
<!-- DIVIDER LINE -->
<!-- CONTENT-3
============================================= -->
<section id="content-3" class="content-3 wide-60 content-section division">
<hr class="divider"><br><br><br>
<div class="container">
<!-- SECTION TITLE -->
<div class="row justify-content-center">
<div class="col-lg-10 col-xl-8">
<div class="section-title title-01 mb-70">
<!-- Title -->
<h2 class="h2-md">Security, Simplicity, Easiness</h2>
<!-- Text -->
<p class="p-xl">Simplicy is committed to simplifying blockchain and
zero-knowledge technology to make it more accessible and understandable
to the average user. Our products are designed with the user in mind,
and we strive to build a platform and technology that users don't need to trust but can verify.
Simplicy operates according to the General Data Protection Regulation (GDPR)
and we are dedicated to protecting the privacy of our users. Our products are
borderless and designed to bring the cost and efficiency benefits of blockchain
to cross border remittances.
</p>
</div>
</div>
</div>
<!-- BOTTOM ROW -->
<div class="bottom-row">
</div> <!-- END BOTTOM ROW -->
</div> <!-- End container -->
</section> <!-- END CONTENT-3 -->
<hr class="divider">
<!-- CONTENT-4
============================================= -->
<section id="content-4" class="content-4 wide-60 content-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row d-flex align-items-center">
<!-- TEXT BLOCK -->
<div class="col-md-7 col-lg-6 order-last order-md-2">
<div class="txt-block left-column wow fadeInRight">
<!-- Title -->
<h2 class="h2-xs">Work smarter with powerful automation</h2>
<!-- Text -->
<p class="p-lg">Looking to make your e-commerce, point of sale, or peer-to-peer
payments simpler and more affordable?
</p>
<p class="p-lg">
Look no further than Simplicy!
Our innovative technology combines the best of both worlds – the security
and privacy of blockchain with the affordability and transaction volume of
traditional payment methods.
</p>
<p class="p-lg">
So why wait? Sign up today and start simplifying your payments!
</p>
<!-- CONTENT BOX #1 -->
<div class="cbox-2 mt-20 mb-30">
<!-- Icon -->
<div class="cbox-2-ico">
<div class="ico-40 orange-red-color">
<span class="flaticon-speech-bubble-4"></span>
</div>
</div>
<!-- Text -->
<div class="cbox-2-txt">
<h5 class="h5-xs">Web3 Contracts</h5>
<p class="p-lg">Greets...👋</p>
</div>
</div>
<!-- CONTENT BOX #2 -->
<div class="cbox-2">
<!-- Icon -->
<div class="cbox-2-ico">
<div class="ico-40 orange-red-color">
<span class="flaticon-analytics-4"></span>
</div>
</div>
<!-- Text -->
<div class="cbox-2-txt">
<h5 class="h5-xs">Traditional Finance</h5>
<p class="p-lg">with seamless integration.</p>
</div>
</div>
</div>
</div> <!-- END TEXT BLOCK -->
<!-- IMAGE BLOCK -->
<div class="col-md-5 col-lg-6 order-first order-md-2">
<div class="img-block right-column wow fadeInLeft">
<img class="img-fluid" src="images/img-02.png" alt="content-image">
</div>
</div>
</div>
</div> <!-- End container -->
</section> <!-- END CONTENT-4 -->
<section id="content-4b" class="bg-04 wide-60 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- IMAGE BLOCK -->
<div class="col-md-5 col-lg-6">
<div class="rel img-block left-column wow fadeInRight">
<img class="img-fluid" src="images/img-10.png" alt="content-image">
</div>
</div>
<!-- TEXT BLOCK -->
<div class="col-md-7 col-lg-6">
<div class="txt-block right-column white-color wow fadeInLeft">
<!-- Title -->
<h2 class="h2-xs">Make it simpler with Simplicy Products</h2>
<!-- List -->
<ul class="simple-list">
<!-- <li class="list-item">
<p class="p-lg">We are excited to offer our innovative crypto-currency payment solution that simplifies
payments and applies Blockchain Technology to Mass E-Commerce, Point of Sale and Peer to Peer payments.
</p>
</li> -->
<p class="p-lg">
Simplicity is the key to success in today's economy. With so many different options for payment,
it can be difficult to keep track of everything. That's where Simplicy comes in.
</p>
<p class="p-lg">
We streamline the process by using crypto-currency and blockchain technology to
make payments more efficient and secure. Whether you're paying for goods online or in person,
Simplicy makes it easy. And because we use crypto-currency,
there are very minimal to no fees passed on to you, the customer.
</p>
<p class="p-lg">
So why not simplify your life with Simplicy?
</p>
</ul>
</div>
</div> <!-- END TEXT BLOCK -->
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END CONTENT-2A -->
<section id="features-8" class="wide-60 features-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row justify-content-center">
<div class="col-lg-10 col-xl-8">
<div class="section-title title-01 mb-70">
<!-- Title -->
<h2 class="h2-md">We’re Better. Here’s Why…</h2>
<!-- Text -->
<p class="p-xl">Simplicy Wallet is a social recovery smart contract wallet using zk-SNARKS to restore a user's access to their smart contract wallet, without revealing any information of the user's and guardians.
</p>
<section id="faqs-2" class="wide-60 faqs-section division">
<div class="container">
<!-- FAQs-2 QUESTIONS -->
<div class="faqs-2-questions">
<div class="row row-cols-1 row-cols-lg-2">
<!-- QUESTIONS HOLDER -->
<div class="col">
<div class="questions-holder pr-15">
<!-- QUESTION #1 -->
<div class="question wow fadeInUp">
<!-- Question -->
<h5 class="h5-md">Frictionless</h5>
<!-- Answer -->
<p class="p-lg">Most normal activities dot not require more effort than they do in regular wallet (e.g Metamask).
</p>
</div>
<!-- QUESTION #2 -->
<div class="question wow fadeInUp">
<!-- Question -->
<h5 class="h5-md">Privacy</h5>
<!-- Answer -->
<p class="p-lg">An account is a fresh cryptographic hash, not tied to existing systems or real-world identity. Derived paths support multiple public keys to protect privacy.
</p>
</div>
<!-- QUESTION #3 -->
<div class="question wow fadeInUp">
<!-- Question -->
<h5 class="h5-md">Security</h5>
<!-- Answer -->
<ul class="simple-list">
<p class="p-lg">There is no single thing which, if stolen, can give an attacker access to user's funds, or if lost, can deny user's access to their funds.
</p>
</ul>
</div>
</div>
</div> <!-- END QUESTIONS HOLDER -->
<!-- QUESTIONS HOLDER -->
<div class="col">
<div class="questions-holder pl-15">
<!-- QUESTION #6 -->
<div class="question wow fadeInUp">
<!-- Question -->
<h5 class="h5-md">Verifiable</h5>
<!-- Answer -->
<ul class="simple-list">
<p class="p-lg">We are open source and hardened on cryptography. Our smart contract designs are open source and community-driven.</p>
<p class="p-lg">We reduce the risk of vulnerabilities by using standard, tested, community-reviewed code.</p>
</ul>
</div>
<!-- QUESTION #4 -->
<div class="question wow fadeInUp">
<!-- Question -->
<h5 class="h5-md">Keyless</h5>
<!-- Answer -->
<p class="p-lg">No key's will be stored in a client web- or mobile app.
</p>
</div>
<!-- QUESTION #5 -->
<div class="question wow fadeInUp">
<!-- Question -->
<h5 class="h5-md">Sufficient Self-Sovereign</h5>
<!-- Answer -->
<p class="p-lg">User's have full custody and self control of their wallet.
</p>
</div>
</div>
</div> <!-- END QUESTIONS HOLDER -->
</div> <!-- End row -->
</div> <!-- END FAQs-2 QUESTIONS -->
</div> <!-- End container -->
</section> <!-- END FAQs-2 -->
</div>
</div>
</div>
<!-- FEATURES-8 WRAPPER -->
<div class="fbox-8-wrapper text-center">
<div class="row row-cols-1 row-cols-md-3">
<!-- FEATURE BOX #1 -->
<div class="col">
<div class="fbox-8 mb-40 wow fadeInUp">
<!-- Image -->
<div class="fbox-img bg-whitesmoke-gradient">
<img class="img-fluid" src="images/img-21.png" alt="feature-icon" />
</div>
<!-- Title -->
<h5 class="h5-md">Smart Contract Finance</h5>
<!-- Text -->
<p class="p-lg">Simplicy Wallet is the easiest way to create and use a smart contract wallet. It is frictionless, private, secure, and self-sovereign.
</p>
</div>
</div>
<!-- FEATURE BOX #2 -->
<div class="col">
<div class="fbox-8 mb-40 wow fadeInUp">
<!-- Image -->
<div class="fbox-img bg-whitesmoke-gradient">
<img class="img-fluid" src="images/img-22.png" alt="feature-icon" />
</div>
<!-- Title -->
<h5 class="h5-md">Extremely Flexible</h5>
<!-- Text -->
<p class="p-lg">Interact with many contracts in the Web3 world safely and securly with a tap of a button.
</p>
</div>
</div>
<!-- FEATURE BOX #3 -->
<div class="col">
<div class="fbox-8 mb-40 wow fadeInUp">
<!-- Image -->
<div class="fbox-img bg-whitesmoke-gradient">
<img class="img-fluid" src="images/img-23.png" alt="feature-icon" />
</div>
<!-- Title -->
<h5 class="h5-md">Social Recovery</h5>
<!-- Text -->
<p class="p-lg">Next-Gen Social Recovery allows you to choose who you wish to trust as your Guardian.
</p>
</div>
</div>
</div> <!-- End row -->
</div> <!-- END FEATURES-8 WRAPPER -->
</div> <!-- End container -->
</section> <!-- END FEATURES-8 -->
<!-- CONTENT-5
============================================= -->
<section id="content-5" class="content-1 bg-snow wide-60 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- TEXT BLOCK -->
<div class="col-lg-6 order-last order-lg-2">
<div class="txt-block slim-column left-column wow fadeInRight">
<!-- Title -->
<h2 class="h2-xs">Keep your trust where it should be.</h2>
<!-- List -->
<ul class="simple-list">
<li class="list-item">
<p class="p-lg">Simplicy Guardian allows you to choose where your trust is earned.
</p>
</li>
<li class="list-item">
<p class="p-lg">Friends? Facebook/Google login? Private key? Your choice, wallet recovery either via friends, login sso-applications, or your own set-up.</p>
</li>
</ul>
</div>
</div> <!-- END TEXT BLOCK -->
<!-- CB WRAPPER -->
<div class="col-lg-6 order-first order-lg-2">
<div class="cb-wrapper">
<!-- CB HOLDER -->
<div class="cb-holder wow fadeInLeft">
<!-- CB BOX #1 -->
<div class="cb-single-box">
<p class="p-lg cb-header">Simplicy Guardian</p>
<h2 class="h2-title-xs statistic-number"><span class="count-element">100</span><sup>%</sup></h2>
<p class="p-md mt-5 ico-10">
<span class="violet-red-color"><span class="flaticon-"></span> Self-Control</span> of your funds.
</p>
</div>
<hr class="divider">
<!-- CB BOX #3 -->
<div class="cb-single-box cb-box-rounded bg-violet-red white-color mt-25">
<!-- <h4 class="h4-lg">:)</h4> -->
<p class="p-lg">Join the new financial revolution with simplicity and security on your terms.</p>
</div>
<hr class="divider">
<!-- CB BOX #2 -->
<div class="cb-single-box">
<ul class="simple-list">
<li class="list-item">
<p class="p-md">You choose who or what you want to trust for your wallet recovery.</p>
</li>
<li class="list-item">
<p class="p-md">Permissonless & no single-point of failure.</p>
</li>
<li class="list-item">
<p class="p-md">Allows you to run a smart wallet without private-key if desired and still upkeep your own self-custody.</p>
</li>
</ul>
</div>
</div> <!-- END CB HOLDER -->
<!-- CB SHAPE -->
<div class="cb-shape-1">
<img class="img-fluid" src="images/bg-shape-1.png" alt="content-image">
</div>
<!-- CB SHAPE -->
<div class="cb-shape-2">
<img class="img-fluid" src="images/bg-shape-2.png" alt="content-image">
</div>
</div>
</div> <!-- END CB WRAPPER -->
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- END CONTENT-1 -->
<!-- FOOTER-1
============================================= -->
<footer id="footer-1" class="footer division">
<div class="container">
<!-- FOOTER CONTENT -->
<div class="row">
<!-- FOOTER INFO -->
<div class="col-lg-4">
<div class="footer-info mb-40">
<!-- Footer Logo -->
<img class="footer-logo mb-25" src="images/logo-01.png" alt="footer-logo">
<!-- Text -->
<p class="p-md">Simplicy is a blockchain company that is looking to transform the way people trade through the use of decentralized smart contracts and zero-knowledge technology.
</p>
</div>
</div>
<!-- FOOTER LINKS -->
<!-- <div class="col-sm-6 col-md-3 col-lg-2">
<div class="footer-links mb-40">
<h6 class="h6-xl">Company</h6>
<ul class="foo-links text-secondary clearfix">
<li><p class="p-md"><a href="#">About Us</a></p></li>
<li><p class="p-md"><a href="#">Careers</a></p></li>