-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhomepage
1666 lines (1471 loc) · 85.8 KB
/
homepage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HeartChain is the first global, decentralized network for the sponsorship of medical, healthcare and biotech sector ventures and sponsors. Using crypto-currencies, tokens, blockchains and smart contract. Pre-ICO sale, coming soon. Sponsors will access and help develop best-in-class medical life science ventures before they hit the market. Health Science innovators have access to diversified and fair capital and retain control of their destiny, all with the support of a team of experts." />
<meta name="keywords" content="HeartChain, ICO, cryptocurrency, new cryptocurrency, fundraising, medical technology, life sciences, bio technology, investor, investment, Blockchain, Smart contracts, medical, innovation, support, pre-ICO, pre-sale, token, sponsorship, sponsor, tokenization, Crowdfunding,Bitcoin,Ethereum,Healthcare,Trade,Coin, Token, upcoming ICO, biotech, cardiovascular, medical device, smart contract">
<title>HeartChain: Revolutionizing how Life Science Ventures Reach Success</title>
<link rel="icon" type="image/png" sizes="25x25" href="images/favicon.png">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Heebo:100,300,400,500,700,800,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- animate CSS
============================================ -->
<link rel="stylesheet" href="css/animate.css">
<link href="css/style.css?v=5843" rel="stylesheet" media="screen">
<link href="css/style-responsive.css?v=5368" rel="stylesheet" media="screen">
</head>
<body id="home">
<div id="preloader">
<div id="status"> </div>
</div>
<header class="header">
<div class="container">
<div class="mobile_nav">
<img src="images/bars.png" class="m-bars">
<img src="images/cross.png" class="m-cross">
</div>
<div class="logo">
<a href="#home" class="hidden-xs"><img src="images/logo_2.png" alt="HeartChain"></a>
<a href="#home" class="visible-xs"><img src="images/logo.svg" alt="HeartChain"></a>
</div>
<div class="icons-box">
<div class="social-toggle-icon">
<!--<a href="#" id="sti-box">-->
<img src="images/dots.png" class="sti-dots">
<img src="images/cross.png" class="sti-cross">
<!--</a>-->
</div>
<div class="contact_icon">
<a href="#" id="ci-box">
<img src="images/contact.png" class="ci-icon">
<img src="images/cross.png" class="ci-cross">
</a>
<div class="update-box">
<span><img src="images/arrow.png"></span>
<div class="ub-box">
<h3>CONTACT US</h3>
<div class="sucess-msg">
<form action="#" id="form_2" method="post" autocomplete="off" >
<input type="text" placeholder="Your name" name="name" id="name_2" required="required">
<input type="email" placeholder="Email address" name="email" id="email_2" required="required">
<textarea placeholder="Type your message here" id="message_2"></textarea>
<div class="text-center mob-left">
<input type="submit" value="SEND" name="submit">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="social-box">
<div class="social-icons">
<a href="https://medium.com/heartchain" target="_blank" class="icon-1"></a>
<a href="https://www.linkedin.com/company/heartchain/" target="_blank" class="icon-2"></a>
<a href="https://t.me/heart_chain" target="_blank" class="icon-3"></a>
<a href="https://www.facebook.com/HeartChainMedical" target="_blank" class="icon-4"></a>
<a href="https://twitter.com/HeartChainHQ" target="_blank" class="icon-5"></a>
</div>
</div>
<div class="menu_bar">
<ul>
<li><a href="#sec_1">WHY HEARTCHAIN</a></li>
<li><a href="#sec_2">WHITEPAPER</a></li>
<li><a href="#sec_3">OUR APPROACH</a></li>
<li><a href="#sec_4">TIMELINE</a></li>
<li><a href="#sec_5">THE TEAM</a></li>
<li><a href="#sec_6">EVENTS</a></li>
<li><a href="#sec_7">NEWS</a></li>
<li><a href="#sec_8">COMMUNITY</a></li>
</ul>
</div>
</div>
<div class="clearfix"></div>
</div>
</header>
<section class="section home_sec">
<div class="sec_overlay"></div>
<div class="bg_video">
<video autoplay loop id="video-background" muted plays-inline poster="video/video-2.jpg">
<source src="video/video-2.mov" type="video/mp4">
</video>
</div>
<div class="bg-image" style="background-image:url(video/video-2.jpg)">
</div>
<div class="container">
<div class="new_menu_bar hidden-xs">
<div class="desk-logo">
<a href="#home"><img src="images/logo.svg"></a>
</div>
<div class="contact_icon">
<a href="#" id="ci-box-2">
<span>EMAIL UPDATES</span>
<img src="images/contact.png" class="ci-icon">
<img src="images/cross.png" class="ci-cross">
</a>
<div class="update-box upbox-2">
<span><img src="images/arrow.png"></span>
<div class="ub-box">
<h3>CONTACT US</h3>
<div class="sucess-msg">
<form action="#" id="form_2" method="post" autocomplete="off" >
<input type="text" placeholder="Your name" name="name" id="name_2" required="required">
<input type="email" placeholder="Email address" name="email" id="email_2" required="required">
<textarea placeholder="Type your message here" id="message_2"></textarea>
<div class="text-center mob-left">
<input type="submit" value="SEND" name="submit">
</div>
</form>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="main_menu_bar">
<ul>
<li><a href="#sec_1">WHY HEARTCHAIN</a></li>
<li><a href="#sec_2">WHITEPAPER</a></li>
<li><a href="#sec_3">OUR APPROACH</a></li>
<li><a href="#sec_4">TIMELINE</a></li>
<li><a href="#sec_5">THE TEAM</a></li>
<li><a href="#sec_6">EVENTS</a></li>
<li><a href="#sec_7">NEWS</a></li>
<li><a href="#sec_8">COMMUNITY</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="home_left_text">
<h2>Revolutionizing how life science innovations get sponsored <br/><span>HeartChain eliminates the old-world problem of early-stage funding for vital life-saving medical and scientific research.</span></h2>
<div class="hft_form">
<h3>THE HEARTCHAIN PRIVATE SALE HAS STARTED</h3>
<div class="sucess-msg">
<form action="#" id="form_1" method="post" autocomplete="off" >
<input type="text" placeholder="Your name" name="name" id="name_1" required="required">
<input type="email" placeholder="Email address" name="email" id="email_1" required="required">
<input type="submit" value="KEEP ME UPDATED" name="submit">
</form>
</div>
</div>
<div class="hft_text">
<h4>HeartChain Token (HCT) holders will benefit from:</h4>
<ul>
<li>Membership rights to buy tokens in exclusive, highly selective Life Science innovations only available on the HeartChain platform </li>
<li>Significant discounts when buying the innovation tokens </li>
<li>Further discounts on innovation tokens commensurate with HeartChain holdings </li>
</ul>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119795621-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-119795621-1');
</script>
</div>
</div>
</div>
<div class="col-md-6">
<div class="video_holder">
<a href="#" data-video="https://www.youtube.com/embed/M4L-Ml9R4pA" data-toggle="modal" data-target="#videoModal"><img src="video/play_video.svg" alt="HeartChain, the new way to bring medical innovation to life. Combining the technology of blockchain with the power of crowdfunding, HeartChain introduces a new way to participate in the life-saving innovations of tomorrow. "></a>
</div>
</div>
</div>
</div>
</section>
<section class="section whyhc_sec">
<div class="container">
<div id="sec_1">
<div class="ws-head target_head wow fadeIn">
<h2>Why HeartChain?<br/><span>HeartChain provides benefits to investors, <br/>researchers and the general community</span></h2>
</div>
<div class="ws-first">
<div class="row wow fadeIn">
<div class="col-lg-push-6 col-lg-6 col-md-push-6 col-md-6 col-sm-push-6 col-sm-6">
<div class="wsf-text wsf-text-4">
<div class="wsf-head">
<h4>THE FOUNDERS' VISION</h4>
</div>
<div class="wsf-info">
<h3>REVOLUTIONIZING LIFE-SCIENCE SUPPORT</h3>
<p>Play the video to hear the HeartChain founders describe how crowdfunding, blockchains and smart contracts will create the future of funding for medical technology companies. The HeartChain platform will offer everyone the opportunity to participate in financing and benefiting in life-changing innovations.</p>
</div>
</div>
</div>
<div class="col-lg-pull-6 col-lg-6 col-md-pull-6 col-md-6 col-sm-pull-6 col-sm-6">
<div class="ws-img-4">
<a href="#" data-video="https://www.youtube.com/embed/qy6v-BYATsk" data-toggle="modal" data-target="#videoModal2"><img src="video/5ad761f15d467.svg" class="img-responsive" alt="Crypto currency, crowdfunding, medical innovations, finding, sponsorship, smart contracts, HeartChain"></a>
</div>
</div>
</div>
</div>
<div class="ws-first">
<div class="row wow fadeIn">
<div class="col-sm-6">
<div class="ws-img-1">
<img src="images/Why_HC_1st.svg" class="img-responsive" alt="Sponsors are the owners of HeartChain Tokens (HCT) and get to enjoy:">
</div>
</div>
<div class="col-sm-6">
<div class="wsf-text">
<div class="wsf-head">
<h4>FOR SPONSORS</h4>
</div>
<div class="wsf-info">
<h3>Transparency</h3>
<p>Priority access to a pipeline of exclusive, fully-vetted life sciences product development opportunities</p>
</div>
<div class="wsf-info">
<h3>Diversity</h3>
<p>Interest in multiple product development projects - concurrently or consecutively</p>
</div>
<div class="wsf-info">
<h3>inclusion</h3>
<p>Participation in the fastest growing sectors of medical innovation</p>
</div>
<div class="wsf-info">
<h3>DO WELL, DO GOOD</h3>
<p>Assist in development of innovative medical products you may then use, donate to someone in need, or offer back to innovators at retail price</p>
</div>
<!-- <div class="wsf-info">
<h3>Transparency</h3>
<p>Access to a pipeline of exclusive, fully vetted life sciences product development opportunity</p>
</div>
<div class="wsf-info">
<h3>Diversity</h3>
<p>The ability to have interest in multiple product development projects</p>
</div>
<div class="wsf-info">
<h3>inclusion</h3>
<p>A platform for any sponsor to participate in the fastest growing sectors of medical innovation</p>
</div>
<div class="wsf-info">
<h3>DO WELL, DO GOOD</h3>
<p>Assist in development of innovative medical products you may then use, donate or offer back to innovators</p>
</div> -->
</div>
</div>
</div>
</div>
<div class="ws-sec wow fadeIn">
<div class="row">
<div class="col-lg-push-6 col-lg-6 col-md-push-6 col-md-6 col-sm-push-6 col-sm-6">
<div class="ws-img-2">
<img src="images/Why_HC_2nd.svg" class="img-responsive" alt="For the leaders of the medical innovations of tomorrow, HeartChain provides a diversified access to funding, with low friction and low cost along with the guidance you need to succeed.">
</div>
</div>
<div class="col-lg-pull-6 col-lg-6 col-md-pull-6 col-md-6 col-sm-pull-6 col-sm-6">
<div class="wss-text">
<div class="wsf-head">
<h4>FOR INNOVATORS</h4>
</div>
<div class="wsf-info">
<h3>disruption</h3>
<p>A non-dilutive, off balance sheet, non-security related alternative to traditional VC investment and government grants</p>
</div>
<div class="wsf-info">
<h3>visibility</h3>
<p>A secure platform where your innovation can be seen by screened prospective investors</p>
</div>
<div class="wsf-info">
<h3>acceleration</h3>
<p>Bridging the gap between funding and commercialization with an efficient, transparent and discernible process that brings breakthroughs to life faster</p>
</div>
<div class="wsf-info">
<h3>support</h3>
<p>The HeartChain network of experts will provide guidance and resources, so you can focus on what you do best – innovative discoveries</p>
</div>
<!-- <div class="wsf-info">
<h3>disruption</h3>
<p>A non-security relating alternative to traditional VC investment and government grants</p>
</div>
<div class="wsf-info">
<h3>visibility</h3>
<p>A single platform where your emerging technology products can be seen by screened prospective investors</p>
</div>
<div class="wsf-info">
<h3>acceleration</h3>
<p>Bridging the gap between funding and commercialization with an efficient, transparent and discernible process that’ll bring breakthroughs to life faster</p>
</div>
<div class="wsf-info">
<h3>support</h3>
<p>Our network of experts provide guidance and resources, so you can focus on what you do best</p>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="whiteppr" id="sec_2">
<div class="container">
<div class="tl-head target_head wow fadeIn">
<h2>WHITEPAPER</h2>
</div>
<div class="row">
<div class="col-sm-6 wow fadeIn">
<a href="file/HeartChainWhitePaper.pdf" target="_blank"><img src="images/5ad5f6efa7eea.png" class="img-responsive" alt="HeartChain is the first global, decentralized network for the sponsorship of medical, healthcare and biotech sector ventures and sponsors. Using crypto-currencies, tokens, blockchains and smart contract. Pre-ICO sale, coming soon. Sponsors will access and help develop best-in-class medical life science ventures before they hit the market. Health Science innovators have access to diversified and fair capital and retain control of their destiny, all with the support of a team of experts."></a>
</div>
<div class="col-sm-6 wow fadeIn">
<div class="wppr-text">
<p>Download the comprehensive whitepaper to learn how HeartChain will support medical innovation and produce a win-win situation for med-tech companies, their sponsors and the general community.</p><p>Version 1.2.1, May 2018</p> <a href="file/HeartChainWhitePaper.pdf" target="_blank">DOWNLOAD <br>WHITEPAPER <img src="images/download.png"></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="sec_3">
<div class="ws-head wow fadeIn">
<h2 class="target_head">APPROACH</h2>
</div>
<div class="ws-app wow fadeIn">
<div class="row">
<div class="col-sm-5">
<div class="ws-img-3">
<img src="images/5abc95c9b833e.svg" class="img-responsive" alt="HeartChain's approach takes triaged and thoroughly vetted medical, biotech and health sciences innovations to then open access to a large pool of global Institutional, accredited or retail sponsors interested in supporting that promising company. ">
</div>
</div>
<div class="col-sm-7">
<div class="app-text">
<h3>Democratizing participation in health innovation inherently removes barriers and fuels success.</h3>
<p>The medical and scientific research industries have very high rates of early-stage failure. This is due to a lack of access to capital, where VC structure is stacked against the science innovators' interest and where equity dilution discourages early stages sponsors. But this is all about to change.</p>
<p>HeartChain will utilize blockchains and smart contracts, to makes sponsoring the development of medical innovation products accessible, transparent and friction-free for both sponsors and innovators.</p>
<br>
<p> How?</p>
<br>
<p><b>Sponsors </b>buy HeartChain Tokens (HCT). This gives them membership to the HeartChain community. Membership gives sponsors the opportunity to support the development of particular product innovations, at the early-stage lower cost of manufacture, at a discounted rate. Each product innovation has its own funding program on the HeartChain platform. Sponsors can participate in any project of their choice.</p>
<p><b>Innovators</b> are instantaneously connected at early-stage development, with a huge pool of sponsors from around the world, at extremely low cost. This eliminates equity dilution and enables innovators to focus on R&D rather than fundraising.</p>
<p>Join us, for good.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="sec_4">
<section class="section timeline">
<div class="timeline-cont">
<div class="tl-head target_head wow fadeIn">
<h2>TIMELINE</h2>
</div>
<!-- <div class="timeline-graphic hidden-xs wow fadeIn">
<img src="images/5abbe64939655.svg?v=1" alt="HeartChain timeline">
<div class="tg-text tg-text-1">
<h3>March</h3>
<p>Friends & Family 50% discount</p> </div>
<div class="tg-text tg-text-2">
<h3>April 20th PREICO</h3>
<p>20% discount</p> </div>
<div class="tg-text tg-text-3">
<h3>June</h3>
<p>ICO <br>no discount</p> </div>
<div class="tg-text tg-text-4">
<h3>February</h3>
<p>Initial <br> website</p> </div>
<div class="tg-text tg-text-5">
<h3>March</h3>
<p>Formation of HeartChain advisory group</p>
<p>Onboarding the first 3 portfolio companies</p> </div>
<div class="tg-text tg-text-6">
<h3>June</h3>
<p>Advisory group of scientific experts in place</p>
<p>Signed up next 6 portfolio companies</p> </div>
<div class="tg-text tg-text-7">
<h3>July</h3>
<p>First portfolio ICO launched</p>
<p>Full operating platform in place to launch portfolio ICO's</p> </div>
<div class="tg-text tg-text-8">
<h3>August</h3>
<p>Second portfolio ICO launched</p> </div>
<div class="tg-text tg-text-2">
<h3>01 April to 31 May</h3>
<p>20% discount</p>
</div>
<div class="tg-text tg-text-3">
<h3>June</h3>
<p>ICO <br>no discount</p>
</div>
<div class="tg-text tg-text-4">
<h3>February</h3>
<p>Initial <br> website</p>
</div>
<div class="tg-text tg-text-5">
<h3>March</h3>
<p>Formation of HeartChain advisory group</p>
<p>Onboarding the first 3 portfolio companies</p>
</div>
<div class="tg-text tg-text-6">
<h3>June</h3>
<p>Advisory group of scientific experts in place</p>
<p>Signed up next 6 portfolio companies</p>
</div>
<div class="tg-text tg-text-7">
<h3>July</h3>
<p>First portfolio ICO launched</p>
<p>Full operating platform in place to launch portfolio ICO’s</p>
</div>
<div class="tg-text tg-text-8">
<h3>August</h3>
<p>Second portfolio ICO launched</p>
</div>
</div>
<div class="timeline-mob visible-xs wow fadeIn">
<img src="images/5abbe332c2507.svg" alt="HeartChain timeline" class="imag-responsive">
</div> -->
<div class="container">
<div class="new-timeline">
<div class="row newtl-row">
<div class="col-md-2 col-sm-4 col-xs-6 newtl-col">
<div class="newtl-text">
<img src="images/tl_arrow.svg">
<h3>April 2018</h3>
<p>HeartChain friends and family private pre-TGE, April 2018</p> </div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 newtl-col">
<div class="newtl-text">
<img src="images/tl_arrow.svg">
<h3>May 2018</h3>
<p>Formation of HeartChain advisory group</p> </div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 newtl-col">
<div class="newtl-text">
<img src="images/tl_arrow.svg">
<h3>June 2018</h3>
<p>HeartChain public pre-TGE<br>– June 30</p>
<p>Full advisory group of clinical and scientific experts in place</p>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 newtl-col">
<div class="newtl-text">
<img src="images/tl_arrow.svg">
<h3>July 2018</h3>
<p>Signing up IC commerce</p>
<p>Full operating platform in place to launch portfolio TGE</p>
<p>HeartChain full TGE – July 31</p>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 newtl-col">
<div class="newtl-text">
<img src="images/tl_arrow.svg">
<h3>August 2018</h3>
<p>First IPT# TGE launched</p> </div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 newtl-col">
<div class="newtl-text">
<img src="images/tl_arrow.svg">
<h3>October 2018</h3>
<p>Second IPT# TGE launched</p> </div>
</div>
</div><div class="row newtl-row"> </div>
</div>
</div>
</div>
</section>
</div>
<section class="section graphics">
<div class="container">
<div class="gr-first">
<div class="grf-head wow fadeIn">
<h2>ICO TOKEN DISTRIBUTION</h2>
</div>
<div class="grf-graphic wow fadeIn">
<img src="images/5b17e4cc37048.png" alt="HeartChain ICO token distribution" class="img-responsive">
</div>
</div>
<div class="gr-first">
<div class="grf-head wow fadeIn">
<h2>ONGOING OPERATIONS</h2>
</div>
<div class="grf-graphic wow fadeIn">
<img src="images/5abb68987c3ae.svg" alt="HeartChain onging operations" class="img-responsive">
</div>
</div>
<div class="gr-team" id="sec_5">
<div class="grf-head target_head wow fadeIn">
<h2>the team</h2>
</div>
<div class="grt-holder">
<div class="grt-sub-head">The Founders</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/5af47f7993e1c.png" alt="Dr. Asher Holzer PhD, Chairman">
<div class="in-icon">
<a href="https://www.linkedin.com/in/asher-holzer-15188436/" target="_blank"><img src="images/in.svg"></a>
</div>
</div>
<div class="grtb-text">
<h3>Dr. Asher Holzer PhD</h3>
<p>Chairman</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_2">
<div class="grtb-img">
<img src="images/5af482bbc6056.png" alt="HeartChain, Vice Chairman">
<div class="in-icon">
<a href="https://www.linkedin.com/in/eytan-j-lombroso-4952832/" target="_blank"><img src="images/in.svg"></a>
</div>
</div>
<div class="grtb-text">
<h3>Eytan Lombroso</h3>
<p>Vice Chairman</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_3">
<div class="grtb-img">
<img src="images/5af86e0f94ac0.png" alt="Jean-Marc Orlando, Vice Chairman">
<div class="in-icon">
<a href="https://www.linkedin.com/in/jean-marc-orlando-542b88a/" target="_blank"><img src="images/in.svg"></a>
</div>
</div>
<div class="grtb-text">
<h3>Jean-Marc Orlando</h3>
<p>Vice Chairman</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_4">
<div class="grtb-img">
<img src="images/team-4.png" alt="Dr. Jeremy Stone MD MBA, Chief Scientific and Clinical Officer">
<div class="in-icon">
<a href="https://www.linkedin.com/in/jeremy-stone-md-mba/" target="_blank"><img src="images/in.svg"></a>
</div>
</div>
<div class="grtb-text">
<h3>Dr. Jeremy Stone MD MBA</h3>
<p>Chief Scientific and Clinical Officer</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_5">
<div class="grtb-img">
<img src="images/team-5.png" alt="Simon Leger, Chief Technical Officer">
<div class="in-icon">
<a href="https://www.linkedin.com/in/simonleger/" target="_blank"><img src="images/in.svg"></a>
</div>
</div>
<div class="grtb-text">
<h3>Simon Leger</h3>
<p>Chief Technical Officer</p>
</div>
</div>
<div class="grt-sub-head">ADVISORS</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#adv_1">
<div class="grtb-img">
<img src="images/adv-1.png" alt="Kelly H. Zou, PhD, PStat, ASA Fellow, Advisor HeartChain">
<div class="in-icon">
<a href="https://www.linkedin.com/in/kelly-h-zou-phd-asa-fellow-97307b16/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Kelly H. Zou</h3>
<p>Healthcare and Tokenization</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#adv_2">
<div class="grtb-img">
<img src="images/adv-2.png" alt="Laurent de Bernede, HeartChain advisor">
<div class="in-icon">
<a href="https://www.linkedin.com/in/laurentdebernede/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Laurent de Bernede</h3>
<p>Crowdfunding, Blockchain and Finance</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#adv_3">
<div class="grtb-img">
<img src="images/4a7cb1fafe9445e622c73630c46c423b.png" alt="James Lasry, Advisor, Legal Counsel, HeartChain">
<div class="in-icon">
<a href="https://www.linkedin.com/in/jameslasry/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>James Lasry</h3>
<p>Legal Counsel and Regulations</p>
</div>
</div>
<!-- <div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_6">
<div class="grtb-img">
<img src="images/adv-1.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Kelly H. Zou</h3>
<p>Hendritet Etal</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/adv-2.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Laurent de Bernede</h3>
<p>Lorem Ipsum</p>
</div>
</div> -->
<div class="more-btn">
<a href="#" id="show-more"><img src="images/team/btn_exp.svg"></a>
</div>
<div id="whole-team">
<div class="grt-sub-head whole-team">MEET THE WHOLE TEAM</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#who_1">
<div class="grtb-img">
<img src="images/wt-2.png" alt="Malcolm Auld - Marketing">
<div class="in-icon">
<a href="https://www.linkedin.com/in/malcolmauld/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Malcolm Auld</h3>
<p>Marketing, Content</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#who_2">
<div class="grtb-img">
<img src="images/wt-3.png" alt="Nir AZZOUT, Business development and event coordinator">
<div class="in-icon">
<a href="https://www.linkedin.com/in/nir-hazzout-05027374/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Nir Azzout</h3>
<p>Events and Business Development</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#who_3">
<div class="grtb-img">
<img src="images/wt-4.png" alt="Patrick Shirkey, Technology">
<div class="in-icon">
<a href="https://www.linkedin.com/in/patrick-shirkey-85698822/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Patrick Shirkey</h3>
<p>Technology, Software</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#who_4">
<div class="grtb-img">
<img src="images/5af86cf44c5c7.png" alt="Brad Ufkes, Blockchain and Crypto community manager, HeartChain">
<div class="in-icon">
<a href="https://www.linkedin.com/in/brad-ufkes/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Brad Ufkes</h3>
<p>Community</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#who_5">
<div class="grtb-img">
<img src="images/8a472b20db7a0857b38006ca6f932f64.png" alt="Omri Bein, Social Media and Research, HeartChain">
<div class="in-icon">
<a href="https://www.linkedin.com/in/omri-bein-0823a3b7/" target="_blank"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Omri Bein</h3>
<p>Social Media Marketing & Research</p>
</div>
</div>
<!-- <div class="grt-box" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/wt-1.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>David Bartel</h3>
<p>UX, Brand</p>
</div>
</div>
<div class="grt-box" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/wt-2.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Malcolm Auld</h3>
<p>Dolor Sit</p>
</div>
</div>
<div class="grt-box" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/wt-3.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Nir Azzout</h3>
<p>Lorem Ipsum</p>
</div>
</div>
<div class="grt-box" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/wt-4.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Patrick Sharkey</h3>
<p>Hendritet Etal</p>
</div>
</div>
<div class="grt-box" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/wt-5.png">
<div class="in-icon">
<a href="#"><img src="images/team/in-grey.svg"></a>
</div>
</div>
<div class="grtb-text bw">
<h3>Nemanja Djordjevic</h3>
<p>Graphic Design</p>
</div>
</div> -->
<div class="more-btn">
<a href="#" id="close-more"><img src="images/team/btn_col.svg"></a>
</div>
</div>
<div class="grf-head target_head wow fadeIn">
<h2>OUR PARTNERS</h2>
</div>
<div class="our-par">
<a href="https://www.blockstate.co/" target="_blank"><img src="images/team/par-1.png"></a>
</div>
<!-- <div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_1">
<div class="grtb-img">
<img src="images/team-1.png">
<div class="in-icon">
<a href="#"><img src="images/in.png"></a>
</div>
</div>
<div class="grtb-text">
<h3>Eytan Lombroso</h3>
<p>Chief Executive Officer</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_2">
<div class="grtb-img">
<img src="images/team-2.png">
<div class="in-icon">
<a href="#"><img src="images/in.png"></a>
</div>
</div>
<div class="grtb-text">
<h3>Jean-Marc Orlando</h3>
<p>President</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_3">
<div class="grtb-img">
<img src="images/team-3.png">
<div class="in-icon">
<a href="#"><img src="images/in.png"></a>
</div>
</div>
<div class="grtb-text">
<h3>Dr. Asher Holzer PhD</h3>
<p>Chairman</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_4">
<div class="grtb-img">
<img src="images/team-4.png">
<div class="in-icon">
<a href="#"><img src="images/in.png"></a>
</div>
</div>
<div class="grtb-text">
<h3>Dr. Jeremy Stone MD MBA</h3>
<p>Chief Scientific and Clinical Officer</p>
</div>
</div>
<div class="grt-box wow fadeIn" data-toggle="modal" data-target="#member_5">
<div class="grtb-img">
<img src="images/team-5.png">
<div class="in-icon">
<a href="#"><img src="images/in.png"></a>
</div>
</div>
<div class="grtb-text">
<h3>Simon Leger</h3>
<p>Chief Technical Officer</p>
</div>
</div> -->
</div>
</div>
</div>
</section>
<section class="section events" id="sec_6">
<div class="container">
<div class="se-head target_head wow fadeIn">
<h2>Events</h2>
</div>
<div class="events-holder">
<div class="eh-box wow fadeIn">
<div class="eh-text">
<div class="eh-date">
<strong>11</strong>
<span>Jun</span>
</div>
<div class="eht-text">
<h3>Boston</h3>
<p>2nd Annual Healthcare Blockchain Summit.<br/>June 11-12, 2018</p>
<a href="http://tcbi.org/hcblockchainplatform/" target="_blank">EVENT DETAILS</a>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="eh-box wow fadeIn">
<div class="eh-text">
<div class="eh-date">
<strong>30</strong>
<span>May</span>
</div>
<div class="eht-text">
<h3>Test2</h3>
<p>This is also for test purpose</p>
<a href="facebook.com" target="_blank">abc</a>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="eh-box wow fadeIn">
<div class="eh-text">
<div class="eh-date">
<strong>23</strong>
<span>May</span>
</div>
<div class="eht-text">
<h3>Test 3 </h3>
<p>Test purpose. Test purpose. Test purpose. Test purpose. Test purpose. Test purpose. Test purpose.</p>
<a href="abc" target="_blank">xyz</a>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="eh-box wow fadeIn">
<div class="eh-text">
<div class="eh-date">
<strong>08</strong>
<span>May</span>
</div>
<div class="eht-text">
<h3>Test</h3>
<p>This is just for the test purpose</p>
<a href="abc" target="_blank"></a>
</div>
<div class="clearfix"></div>
</div>
</div>