-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
1480 lines (1441 loc) · 108 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="en" class="wide wow-animation">
<head>
<title> Dentacoin - The Blockchain Platform for the Global Dental Industry</title>
<meta name="google-site-verification" content="WdJb5v0M6eYSaSR7WAsTYJkS-MQ-R8ZWZX7jw_eY4Us" />
<meta name="description" content="Dentacoin aims to transform dentistry through various software solution and an industrywal-specific cryptocurrency (Dentacoin, DCN)."/>
<meta name="format-detection" content="telephone=no"/>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="google-site-verification" content="UShUdcF1dfYDF-ffIcHEvySF2AH9zVqDaAgtR1sEzVk" />
<meta property="og:image" content="https://dentacoin.com/web/img/DCN.png"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta charset="utf-8"/>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="Public">
<link rel="icon" href="web/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,600,700">
<link rel="" type="" href="lexio/leixo-demo-webfont.woff">
<link rel="stylesheet" href="web/css/min.style.css">
<link rel="stylesheet" href="web/css/min.video.css">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 378px;
}
</style>
<!--[if lt IE 10]>
<div style="background: #212121; padding: 10px 0; box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3); clear: both; text-align:center; position: relative; z-index:1;"><a href="http://windows.microsoft.com/en-US/internet-explorer/"><img src="images/ie8-panel/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."></a></div>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-97167262-1','auto');
ga('send', 'pageview');
</script>
</head>
<body style="overflow-x: hidden;">
<div id="particles-js"></div>
<div class="page">
<div class="page-loader page-loader-variant-1">
<div><a href="index.html" class="brand brand-md brand-inverse"><img src="web/img/dentacoinicon.png" alt="" width="135" height="34"/></a>
<div class="page-loader-body">
<div id="spinningSquaresG">
<div id="spinningSquaresG_1" class="spinningSquaresG"></div>
<div id="spinningSquaresG_2" class="spinningSquaresG"></div>
<div id="spinningSquaresG_3" class="spinningSquaresG"></div>
<div id="spinningSquaresG_4" class="spinningSquaresG"></div>
<div id="spinningSquaresG_5" class="spinningSquaresG"></div>
<div id="spinningSquaresG_6" class="spinningSquaresG"></div>
<div id="spinningSquaresG_7" class="spinningSquaresG"></div>
<div id="spinningSquaresG_8" class="spinningSquaresG"></div>
</div>
</div>
</div>
</div>
<header class="page-head">
<div class="rd-navbar-wrap">
<nav data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static" data-lg-device-layout="rd-navbar-static" data-stick-up-clone="false" data-md-stick-up-offset="53px" data-lg-stick-up-offset="53px" data-md-stick-up="true" data-lg-stick-up="true" class="rd-navbar rd-navbar-corporate-dark">
<div class="rd-navbar-inner">
<div class="rd-navbar-group rd-navbar-search-wrap">
<div class="rd-navbar-panel">
<button data-custom-toggle=".rd-navbar-nav-wrap" data-custom-toggle-disable-on-blur="true" class="rd-navbar-toggle"><span></span></button><a href="https://www.dentacoin.com/" class="rd-navbar-brand brand"><div class="logo" style="width: 50px; height: 50px;"></div></a>
</div>
<div class="rd-navbar-nav-wrap">
<div class="rd-navbar-nav-inner">
<ul class="rd-navbar-nav">
<li><a href="#">Home</a>
</li>
<li><a href="https://dentists.dentacoin.com/" target="_blank">For Dentists</a>
</li>
<li><a href="web/white-paper/Whitepaper-en1.pdf" target="_blank">Whitepaper</a>
</li>
<li><a href="#team">Team</a>
</li>
<li><a href="partners">Partners</a>
</li>
<li><a href="#buy">BUY</a>
</li>
<li><a href="wallet">Wallet</a>
</li>
<li><a href="faq">FAQ</a>
</li>
<li><a href="http://blog.dentacoin.com/" target="_blank">Blog</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="divider-fullwidth bg-porcelain"></div>
</header>
<section id="why" class="text-center">
<div class="shell">
<div class="range range-xs-center">
<div class="cell-xs-12 col-sm-12 col-xs-12 cell-sm-12">
<h2 class="text-lowercase" style="color:black; font-size:2.5em;">
<img src="web/img/DCN.png" alt="Dentacoin"><br> <span class="text-capitalize">The</span>Blockchain Solution for the Global Dental Industry
</h2>
<div class="cell-xs-12 cell-lg-8">
<h4 class="mt-md-10 mb-md-3" style="color:black; text-align:left; margin-top:5%;">Sick Care is the crisis of the 21st century. <br>
4,000+ dentists are shifting the paradigm towards a Health system that Cares.
</h4>
<p style="text-align:left;">
Secure Blockchain infrastructure, patient-centered care and intelligent prevention used
jointly to improve long-term health, reduce costs and pain and ensure mutual benefits.
</p>
<br>
<br>
<div class="responsive-video text-center">
<video class="responsive-video" id="video" controls loop width=640 height=360 poster="web/media/Capture.png">
<source src="web/media/Dentacoin - Introduction.mp4" type='video/mp4'>
<p>Video is not visible, most likely your browser does not support HTML5 video</p>
</video>
</div>
<br>
<br>
</div>
</div>
</div>
<div style="height: 20px;"></div>
</section>
<!--Icon box-->
<section id="what" class="text-center section-100">
<h3 class="text-center">What</h3>
<div class="range range-sm-center">
<!-- <div class="cell-sm-12">
<div class="col-sm-4 col-xs-push-4">
<div class="panel panel-custom panel-light cell-sm-10 cell-md-8 cell-lg-6">
<div id="accordionOneHeading2" role="tab" class="panel-heading">
<div class="panel-title"><a role="button" href="web/white-paper/Whitepaper-en1.pdf" class="collapsed" target="_blank"><center>Whitepaper</center>
<div class="panel-arrow"></div></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-custom panel-light cell-sm-10 cell-md-8 cell-lg-6">
<div id="accordionOneHeading2" role="tab" class="panel-heading">
<div class="panel-title"><a role="button" href="concept-summary/index.html" class="collapsed">Concept summary
<div class="panel-arrow"></div></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4 ">
<div class="panel panel-custom panel-light cell-sm-10 cell-md-8 cell-lg-6">
<div id="accordionOneHeading2" role="tab" class="panel-heading">
<div class="panel-title"><a href="" role="button" class="collapsed">FAQ<div class="panel-arrow"></div></a>
</div>
</div>
</div>
</div>
</div> -->
<div class="shell">
<p class="cell-sm-8 cell-md-8 cell-lg-6 offset-top-30">Dentacoin brings patients back into focus through an innovative
insurance-like model, numerous blockchain-based applications for patients, dentists, suppliers and an industry-specific
cryptocurrency used as a means of payment between all market participants.
</p>
</div>
</div>
<div class="range range-condensed range-xs-center range-sm-left">
<div class="cell-xs-10 cell-sm-4 height-fill">
<article class="icon-box icon-box-top-line">
<div class="box-top">
<span class="icon icon-primary icon-lg icon-1"></span>
<div class="box-header">
<h5><a href="https://reviews.dentacoin.com/" target="_blank">Trusted Reviews</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong><a href="https://reviews.dentacoin.com" target="_blank">www.reviews.dentacoin.com</a></strong><br>
The first Blockchain-based platform for detailed, verified and rewarded with DCN feedback on dental services.
</p>
</div><a href="https://reviews.dentacoin.com/" target="_blank" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-5"></span></div>
<div class="box-header">
<h5><a href="https://dentavox.dentacoin.com/" target="_blank">DentaVox</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong><a href="https://dentavox.dentacoin.com" target="_blank">www.dentavox.dentacoin.com</a></strong><br>
An online market research platform surveying users on various dental health topics and providing key results publicly.
</p>
</div><a href="https://dentavox.dentacoin.com/" target="_blank" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-4"></span></div>
<div class="box-header">
<h5><a href="http://dentacare.dentacoin.com/" target="_blank">Dentacare app</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong> Download on: <a href="https://itunes.apple.com/us/app/dentacare/id1274148338?mt=8" target="_blank"> App Store</a> and <a href="https://play.google.com/store/apps/details?id=com.dentacoin.dentacare&hl=en" target="_blank">Google Play</a></strong><br>
A mobile app which teaches kids and adults to maintain good oral hygiene through a 3-month incentivized challenge.
</p>
</div><a href="http://dentacare.dentacoin.com/" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box icon-box-top-line">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-2"></span></div>
<div class="box-header">
<h5>Dental Assurance</h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>ETA: Q4, 2018</strong><br>An Insurance-like model which assures patients to receive lifelong, preventive care through low monthly fee in DCN, paid to dentists.</p>
<!-- Button </div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a> -->
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box icon-box-top-line">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-3"></span></div>
<div class="box-header">
<h5>Health Database</h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>ETA: Q4, 2019</strong><br>A decentralized database which is fully managed by patients and stores dental health data in a safe and reliable way.</p>
<!-- Button </div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a> -->
</article>
</div>
<!--
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-6"></span></div>
<div class="box-header">
<h5>Trading Platform</h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Trade with DCN worldwide.</strong><br>A decentralised Trading Platform to provide dental care products, dental materials and equipment, connecting directly manufacturers, dentists and patients. No long supply chains, no more high international transaction costs.</p>
<!-- Button </div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a> -->
</article>
</div>
</div>
</section>
<section class="section-with-counters text-center">
<div class="shell bg-cape-cod context-dark section-100 section-md-90">
<h3 class="text-center">Stats</h3>
<div class="range offset-top-60 list-md-dashed">
<div class="cell-sm-4 offset-top-40 offset-sm-top-0">
<div id="" class="h1 small counter-bold counter">60000</div>
<div class="offset-top-0 text-bold text-dark text-uppercase" style="color:black">Tool Users</div>
</div>
<div class="cell-sm-4 offset-top-40 offset-sm-top-0">
<div id="lockedDCN" class="h1 small counter-bold counter">4000</div>
<div class="offset-top-0 text-bold text-dark text-uppercase" style="color:black">dentists worldwide</div>
</div>
<div class="cell-sm-4 offset-top-40 offset-sm-top-0">
<div id="totalDCN" class="h1 small counter-bold counter">50000</div>
<div class="offset-top-0 text-bold text-dark text-uppercase" style="color:black">token holders</div>
</div>
</div> <br>
<div class="offset-top-60 inset-xs-left-60 inset-xs-right-60">
<div class="text-dark text-center" style="color:black">*K = thousand (10^3, Kilo)</div>
<!-- <div class="text-dark text-center" style="color:black">*K = thousand (10^3, Kilo) / *M = million (10^6, Mega) / *G = billion (10^9, Giga) / *T = trillion (10^12, Tera)</div> -->
</div>
</div>
</section>
<section id="when" class="section-100">
<h3 class="text-center">When</h3>
<picture>
<source media="(min-width: 992px)" srcset="web/img/roadmap.png">
<source media="(max-width: 991px)" srcset="web/img/roadmap-vert.png">
<img class="offset-top-22 offset-md-top-60" src="web/img/roadmap.png" alt="dentacoin roadmap">
</picture>
</section>
<section class="column" id="buy">
<div slass="shell">
<div class="range-sm-center">
<h3 class="text-center">Where</h3>
</div>
<!-- Changelly -->
<br>
<br>
<h5 class="text-center">Easy and Fast: Buy Dentacoin with a card!</h5>
<p class="text-center"> Use your credit/debit card to purchase Dentacoin (DCN) directly on our website! You can also exchange DCN to over 100 other altcoins!</p>
<br>
<!-- Changelly Mobile-->
<div class="hidden-lg">
<link rel="stylesheet" href="https://changelly.com/widget.css"/>
<a class="center-col" id="changellyButton" href="https://changelly.com/widget/v1?auth=email&from=USD&to=DCN&merchant_id=e329f113040f&address=&amount=1&ref_id=e329f113040f&color=136584" target="_blank">
<img class="img-responsive center-col" src="https://changelly.com/pay_button_buy_sell.png" />
</a>
<div id="changellyModal" style="z-index:1000">
<div class="changellyModal-content">
<span class="changellyModal-close">x</span>
<iframe
src="https://changelly.com/widget/v1?auth=email&from=USD&to=DCN&merchant_id=e329f113040f&address=&amount=1&ref_id=e329f113040f&color=136584"
width="600"
height="500"
class="changelly"
scrolling="no"
style="overflow-y: hidden; border: none;"
>
Can't load widget
</iframe>
</div>
<script type="text/javascript">
var changellyModal = document.getElementById('changellyModal');
var changellyButton = document.getElementById('changellyButton');
var changellyCloseButton = document.getElementsByClassName('changellyModal-close')[0];
changellyCloseButton.onclick = function() {
changellyModal.style.display = 'none';
};
changellyButton.onclick = function widgetClick(e) {
e.preventDefault();
changellyModal.style.display = 'block';
};
</script>
</div>
</div>
<!-- End Changelly Mobile-->
<!-- Changelly -->
<div class="hidden-sm hidden-xs">
<div class="col-lg-12 center-col">
<iframe class="col-lg-12 center-col embed-responsive-item"
src="https://changelly.com/widget/v1?auth=email&from=USD&to=DCN&merchant_id=e329f113040f&address=&amount=1&ref_id=e329f113040f&color=136584"
width="600"
height="500"
class="changelly"
scrolling="no"
style="overflow-y: hidden; border: none"
>
Can't load widget
</iframe>
</div>
</div>
<!-- End Changelly-->
<!--Changelly Api-->
<!-- END Changelly Api-->
<br> <br> <hr style="width:95%;border: 0;border-top: 1px solid rgba(177, 177, 177, 0.712);">
<!-- Wallets section-->
<h4 class="text-center">Wallets:</h4>
<div class="range range-sm-center text-center" style="margin-top: 0;">
<div class="col-sm-12 offset-top-22" style="margin:30px 0 30px 0 ;" >
<div class="col-sm-3 offset-top-15"><a href="https://www.exodus.io/" target="_blank"><div class="exchange11"></div></a></div>
<div class="col-sm-3 offset-top-15"><a href="https://jaxx.io/" target="_blank"><div class="exchange10"></div></a></div>
<div class="col-sm-3 offset-top-15"> <a style="width: 150px;" href="https://lumiwallet.com/?pid=Tokenreferral&c=token&af_sub1=DCNE" target="_blank"><img src="web/img/sprite/lumi.png" alt=""/></a> </div>
<div class="col-sm-3 offset-top-15"><a href="https://atomicwallet.io/" target="_blank"><div class="exchange12"></div></a></div>
</div>
<div class="col-sm-12 offset-top-22">
<div class="col-sm-2 offset-top-15"></div>
<div class="col-sm-2 offset-top-15"><a href="https://www.myetherwallet.com/" target="_blank"><div class="exchange1"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://token.im/" target="_blank"><div class="exchange4"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://metamask.io/" target="_blank"><div class="exchange2"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://coinomi.com/" target="_blank"><div class="exchange3"></div></a></div>
</div>
</div>
<br> <br> <hr style="width:50%;border: 0;border-top: 1px solid rgba(177, 177, 177, 0.712);"></hrv>
<!-- Exchange platforms section-->
<h4 class="text-center">Exchange platforms:</h4> <br>
<div class="range range-sm-center text-center" style="margin-top: 0;">
<div class="col-sm-12 col-lg-8 offset-top-22" style="margin:30px 0 30px 0 ;">
<div class="col-sm-3"><a href="https://hitbtc.com/" target="_blank"><div class="exchange9"></div></a></div>
<div class="col-sm-3"><a href="https://www.cryptopia.co.nz/Home" target="_blank"><div class="exchange5"></div></a></div>
<div class="col-sm-3"><a href="https://www.coinexchange.io/" target="_blank"><div class="exchange6"></div></a></div>
<div class="col-sm-3 "> <a style="width: 150px;" href="https://easyrabbit.net/" target="_blank"><img src="web/img/sprite/easyrabbit.png" alt=""/></a> </div>
</div> <br> <br>
<div class="col-sm-12 offset-top-22" ></div>
<div class="col-sm-2 offset-top-15"><a href="https://mercatox.com/" target="_blank"><div class="exchange7"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://upcoin.com/" target="_blank"><div class="exchange23"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://idex.market" target="_blank"><div class="exchange22"></div></a></div>
<div class="col-sm-3 offset-top-15"> <a style="width: 150px;" href="https://www.koinok.com/" target="_blank"><img src="web/img/sprite/koinok.png" alt=""/></a> </div>
<br> <br>
<div class="col-sm-12 offset-top-22" style="margin:30px 0 30px 0 ;"></div>
<div class="col-sm-2 offset-top-15"><a href="https://etherdelta.com" target="_blank"><div class="exchange8"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://www.buyucoin.com/" target="_blank"><div class="exchange25"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://godex.io/" target="_blank"><div class="exchange24"></div></a></div>
<div class="col-sm-3 offset-top-15"> <a style="width: 150px;" href="https://changenow.io/" target="_blank"><img src="web/img/sprite/now.png" alt=""/></a> </div>
</div>
</div>
</div>
</section>
<br> <br> <hr style="width:95%;border: 0;border-top: 1px solid rgba(177, 177, 177, 0.712);">
<!--WHO section-->
<section id="who" class="section-100">
<h3 class="text-center">Who</h3>
<div class="shell">
<h4 class="text-center">
Partners
</h4>
<div class="row text-center">
<input id="pac-input" class="controls form-control" type="text" placeholder="Search">
<div class="col-sm-8 col-sm-offset-2" id="map" onload="drop()"></div>
<h4 class="col-md-12 offset-top-50">Are you interested in implementing Dentacoin at your dental practice? <br> Learn more about it <a href="dentists" target="_blank" class="text-blue">here</a></h4>
</div>
</section>
<br> <br> <br>
<!-- id="team" was missing, that was the reason why the Link to team didn't work -->
<section id="team">
<h3 class="text-center text-blue">Team</h3>
<div class="offset-top-22 offset-md-top-40">
<div data-items="1" data-sm-items="3" data-stage-padding="15" data-loop="true" data-autoplay="false" data-margin="15" data-mouse-drag="true" data-nav="true" data-dots="false" class="owl-carousel owl-carousel-center owl-nav-modern owl-style-minimal owl-style-minimal-inverse text-center">
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/profdimitrakiev.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Prof. Dr. Dimitar Dimitrakiev</h4>
<div class="text-dusty-gray profile-width">Founder of Dentacoin Foundation <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Founder. Highly respected University lecturer. More than 27 years experience in financial markets. Devoted to science and engineering.
Member of the IEEE Computational Intelligence society, EADM and Union of Automation and Informatics.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/dimitar-dimitrakiev/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/phillip.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Philipp Grenzebach</h4>
<div class="text-dusty-gray profile-width">Co-Founder / Business Developer / M&A <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Economic Brain behind Dentacoin. Studies in Law, Economics and Business Management. Adopted the triple bottom line to Dentacoin while
integrating technical sustainability. Fighter for free, decentralised markets.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/philipp-g-986861146/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/jeri.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Jeremias Grenzebach</h4>
<div class="text-dusty-gray profile-width">Co-Founder / Core Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Code Wizard. Early entrant into the Blockchain scene. Immersed within the peer-to-peer technology for 8 years. Contributor to Ethereum,
Waves, ZCash, uPort, Status, imToken, Byteball. Strong believer in decentralization and transparency.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://github.com/neptox" target="_blank"><span class="icon icon-xs icon-primary fa fa-github"></span></a>
<a href="https://twitter.com/neptox" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
</div>
<!-- Sergey <div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/sergey.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Sergey Ushakov</h4>
<div class="text-dusty-gray profile-width">Front-end & Solidity Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Digital Transformation Specialist. True Blockchain enthusiast. Degree in Robotics & Mechatronics; currently specializing in
Software Engineering. Experienced in Front-end, Solidity Programming, Digital Transformations and Business Process Automation.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/sergey-ushakov-589573119/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div> -->
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/alex.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Alexander Atanasov</h4>
<div class="text-dusty-gray profile-width">Web Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Trusted Reviews & DentaVox developer. Experienced in creating web & mobile experiences and providing IT solutions for business processes optimization &
automation. Diving into the deeps of AI, Machine Learning and crypto technologies.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/aatanassov/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/daniel.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Daniel Kolarov</h4>
<div class="text-dusty-gray profile-width">Graphic Designer / Web Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Idea Visualizer. Education in Marketing. Professional experience in Graphic Design, Front-End Development, Web Development, SEO,
Social Media Advertising. Responsible for the visual translation of the Dentacoin mission. Passionate about Photography. Breathing through creativity.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/daniel-kolarov-445283139" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<!-- Harry <div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/harry.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Ayredin Stoyanov</h4>
<div class="text-dusty-gray profile-width">Graphic Designer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Visual Power. Education in Multimedia Design and Software Systems and Technologies. Experienced in using visuals to communicate
ideas that inspire, inform and captivate. Passionate about video creation and photography.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/ayredin-stoyanov-9a6573127" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div> -->
<!--Doctors <div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drgercheva.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Desislava Gercheva</h4>
<div class="text-dusty-gray profile-width">Project Manager: Dental Insurance <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Fairness Compass. Experienced as a dentist and as a dental educator. Professional mission: to make first-class dentistry
affordable to the crowd. Fights against the unequal access to dental care by constantly seeking new technologies, innovative treatment
methods and fair payment options. Highly interested in peer-2-peer Insurance models. Manages risks, budget, deadlines, resources, third
parties communication in regards to the project Dental Insurance.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drfilipova.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Violina Filipova</h4>
<div class="text-dusty-gray profile-width">Project Manager: Market Research Platform <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Health Science mind. Active researcher and lecturer on the topic: Dental Problems and their Impact on the Overall Health.
Realizes the importance of up-to-date, detailed market research data. Working on creating Blockchain-based methods to collect it,
analyze it, make it accessible and usable as a tool for improving the overall treatment, communication and workflow quality in the
industry. Manages risks, budget, deadlines, resources, third parties communication in regards to the project Market Research Platform.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drnovakovski.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Deyan Novakovski</h4>
<div class="text-dusty-gray profile-width">Project Manager: Healthcare Database <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Patient Data Engine. Experienced dentist, passionate about implantology. Sees exceptional diagnostics capabilities as a
mandatory prerequisite for a precise and risk-free treatment. Currently researching how to utilize Blockchain advantages in developing
a storage for accurate, up-to-date and thorough patient information. Manages risks, budget, deadlines, resources, third parties
communication in regards to the project Healthcare Database.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div> -->
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drdaskalov.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Dimo Daskalov</h4>
<div class="text-dusty-gray profile-width">Dental Industry Development Catalyst <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Strongest Link between DCN and the Dental Industry. Leading dentist, currently managing a team of 19 dentists. Educator in
Prosthetic Dentistry. Constantly improving dental services by implementing future technologies, delivering “WOW” patient experience
and simultaneously reducing the costs. Eager to be a part of the paradigm shift.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group"><a href="https://www.linkedin.com/in/dimo-daskalov-94741376" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a></div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drpeev.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Ivan Peev</h4>
<div class="text-dusty-gray profile-width">Dentistry 4.0 Specialist <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Guide to the Digital Implantology world. Dental Implant Specialist with a significant experience in providing high-tech dental
care by surgical guides and computer-navigated implantation systems. Phantom instructor, certified by the International Training Center
for Dental Implantology (IFZI). With a Sixth sense for cutting-edge technical solutions.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/ceco.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Tsvetomir Ivanov</h4>
<div class="text-dusty-gray profile-width">Industry 4.0 Engineer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Future Thinker. Digital Dentistry, CAD/CAM and 3D-printing expert. Highly focused on finding ways to achieve significant
efficiency, cost reduction and revenue gains through digitalization and automation. Permanently researching, evaluating and implementing
high-tech dental innovations.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<!-- <div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/mariam.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Mariam Nishanian</h4>
<div class="text-dusty-gray profile-width">Online Reputation & Public Relations <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Public Voice. International background in PR, social media management, communications consulting and UX design.
Skilled entrepreneur with experience in start-up development. In constant pursuit of new challenges.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://twitter.com/luckymariamm" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
<a href="https://www.linkedin.com/in/mariamnishanian/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div> -->
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/klaus.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Klaus-Christian Werner</h4>
<div class="text-dusty-gray profile-width">Industry Relations Manager <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Strategic Partnership Driver. Engineer with a long track record of managing multinational companies. Solid background in
Management Consultancy, Trading, Innovation Implementation, New-age Leadership. Highly interested in modern technology and utilizing
its advantages into the organizational workflow.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/klaus-christian-werner-2826a583/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/donika.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Donika Kraeva</h4>
<div class="text-dusty-gray profile-width">Strategic Communications Manager <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Communications Ambassador. Translates big and complex ideas to the target group's language. Experienced in Online Medical
Marketing. Developed Feedback Systems and Patient Loyalty Programs for international dental clinics. Seeking ways to utilize Blockchain
advantages in building a patient-driven Dental Industry.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://twitter.com/donikakraeva" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
<a href="https://www.linkedin.com/in/donika-kraeva/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/daria.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Daria Kerancheva</h4>
<div class="text-dusty-gray profile-width">Content Marketing & PR Expert <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our public voice. Devoted to streamlining our market research platform DentaVox and
delivering socially significant survey highlights to key health care journalists. Skilled in Digital Marketing,
Corporate Communications, Event Management, and Social Media. Strong aspiration towards design, branding, typography and beautiful smiles.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/daria-kerancheva-274a3b9/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/petar.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Petar Stoykov </h4>
<div class="text-dusty-gray profile-width">Advertising Specialist<br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Acquisitor. Background as an eCommerce Sales & Marketing Executive, Business Developer and Project
Coordinator. Key areas of expertise: Inbound & Outbound Marketing, Business Psychology and Change Management. Strongly
engaged in online communities. Interested in practical applications of Blockchain and IoT.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/pstoykov/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
<a href="https://twitter.com/PeteStoik" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
<!-- Rafat <div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/rafat.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Rafat Hamud</h4>
<div class="text-dusty-gray profile-width">Customer Support & Product Development <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Solid Customer Support Pillar. Education in Software Systems and Game Development. Passionate about projects with a global impact.
Experience at a Norwegian startup company for mobile apps. Supporting the tech and creative aspects of the Dentacoin tools development.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/rafat-hamud-0b790a139/?ppe=1" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div> -->
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/alih.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Ali Hashem</h4>
<div class="text-dusty-gray profile-width"> Key Account Manager <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Connector. Responsible for the following crucial fields: 1) Expanding the Dentacoin partner network; and 2) Leading the
communication with exchange platforms. Years of experience as a customer relations representative and sales manager in service
industries. Always finding ways to align company targets with its stakeholders' needs.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:[email protected]" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/ali-hashem-541600b4/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a></div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/gradechliev.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Hristo Gradechliev</h4>
<div class="text-dusty-gray profile-width">CFO <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Finance Master. Responsible for managing the finance and accounting divisions. MBA in Law. Experienced in payment ecosystems,
building analytic tools, processes and teams to manage the revenue, costs and risks inherent in the payment space. With a strong flair
for successful investments.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-cape-cod context-dark" style="background-color: transparent;">
<div class="shell">
<div class="range range-xs-center range-md-middle">
<div class="cell-md-middle cell-lg-middle cell-xs-10 cell-md-8 text-left">
<h3 class="text-center text-blue" style="color:#126585">Advisors</h3> <br>
<div class="offset-top-40 carousel-testimonials-home">
<div id="child-carousel" data-for=".carousel-parent" data-arrows="false" data-loop="false" data-dots="false" data-swipe="true" data-items="1" data-xs-items="1" data-sm-items="4" data-md-items="4" data-lg-items="4" data-slide-to-scroll="1" data-center-mode="false" data-center-padding="0" class="slick-slider slick-slider slick-carousel-round-image slick-images">
<div class="item">
<div class="imp-wrap"><img src="web/img/team/carson.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/reed.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/niki.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/julia.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/vess.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/kosierowski.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/drtuma.png" alt="" width="99" height="99"/>
</div>
</div>
</div>
<div data-arrows="false" data-loop="false" data-dots="true" data-swipe="true" data-child="#child-carousel" data-for="#child-carousel" data-items="1" data-xs-items="1" data-sm-items="1" data-md-items="1" data-lg-items="1" data-slide-to-scroll="1" data-center-mode="false" class="slick-slider carousel-parent slick-dots-variant-1">
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-6">
<div class="quote-name">
<h4 style="color: black;">Carson Calderwood</h4>
</div>
<div class="text-dusty-gray">Advisor</div>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<div class="text-dusty-gray" style="font-size: 12px;">
<p class="text-dusty-gray" style="font-size: 12px;">Thoroughly experienced in the dental field for 20 years. Started as
a dental assistant and continued throughout college when he graduated and began practicing dentistry as a dentist.
Currently other dentists work alongside with him. A faculty club member at the renowned Frank Spear Institute for advanced
dental treatment. Author of the book <a href="https://books.google.co.in/books/about/Insider_s_Guide_to_Saving_Money_at_the_D.html?id=ZutLMQAACAAJ&source=kp_cover&redir_esc=y" target="_blank">“Insider’s Guide to Saving Money at the Dentist: A Dentist’s Advice on How to Effectively Create and Keep an Amazing Smile”</a></p> <br> <br>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordion3Heading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordion2" href="#accordion3Collapse2" aria-controls="accordion3Collapse2" class="collapsed">Story
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordion3Collapse2" role="tabpanel" aria-labelledby="accordion3Heading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Carson started his own dental clinic from the ground up doing everything by himself. Now other dentists are working alongside with him.
A faculty club member at the renowned Frank Spear Institute for advanced dental treatment. He has been focusing his career on informed
consent for patients. This is where his book came from - seen by many as "a way to help patients take control of their oral health."
This has been described as similar to how blockchain technology is moving financial, medical, technological information from centralized
locations into a decentralized and commonly shared arena.</li>
<br>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordion4Heading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordion4" href="#accordion4Collapse2" aria-controls="accordion4Collapse2" class="collapsed">How do you see your cooperation with us?
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordion4Collapse2" role="tabpanel" aria-labelledby="accordion4Heading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">"I am in contact with several dental experts and well known dental leaders." He has previously been on the Dental Intel podcast
<a href="http://www.dentalintel.com/" target="_blank">(http://www.dentalintel.com/)</a> where he enriched his network. "I feel these USA connections and my experience will be a great asset
to your project of bringing blockchain technology use in dentistry, especially in helping bring it to the USA market." Additionally,
Carson is also very passionate and familiar with the blockchain and cryptocurrencies for several years now.</li>
<br>
</ul>
</div>
</div>
</div>
</div>
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-8">
<div class="quote-name">
<h4 style="color: black;">Reed Sutton</h4>
</div>
<div class="text-dusty-gray">Advisor</div>
<a href="https://www.linkedin.com/in/reed33/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
<a href="https://twitter.com/Reedus33" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<p class="text-dusty-gray" style="font-size: 12px;">The Canadian Connection. Reed is a researcher and clinical assistant at the University of
Alberta Faculty of Medicine and Dentistry (Edmonton, Canada). Fascinated by healthcare and information technology, he is pursuing an MSc in
Health Informatics. Reed has become increasingly involved and invested in blockchain technology and cryptocurrency. Recent experience includes
analyzing, reviewing, and recommending Initial Coin Offerings (ICO) for CryptoRated.com. He is also validating a new ICO scoring system for
ability to predict investment success.
</p> <br>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionSixHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionSix" href="#accordionSixCollapse2" aria-controls="accordionSixCollapse2" class="collapsed">Honors & Awards
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionSixCollapse2" role="tabpanel" aria-labelledby="accordionSixHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Hooper-Munroe Academic Award (2015)</li>
<li style="list-style-type: square;">Louise McKinney Award (2012, 2013, 2014)</li>
<li style="list-style-type: square;">Dr Arturo Sanchez-Azofeifa & Dr Christine Orosz Scholarship in Science (2014)</li>
<li style="list-style-type: square;">Governor General’s Bronze Academic Medal (2011)</li>
<li style="list-style-type: square;">Valedictorian (2011)</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionSevenHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionSeven" href="#accordionSevenCollapse2" aria-controls="accordionSevenCollapse2" class="collapsed">Certifications
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionSevenCollapse2" role="tabpanel" aria-labelledby="accordionSevenHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">EpicCare Ambulatory EHR Proficiency</li>
<li style="list-style-type: square;">eCLINICIAN EHR Training (Scheduling, Admin Support, Clinician Basics)</li>
<li style="list-style-type: square;">Health Canada Div. 5 - Drugs For Clinical Trials Involving Human Subjects</li>
<li style="list-style-type: square;">NACTRC Coordinator Training (Weisler Research Inc.)</li>
<li style="list-style-type: square;">CITI Clinical Research Coordinator (CRC)</li>
<li style="list-style-type: square;">BLS-HCP CPR Level C, Heart and Stroke Foundation</li>
<li style="list-style-type: square;">AstraZeneca ICH Good Clinical Practice (GCP)</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionTwelveHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionTwelve" href="#accordionTwelveCollapse2" aria-controls="accordionTwelveCollapse2" class="collapsed">Proficiencies
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionTwelveCollapse2" role="tabpanel" aria-labelledby="accordionTwelveHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">REDCap: Survey Design & Management, Data Entry</li>
<li style="list-style-type: square;">IBM SPSS Statistics Software</li>
<li style="list-style-type: square;">Tableau Software: Business Intelligence and Analytics</li>
<li style="list-style-type: square;">Website Content Management (WordPress, Mezzanine, Squarespace)</li>
<li style="list-style-type: square;">HTML5 & CSS3</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionEightHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionEight" href="#accordionEightCollapse2" aria-controls="accordionEightCollapse2" class="collapsed">Publications
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionEightCollapse2" role="tabpanel" aria-labelledby="accordionEightHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">K. Wierstra, R. Sutton, J. Bal, L.A. Dieleman, B. Halloran, K. Kroeker, R.N. Fedorak, K.Berga, V. Huang. Innovative educational online portal improves IBD-specific reproductive knowledge in patients with IBD.
<br>• role: co-first author. Manuscript in submission.
</li>
<li style="list-style-type: square;">R.Sutton, K Wierstra, J. Bal, L.A. Dieleman, B. Halloran, K. Kroeker, R.N. Fedorak, K.Berga, V. Huang. Innovative online portal resolves patients’ IBD-specific reproductive concerns while revealing medication beliefs and patterns of adherence.
<br>• role: co-first author. Manuscript in submission.
</li>
<li style="list-style-type: square;">Sutton R, Prosser C, Dhami N, Sadowski D, van Zanten S, Kroeker K, Wong K, Halloran B, Fedorak RN, Huang V. Agreement of IBDoc® and QuantOn Cal® Rapid Lateral Flow-based Fecal Calprotectin Tests with Accepted Lab-based Assays for Monitoring Inflammatory Bowel Disease. Canadian Journal of Gastroenterology 2018 (in press)</li>
<li style="list-style-type: square;">Sutton R, Wishart E, Dhami N, Sadowski D, Siffledeen J, Sauve M, Hundal R, Van Zanten S, Huang V. IBD Dashboard: Innovative eHealth Program Providing Equal Access to Quality Care for ALL IBD Patients. Canadian Journal of Gastroenterology 2018 (in press)</li>
<li style="list-style-type: square;">Dunsmore G, Koleva P, Sutton R, Ambrosio L, Huang V, Elahi S. Immunomodulatory role of CD71+ erythroid cells in human. Cell Symposia: Human Immunity 2017 (abstract P35)</li>
<li style="list-style-type: square;">Agrawal A, Hotte N, Lumb R, Sutton R, Ambrosio L, Madsen K, Huang, V. Maternal IBD and IBD therapies may influence breast milk pro-inflammatory cytokines and the infant’s fecal calprotectin. Gastroenterology 2017; 152(5): S759</li>
<li style="list-style-type: square;">Sutton R, Weirstra K, Ambrosio L, Dieleman L, Halloran B, Kroeker K, Fedorak RN, Wong K, Berga K, Huang V. An Innovative Online Educational Portal Resolves Concerns of Inflammatory Bowel Disease Patients regarding Pregnancy and Medication. Journal of Crohn's and Colitis 2017; 11(S1): P552</li>
<li style="list-style-type: square;">Andrishak, S, Manocha A, Ambrosio L, Sutton R, Kroeker K, Dieleman L, Halloran B, Wong K, Fedorak RN, Huang V. Impact of Inflammatory Bowel Disease on the Breastfeeding Patterns of Pregnant Women. Canadian Journal of Gastroenterology 2017 (abstract A283)</li>
</ul>
</div>
</div>
</div>
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-8">
<div class="quote-name">
<h4 style="color: black;">Assoc. Prof. Nikolay Raychev, PhD</h4>
</div>
<div class="text-dusty-gray">Advisor</div>
<a href="https://www.linkedin.com/in/nikolay-raychev-55a02038/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<!-- <div class="cell-md-10"> -->
<p class="text-dusty-gray" style="font-size: 12px;">The Science Mind. PhD in “Computer systems, complexes and networks”.
Dean of Varna University of Management. Founder and director of VUM School of Computer Science. An internationally recognized
authority in software process improvement and software engineering technologies. Worked as a software engineer, a manager, a
software architect, a CIO, a CTO, a professor, an author, and a software engineering consultant for two decades. Experienced
in the development of systems for advanced engineering and cloud-based applications. Held positions with responsibility for
scientific and systems programming. Member in: Rotary, Mensa, IEEE, ACM. He is the fifth most influential scientist in the world,
with the largest contribution in his field, as per the ranking of Google Scholar.
</p> <br>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionNineHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionNine" href="#accordionNineCollapse2" aria-controls="accordionNineCollapse2" class="collapsed">Honors & Awards
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionNineCollapse2" role="tabpanel" aria-labelledby="accordionNineHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Best paper award, “Quantum phase estimation”, The Sixth GIPO International Conference, GIPO, June 2012</li>
<li style="list-style-type: square;">A special award in the category of research tools for the QuOS project, European Academic Software Award, July 2007</li>
<li style="list-style-type: square;">First Place Team Award, IEEE Computer Society Second Annual International Design Competition, April 2006</li>
<li style="list-style-type: square;">MSU Distinguished Faculty Award, “Evolution of Behavioral Models for Quantum Systems”, ICAC ’13. International Conference on Autonomic Computing, June 2013</li>
<li style="list-style-type: square;">Quantum model-driven engineering</li>
<li style="list-style-type: square;">IBM award for software quality improvement, IBM, May 2006</li>
<li style="list-style-type: square;">Aug. 2004 Silver Medal in International Competition in Informatics, Zagreb, Croatia</li>
<li style="list-style-type: square;">Aug. 2003 Gold Medal in International Competition in Informatics, Merida, Mexico</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionTenHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionTen" href="#accordionTenCollapse2" aria-controls="accordionTenCollapse2" class="collapsed">Certifications
<div class="panel-arrow"></div></a>