-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
757 lines (714 loc) · 46.5 KB
/
index.html
File metadata and controls
757 lines (714 loc) · 46.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Crystolpay - Crystolpay Money Earning Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.png">
<!-- Template CSS Files -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/select2.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/skins/orange.css">
<!-- Live Style Switcher - demo only -->
<link rel="alternate stylesheet" type="text/css" title="orange" href="css/skins/orange.css" />
<link rel="alternate stylesheet" type="text/css" title="green" href="css/skins/green.css" />
<link rel="alternate stylesheet" type="text/css" title="blue" href="css/skins/blue.css" />
<link rel="stylesheet" type="text/css" href="css/styleswitcher.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Template JS Files -->
<script src="js/modernizr.js"></script>
</head>
<body>
<!-- Live Style Switcher Starts - demo only -->
<div id="switcher" class="">
<div class="content-switcher">
<h4>STYLE SWITCHER</h4>
<ul>
<li>
<a id="orange-css" href="#" title="orange" class="color"><img src="images/styleswitcher/colors/orange.png" alt="" width="30" height="30" /></a>
</li>
<li>
<a id="green-css" href="#" title="green" class="color"><img src="images/styleswitcher/colors/green.png" alt="" width="30" height="30" /></a>
</li>
<li>
<a id="blue-css" href="#" title="blue" class="color"><img src="images/styleswitcher/colors/blue.png" alt="" width="30" height="30" /></a>
</li>
</ul>
<p>BODY SKIN</p>
<label><input class="dark_switch" type="radio" name="color_style" id="is_dark" value="dark" checked="checked" /> Dark</label>
<label><input class="dark_switch" type="radio" name="color_style" id="is_light" value="light" /> Light</label>
<hr />
<p>LAYOUT STYLE</p>
<label><input class="boxed_switch" type="radio" name="layout_style" id="is_wide" value="wide" checked="checked" /> Wide</label>
<label><input class="boxed_switch" type="radio" name="layout_style" id="is_boxed" value="boxed" /> Boxed</label>
<hr />
<a href="#" class="custom-button purchase">Purchase</a>
<div id="hideSwitcher">×</div>
</div>
</div>
<!-- Wrapper Starts -->
<div class="wrapper">
<!-- Header Starts -->
<header class="header">
<div class="container">
<div class="row">
<!-- Logo Starts -->
<div class="main-logo col-xs-12 col-md-3 col-md-2 col-lg-2 hidden-xs">
<a href="index.html">
<img id="logo" class="img-responsive" src="" alt="logo">
</a>
</div>
<!-- Logo Ends -->
<!-- Statistics Starts -->
<div class="col-md-7 col-lg-7">
<ul class="unstyled bitcoin-stats text-center">
<li>
<h6>920,000 </h6><span>All participants</span></li>
<li>
<h6>+526</h6><span>New for the day</span></li>
<li>
<h6>12 820 200 USD </h6><span>Total earned USD</span></li>
<li>
<h6>2 231 775 USD</h6><span>Daily earning</span></li>
<li>
<div class="btcwdgt-price" data-bw-theme="light" data-bw-cur="usd"></div>
<span>Live Bitcoin price</span>
</li>
</ul>
</div>
<!-- Statistics Ends -->
<!-- User Sign In/Sign Up Starts -->
<div class="col-md
-3 col-lg-3">
<ul class="unstyled user">
<li class="sign-in"><a href="login.html" class="btn btn-primary"><i class="fa fa-user"></i> sign in</a></li>
<li class="sign-up"><a href="register.html" class="btn btn-primary"><i class="fa fa-user-plus"></i> register</a></li>
</ul>
</div>
<!-- User Sign In/Sign Up Ends -->
</div>
</div>
<!-- Navigation Menu Starts -->
<nav class="site-navigation navigation" id="site-navigation">
<div class="container">
<div class="site-nav-inner">
<!-- Logo For ONLY Mobile display Starts -->
<a class="logo-mobile" href="index.html">
<img id="logo-mobile" class="img-responsive" src="images/logo-dark.png" alt="">
</a>
<!-- Logo For ONLY Mobile display Ends -->
<!-- Toggle Icon for Mobile Starts -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Toggle Icon for Mobile Ends -->
<div class="collapse navbar-collapse navbar-responsive-collapse">
<!-- Main Menu Starts -->
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="level-transformation.html">level-transformation</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">pages <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu" role="menu">
<li><a href="register.html">Register page</a></li>
<li><a href="login.html">Login page</a></li>
<li><a href="faq.html">FAQ page</a></li>
<li><a href="404.html">404 Page</a></li>
<li><a href="503.html">Server Error Page</a></li>
<li><a href="terms-of-services.html">Terms of Services</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
<!-- Search Icon Starts -->
<li class="search"><button class="fa fa-search"></button></li>
<!-- Search Icon Ends -->
</ul>
<!-- Main Menu Ends -->
</div>
</div>
</div>
<!-- Search Input Starts -->
<div class="site-search">
<div class="container">
<input type="text" placeholder="type your keyword and hit enter ...">
<span class="close">×</span>
</div>
</div>
<!-- Search Input Ends -->
</nav>
<!-- Navigation Menu Ends -->
</header>
<!-- Header Ends -->
<!-- Slider Starts -->
<div id="main-slide" class="carousel slide carousel-fade" data-ride="carousel">
<!-- Indicators Starts -->
<ol class="carousel-indicators visible-lg visible-md">
<li data-target="#main-slide" data-slide-to="0" class="active"></li>
<li data-target="#main-slide" data-slide-to="1"></li>
<li data-target="#main-slide" data-slide-to="2"></li>
</ol>
<!-- Indicators Ends -->
<!-- Carousel Inner Starts -->
<div class="carousel-inner">
<!-- Carousel Item Starts -->
<div class="item active bg-parallax item-1">
<div class="slider-content">
<div class="container">
<div class="slider-text text-center">
<h3 class="slide-title"><span>Secure</span> and <span>Easy Way</span><br/> To Earn Money</h3>
<p>
<a href="about.html" class="slider btn btn-primary">Learn more</a>
</p>
</div>
</div>
</div>
</div>
<!-- Carousel Item Ends -->
<!-- Carousel Item Starts -->
<div class="item bg-parallax item-2">
<div class="slider-content">
<div class="col-md-12">
<div class="container">
<div class="slider-text text-center">
<h3 class="slide-title"><span>Crystolpay</span> Exchange <br/>You can <span>Trust</span> </h3>
<p>
<a href="level-transformation.html" class="slider btn btn-primary">our prices</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel Item Ends -->
</div>
<!-- Carousel Inner Ends -->
<!-- Carousel Controlers Starts -->
<a class="left carousel-control" href="index.html#main-slide" data-slide="prev">
<span><i class="fa fa-angle-left"></i></span>
</a>
<a class="right carousel-control" href="index.html#main-slide" data-slide="next">
<span><i class="fa fa-angle-right"></i></span>
</a>
<!-- Carousel Controlers Ends -->
</div>
<!-- Slider Ends -->
<!--How it works section starts-->
<!-- Features Section Starts -->
<section class="features">
<div class="container">
<!--How it works start-->
<div class="row features-row">
<div class="row text-center">
<h2 class="title-head">How <span>It</span> works</h2>
<div class="title-head-subtitle">
<p>Register with us and make your first transaction by depositing $10</p>
<p>Immediately you deposit $10, You are fully one of our member and your level starts loading</p>
</div>
<P class="row text-left">The system works in this way...Immediately you make your first transaction, it will automtically split into three phases..
</P>
<p class="row text-left"> The phases are as below...</p>
<p class="row text-left" >1. $3 dollar automatically goes to the referral wallets, but if you're not refered by anyone,it automatically goes to the admin wallet </p>
<p class="row text-left" >2. $6 dollar automatically goes to the level-topper wallets</p>
<p class="row text-left" >3. $1 dollar automatically goes to the maintenance wallets</p>
<p class="row text-left" >After the deposited amount have been splited, then you will be left with $0 dollar, but the system will automatically grab the time and date you registered, so as to make you stand the chance of becoming the next level-topper, which you can then recieve your donations from the first four upcoming user and will enable you to qualify for the next level .. We mentioned level-topper earlier, level-topper happens to be the first user to attain that level whom he/she deposited money have been splited and left with $0 dollar(i.e 1st level), so the first four member(he/she) that will join later will automatically donate $6 dollar per user to the level-topper wallet, which is $6 * 4 = $24 dollar.. So $24 dollar back to the level-topper wallet, that is for level one.... All the automatic spliting and donations will be shown on each user dashboard</p>
<p class="row text-left" >Getting to level Two with $24 dollar in your wallets, automatically $18 will be donated to the level-topper from your wallet and the first three more member to attain level two, therefore all the new level two user will be left with $6(i.e $24{level one wallet balance}-$18{donated} = $6) in their wallets respectively except for the level-topper. Which means the level-topper recieves $18 * 4(from first four member to attain that level) = $72 .. Immediately the level-topper wallet get to $72 + $6(wallet balance in level two after donations) = $78, the user will automatically be promoted to the next level(level Three) and the second user to attain that level automatically become the new level-topper.. All the automatic spliting and donations will be shown on each user dashboard </p>
<p class="row text-left" >Getting to level Three with $72 dollar in your wallets, automatically $60 will be donated to the level-topper from your wallet and the first three more member to attain level three, therefore all the new level three user will be left with $18(i.e $78{level two wallet balance}-$60{donated} = $18) in their wallets respectively except for the level-topper.Which means the level-topper recieves $60 * 4(from first four member to attain that level) = $240.. Immediately the level-topper wallet get to $240 + $18(wallet balance in level three after donations ) = $258, the user will automatically be promoted to the next level(level Four) and the second user to attain that level automatically become the new level-topper.. All the automatic spliting and donations will be shown on each user dashboard </p>
<p class="row text-left" >Getting to level Four(final level) with $258 dollars in your wallet, automatically it splits into three phases again <br>
1) $8 will move to the maintenance wallet <br>
2) $10 to automatically restart the system for you, because you're going no where, therefore it will automatically start the system again from level one and follow the procedures..<br>
3) $240 will move to your cashapp acount alongside with your referral bonuses..<br>
Note :</span> Only funds in your cashapp account are withdrawable because in your dashboard, you wil have different accounts..like donation account,referral account, main balance and your cash app account </p>
</div>
<!-- Feature Box Starts -->
<div class="feature-box col-md-3 col-sm-12">
<div class="feature-box-content">
<h3>Level One</h3>
<p class="row text-left" >After the deposited amount have been splited, then you will be left with $0 dollar, but the system will automatically grab the time and date you registered, so as to make you stand the chance of becoming the next level-topper, which you can then recieve your donations from the first four upcoming user and will enable you to qualify for the next level .. We mentioned level-topper earlier, level-topper happens to be the first user to attain that level whom he/she deposited money have been splited and left with $0 dollar(i.e 1st level), so the first four member(he/she) that will join later will automatically donate $6 dollar per user to the level-topper wallet, which is $6 * 4 = $24 dollar.. So $24 dollar back to the level-topper wallet, that is for level one.... All the automatic spliting and donations will be shown on each user dashboard</p>
</div>
</div>
<!-- Feature Box Ends -->
<!-- Feature Box Starts -->
<div class="feature-box two col-md-3 col-sm-12">
<div class="feature-box-content">
<h3>Level Two</h3>
<p class="row text-left" >Getting to level Two with $24 dollar in your wallets, automatically $18 will be donated to the level-topper from your wallet and the first three more member to attain level two, therefore all the new level two user will be left with $6(i.e $24{level one wallet balance}-$18{donated} = $6) in their wallets respectively except for the level-topper. Which means the level-topper recieves $18 * 4(from first four member to attain that level) = $72 .. Immediately the level-topper wallet get to $72 + $6(wallet balance in level two after donations) = $78, the user will automatically be promoted to the next level(level Three) and the second user to attain that level automatically become the new level-topper.. All the automatic spliting and donations will be shown on each user dashboard </p>
</div>
</div>
<!-- Feature Box Ends -->
<!-- Feature Box Starts -->
<div class="feature-box three col-md-3 col-sm-12">
<div class="feature-box-content">
<h3>Level Three</h3>
<p class="row text-left" >Getting to level Three with $72 dollar in your wallets, automatically $60 will be donated to the level-topper from your wallet and the first three more member to attain level three, therefore all the new level three user will be left with $18(i.e $78{level two wallet balance}-$60{donated} = $18) in their wallets respectively except for the level-topper.Which means the level-topper recieves $60 * 4(from first four member to attain that level) = $240.. Immediately the level-topper wallet get to $240 + $18(wallet balance in level three after donations ) = $258, the user will automatically be promoted to the next level(level Four) and the second user to attain that level automatically become the new level-topper.. All the automatic spliting and donations will be shown on each user dashboard </p>
</div>
</div>
<!-- Feature Box Ends -->
<!-- Feature Box Starts -->
<div class="feature-box three col-md-3 col-sm-12">
<div class="feature-box-content">
<h3>Level Four</h3>
<p class="row text-left" >Getting to level Four(final level) with $258 dollars in your wallet, automatically it splits into three phases again <br>
1) $8 will move to the maintenance wallet <br>
2) $10 to automatically restart the system for you, because you're going no where, therefore it will automatically start the system again from level one and follow the procedures..<br>
3) $240 will move to your cashapp acount alongside with your referral bonuses..<br>
</div>
</div>
<!-- Feature Box Ends -->
</div>
Note :</span> Only funds in your cashapp account are withdrawable because in your dashboard, you wil have different accounts..like donation account,referral account, main balance and your cash app account </p>
</div>
</section>
<!-- Features Section Ends -->
<!--How it works Ends-->
<!-- About Section Starts -->
<section class="about-us">
<div class="container">
<!-- Section Title Starts -->
<div class="row text-center">
<h2 class="title-head">About <span>Us</span></h2>
<div class="title-head-subtitle">
<p>a commercial website that shows wallets and levels </p>
</div>
</div>
<!-- Section Title Ends -->
<!-- Section Content Starts -->
<div class="row about-content">
<!-- Image Starts -->
<div class="col-sm-12 col-md-5 col-lg-6 text-center">
<img id="about-us" class="img-responsive img-about-us" src="images/about-us.png" alt="about us">
</div>
<!-- Image Ends -->
<!-- Content Starts -->
<div class="col-sm-12 col-md-7 col-lg-6">
<h3 class="title-about">WE ARE CRYSTOLPAY</h3>
<p class="about-text">A place for everyone who wants to simply earn more Money. Deposit funds using your Visa/MasterCard or bank transfer. Instant deposit/withdrawal of Money is guaranteed. No erros. Join over 700,000 users from all
over the world satisfied with our services.</p>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#menu1">Our Mission</a></li>
<li><a data-toggle="tab" href="#menu2">Our advantages</a></li>
<li><a data-toggle="tab" href="#menu3">Our guarantees</a></li>
</ul>
<div class="tab-content">
<div id="menu1" class="tab-pane fade in active">
<p>Bitcoin is based on a protocol known as the blockchain, which allows to create, transfer and verify ultra-secure financial data without interference of third parties.</p>
</div>
<div id="menu2" class="tab-pane fade">
<p>Our mission as an official partner of Bitcoin Foundation is to help you enter and better understand the world of #1 cryptocurrency and avoid any issues you may encounter.</p>
</div>
<div id="menu3" class="tab-pane fade">
<p>We are here because we are passionate about open, transparent markets and aim to be a major driving force in widespread adoption, we are the first and the best in cryptocurrency. </p>
</div>
</div>
<a class="btn btn-primary" href="about.html">Read More</a>
</div>
<!-- Content Ends -->
</div>
<!-- Section Content Ends -->
</div>
</section>
<!-- About Section Ends -->
<!-- Features and Video Section Starts -->
<section class="image-block">
<div class="container-fluid">
<div class="row">
<!-- Features Starts -->
<div class="col-md-8 ts-padding img-block-left">
<div class="gap-20"></div>
<div class="row">
<!-- Feature Starts -->
<div class="col-sm-6 col-md-6 col-xs-12">
<div class="feature text-center">
<span class="feature-icon">
<img id="strong-security" src="images/icons/orange/strong-security.png" alt="strong security"/>
</span>
<h3 class="feature-title">Strong Security</h3>
<p>Protection against DDoS attacks, <br>full data encryption</p>
</div>
</div>
<!-- Feature Ends -->
<div class="gap-20-mobile"></div>
<!-- Feature Starts -->
<div class="col-sm-6 col-md-6 col-xs-12">
<div class="feature text-center">
<span class="feature-icon">
<img id="world-coverage" src="images/icons/orange/world-coverage.png" alt="world coverage"/>
</span>
<h3 class="feature-title">World Coverage</h3>
<p>Providing services in 99% countries<br> around all the globe</p>
</div>
</div>
<!-- Feature Ends -->
</div>
<div class="gap-20"></div>
<div class="row">
<!-- Feature Starts -->
<div class="col-sm-6 col-md-6 col-xs-12">
<div class="feature text-center">
<span class="feature-icon">
<img id="payment-options" src="images/icons/orange/payment-options.png" alt="payment options"/>
</span>
<h3 class="feature-title">Payment Options</h3>
<p>Popular methods: Visa, MasterCard, <br>bank transfer, cryptocurrency</p>
</div>
</div>
<!-- Feature Ends -->
<div class="gap-20-mobile"></div>
<!-- Feature Starts -->
<div class="col-sm-6 col-md-6 col-xs-12">
<div class="feature text-center">
<span class="feature-icon">
<img id="mobile-app" src="images/icons/orange/mobile-app.png" alt="mobile app"/>
</span>
<h3 class="feature-title">Mobile App</h3>
<p>Trading via our Mobile App, Available<br> in Play Store & App Store</p>
</div>
</div>
<!-- Feature Ends -->
</div>
<div class="gap-20"></div>
<div class="row">
<!-- Feature Starts -->
<div class="col-sm-6 col-md-6 col-xs-12">
<div class="feature text-center">
<span class="feature-icon">
<img id="cost-efficiency" src="images/icons/orange/cost-efficiency.png" alt="cost efficiency"/>
</span>
<h3 class="feature-title">Cost efficiency</h3>
<p>Reasonable trading fees for takers<br> and all market makers</p>
</div>
</div>
<!-- Feature Ends -->
<div class="gap-20-mobile"></div>
<!-- Feature Starts -->
<div class="col-sm-6 col-md-6 col-xs-12">
<div class="feature text-center">
<span class="feature-icon">
<img id="high-liquidity" src="images/icons/orange/high-liquidity.png" alt="high liquidity"/>
</span>
<h3 class="feature-title">High Liquidity</h3>
<p>Fast access to high liquidity orderbook<br> for top currency pairs</p>
</div>
</div>
<!-- Feature Ends -->
</div>
</div>
<!-- Features Ends -->
<!-- Video Starts -->
<div class="col-md-4 ts-padding bg-image-1">
<div>
<div class="text-center">
<a class="button-video mfp-youtube" href="https://www.youtube.com/watch?v=0gv7OC9L2s8"></a>
</div>
</div>
</div>
<!-- Video Ends -->
</div>
</div>
</section>
<!-- Features and Video Section Ends -->
<!--wanna work year-->
<!-- level transformation Starts -->
<section class="level-transformation">
<div class="container">
<!-- Section Title Starts -->
<div class="row text-center">
<h2 class="title-head">level <span>transformation</span></h2>
<div class="title-head-subtitle">
<p>Deposit Money using a credit card or with your linked bank account</p>
<p>Level one--> Immediately you deposit 10$, 6$ goes to the level-topper wallets, $3 goes to the referral wallet and 1$ is Reserved for maintenance, but you will also get $6 donation from four users, which is $6 * 4(users) = $24</p>
<p>Level two--> Immediately you get to level two with $24, $18 automatically goes to the level-topper wallets, but you will also get $18 donation from four users, which is $18 * 4(users) = $72 + $6(left in your wallet) = $78</p>
<p>Level three--> Immediately you get to level three with $78, $60 automatically goes to the level-topper wallets, but you will also get $60 donation from four users, which is $60 * 4(users) = $240 + $18(left in your wallet) = $258</p>
<p>Level four--> Immediately you get to level four with $258, $8 automatically goes to the maintenance wallets, $10 to your wallet to restart the system for you and $240 to your cash app, which is now withdrawable</p>
</div>
</div>
<!-- Section Title Ends -->
<!-- Section Content Starts -->
<div class="row level-transformation-tables-content">
<div class="level-transformation-container">
<!-- level transformation deposit button Starts -->
<div class="level-transformation-action-btn">
<p ><a class="btn btn-primary" href="#">Deposit</a></p>
</div>
<!-- level transformation deposit button Ends -->
<!-- level transformation Tables Starts -->
<ul class="level-transformation-list bounce-invert">
<li class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<ul class="level-transformation-wrapper">
<!-- level transformationg Table #1A Starts -->
<li data-type="buy" class="is-visible">
<header class="level-transformation-header">
<h2>LEVEL ONE <span>YOU GET </span></h2>
<div class="price">
<span class="currency"><i class="fa fa-dollar"></i></span>
<span class="value">24</span>
</div>
</header>
<footer class="level-transformation-footer">
<a href="#" class="btn btn-primary">NOT WITHDRAWABLE</a>
</footer>
</li>
<!-- level transformation Table #1A Ends -->
</ul>
</li>
<li class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<ul class="level-transformation-wrapper">
<!-- level transformation Table #2A Starts -->
<li data-type="buy" class="is-visible">
<header class="level-transformation-header">
<h2>LEVEL TWO <span>YOU GET </span></h2>
<div class="price">
<span class="currency"><i class="fa fa-dollar"></i></span>
<span class="value">78</span>
</div>
</header>
<footer class="level-transformation-footer">
<a href="#" class="btn btn-primary">NOT WITHDRAWABLE</a>
</footer>
</li>
<!-- level transformation Table #2A Ends -->
</ul>
</li>
<li class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<ul class="level-transformation-wrapper">
<!-- level transformation Table #3A Starts -->
<li data-type="buy" class="is-visible">
<header class="level-transformation-header">
<h2>LEVEL THREE <span>YOU GET </span></h2>
<div class="price">
<span class="currency"><i class="fa fa-dollar"></i></span>
<span class="value">258</span>
</div>
</header>
<footer class="level-transformation-footer">
<a href="#" class="btn btn-primary">NOT WITHDRAWABLE</a>
</footer>
</li>
<!-- level transformation Table #3A Ends -->
</ul>
</li>
<li class="col-xs-6 col-sm-6 col-md-3 col-lg-3">
<ul class="level-transformation-wrapper">
<!-- level transformation Table #4A Starts -->
<li data-type="buy" class="is-visible">
<header class="level-transformation-header">
<h2>LEVEL FOUR <span>YOU GET </span></h2>
<div class="price">
<span class="currency"><i class="fa fa-dollar"></i></span>
<span class="value">240</span>
</div>
</header>
<footer class="level-transformation-footer">
<a href="#" class="btn btn-primary">WITHDRAWABLE</a>
</footer>
</li>
<!-- level transformation Table #4A Ends -->
</ul>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- level transformation Ends -->
<!--Number of Registered User section starts-->
<!--Users Features Section Starts -->
<section class="user-features">
<div class="container">
<div class="row user-features-row">
<div class="row text-center">
<h2 class="title-head">Numbers <span> of </span> Registered <span> Users</span></h2>
<div class="title-head-subtitle">
<p>Below are number of Registered Users</p>
</div>
<div class="row text-left">
<p>1. Musa AbdulGaniyu</p>
<p>2. Oduwole Hameed</p>
<p>3. praise</p>
<p>4. Dada mojeed</p>
<p>5. Adejumoh toheeb</p>
<p>6. mayor isaac</p>
<p>7. psamuel</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section Ends -->
<!--Number of Registered User Ends-->
<!-- Quote and Chart Section Starts -->
<section class="image-block2">
<div class="container-fluid">
<div class="row">
<!-- Quote Starts -->
<div class="col-md-4 img-block-quote bg-image-2">
<blockquote>
<p>Bitcoin is one of the most important inventions in all of human history. For the first time ever, anyone can send or receive any amount of money with anyone else, anywhere on the planet, conveniently and without restriction.
It’s the dawn of a better, more free world.</p>
<footer><img src="images/ceo.jpg" alt="ceo" /> <span>Marc Smith</span> - CEO</footer>
</blockquote>
</div>
<!-- Quote Ends -->
<!-- Chart Starts -->
<div class="col-md-8 bg-grey-chart">
<div class="chart-widget dark-chart chart-1">
<div>
<div class="btcwdgt-chart" data-bw-theme="dark"></div>
</div>
</div>
<div class="chart-widget light-chart chart-2">
<div>
<div class="btcwdgt-chart" bw-theme="light"></div>
</div>
</div>
</div>
<!-- Chart Ends -->
</div>
</div>
</section>
<!-- Quote and Chart Section Ends -->
<!-- Call To Action Section Starts -->
<section class="call-action-all">
<div class="call-action-all-overlay">
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- Call To Action Text Starts -->
<div class="action-text">
<h2>Get Started Today With Crystolpay</h2>
<p class="lead">Open account for free and start earning Money!</p>
</div>
<!-- Call To Action Text Ends -->
<!-- Call To Action Button Starts -->
<p class="action-btn"><a class="btn btn-primary" href="register.html">Register Now</a></p>
<!-- Call To Action Button Ends -->
</div>
</div>
</div>
</div>
</section>
<!-- Call To Action Section Ends -->
<!-- Footer Starts -->
<footer class="footer">
<!-- Footer Top Area Starts -->
<div class="top-footer">
<div class="container">
<div class="row">
<!-- Footer Widget Starts -->
<div class="col-sm-4 col-md-2">
<h4>Our Company</h4>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<!-- Footer Widget Ends -->
<!-- Footer Widget Starts -->
<div class="col-sm-4 col-md-2">
<h4>Help & Support</h4>
<div class="menu">
<ul>
<li><a href="faq.html">FAQ</a></li>
<li><a href="terms-of-services.html">Terms of Services</a></li>
<li><a href="404.html">404</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</div>
<!-- Footer Widget Ends -->
<!-- Footer Widget Starts -->
<div class="col-sm-4 col-md-3">
<h4>Contact Us </h4>
<div class="contacts">
<div>
<span>mon-sun 07am ⇾ 12pm</span>
</div>
</div>
<!-- Social Media Profiles Starts -->
<div class="social-footer">
<ul>
<li><a href="#" target="_blank"><i class="fa fa-telegram"></i></a></li>
<li><a href="#" target="_blank"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<!-- Social Media Profiles Ends -->
</div>
<!-- Footer Widget Ends -->
<!-- Footer Widget Starts -->
<div class="col-sm-12 col-md-5">
<!-- Facts Starts -->
<div class="facts-footer">
<div>
<h5>243K</h5>
<span>daily transactions</span>
</div>
<div>
<h5>369K</h5>
<span>active accounts</span>
</div>
<div>
<h5>127</h5>
<span>supported countries</span>
</div>
</div>
<!-- Facts Ends -->
<hr>
<!-- Supported Payment Cards Logo Starts -->
<div class="payment-logos">
<h4 class="payment-title">supported payment methods</h4>
<img src="images/icons/payment/american-express.png" alt="american-express">
<img src="images/icons/payment/mastercard.png" alt="mastercard">
<img src="images/icons/payment/visa.png" alt="visa">
<img src="images/icons/payment/paypal.png" alt="paypal">
<img class="last" src="images/icons/payment/maestro.png" alt="maestro">
</div>
<!-- Supported Payment Cards Logo Ends -->
</div>
<!-- Footer Widget Ends -->
</div>
</div>
</div>
<!-- Footer Top Area Ends -->
<!-- Footer Bottom Area Starts -->
<div class="bottom-footer">
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- Copyright Text Starts -->
<p class="text-center">Copyright © 2018 Crystolpay All Rights Reserved | Created with Love by <a href="https://themeforest.net/user/celtano" target="_blank">celtano</a></p>
<!-- Copyright Text Ends -->
</div>
</div>
</div>
</div>
<!-- Footer Bottom Area Ends -->
</footer>
<!-- Footer Ends -->
<!-- Back To Top Starts -->
<a href="#" id="back-to-top" class="back-to-top fa fa-arrow-up"></a>
<!-- Back To Top Ends -->
<!-- Template JS Files -->
<script src="js/jquery-2.2.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/select2.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/custom.js"></script>
<!-- Live Style Switcher JS File - only demo -->
<script src="js/styleswitcher.js"></script>
</div>
<!-- Wrapper Ends -->
</body>
</html>