-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1322 lines (1137 loc) · 50.7 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="ru">
<head>
<meta charset="utf-8">
<title>Pi Mini</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="mystyle.css">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
</head>
<body style="background-color:black;">
<div class="loader_bg">
<div class="loader">
</div>
</div>
<!-- <video autoplay muted loop id="myVideo">
<source src="./img/background.mov" type="video/mp4">
</video> -->
<section id="banner2">
<!-- <div class="preloader"></div> -->
<header class="header" style="position:fixed;">
<a href="#" class="logo">
<img src="./img/logo2.png">
</a>
<ul class="menu">
<li class="menu__item">
<a href="#about" class="menu__link">About</a>
</li>
<li class="menu__item">
<a href="#utility" class="menu__link">Utility</a>
</li>
<li class="menu__item">
<a href="#plans" class="menu__link">Plans</a>
</li>
<li class="menu__item">
<a href="#tokenomics" class="menu__link">Tokenomics</a>
</li>
<li class="menu__item">
<a href="#token_distri" class="menu__link">Token Distribution</a>
</li>
<li class="menu__item">
<a href="#roadmap" class="menu__link">Roadmap</a>
</li>
<li class="menu__item">
<a href="#nft" class="menu__link">NFT</a>
</li>
<li class="menu__item">
<a href="#team" class="menu__link">KYC</a>
</li>
</ul>
<!-- <div class="header__right">
<div class="sign-in-wrap">
</div>
</div> -->
<div class="btn-menu">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</header>
<div class="fixed-menu">
<div class="fixed-menu__header">
<a href="#" class="logo">
<div class="logo__title">Pi Mini</div>
</a>
<div class="btn-close">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 47.971 47.971" style="enable-background:new 0 0 47.971 47.971;" xml:space="preserve" width="512px" height="512px">
<path d="M28.228,23.986L47.092,5.122c1.172-1.171,1.172-3.071,0-4.242c-1.172-1.172-3.07-1.172-4.242,0L23.986,19.744L5.121,0.88 c-1.172-1.172-3.07-1.172-4.242,0c-1.172,1.171-1.172,3.071,0,4.242l18.865,18.864L0.879,42.85c-1.172,1.171-1.172,3.071,0,4.242 C1.465,47.677,2.233,47.97,3,47.97s1.535-0.293,2.121-0.879l18.865-18.864L42.85,47.091c0.586,0.586,1.354,0.879,2.121,0.879 s1.535-0.293,2.121-0.879c1.172-1.171,1.172-3.071,0-4.242L28.228,23.986z" fill="#006DF0"/></svg>
</div>
</div>
<div class="fixed-menu__content">
<ul class="mob-menu">
<li class="mob-menu__item">
<a href="#about" class="mob-menu__link">About</a>
</li>
<li class="mob-menu__item">
<a href="#utility" class="mob-menu__link">Utility</a>
</li>
<li class="mob-menu__item">
<a href="#plans" class="mob-menu__link">Plans</a>
</li>
<li class="mob-menu__item">
<a href="#tokenomics" class="mob-menu__link">Tokenomics</a>
</li>
<li class="mob-menu__item">
<a href="#token_distri" class="mob-menu__link">Token Distribution</a>
</li>
<li class="mob-menu__item">
<a href="#roadmap" class="mob-menu__link">Roadmap</a>
</li>
<li class="mob-menu__item">
<a href="#nft" class="mob-menu__link">NFT</a>
</li>
<li class="menu__item">
<a href="#team" class="mob-menu__link">KYC</a>
</li>
</ul>
</div>
</div>
<section class="promo" style="background-position: 80% 100%">
<div class="container">
<div class="row mobile-view promo-mobile-view">
<!-- <div class="social-links social-links-mobile">
<a href="https://discord.gg"><img src="./img/discord.png" style="height:35px;width:35px;" class="social-link opensea"></a><br>
<a href="https://t.me/PiMiniOfficial"><i class="fa fa-telegram social-link" aria-hidden="true"></i></a><br>
<a href="https://twitter.com/PiMiniOfficial?t=6wPeF1eGJ0FTCymBotjcFA&s=09"><i class="fa fa-twitter social-link" aria-hidden="true"></i></a><br>
</div> -->
<div data-aos="fade-up" class="col-12 col-sm-12 col-lg-6 col-md-6 promo__content" >
<div class="myimage1234">
<img data-aos="fade-up" src="./img/pi.gif" alt="" class="myimg123">
</div>
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 mobile-right">
<h1 style="color:white;" class="pimini-mobile"><span>Welcome to</span> Pi Mini</h1>
<p style="color:white;" class="pimini-p">
The First Ever Education Platform Linked With Crypto
</p>
<div class="mobile-bg">
<div data-aos="fade-up" class="promo__btns-wrap" >
<a href="https://t.me/PiMiniOfficial" class="btn btn--medium join-mobile" style="background: linear-gradient(to right, #000099 0%, #ff0066 100%);border:0px solid white;"><span>Join Us</span></a>
<a href="./img/whitepaper.pdf" class="btn btn--big btn--blue" style="background: linear-gradient(to right, #000099 0%, #ff0066 100%);border:0px solid white;">WhitePaper</a>
</div>
</div>
</div>
</div>
<div class="row desktop-view">
<div data-aos="fade-up" class="col-12 col-sm-12 col-lg-6 col-md-6 promo__content desktop-left" >
<h1 style="color:white;"><span>Welcome to</span> Pi Mini</h1>
<p style="color:white;">
The First Ever Education Platform Linked With Crypto
</p>
<div data-aos="fade-up" class="promo__btns-wrap" >
<a href="https://t.me/PiMiniOfficial" class="btn btn--medium btn--blue" style="background: linear-gradient(to right, #000099 0%, #ff0066 100%);border:0px solid white;"><span>Join Us</span></a>
<a href="./img/whitepaper.pdf" class="btn btn--big btn--blue" style="background: linear-gradient(to right, #000099 0%, #ff0066 100%);border:0px solid white;">WhitePaper</a>
</div>
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12">
<div class="myimage1234">
<img data-aos="fade-up" src="./img/pi.gif" alt="" class="myimg123">
</div>
</div>
</div>
<section data-aos="fade-up" id="mytimer" >
<div class="container" >
<div class="row timer-row" >
<div class="col-md-6 col-sm-12 col-12 col-lg-6 timer-left">
<h2 class="timer-h2">
ICO ending in
</h2>
<a href="https://logwork.com/countdown-s54s" class="countdown-timer" data-timezone="Asia/Kolkata" data-textcolor="#1a1a1a" data-date="2022-03-25 17:30" data-background="#1a1a1a" data-digitscolor="#fff" data-unitscolor="#fff">ICO Starting in</a>
</div>
<div class="col-md-6 col-sm-12 col-12 col-lg-6 timer-right">
<h1 class="mytimer-h1">
<a href="https://dappbuilder.org/bsc/tokensaleclaimtimeref/tokensale.html?id=0xdb8072903Ea77649BcC158f993ee01BDaCbEecc3&net=56" class="white-paper-btn" >ICO is Live</a>
</h1>
<div class="row indicator-row">
<div class="col-md-4 col-sm-4 col-4 col-lg-4">
<span class="indicator-p">Sale Raised</span>
</div>
<div class="col-md-4 col-sm-4 col-4 col-lg-4">
</div>
<div class="col-md-4 col-sm-4 col-4 col-lg-4" style="text-align: right;">
<span class="indicator-p">500 BNB HC</span>
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 5%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<div style="text-align:center;margin-top:20px;">
<a href="./first.pdf" class="btn btn-lg yourbtn" style="background:linear-gradient(to right,blue,#e600e6);border-left:none; padding-left:30px;
padding-right:30px;">
✅ Audit
</a>
<a href="https://auditrate.tech/certificate/certificate_PiMini.html" class="btn btn-lg yourbtn" style="background:linear-gradient(to right,blue, #e600e6);border-left:none; padding-left:30px;
padding-right:30px;">
✅ KYC
</a>
</div>
</div>
</section>
<section id="myeight" >
<section class="economy" id="about" >
<div class="container">
<div class="row ">
<div data-aos="fade-up" class="col-md-4 col-sm-12 col-12 col-lg-4 mx-auto" style="text-align: center;">
<img src="./img/about.png" class="myabout">
</div>
<div class="col-lg-8 col-sm-12 col-12 col-lg-8 mt-2">
<div data-aos="fade-up" class="economy__block first-block" >
<div class="economy__block-content">
<div class="section-header section-header--white section-header--tire section-header--small-margin">
<h4>About PiMini</h4>
<h2 class="determine">Determine the future of<br>
Crypto Adoption
</h2>
</div>
<div data-aos="fade-up" class="about__animated-content" >
<p>
PiMini is the World's first-ever project made to combine education platforms with the crypto world.
</p>
<p>
<span>PiMini</span> is a governance token of <span>PiMini</span> project. The motive of the PiMini project is to bring out the adoption of cryptocurrency by education platforms to endure the Crypto use in a day to day life and it also provides an opportunity to become a professional developer in different niches like Frontend Developer, Backend Developer, Full stack Developer, Mobile Developer, Game Developer, Data Scientist Developer, Software Developer, NFT Artist.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="section desktop-viewt" id="about" style="background-color:black;">
<div class="container">
<div class="row">
<div data-aos="fade-up" class="col-lg-5 about-content" >
<p>
PiMini is going to have its own educational website, application and a real life university. This is going to serve the online and offline teaching of competitive exams and crypto education world wide.
</p>
<p>
There will be two options to get enrolled. First is to opt for the online education where you can get access to your chosen courses by sitting in any part of the world with the help of our crypto integrated educational website and platforms .
</p>
<p>
The second way of learning is to join the PiMini university and learn by attending the classes physically in completely different university environment where you have a real life experience of using your PiMini tokens within the university for different aspects.
</p>
</div>
<div data-aos="zoom-in" class="col-lg-6 offset-lg-1 align-items-center" >
<video class="pimini-video" autoplay muted loop playsinline>
<source src="./img/video/myvideo.mov" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</section>
<section id="myseventh" class="mobile-view seventh-about">
<section class="section about" >
<div class="container">
<div class="row">
<div data-aos="fade-up" class="col-lg-6 offset-lg-1 align-items-center">
<!-- <img src="./img/myimg/Asset-1@2x-3.png" class="about__img img-responsive" alt=""> -->
<video class="pimini-video" autoplay muted loop playsinline>
<source src="./img/video/myvideo.mov" type="video/mp4">
<!-- <source src="movie.ogg" type="video/ogg"> -->
Your browser does not support the video tag.
</video>
</div>
<div data-aos="fade-up" class="col-lg-5 about-pimini">
<div class="section-header section-header--animated section-header--tire section-header--small-margin">
<!-- <h4>About PiMini</h4>
<h2 class="determine">Determine the future of Crypto adoption
</h2> -->
</div>
<div data-aos="fade-up" class="about__animated-content">
<p>
PiMini is going to have its own educational website, application and a real life university. This is going to serve the online and offline teaching of competitive exams and crypto education world wide.
</p>
<p>
There will be two options to get enrolled. First is to opt for the online education where you can get access to your chosen courses by sitting in any part of the world with the help of our crypto integrated educational website and platforms .
</p>
<p>
The second way of learning is to join the PiMini university and learn by attending the classes physically in completely different university environment where you have a real life experience of using your PiMini tokens within the university for different aspects.
</p>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="economy" id="utility">
<div class="container">
<div class="row">
<div class="col-md-2 col-sm-12 col-12 col-lg-2">
</div>
<div class="col-lg-8 col-sm-12 col-12 col-lg-8">
<div class="economy__block shadow">
<div data-aos="fade-up" class="economy__block-content " >
<div class="section-header section-header--white section-header--tire section-header--small-margin">
<h4>Never ending Utility</h4>
<h2 class="determine">PiMini Utility
</h2>
</div>
<p>
Utility of a token is something which can decide the future of the project. In that case the utility of PiMini token plays an important role.
</p>
<p>
The fee for the courses bought by students will be paid in the form of PiMini tokens. The education platform is something which is going to run forever unlike the other crypto trends which get extinguish after the trend ends. This will allow the buying flow for ever. Along with the fee all other stationery items , edibles, hostel charges, library and many more things present in the university to be bought and paid with PiMini tokens only.
</p>
</div>
</div>
</div>
<div class="col-md-2 col-sm-12 col-12 col-lg-2">
</div>
</div>
</div>
<!-- <img src="img/video-bg.png" alt="" class="economy__bg"> -->
</section>
<!-- <section class="partners-logo" id="partners-logo" >
<div class="container">
<div class="row">
<div data-aos="fade-up" class="col">
</div>
</div>
</div>
<img src="img/partenrs-bg.png" data-jarallax-element="20" alt="" class="partners-logo__bg">
</section> -->
<section id="fifth">
<section class="section cases" id="plans" >
<div class="container">
<div class="row">
<div class="col">
<div class="section-header section-header--animated section-header--center section-header--medium-margin">
<div style="position:relative;bottom:40px;">
<!-- <h4 data-aos="fade-up" style="position:relative;bottom:50px;">Plans</h4> -->
<h2 data-aos="fade-up" class="determine" style="background: linear-gradient(to right,#ff3300,#ff3300,#3333ff,#3333ff
);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;position:relative;top:50px; ">PiMini Plans
</h2>
<div class="bg-title" style="opacity:0.2;">
PiMini Plans
</div>
</div>
<p data-aos="fade-up" style="color:#aab2cd;font-weight:300;margin-top:80px;">
PiMini is basically working on online and offline aspects. The online aspects cosist of educational website and application that is integrated with crypto wallet. The website and application will run through three tests before releasing the final version.</p>
</div>
</div>
</div>
<div class="row">
<div class="col cases__list">
<div data-aos="fade-up" class="cases__item">
<!-- <img src="img/cases-icon-1.png" alt="" class="cases__item-icon"> -->
<div class="cases__item-content">
<div class="cases__item-title">
Alfa Testing
</div>
<p class="cases__item-text">
The first test is Alpha testing. Alpha testing is a type of software testing performed to identify bugs before releasing the product to real users or to the public. Alpha Testing is one of the user acceptance testing. It is performed at developer's site.
</p>
</div>
</div>
<div data-aos="face-right" data-aos-delay="200" class="cases__item">
<!-- <img src="img/cases-icon-2.png" alt="" class="cases__item-icon"> -->
<div data-aos="fade-up" class="cases__item-content" >
<div class="cases__item-title">
Beta Testing
</div>
<p class="cases__item-text">
The second test is Beta testing. Beta testing provides insights into product functionality, and also helps you better understand user experience. Going beyond lab performance tests, beta testing reveals whether or not the same level of performance is achievable in actual user environments.
</p>
</div>
</div>
<div data-aos="fade-up" class="cases__item">
<!-- <img src="img/cases-icon-3.png" alt="" class="cases__item-icon"> -->
<div class="cases__item-content">
<div class="cases__item-title">
Release Candidate Testing
</div>
<p class="cases__item-text">
The third test is Release candidiate. This is the stage of product stabilization, all product features have been designed, coded and tested through one or more beta cycles with no known showstopper-class bugs. A release is called code complete when the development team agrees that no entirely new source code will be added to this release.
</p>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="cases__item">
<!-- <img src="img/cases-icon-4.png" alt="" class="cases__item-icon"> -->
<div class="cases__item-content">
<div class="cases__item-title">
Final Stage
</div>
<p class="cases__item-text">
The next is Final stage. In final stage software product is released and is made available in the market for selling and purchasing of services, after completing all marketing formalities and commercialization activities, which may include security and compliance testing, along with the nationwide or the worldwide availability of the product.
</p>
</div>
</div>
</div>
</div>
<!-- <div class="row">
<a href="" class="btn btn--orange btn--uppercase join-btn"><span>Join Us</span></a>
</div> -->
</div>
<!-- <img src="img/cases-bg.png" class="cases__bg" alt="">
<img src="img/cases-imgs.png" class="cases__elements" alt=""> -->
</section>
</section>
<section class="economy" id="plans">
<div class="container">
<div class="row">
<div data-aos="fade-up" class="col-md-4 col-sm-12 col-12 col-lg-4" >
<img src="./img/plans.png" class="myplan">
</div>
<div class="col-lg-8 col-md-8 col-sm-12 col-12 mt-2">
<div class="economy__block block2">
<div data-aos="fade-up" class="economy__block-content">
<div class="section-header section-header--white section-header--tire section-header--small-margin">
<h4 class="determine">PiMini Plans</h4>
</div>
<p>
The full working website and application will be live in less than 1 month.
</p>
<p>
The next is to follow up the construction of University. As soon as the online platform is live the company will start with the next goal of offline project that is the World’s first real life Crypto University.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <img src="img/video-bg.png" alt="" class="economy__bg"> -->
<section id="fourth">
<section class="section section--no-pad-bot facts">
<div class="container">
<div class="row">
<div class="col">
<div class="section-header section-header--animated section-header--center section-header--small-margin">
<h2 data-aos="fade-up" class="determine stages-h2">There are 5 stages in which the construction will take place.</h2>
</div>
</div>
</div>
</div>
<div class="facts__line">
<div class="container">
<div class="row">
<div class="col">
<div class="facts__line-list">
<div data-aos="fade-up" class="facts__item">
<div class="img-div">
<img src="img/bitcon-round.png" class="facts__icon" alt="">
</div>
<div class="facts__title">
Conception
</div>
</div>
<div data-aos="fade-up" class="facts__item">
<img src="img/stellar-round.png" class="facts__icon" alt="">
<div class="facts__title">
Planning & Design
</div>
</div>
<div data-aos="fade-up" class="facts__item" >
<img src="img/counterparty-round.png" class="facts__icon" alt="">
<div class="facts__title">
Construction
</div>
</div>
<div data-aos="fade-up" class="facts__item">
<img src="img/lisk.png" class="facts__icon" alt="">
<div class="facts__title">
Commissioning & Turnover
</div>
</div>
<div data-aos="fade-up" class="facts__item">
<img src="img/eos-round.png" class="facts__icon" alt="">
<div class="facts__title">
Occupancy
</div>
</div>
</div>
</div>
<p data-aos="fade-up" class="myp">
The construction will be initiated in California with the space of 8000 acres, the size is subject to change ( this is the approximate area size, may differ from the actual size ). Our top level builder company will try to complete the construction between 6-12 months. Official news and big picture promotions will be made. There will be Global collaborations with educational platforms. The university will be inaugurated with in the given deadline. Franchisees will be sold world wide and the next stage of the project of establishing the PiMini universities in all the major countries of the world will begin ....
</p>
</div>
</div>
<!-- <img src="img/facts-bg.png" class="facts__bg" alt=""> -->
</div>
</section>
</section>
</section>
<!-- <section class="docs" id="docs">
<div class="container">
<div class="row">
<div class="col">
<div class="section-header section-header--animated seaction-header--center section-header--tire section-header--medium-margin">
<h4>Our files</h4>
<h2>Documents</h2>
</div>
</div>
</div>
<div class="row">
<div data-aos="fade-up" class="col-lg-3 col-md-6 col-sm-6 col-12">
<a href="" class="doc">
<div class="doc__content">
<img src="img/pdf.svg" alt="">
<div class="doc__title">
Terms & Conditions
</div>
</div>
</a>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="col-lg-3 col-md-6 col-sm-6 col-12">
<a href="" class="doc">
<div class="doc__content">
<img src="img/pdf.svg" alt="">
<div class="doc__title">
White Pappers
</div>
</div>
</a>
</div>
<div data-aos="fade-up" data-aos-delay="400" class="col-lg-3 col-md-6 col-sm-6 col-12">
<a href="" class="doc">
<div class="doc__content">
<img src="img/pdf.svg" alt="">
<div class="doc__title">
Privacy Policy
</div>
</div>
</a>
</div>
<div data-aos="fade-up" data-aos-delay="600" class="col-lg-3 col-md-6 col-sm-6 col-12">
<a href="" class="doc">
<div class="doc__content">
<img src="img/pdf.svg" alt="">
<div class="doc__title">
Business Profile
</div>
</div>
</a>
</div>
</div>
</div>
<img src="img/docs-bg.png" data-jarallax-element="40" alt="" class="docs__bg">
</section> -->
<!-- <section id="third"> -->
<div id="tokenomics">
<div class="tokenomics1" style="background: linear-gradient(black,black,black,black,white);">
<div data-aos="fade-up" class="section-header section-header--animated section-header--medium-margin section-header--center">
<h2 class="determine" style="background: linear-gradient(to right,#ff3300,#ff3300,#3333ff,#3333ff
);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text; position:relative;top:0px;font-size:34px;">Tokenomics</h2>
<div class="bg-title" style="position: relative;top:10px;opacity:0.2;">
Tokenomics
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content" data-aos="fade-up">
<h1 class="token-h1">
4% A great passive income
</h1>
<h4 class="token-h4">
4% of every transaction is automatically redistributed to every holder.
</h4>
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12" data-aos="fade-up">
<img src="./img/myimg/1.png" class="tokenomics-img myimage">
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12 " data-aos="fade-up">
<img src="./img/myimg/liquidity.png" class="tokenomics-img myimage">
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content" data-aos="fade-up">
<h1 class="token-h1">
4% Goes to liquidity pool
</h1>
<h4 class="token-h4">
4% of every transaction goes to the liquidity pool in Pancakeswap thereby ensuring the stable price and reliability of $PiMini Token.
</h4>
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content left-part" data-aos="fade-up">
<h1 class="token-h1">
1% Goes to charity
</h1>
<h4 class="token-h4">
1% of every transaction goes to charity for a good cause
</h4>
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12" data-aos="fade-up">
<img src="./img/myimg/2.png" class="tokenomics-img myimage">
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12" data-aos="fade-up">
<img src="./img/myimg/marketing.png" class="tokenomics-img myimage" >
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content" data-aos="fade-up">
<h1 class="token-h1">
1% Goes to marketing
</h1>
<h4 class="token-h4 ">
1% of every transaction goes to a marketing wallet in bnb, this constitutes a funding capacity for the marketing expenditures in the future.
</h4>
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content left-part" data-aos="fade-up">
<h1 class="token-h1 locked-h1">
Locked liquidity
</h1>
<h4 class="token-h4 locked-h4">
Liquidity will be locked for 12 months on PinkSale.
</h4>
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12" style="text-align: center;" data-aos="fade-up">
<img src="./img/myimg/locked.png" class="tokenomics-img myimage locked">
</div>
</div>
</div>
</div>
<!-- <img src="img/cases-bg.png" class="cases__bg" alt=""> -->
<!-- </section> -->
</div>
<!-- <section id="tokenomics" class="tokenomics2"> -->
<div id="tokenomics">
<div class="tokenomics2" style="background: linear-gradient(black,black,black,black,white);">
<div data-aos="fade-up" class="section-header section-header--animated section-header--medium-margin section-header--center">
<h4>Our Tokenomics</h4>
<h2 class="determine">Tokenomics</h2>
<div class="bg-title" style="opacity:0.2;">
Tokenomics
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12 col-lg-6 col-12" data-aos="fade-up">
<img src="./img/myimg/1.png" class="tokenomics-img myimage">
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content" data-aos="fade-up">
<h1 class="token-h1">
4% A great passive income
</h1>
<h4 class="token-h4">
4% of every transaction is automatically redistributed to every holder.
</h4>
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12 " data-aos="fade-up">
<img src="./img/myimg/liquidity.png" class="tokenomics-img myimage">
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content" data-aos="fade-up">
<h1 class="token-h1">
4% Goes to liquidity pool
</h1>
<h4 class="token-h4">
4% of every transaction goes to the liquidity pool in Pancakeswap thereby ensuring the stable price and reliability of $PiMini Token.
</h4>
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12" data-aos="fade-up">
<img src="./img/myimg/2.png" class="tokenomics-img myimage">
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content left-part" data-aos="fade-up">
<h1 class="token-h1">
1% Goes to charity
</h1>
<h4 class="token-h4">
1% of every transaction goes to charity for a good cause
</h4>
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12" data-aos="fade-up">
<img src="./img/myimg/marketing.png" class="tokenomics-img myimage">
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content" data-aos="fade-up">
<h1 class="token-h1">
1% Goes to marketing
</h1>
<h4 class="token-h4 ">
1% of every transaction goes to a marketing wallet in bnb, this constitutes a funding capacity for the marketing expenditures in the future.
</h4>
</div>
</div>
<div class="row row-1">
<div class="col-md-6 col-sm-12 col-lg-6 col-12" style="text-align: center;" data-aos="fade-up">
<img src="./img/myimg/locked.png" class="tokenomics-img myimage locked">
</div>
<div class="col-md-6 col-sm-12 col-lg-6 col-12 token-content left-part" data-aos="fade-up">
<h1 class="token-h1 locked-h1-1">
Locked liquidity
</h1>
<h4 class="token-h4 locked-h1-2">
Liquidity will be locked for 12 months on PinkSale.
</h4>
</div>
</div>
</div>
</div>
</div>
<!-- </section> -->
<!-- </section> -->
<!-- <section id="combine"> -->
<!-- <section class="data token-data section section--no-pad-bot" id="token_distri" > -->
<div id="token_distri" style="background: linear-gradient(white,white,black,black,black);">
<div class="container">
<div class="row">
<div class="col" data-aos="fade-up">
<div class="section-header section-header--animated section-header--medium-margin section-header--center" style="position: relative;bottom:70px;" data-aos="fade-up">
<h2 class="determine token-detr determine2" style="background: linear-gradient(to right,#ff3300,#ff3300,#3333ff,#3333ff
);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text; position:relative;top:50px;font-size:34px;">Token Distribution</h2>
<div class="bg-title determine" style="opacity:0.2;">
Token Distribution
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12 col-12 col-lg-4">
</div>
<div class="col-md-4 col-sm-12 col-12 col-lg-4">
<img src="./img/mypie.png" class="pie-img" style="height:100%;width:100%;">
</div>
<div class="col-md-4 col-sm-12 col-12 col-lg-4">
</div>
</div>
</div>
<div class="row chart__row align-items-center">
<div class="col-lg-6">
<div class="chart">
<img class="chart__bg" src="img/chart-bg.png" alt="">
<div class="chart__wrap">
<canvas id="myChart" width="400" height="400"></canvas>
</div>
</div>
</div>
<div data-aos="face-right" class="col-lg-6 token-data__animated-content">
<div class="chart__title">
Allocation of funds
</div>
<ul class="chart__legend">
<li>
<span style="width: 22px;"></span>
5% Dev
</li>
<li>
<span style="width: 44px;"></span>
10% Private Institue
</li>
<li>
<span style="width: 44px;"></span>
10% Owner
</li>
<li>
<span style="width: 100px;"></span>
13% Staking and Rewards
</li>
<li>
<span style="width: 200px;"></span>
20% Event Burn
</li>
</ul>
</div>
</div>
<div class="row chart__row align-items-center second-chart">
<div data-aos="face-right" class="col-lg-6 token-data__animated-content">
<div class="chart__title">
Allocation of funds
</div>
<ul class="chart__legend">
<li>
<span style="width: 30px;"></span>
6% ICO
</li>
<li>
<span style="width: 55px;"></span>
10% Locked liquidity
</li>
<li>
<span style="width: 44px;"></span>
10% Initial Burn
</li>
<li>
<span style="width: 100px;"></span>
16% Presale
</li>
</ul>
</div>
<div class="col-lg-6">
<!-- <img src="./img/tokenomics1.jpeg" style="height:100%;width:100%;"> -->
<div class="chart">
<img class="chart__bg" src="img/chart-bg.png" alt="">
<div class="chart__wrap">
<canvas id="myChart2" width="400" height="400"></canvas>
</div>
</div>
</div>
</div>
</div>
<!-- </section> -->
<!-- <section class="section map" > -->
<div class="container" id="roadmap">
<div class="row">
<div class="col" data-aos="fade-up">
<div class="section-header section-header--animated section-header--center section-header--medium-margin" style="position: relative;bottom:50px;">
<h2 class="determine token-detr determine2" style="background: linear-gradient(to right,#ff3300,#ff3300,#3333ff,#3333ff
);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text; position:relative;top:50px;font-size:34px;">Road Map</h2>
<div class="bg-title" style="opacity:0.2;">
Roadmap
</div>
</div>
</div>
</div>
<div class="row" data-aos="fade-up">
<img src="./img/myimg/newP2.png" class="pie-image">
</div>
<div class="row myroadmap">
<div class="col-lg-6 offset-lg-4 col-sm-8 offset-sm-4">
<div class="road">
<div class="road__item">
<div class="road__item-metka"></div>
<div class="road__item-content">
<div class="road__item-title determine">
Phase 1
</div>
<p>
Website<br>
Social Platforms<br>
Audit<br>
ICO<br>
Marketing<br>
Presale<br>
PiMini NFT with utility
</p>
</div>
</div>
<div class="road__item">
<div class="road__item-metka"></div>
<div class="road__item-content">
<div class="road__item-title determine">
Phase 2
</div>
<p>
Heavy marketing<br>
Launch PiMini Contract<br>
Early updates about website & application<br>
Integration of PiMini into Web & App<br>
Alpha Testing<br>
Launch Pimini Staking<br>
Token listing on 3 exchanges<br>
Marketing in Educational Fields<br>
Hiring Online Instructors
</p>
</div>
</div>
<div class="road__item">
<div class="road__item-metka"></div>
<div class="road__item-content">
<div class="road__item-title determine">
Phase 3
</div>
<p>
Collaboration with Educational hubs<br>
Beta version of Web & App <br>
1000 enrolment giveaways Stage of Web and App<br>