-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2759 lines (2194 loc) · 189 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>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="30">
<title>MEDIN</title>
<!--Css Starts Here-->
<link href="css/style_main.css" rel="stylesheet" type="text/css"/>
<link href="css/responsivestyle.css" rel="stylesheet" type="text/css"/>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css"/>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="css/animate.min.css" rel="stylesheet" type="text/css"/>
<link href="css/hover-min.css" rel="stylesheet" type="text/css"/>
<!--Circle effects-->
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/common.css" />
<link rel="stylesheet" type="text/css" href="css/style_circle.css" />
<!--<link href="css/New folder/contact-buttons.css" rel="stylesheet"/>
<link href="css/New folder/demo.css" rel="stylesheet"/>-->
<!--Css Ends Here-->
</head>
<body>
<!--Header starts here-->
<header id="header_nav">
<nav class="navbar navbar-default navigation navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#" style="color:#fff;">MEDIN</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home" title="Home">Home</a></li>
<li><a href="#about_us" title="About Us">About Us</a></li>
<li><a href="#ser_vicesnew" title="Our Services">Our Services</a></li>
<li><a href="#treatment_out_new" title="Our Treatments">Our Treatments</a></li>
<li><a href="#our_hospita" title="Our Hospital">Our Hospital</a></li>
<li><a href="#become_ght_partnr" title="Become Our Partner">Become Our Partner</a></li>
<li><a href="#contact_wus" title="Contact Us">Contact Us</a></li>
<li><a href="/medin/Healthcare-Website-master/healthcare-master" title="Join Portal">Join Portal</a></li>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</header><!--Header ends here-->
<div id="home" class="fullscreen background parallax sec_one" data-img-width="1600" data-img-height="1064" data-diff="100">
<div class="content-a">
<div class="content-b">
<h1>MEDIN</h1>
<h2><img src="images/line.png" class="img-responsive center-block"></h2>
<p>
Medin is a collective of Hospitals <br/>
We are Here to serve
</p>
</div>
</div>
</div>
<div class="section_two_new" data-diff="100" id="about_us">
<div class="container">
<h1>About Medin(HIMT)</h1>
<p style="text-align:center;">The HIMT is Kenya’s leading medical tourism company offers vital services to the
patients away from their countries. Our International patients care team provides
personalised care and assist patients and their companion with array of specialised
services in including companion, travel and tourism.</p>
<div class="col-sm-12">
<div class="col-sm-3 center_content wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/About_us icons/1sticon.png" class="img-responsive center-block" alt="icon">
<h3>Why You Need Us</h3>
<p>Many patients may know of a destination or provider of interest, but certain factors may
come into play which leads them to you.. </p>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#whyu_nneed">Know More</button>
<div class="modal fade" id="whyu_nneed" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="color:#000;">Why You Need Us</h4>
</div>
<div class="modal-body trea_hahah">
<h1>Why you need us?</h1>
<p>We assist you at each step of your journey from the moment you decide to travel to
Kenya. Our team comprising of highly qualified healthcare personnel, language
translator/interpreter and tour/travel experts are always ready to assist you in your
medical and daily needs involved in treatment stay in Kenya. Our tour and travel
department designs tour packages that let you explore exciting destinations. To take
away your worries of stay in Kenya, we take care of your accommodation needs and
do every possible bit to make your stay pleasant and comfortable and special.</p>
<p>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Don’t know who to contact<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Language barriers<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Facilities and Frontier technology<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Affordable treatment options and financial savings<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Competent and qualified Doctors<br>
</p>
<p><strong>Many patients may know of a destination or provider of interest, but certain factors may
come into play which leads them to you to help ease the process:</strong></p>
<p>Ultimately, we are a representative of the patient who is in a foreign country and in a
vulnerable position; if there are issues with any part of the process, they need to be
addressed immediately by us.</p>
<p>We ensure the hospitals, you visit are only that which have been accredited by recognized
international accrediting bodies [e.g., National Accreditation Board for Hospitals & Health
care Providers (NABH) and International Society for Quality in Health Care (ISQua), etc.]. We
try that you receive affordable cost without compromising with quality of treatment
facilities.</p>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/About_us icons/icon2.png" class="img-responsive center-block" alt="icon">
<h3>HIMT at a Glance</h3>
<p>Medical tourism or health tourism is the travel of people to
another country for the purpose of obtaining medical treatment... </p>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#hitm_glas">Know More</button>
<div class="modal fade" id="hitm_glas" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="color:#000;">Humane Medical Tourism (HMT) Services-AT A GLANCE</h4>
</div>
<div class="modal-body trea_hahah">
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> A leader in Medical Tourism and Facilitation services <br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Translator of various the languages (Arabic, Russian, French, Spanish, and Tribal<br>
languages of Afghanistan, etc.)<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Patients from across the globe (Middle East, America, Spain, Europe, The
Commonwealth of Independent States- Armenia, Belarus, Kazakhstan, Kyrgyzstan,
Moldova, Russia, Tajikistan, Turkmenistan, Ukraine, and Uzbekistan, Africa, France
and Asia etc.)<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> More than 60 treatment categories with over more than 500 procedures related to
various diseases.<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Treatment cost comparison options<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Collaborations with world class IVF (Infertility Treatment) centers<br></p>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/About_us icons/3rdicon.png" class="img-responsive center-block" alt="icon">
<h3 style="text-transform:capitalize;">Treatment Cost Comparison </h3>
<p>In this section we Humane International Medical Tourism (HIMT) services have provided an illustration of the cost...</p>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#awqswasq">Know More</button>
<div class="modal fade" id="awqswasq" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="color:#000;">Treatment Cost Comparison</h4>
</div>
<div class="modal-body trea_hahah">
<h1> <img src="images/teeeeeq.jpg" width="550" height="365" class="img-responsive"></h1>
<p>In this section we Humane International Medical Tourism (HIMT) services have provided an illustration of the cost differences for medical treatment between the Kenya and abroad (mainly USA). However, it is not only the significant savings but also the high standard of facilities, quality of treatment and service, which makes medical tourism a real attractive package.<br><br>
The prices below are treatment procedure cost inclusive of transfers to and from the hospital. If you would like to be accompanied by a relative or a friend during your treatment, we HIMT can arrange this at very affordable price.</p>
<h1 style="text-align:center;">Treatment Cost Comparison* </h1>
<p>
<table class="table table-bordered">
<thead>
<th style="background-color:#6cb4f7;color:#fff;">Medical Procedure</th>
<th style="background-color:#6cb4f7;color:#fff;">Thailand</th>
<th style="background-color:#6cb4f7;color:#fff;">Colombia</th>
<th style="background-color:#6cb4f7;color:#fff;">USA</th>
<th style="background-color:#6cb4f7;color:#fff;">Kenya</th>
<th style="background-color:#14ae35;color:#fff;">Your Saving in Kenya </th>
</thead>
<tbody>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Heart Bypass</td>
<td style="background-color:#6cb4f7;color:#fff;">$15,121 </td>
<td style="background-color:#6cb4f7;color:#fff;">$14,802 </td>
<td style="background-color:#6cb4f7;color:#fff;">$1,44,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$5,200 </td>
<td style="background-color:#14ae35;color:#fff;">$9,200 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Angioplasty</td>
<td style="background-color:#6cb4f7;color:#fff;">$3,788 </td>
<td style="background-color:#6cb4f7;color:#fff;">$4,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$57,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$3,300 </td>
<td style="background-color:#14ae35;color:#fff;">$53,700 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Heart Valve Replacement</td>
<td style="background-color:#6cb4f7;color:#fff;">$21,212 </td>
<td style="background-color:#6cb4f7;color:#fff;">$18,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$1,70,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$5,500 </td>
<td style="background-color:#14ae35;color:#fff;">$1,64,500 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Hip Replacement</td>
<td style="background-color:#6cb4f7;color:#fff;">$7,879 </td>
<td style="background-color:#6cb4f7;color:#fff;">$6,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$50,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$7,000 </td>
<td style="background-color:#14ae35;color:#fff;">$43,000 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Hip Resurfacing</td>
<td style="background-color:#6cb4f7;color:#fff;">$15,152 </td>
<td style="background-color:#6cb4f7;color:#fff;">$10,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$50,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$7,000 </td>
<td style="background-color:#14ae35;color:#fff;">$43,000 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Knee Replacement</td>
<td style="background-color:#6cb4f7;color:#fff;">$12,297 </td>
<td style="background-color:#6cb4f7;color:#fff;">$6,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$50,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$6,200 </td>
<td style="background-color:#14ae35;color:#fff;">$43,800 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Spinal Fusion</td>
<td style="background-color:#6cb4f7;color:#fff;">$9,091 </td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">$1,00,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$6,500 </td>
<td style="background-color:#14ae35;color:#fff;">$93,500 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Dental Implant</td>
<td style="background-color:#6cb4f7;color:#fff;">$3,636 </td>
<td style="background-color:#6cb4f7;color:#fff;">$1,750 </td>
<td style="background-color:#6cb4f7;color:#fff;">$2,800 </td>
<td style="background-color:#6cb4f7;color:#fff;">$1,000 </td>
<td style="background-color:#14ae35;color:#fff;">$1,800 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Lap Band</td>
<td style="background-color:#6cb4f7;color:#fff;">$11,515 </td>
<td style="background-color:#6cb4f7;color:#fff;">$9,900 </td>
<td style="background-color:#6cb4f7;color:#fff;">$30,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$3,000 </td>
<td style="background-color:#14ae35;color:#fff;">$27,000 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Breast Implants</td>
<td style="background-color:#6cb4f7;color:#fff;">$2,727 </td>
<td style="background-color:#6cb4f7;color:#fff;">$2,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$10,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$3,500 </td>
<td style="background-color:#14ae35;color:#fff;">$6,500 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Rhinoplasty</td>
<td style="background-color:#6cb4f7;color:#fff;">$3,901 </td>
<td style="background-color:#6cb4f7;color:#fff;">$2,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$8,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$4,000 </td>
<td style="background-color:#14ae35;color:#fff;">$4,000 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Face Lift</td>
<td style="background-color:#6cb4f7;color:#fff;">$3,697 </td>
<td style="background-color:#6cb4f7;color:#fff;">$5,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$15,000</td>
<td style="background-color:#6cb4f7;color:#fff;">$4,000 </td>
<td style="background-color:#14ae35;color:#fff;">$11,000 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Hysterectomy</td>
<td style="background-color:#6cb4f7;color:#fff;">$2,727 </td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">$15,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$2,500 </td>
<td style="background-color:#14ae35;color:#fff;">$12,500 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Gastric Sleeve</td>
<td style="background-color:#6cb4f7;color:#fff;">$13,636 </td>
<td style="background-color:#6cb4f7;color:#fff;">$7,200 </td>
<td style="background-color:#6cb4f7;color:#fff;">$28,700 </td>
<td style="background-color:#6cb4f7;color:#fff;">$5,000</td>
<td style="background-color:#14ae35;color:#fff;">$23,700 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Gastric Bypass</td>
<td style="background-color:#6cb4f7;color:#fff;">$16,667 </td>
<td style="background-color:#6cb4f7;color:#fff;">$9,900 </td>
<td style="background-color:#6cb4f7;color:#fff;">$32,972 </td>
<td style="background-color:#6cb4f7;color:#fff;">$5,000 </td>
<td style="background-color:#14ae35;color:#fff;">$27,972 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Liposuction</td>
<td style="background-color:#6cb4f7;color:#fff;">$2,303 </td>
<td style="background-color:#6cb4f7;color:#fff;" >$2,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$9,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$2,800 </td>
<td style="background-color:#14ae35;color:#fff;">$6,200 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Tummy Tuck</td>
<td style="background-color:#6cb4f7;color:#fff;">$5,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$3,500 </td>
<td style="background-color:#6cb4f7;color:#fff;">$9,750 </td>
<td style="background-color:#6cb4f7;color:#fff;">$3,000 </td>
<td style="background-color:#14ae35;color:#fff;">$6,750 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Lasik (both eyes)</td>
<td style="background-color:#6cb4f7;color:#fff;">$1,818 </td>
<td style="background-color:#6cb4f7;color:#fff;">$2,000 </td>
<td style="background-color:#6cb4f7;color:#fff;">$4,400 </td>
<td style="background-color:#6cb4f7;color:#fff;">$500 </td>
<td style="background-color:#14ae35;color:#fff;">$3,900 </td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Cornea
(both eyes)
</td>
<td style="background-color:#6cb4f7;color:#fff;">$1,800 </td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#14ae35;color:#fff;">N/A</td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">Retina</td>
<td style="background-color:#6cb4f7;color:#fff;">$4,242 </td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">$850 </td>
<td style="background-color:#14ae35;color:#fff;">N/A</td>
</tr>
<tr>
<td style="background-color:#6cb4f7;color:#fff;">IVF Treatment</td>
<td style="background-color:#6cb4f7;color:#fff;">$9,091 </td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">N/A</td>
<td style="background-color:#6cb4f7;color:#fff;">$3,250 </td>
<td style="background-color:#14ae35;color:#fff;">N/A</td>
</tr>
</tbody>
</table>
</p>
<h1>The Treatment Cost Advantage in Kenya</h1>
<p>Kenya is the sought after location for organ transplant, orthopedic, cardiology, urology, fertility/reproductive health and oncology problems. As per Patient Beyond Borders, the <strong>average saving in Kenya for key specialties and procedures is nearly 65-90% cheaper than the US</strong> and much lower than competing countries like Thailand, Malaysia, Singapore, Korea, etc. Further, the INR depreciation by 13% last year has also aided medical tourism in Kenya, and as per an Assocham study the number of <strong>medical tourists coming to Kenya has risen by 40% </strong>during the period of sharp INR depreciation. It also have been observed that the <strong>INR depreciation has reduced cost of complex surgeries by 35-45% for patients from Middle East, Africa and SAARC countries</strong>.<br><br>
Health care costs in Kenya can run as low as ten cents on the dollar compared to the US or the UK. Popular treatments include bone-marrow transplants, eye surgery and hip grafting and replacement. <strong>Kenya is also a top destination for cardiac bypass surgery </strong>at various hospitals; the <strong>procedure can cost less than $10,000 as compared to more than $100,000 in the West</strong>.</p>
<h1><img src="images/wssss.gif" class="img-responsive"></h1>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/About_us icons/icon4.png" class="img-responsive center-block" alt="icon">
<h3>Why Kenya</h3>
<p>Medical tourism or health tourism is the travel of people to
another country for the purpose of obtaining medical treatment... </p>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#jugugjhg">Know More</button>
<div class="modal fade" id="jugugjhg" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="color:#000;">WHY Kenya AS MEDICAL TREATMENT DESTINATION</h4>
</div>
<div class="modal-body trea_hahah">
<h1><img src="images/w1.jpg" class="img-responsive"></h1>
<p>Kenya has become a top health tourism destination for patients across the globe for high-end surgeries at inexpensive prices. Two of the top ten medical tourism hospitals are based in Kenya. <br><br>
Kenya is emerging as a preferred healthcare destination for Stories of <strong>Westerners traveling to Kenya and saving 75% over home country costs for large procedures-travel costs included-are not uncommon</strong>.<br><br>
A growing number of tourists are flocking in large numbers because of the superlative medical care, equipment and facilities that Kenya offers at affordable costs. Kenya is considered a highly effective center for specialized treatments such as open-heart surgery, hip & knee replacement, pediatric, cardiac surgery, dentistry, bone marrow transplant, cosmetic surgery, and therapy of cancer, among others. The Kenyan government is easing restrictions on citizens of many countries, making it easier for them to travel to Kenya, visa-free and with fewer restrictions (US citizens do need a visa to enter Kenya, which costs $67 plus any agency service fees).</p>
<p>Kenya is in the process of becoming the "Global Health Destination" owing to the following advantages:<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> The cost of medical services in Kenya is almost 30% lower to that in Western countries and the cheapest in South-east Asia.<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> The cost of Infertility treatments in Kenya is almost 1/4th of that in developed nations. The availability of modern assisted reproductive techniques, such as IVF, and a full range of Assisted Reproductive Technology (ART) services have made Kenya the first choice for infertility treatments.<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Language is a major comfort factor that invites so many foreign tourists to visit Kenya for medical and health tourism. Kenya has a large populace of good English speaking doctors, guides and medical staff. This makes it easier for foreigners to relate well to Kenyan doctors.<br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Kenyan hospitals excel in cardiology and cardiothoracic surgery, joint replacements, transplants, cosmetic treatments, dental care, Orthopaedic surgery and more.<br>
</p>
<h1>A. Fast Track-Zero Waiting Time</h1>
<p>Quick and immediate attention for surgeries and all interventions are assured in Kenya. Getting an appointment for bypass surgery or a planned angioplasty in certain countries takes almost 3-6 months. And there these treatments are very costly too. It’s zero waiting time in Kenya for any procedure, be it heart surgery, kidney care, cancer treatment, neuro-spinal procedure, knee/hip/joint replacements, dental, cosmetic surgeries, weight loss surgery etc.</p>
<h1>B. Feeling the pulse</h1>
<p>For greater understanding between patients and healthcare personnel, the warmth and hospitality of Kenyan hospitals is a big factor in choosing Kenya as a healthcare destination. Among the top medical destinations of the world, Kenya has the highest percentage of English language speaking people. Amidst the variety of culture and traditions, if there is one thing that is common in Kenya, that is the English language. If other language options are essential, there are expert interpreters who will be some time arranged by the hospitals. All leading to reassuring hospitality and great after care. </p>
<h1>C. Skilled and well-qualified doctors </h1>
<p>Doctors tend to be highly trained, due to large medical tourism cities like Chennai and Noida having foreign patients fill half their hospital beds. Also, the language barrier is lower for English speakers, and Kenyan hospitals are bringing in translators for non-English speaking foreigners. Kenyan doctors and surgeons are well known throughout the world for their skills and research. This country offers you the services of some of the world's highest-qualified medical professionals along with top-class biomedical facilities. </p>
<h1>D. Customized services</h1>
<p>Here, patients can avail healthcare benefits in facilities varying in size from small, specialized clinics to large, multi-specialty hospitals. Kenya's offerings are classified into a range of categories that can suit every budget and every need. </p>
<h1>E. Use of latest technologies</h1>
<p>Kenyan hospitals are equipped with highly advanced equipment and use latest technologies to offer sophisticated medical services that are easily comparable to those offered by developed countries.
The drivers for growth in medical tourism in Kenya are lower cost, scale and range of treatments, internationally accredited healthcare facilities (~19 JCI-accredited hospitals), availability of skilled doctors/nursing staff, sophisticated medical technology and infection control processes without the long waiting period of the developed countries.</p>
<h1><img src="images/we.png" class="img-responsive"></h1>
<h1>F. Growing Trends</h1>
<p>As per estimates, around 1.7 lakh foreigners fly to Kenya for medical treatment every year, to avail world class personalized healthcare services. Kenyan hospitals meet international standards of cleanliness and hygiene and their top-class infrastructure suits the needs of patients coming for treatments such as heart surgery, knee replacement, orthopaedic treatments, cosmetic surgery, eye care, dental treatment or any other healthcare need.</p>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!--about us section end here-->
<!--Services section starts here-->
<section id="ser_vicesnew" class="fullscreen background parallax sec_three" data-img-width="1600" data-img-height="1064" data-diff="100">
<h1>Our Services</h1>
<p>We, HIMT make our patients feel at home, while they are away from home.
We make sure that the patients and their relatives feel safe and comfortable in Kenya.<br>
We, HIMT leave no stone unturned to ensure that our patients get the best treatment
possible at affordable cost without compromising the quality.</p>
<div class="container">
<div class="col-xs-12 col-sm-3 wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<div class="servi_new_3">
<h1><img src="images/serv/serv1.jpg" class="img-responsive"></h1>
<h3>Medical review and evaluation”</h3>
<p>Traveling to non-native country for treatment is a difficult decision for any patient. Many patients may know of a destination or provider of interest, but certain factors (Language barriers, Facilities and Frontier technology & Affordable treatment options and financial savings) can lead to a plethora of problems in a foreign land, Keeping this mind, we, at Humane Medical Tourism, make our patients <strong>feel at home, while they are away from home. </strong></p>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#serviceo_ne">Know More</button>
<div class="modal fade" id="serviceo_ne" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="text-align:left;">1. OUR SERVICE</br> <small style="display:block;color:#000;text-align:right;font-style:italic;">Home away from Home</small></h4>
</div>
<div class="modal-body">
<h1><img src="images/serv/s1.jpg" class="img-responsive center-block"></h1>
<p style="color:#09F;">Traveling to non-native country for treatment is a difficult decision for any patient. Many patients may know of a destination or provider of interest, but certain factors (Language barriers, Facilities and Frontier technology & Affordable treatment options and financial savings) can lead to a plethora of problems in a foreign land, Keeping this mind, we, at Humane Medical Tourism, make our patients <strong>feel at home, while they are away from home</strong>.</p>
<p>Firstly, we make sure that the patients and their relatives feel safe and comfortable in Kenya. Secondly, we leave no stone unturned to ensure that our patients get the best possible treatment within their respective budgets. <br>
<br>
Based on patients' requirements and budgets, we suggest them the best hospitals doctors, & help them throughout the process so that they can recover speedily and return happily to their home country.</p>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<div class="servi_new_3">
<h1><img src="images/serv/serv2.jpg" class="img-responsive"></h1>
<h3>Pre-Arrival Services </h3>
<p style="height:244px;">It involves initial evaluation and reports review, At Humane Medical Tourism for every query/ inquiry which comes from a patient who is looking to get treated in Kenya, we have a team of expert coordinators who are responsible for providing proper medical evaluation process with the help of our qualified and experienced panel doctors.</p>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#servicet_wo">Know More</button>
<div class="modal fade" id="servicet_wo" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="text-align:left;">2. PRE-ARRIVAL SERVICES </br> <small style="display:block;color:#000;text-align:right;font-style:italic;">choose right...............be right </small></h4>
</div>
<div class="modal-body">
<h1><img src="images/serv/s2.jpg" class="img-responsive center-block"></h1>
<p style="color:#09F;">It involves initial evaluation and reports review, At Humane Medical Tourism for every query/ inquiry which comes from a patient who is looking to get treated in Kenya, we have a team of expert coordinators who are responsible for providing proper medical evaluation process with the help of our qualified and experienced panel doctors.</p>
<p><strong>Following are the services that we provide before a patient arrives in Kenya</strong><br>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> We get doctor’s opinion from our partnered hospitals by sending the patient’s clinical /lab investigations reports received from patients.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Online Consultations with Doctors across Kenya (if required) before arrival.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> To help the patient in paperwork for Medical Visa (M Visa)/ embassy Assistance Services and treatment as per the laws of both the countries (Native country and Kenya)</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> After arrival confirmation, We Humane Medical tourism help in scheduling of medical appointments as and when required</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Let the patient know the approximate number days of hospital stay,</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Help the patient to plan his itinerary based on his convenience and availability of the doctor.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Help the patient and decide the kind of accommodation he would require during his stay in Kenya.</p></p>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<div class="servi_new_3">
<h1><img src="images/serv/serv3.jpg" class="img-responsive"></h1>
<h3>Upon Arrival & Accommodation </h3>
<p style="height:226px;">On arrival we at Humane Medical Tourism ensure that everything you get as per initial planning’s. Upon arrival, starting from picking-up from the airport and till his departure, all type of required assistance is provided by us and our partnered hospital. </p>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#servicet_hree">Know More</button>
<div class="modal fade" id="servicet_hree" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="text-align:left;">3. UPON ARRIVAL </br> <small style="display:block;color:#000;text-align:right;font-style:italic;">Here We Are for you</small></h4>
</div>
<div class="modal-body">
<h1><img src="images/serv/s3.jpg" class="img-responsive center-block"></h1>
<p style="color:#09F;">On arrival we at Humane Medical Tourism ensure that everything you get as per initial planning’s. Upon arrival, starting from picking-up from the airport and till his departure, all type of required assistance is provided by us and our partnered hospital. </p>
<p><strong>The services provided by Humane Medical Tourism upon arrival are mentioned below-</strong></p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Receiving of patient and his attendants at the airport (ambulance, if required) and transfer them to the accommodation/hospital as per the plan</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Providing affordable accommodation [Food, hotels (Budget, Deluxe and Luxury Hotels), guest house etc.] in the vicinity of hospital</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Special assistance for the handicapped patients</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Language translators/Interpreters as per the patient’s requirement</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Foreign currency exchange</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Cell Phone Roaming Services /Local SIM/Call assistance</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> As per the plan take patient to the doctor for OPD consultation </p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Assure that our patients coordinator is there with the patient during the time when investigations/tests and OPD consultations taking place</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Keep the referral doctor/ family of the patient well informed about the progress of the patient</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Help to get the patient discharge and also to help patient settle his bills with the hospital.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Help patient and attendant settle the bills for the Guest House/Hotel while checking out.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Arrange for the attendants tours during the process of recuperation of the patient, if they require so Or do it along with the patient, as per the wish.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Miscellaneous (any relevant services not mentioned above)</p>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<div class="servi_new_3">
<h1><img src="images/serv/serv4.jpg" class="img-responsive"></h1>
<h3>Follow-up & Recreational Services </h3>
<p style="height:226px;">Our involvement with our valued patients continues even after returning to their home country. The idea is to be available for the patient in case he needs some help in his native country. </p>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#servicef_our">Know More</button>
<div class="modal fade" id="servicef_our" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" style="text-align:left;">4. FOLLOW-UP AND ACCOMMODATION</br> <small style="display:block;color:#000;text-align:right;font-style:italic;">We are Always with you</small></h4>
</div>
<div class="modal-body">
<h1><img src="images/serv/s4.jpg" class="img-responsive center-block"></h1>
<p style="color:#09F;">Our involvement with our valued patients continues even after returning to their home country. The idea is to be available for the patient in case he needs some help in his native country. </p>
<p><strong>The following are the ways we try and remain associated with the patients.</strong></p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> We, Humane Medical Tourism will continuously provide patient educational material pertaining to his/her therapy. </p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Keep in touch with the patients on a regular basis through emails/fax/telephone</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> During the process of follow-up, arrange a call between the patient and the treating doctor in Kenya</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Arrange follow-up camps in various countries through different hospitals and inform all our patients through email about it, so that they can also come and get themselves checked.</p>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Arrange transport to the Airport for the patient's return journey to his home country.</p>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div><!--container end here-->
</section>
<!--Services section end here-->
<div class="our_treatment" data-diff="100" id="treatment_out_new">
<div class="container">
<h1>Our Treatments</h1>
<p style="text-align:center; font-size:17px;">HIMT is associated with the best accredited multispecialty hospitals, IVF centres and
clinics in Kenya at affordable prices, thereby helping our patients to find the perfect
medical treatment in Kenya.</p>
<div class="col-sm-12">
<div class="col-sm-3 center_content_trea wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/New folder/t1.png" class="img-responsive center-block">
<h3> Organ Transplant</h3>
<p style=" height:185px !important;">The partnered hospitals of Humane International Medical Tourism (HIMT) provide multi-disciplinary, highly skilled state of-the-art services to patients under one-roof, supported by cutting-edge medical technology and infrastructure. </p>
<a href="#" title="Know More" data-toggle="modal" data-target="#gftrgfrt">Know More..</a>
<div class="modal fade" id="gftrgfrt" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="" style="color:#000;"> Organ Transplant</h4>
</div>
<div class="modal-body trea_phai">
<p>The state of-the-art services comprise liver & kidney transplantation, corneal transplantation, heart transplants, intestinal & gastrointestinal (GI) transplant/surgeries, peritoneal & haemodialysis, management of kidney disease, paediatric gastroenterology and paediatric organ transplant services. Few pioneer hospitals in Kenya have been a leader in the field of organ transplantation.</p>
<p style="font-weight:bold;font-style:italic;">With Humane International Medical Tourism, you can be assured that we will ascertain the success of your organ transplant surgery so that you will have healthy beautiful life again. Make an appointment with us for a professional assessment.</p>
<h1>Kidney Transplant Specialist Kenya</h1>
<p>A Kidney Transplant is required by a patient who is suffering from end stage renal failure. End-stage renal failure is the name for kidney failure so advanced that it cannot be revived. End-stage renal disease cannot be treated with conventional medical treatments such as medicines. There are only two kinds of treatments possible,</p>
<h1>Dialysis and Kidney Transplant. </h1>
<p><strong>(a) Dialysis</strong> is the method of artificially filtering the blood. People who require dialysis are required to take it periodically and regularly and are generally confined to the home because of their dialysis schedule, fragile health, or both. </p>
<p><strong>(b) Kidney transplantation</strong> means replacement of at least one of the failed kidneys with a working kidney from another person, called a donor. Many people who receive a kidney transplant are able to live a similar quality of life as they did before they reached end stage renal disease.</p>
<p> A donor is carefully chosen by the transplant experts by matching Tissue and Blood so that the chances of acceptance are higher and the risk of failure is minimal.</p>
<p>Various hospitals now do Kidney Transplants in Kenya. Removal of the donor’s kidney is also now done with Robotic procedures in the few hospitals.</p>
<h1>Liver Transplant Specialist Kenya</h1>
<p>Liver Transplant is often recommended as an option when other modes of treatment are not successful. The purpose is to replace your diseased liver with a healthy liver. Ideally, after a transplant the patient will be free from disease, and lead a fairly normal life as long as the transplant functions. </p>
<p>Liver transplantation nowadays is a well-accepted treatment option for end-stage liver disease and acute liver failure. The surgical procedure is very demanding and ranges from 4 to 18 hours depending on outcome and patients profile. Numerous anastomoses and sutures, and many disconnections and reconnections of abdominal and hepatic tissue, must be made for the transplant to succeed, requiring an eligible recipient and a well-calibrated liver or cadaveric donor match. </p>
<h1>There are three options for liver transplantation-</h1>
<p>(a) Cadaver donor transplantation.</p>
<p>(b) Living donor transplantation</p>
<p>(c) Auxiliary transplantation.</p>
<p><strong>Cadaver donor:</strong> The donor liver is obtained from a person who is diagnosed as brain dead, whose family volunteers to donate the organ for transplantation. People who receive cadaver donors wait on the institutional / regional list until a suitable donor becomes available. </p>
<p><strong>Living donor:</strong> A healthy family member, usually a person of blood relation, sibling, or child, or someone emotionally close to you, such as a spouse, volunteers to donate part of their liver for transplantation. The donor is carefully evaluated by the team to ensure that no harm comes to the donor or recipient. </p>
<p><strong>Auxiliary transplantation:</strong> Part of the liver of a healthy adult donor (living or cadaver) is transplanted into the recipient. The patient's diseased liver remains intact until the auxiliary piece regenerates and assumes function. The diseased liver may then be removed. This technique is rarely used now.</p>
<h1>Cornea Transplant Specialist Kenya</h1>
<p>The cornea is the clear layer on the front of the eye. A corneal transplant is surgery to replace the cornea with tissue from a donor. It is one of the most common transplants done.<br><br>
In some diseased conditions the cornea becomes cloudy or warped due to disease, injury or infection. A damaged cornea distorts light as it enters the eye causing decreased vision. This kind of visual impairment is called corneal blindness. This is the only type of visual impairment that can be treated by corneal transplantation. <br><br>
Corneal transplantation or corneal grafting is a surgical procedure where the damaged cornea is replaced by donated corneal tissue (the graft) in its entirety (penetrating keratoplasty) or in part (lamellar keratoplasty). The graft is taken from a recently deceased individual with no known diseases or other factors that may affect the viability of the donated tissue or the health of the recipient.<br><br>
The surgical procedure is performed by ophthalmologist, medical experts who specialize in this area.</p>
<h1>Bone Marrow Transplants Kenya</h1>
<p>Bone Marrow Transplantation is a form of intensive treatment used to treat certain cancers like leukemia, lymphomas and some serious diseases like thalassaemia.<br><br>
Bone marrow is found inside our bones tissues, and is the main site for blood production in the body. It is responsible for producing white blood cells, red blood cells, and platelets cells. Stem cells are blood cells at their earliest stage of development in the bone marrow, before they have become committed to developing into white cells, red cells or platelets. It is these 'mother' cells, which are the key factors in transplantation.<br><br>
There are two main types of transplants – Autologous and Allogenic.</p>
<p><strong>Autologous Transplants:</strong> This means that the bone marrow or stem cells used for the transplant are one's own. A little bit of the patient's bone marrow or stem cells is taken and stored before high dose treatment. When the treatment is over, the bone marrow or stem cells are given back through a vein.</p>
<p><strong>Allogeneic Transplants:</strong> In this type of transplant, bone marrow donated by someone else is used. It is essential that the donor's tissue match. The most suitable donor is usually a close relative, most commonly a brother or sister. It is possible to get a good match from an unrelated donor, but this facility does not exist in Kenya.</p>
<h1>Heart Transplant in Kenya</h1>
<p>A Heart Transplant is done a patient with end stage heart failure or very severe Coronary Artery Disease. A brain dead donor or recently deceased patient’s heart is removed and implanted in to the patient after doing several blood and tissue matching to ensure least rejections.
The concept of organ donation after death (cadaver donor) is picking up in Kenya and will still take some more years that the relatives of the deceased would voluntarily come forward for donation to save many lives.</p>
<h1>Our Hospital’s Facilities </h1>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> State-of-the-art Equipment: Operation theatres that are managed by highly skilled transplant anesthetists.<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> CUSA, ABC, Harmonic, Cell Saver, Bypass Machine and TEC monitors are available.<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Well-developed, ICU with HEPA filters, with all types of monitors and well-trained dedicated nursing staff.<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Laboratory services- Monitoring of immunosuppressive therapy (Tacrolimus/ 5k506 and Cyclosporine Co & C2 levels) is available round the clock.<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Complete hematology backup with histopathology and cytopathology reporting of complete panel immune-histochemistry and immune fluorescence studies support round the clock microbiology and immunological backup with expertise in opportunistic and Conventional pathogens.<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Radiology services- A 3.0 Tesla MRI scanner can accurately define donor biliary anatomy and a PET SUITE can accurately assess donor anatomy and liver volume</p>
<h1>Our Hospital’s Team for Organ Transplantation</h1>
<p><i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Moh A Nayeem, Dr. Neerav Goyal, Apollo Hospital, Nairobi.<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Raja Sekhar, Dr. Sandeep Guleria, Apollo Hospital, Nairobi<br><br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Abhideep Chaudhary, Dr. K R Vasudevan, Dr. Manoj Gupta, Jaypee Hospital, Nairobi </p>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content_trea wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/New folder/t2.png" class="img-responsive center-block">
<h3>Cancer Treatment in Kenya</h3>
<p style=" height:185px !important;">Our hospitals are equipped with state of the art equipment, facilities and experienced, faculty & staff, is wholly committed to highly personalized and comprehensive cancer care. </p>
<a href="#" title="Know More" data-toggle="modal" data-target="#aqwesdews">Know More..</a>
<div class="modal fade" id="aqwesdews" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="" style="color:#000;">Cancer Treatment in Kenya</h4>
</div>
<div class="modal-body trea_phai">
<p>Our hospitals are equipped with state of the art equipment, facilities and experienced, faculty & staff, is wholly committed to highly personalized and comprehensive cancer care.</p>
<p style="font-style:italic;"><strong>With Humane International Medical Tourism, you can be assured that we will ascertain the success of your cancer treatment so that you will have healthy beautiful life again. Make an appointment with us for a professional assessment.</strong></p>
<p>Patient centric focus, multidisciplinary approach, personalized, cost effective solutions with utmost care to all medical needs of the patient coupled with administrative needs are meticulously looked into by a team of experienced medical and administrative teams.</br> </br>
Our Doctors team are highly skilled and renowned surgical, Radiation and medical Oncologists and they are expert in Nuclear Medicine, Neurosurgery and Radiology. </br> </br>
Our hospitals are equipped with most advance technology, Three- Dimensional Conformal Radiation therapy(3DCRT), IMRT/IGRT &PET Guided Planning and Clinac IX with Robotic imager. </p>
<h1>Our services </h1>
<p style="color:#000;">
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Humane International Medical Tourism provides high quality cancer treatment in Kenya. In our hospitals, the main focus is to cure all type of cancer at affordable prices. They follow the current standards of care and treatment protocols for each type and stage of cancer.</p> </br></br>
<p>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Medical Oncology & Radiation Oncology </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> CyberKnife VSI </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> HIPEC Technology </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Gynae-oncology & Breast Cancer </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Head & Neck Cancer, GI & Thoracic Oncology </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Brain & Spinal Cord Cancers
</p>
<h1>Our Oncologists Team</h1>
<p><strong>a)</strong> Dr. S Hukku, Dr. Kapil Kuma & Dr. Sandeep Mehta, BLK Hospital, Nairobi </br></br>
<strong>b)</strong> Dr. Manav Rakshak – Metro Hopsital. Nairobi. </br></br>
<strong>c)</strong> Dr. Subodh C. Pande – Artemis Healthcare, Gurgoan, Nairobi. </br></br>
<strong>d)</strong> Dr. H K Chaturvedi - Max Healthcare, Nairobi </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content_trea wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/New folder/t3.png" class="img-responsive center-block">
<h3>Robotic Surgery in Nairobi</h3>
<p style=" height:185px !important;">Robotic Surgery is fast gaining ground all over the world as the preferred mode of surgery. Apart from the clear advantages like higher patient comfort and safety, it also helps significantly cut down the length of stay at hospital. </p>
<a href="#" title="Know More" data-toggle="modal" data-target="#nmjkl">Know More..</a>
<div class="modal fade" id="nmjkl" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="" style="color:#000;">Robotic Surgery in Nairobi</h4>
</div>
<div class="modal-body trea_phai">
<p> Robotic Surgery is fast gaining ground all over the world as the preferred mode of surgery. Apart from the clear advantages like higher patient comfort and safety, it also helps significantly cut down the length of stay at hospital.</p>
<p style="font-style:italic;"><strong>With Humane International Medical Tourism (HIMT), you can be assured that we will ascertain the success of your complex surgeries so that you will have healthy beautiful life again. Make an appointment with us for a professional assessment.</strong></p>
<p>Our Hospitals has been at the forefront of adopting new technologies for better patient care. With its fully equipped, world class OT's, addition of Robotic technology has augmented the continuous effort to bring best clinical outcomes for the patient. Our some multi-speciality, multi-modality hospitals offer Robot Assisted Surgeries of world class standards at costs which are just a fraction of what is charged in hospitals in advanced nations. </p>
<p>We, Humane International Medical Tourism had partner with various hospitals which are equipped with State-of-the-art operating theatres are equipped with the most advanced, Da Vinci Si surgical system, the most advanced platform for minimally invasive surgery available today. The four armed surgical robotic system is a breakthrough in surgical capabilities across the key specialties of Cardiology, Neurology, Nephrology, Urology and Gynecology at our hospitals. </p>
<h1>The da Vinci Si Surgical system: Key Advantages</h1>
<p>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> 3D high definition vision Up to ten times magnification </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> An immersive view of the surgical field through tiny incisions of 1cm to 2 cm</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> EndoWrist Instruments with seven degrees of freedom for range of motion far greater than the human hand with reduction of hand tremor</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Enhanced dexterity and greater accuracy</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Complex surgical manoeuvres made easier through smaller ports</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Minimises patient trauma even in confined spaces of the chest, abdomen or pelvis</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> The only system that allows surgeons to operate while seated</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Better ergonomics than traditional open and laparoscopic surgery</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Natural hand-eye positioning and reduced surgeon fatigue</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Improved surgical capabilities</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Four robotic arms with added mechanical strength makes minimally invasive approach possible even for high BMI patients</p>
<h1>Our Doctors Team </h1>
<p><strong>(a)</strong> Dr. Ajit Saxena, Dr. Anshuman Agarwal, Dr. Arun Prasad, Apollo Hospital Nairobi </p>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content_trea wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms"> <img src="images/New folder/t4.png" class="img-responsive center-block">
<h3>Cardiovascular Surgery</h3>
<p style=" height:185px !important;">Are you planning to visit Nairobi for Cardiac and Vascular surgery? Many hospitals in Kenya have Cardiac surgery centre which are design to provide the highest level of professional expertise and patient care in Kenya.</p>
<a href="#" title="Know More" data-toggle="modal" data-target="#vbghj">Know More..</a>
<div class="modal fade" id="vbghj" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="" style="color:#000;">Cardiovascular Surgery</h4>
</div>
<div class="modal-body trea_phai">
<p>Are you planning to visit Nairobi for Cardiac and Vascular surgery? Many hospitals in Kenya have Cardiac surgery centre which are design to provide the highest level of professional expertise and patient care in Kenya.</p>
<p> Our hospitals are equipped with cutting edge technology, flat panel detectors (FPD), apex tertiary level coronary service, advance diagnostic services, preventive care services and comprehensive nuclear medicine. </p>
<h1>Our Services in cardiology</h1>
<p>Humane International Medical Tourism (HIMT) offers advance care services in the field of cardiology, vascular medicine and support services at affordable cost. Our Partner hospitals are providing following services.</p>
<p>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Coronary angioplasty, Angiography and Coronary stent placement</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Paediatric Cardiology and Cardiac Surgery</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Pacemaker Installation and Heart implant</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Open and closed Heart surgery and Coronary Artery Bypass (CABG)</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Echo Cardiography</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Congenital defect repair, and Aortic Aneurysm</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Nuclear Diagnostic Services and Cardiology Robotic Surgery</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Heart Check-up Package</p>
<h1>Our partner hospitals have world renounced cardiologists team </h1>
<p> <i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Naresh Terhan – Medanta Hospital, Nairobi</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Ashok Seth, Dr. Ramji Mehrotra- Escort Nairobi</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Purshottam Lal Metro Hospital, Nairobi</br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. Rajesh Kaushish – Max Hospital, Nairobi </br></br>
<i class="fa fa-chevron-circle-right" aria-hidden="true"></i> Dr. H.S.Rissam –Max Hospital, Saket, Nairobi </p>
</div>
<div class="modal-footer">
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3 center_content_trea wow flipInX" data-wow-duration="1000ms" data-wow-delay="400ms">
<img src="images/New folder/t5.png" class="img-responsive center-block">
<h3>Pediatric Cardiology Services</h3>
<p style=" height:185px !important;">Most of our hospitals have pediatric cardiology services which are specialize in diagnosis and management of all forms of congenital heart disease from prenatal cardiology to adulthood. </p>
<a href="#" title="Know More" data-toggle="modal" data-target="#awesdr">Know More..</a>
<div class="modal fade" id="awesdr" tabindex="-1" role="dialog" aria-labelledby="">
<div class="modal-dialog" role="document">
<div class="modal-content">