-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
961 lines (912 loc) · 41.5 KB
/
index.html
File metadata and controls
961 lines (912 loc) · 41.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<script src="navOneScript.js"></script>
<script src="navSecondScript.js"></script>
<!-- HADIYAH -->
<!-- Bootstrap CSS -->
<!-- <link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/> -->
<link
href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Rowdies:wght@300;700&display=swap"
rel="stylesheet"
/>
<!-- -->
</head>
<body>
<!-- START JACQUES SECTIONS -->
<!--First NAVIGATION-->
<nav class="navbar navbar-expand-md navbar-light bg-light sticky-top" id="navbar">
<div class="container-fluid">
<ul class="navbar-nav navbar-left">
<li class="nav-item">
<a href="#" class="nav-link"><i class="fas fa-phone"></i> 1-844-481-5238</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link"><i class="fas fa-envelope"></i> Email</a>
</li>
</ul>
<ul class="navbar-nav navbar-right">
<li class="nav-item">
<a href="#" class="nav-link">Enrolment</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Login</a>
</li>
</ul>
</div>
</nav>
<!--Second NAVIGATION-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top" id="secondNav">
<div class="container-fluid">
<a class="nav-brand" href="#"><img src="#" alt="logo" /></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Courses
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#section41">CRAT</a>
<a class="dropdown-item" href="#section42">CCT</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Accreditation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">How it works</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Partners</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--IMAGE SLIDER-->
<div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox" style="width: 100%; height: 500px !important;">
<div class="carousel-item active">
<img src="images/doctor.jpeg" class="d-block w-100" alt="..." />
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/telemetry2.jpeg" class="d-block w-100" alt="..." />
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/nurse.png" class="d-block w-100" alt="..." />
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>
Praesent commodo cursus magna, vel scelerisque nisl consectetur.
</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!--CRAT SECTION-->
<section id="crat">
<div class="container addBorder">
<h2 class="display-5 text-center mt-5 mb-5">Cardiac Rythm Monitoring Certification (CRAT)</h2>
<h3 class="text-center mb-4">Arrhymia Interpretation </h3>
<div class=" row d-flex flex-md-row justify-content-center flex-column">
<div class="col-sm-12 col-md-4 col-lg-3 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/elearning.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">What You Will Learn</h4>
<p class="card-text">By the end of the course, you will be able to understand the rhythms and
arrhythmias of the heart and recognize them on a printed rhythm strip. For more details, read
our course syllabus. You can present this to your credentialing department to confirm this
will be eligible for reimbursement. (Atanas)
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-3 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/male.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">This course can be taken by</h4>
<p class="card-text">Entry-level job seekers.
Any nurse assistant, RN, LVN/LPN, or other medical professional seeking additional training
or continuing education.
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-3 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/diploma.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">This course:</h4>
<p class="card-text">4–6 weeks.
Completed online.
Fully accredited.
Offers up to 8 CME/CE credits.
It may be taken for required monitor technician training.
Provides certification to students who pass an end of course exam with a score of 84%.
</p>
</div>
</div>
</div>
</div>
<h3 class="text-center mb-4">12-Lead ECG </h3>
<div class=" row d-flex flex-md-row justify-content-center flex-column">
<div class="col-sm-12 col-md-4 col-lg-3 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/elearning.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">What You Will Learn</h4>
<p class="card-text">You will learn how to operate and configure the machine that takes twelve-lead
measurements.
For more details, read our course syllabus. You can present this to your credentialing
department to confirm this will be eligible for reimbursement.
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-3 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/male.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">This course can be taken by:</h4>
<p class="card-text">Those who have passed an Arrhythmia Interpretation course.
Entry-level job seekers.
Any nurse assistant, RN, LVN/LPN, or other medical professional seeking additional training
or continuing education.
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4 col-lg-3 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/diploma.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">This course:</h4>
<p class="card-text">4–6 weeks.
Completed online.
Fully accredited.
Offers up to 8 CME/CE credits.
It may be taken for required monitor technician training.
Provides certification to students who pass an end of course exam with a score of 84%.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section class="container-fluid text-center py-4 mt-5" id="contact">
<h2 class="display-5 pb-4 my-4">Get in touch with us today!</h2>
<p class="lead pb-3 align-items-center">Send us a message and we will get back to
you as soon as possible.</p>
<a href="#" class="btn btn-primary btn-lg mb-4" role="button">Contact us</a>
</section>
<!--ABOUT US-->
<!--CCT SECTION-->
<section id="cct">
<div class="container" id="skillsTest">
<h2 class="display-5 text-center mt-5 mb-5">Technician Certified Cardiograph</h2>
<div class="d-flex flex-md-row justify-content-center flex-column">
<!-- <div class="row text-center"> -->
<div class="col-12 col-sm-12 col-md-4 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/hospital.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">Stress Test Holter Monitor</h4>
<p class="card-text">This course not only reviews content covered in our Arrhythmia Interpretation and
12-lead
ECG, but it also covers stress
testing and Holter and event monitoring. This course can also be used to prepare for the CCI-CCT Exam.
Learn
more about
the course or sign up now! and get ECG training online.
Disclaimer: We do not cover Registering Patients (5%), Educating Clients (8%) or Administering Cardiac
Test
(10%)
sections for CCT/CRAT exam.
</p>
</div>
</div>
</div>
<!-- </div> -->
<!-- <div class="row text-center"> -->
<div class="col-12 col-sm-12 col-md-4 mb-4">
<div class="card h-100">
<img class="card-img-top" src="images/defibrillator.png" style="width: 7rem;margin: 0 auto;" alt="#">
<div class="card-body">
<h4 class="card-title">Basic Life Support</h4>
<p class="card-text">Our Pacific Medical Training branded CPR training materials have been sold under
contract
to the U.S. Army.
Our CPR and First Aid course can be added to any purchase from our shopping cart. You may also buy it
individually.
Check out our other courses list.
</p>
</div>
</div>
</div>
<!-- </div> -->
</div>
</div>
</section>
<!-- END JACQUES SECTIONS -->
<!-- START DENIS ENROLMENT -->
<!-- ENROLMENT SECTION-->
<section id="enrolment">
<div class=" container-fluid py-5" style="background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), url('./images/enroll.jpg'); background-position: center; background-repeat: no-repeat; background-size: cover;">
<div class="container-lg">
<h2 class="text-center mb-5 text-light h2-font-size">Enrolment</h2>
<div class="row justify-content-center align-items-center">
<div class="col-lg-5 col-md-7 m-3 text-center denis-text text-light">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printe</div>
<div class="col-lg-6 col-md-7 m-3">
<div class="card card-blur-effect">
<div class="card-header text-center heading-card-custom text-white">
Pricing
</div>
<form action='#'>
<div class="card-body">
<div class="form-check my-3 d-flex align-items-center ">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
<label class="form-check-label" for="defaultCheck1">
Arrhythmia Interpretation
</label>
</div>
<div class="form-check my-3 d-flex align-items-center">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck2" >
<label class="form-check-label " for="defaultCheck2">
12-lead Electrocardiography
</label>
</div>
<div class="form-check my-3 d-flex align-items-center">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
<label class="form-check-label " for="defaultCheck1">
CPR and First Aid
</label>
</div>
<div class="form-check my-3 d-flex align-items-center">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck2" >
<label class="form-check-label" for="defaultCheck2">
Stress Test and Holter Monitor
</label>
</div>
<button type="submit" class="btn btn-custom-font btn-info btn-block my-2">Pay Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END DENIS ENROLMENT -->
<!-- START DENIS HOW IT WORKS -->
<!--HOW IT WORKS SECTION-->
<section id="how-it-works">
<div class=" container-fluid p-2 my-4" >
<div class="container-lg">
<h2 class="text-center mb-5">How it works</h2>
<div class="container-lg">
<div class="accordion" id="accordionExample">
<div class="card border-bottom my-2 ">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Signing up
</button>
</h2>
</div>
<div id="collapseOne" class="denis-text collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
Sign up anytime for our online course. Scroll to the enrolment section to begin.
You may buy our Arrhythmia Interpretation courses separately or as a package. Each course is sold individually for $300. When you buy them as a package, you will receive 10% off your purchase for a total of $540.
A word about safety: If you're going to buy something online, it needs to be secure. Your purchase is secure with 256-bit encryption.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font " type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Study
</button>
</h2>
</div>
<div id="collapseTwo" class="denis-text collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
All of the materials you need are available upon enrolment in our courses.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
The exam
</button>
</h2>
</div>
<div id="collapseThree" class="denis-text collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
There is an end of course exam where you must pass with an 84% or higher. You have three chances to pass and we provide you with an exam scoring report after each attempt. Should you fail the exam during your first or second attempt, you can use the scoring report for remediation.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingFour">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Your certificate
</button>
</h2>
</div>
<div id="collapseFour" class="denis-text collapse" aria-labelledby="headingFour" data-parent="#accordionExample">
<div class="card-body">
You will be provided with a PDF certificate via email that you can show your employer while the hard copy is mailed to you. We mail the hard-copy via First Class Mail one business day after you pass the exam.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingFive">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
Certified Rhythm Analysis Technician (CRAT) examination
</button>
</h2>
</div>
<div id="collapseFive" class="denis-text collapse" aria-labelledby="headingFive" data-parent="#accordionExample">
<div class="card-body">
Students who take our Arrhythmia Interpretation and 12-Lead ECG courses will be prepared to sit for the Cardiovascular Credentialing International (CCI) Certified Rhythm Analysis Technician (CRAT) examination. Also, you'll learn about ECG requirements and ECG qualifications.
Disclaimer: We do not cover Registering Patients (5%), Educating Clients (8%) or Administering Cardiac Test (10%) sections for CRAT exam.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingSix">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
Certified Cardiographic Technician (CCT) examination
</button>
</h2>
</div>
<div id="collapseSix" class="denis-text collapse" aria-labelledby="headingSix" data-parent="#accordionExample">
<div class="card-body">
Students who take our Stress Test Holter Monitor (STHM) and Basic Life Support (BLS) courses will be able to sit for the Cardiovascular Credentialing International (CCI) Certified Cardiographic Technician (CCT) examination. Also, check our CCT Course.
Disclaimer: We do not cover Registering Patients (5%), Educating Clients (8%) or Administering Cardiac Test (10%) sections for CRAT exam.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingSeven">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven">
Our guarantee
</button>
</h2>
</div>
<div id="collapseSeven" class="denis-text collapse" aria-labelledby="headingSeven" data-parent="#accordionExample">
<div class="card-body">
We guarantee you will love your course and it will be accepted, or your money back (good for three months from purchase).
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingEight">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseEight" aria-expanded="false" aria-controls="collapseEight">
The exam
</button>
</h2>
</div>
<div id="collapseEight" class="denis-text collapse" aria-labelledby="headingEight" data-parent="#accordionExample">
<div class="card-body">
There is an end of course exam where you must obtain an 84% or higher. You have three chances to pass and we provide you with an exam scoring report after each attempt. You can use the scoring report for remediation if you fail to pass the exam during your first or second attempt.
</div>
</div>
</div>
<div class="card border-bottom my-2">
<div class="card-header" id="headingNine">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left collapsed text-decoration-none btn-custom-font" type="button" data-toggle="collapse" data-target="#collapseNine" aria-expanded="false" aria-controls="collapseNine">
Group discounts
</button>
</h2>
</div>
<div id="collapseNine" class="denis-text collapse" aria-labelledby="headingNine" data-parent="#accordionExample">
<div class="card-body">
Group discounts are available (10+ people), please contact support@pacificmedicaltraining.com (direct for our Monitor Tech department).
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END DENIS HOW IT WORKS -->
<!-- PARTNERS HADIYAH-->
<!--PARTNERS SECTION-->
<section class="partners">
<div class="container">
<div class="students_info">
<h2 class="text-center mb-5">
Leading Companies hire our Students
</h2>
<p class="lead">
Our graduate students work as paramedics, in leading companies in the Industry. Our graduates are confident, knowledgeable and with excellent communication skills.
</p>
<p class="lead">Considering hiring one of our students and joining the ranks ofthese high performing companies?<br> Contact us at
<a class="link" href="mailto:support@pacificmedicaltraining.com">support@pacificmedicaltraining.com</a> for more information.
</p>
</div>
</div>
<div class="partners_logo container">
<img
class="logos"
src="https://www.massgeneral.org/assets/MGH/images/logos/logo-mgh--cmyk.svg"
alt="Massachusetts General Hospital logo"
/>
<img
class="logos"
src="https://www.sunshineclinic.org/wp-content/uploads/2020/03/LOGO_Sunshine-Community-Health-Center_White_Transparent-copy.png"
alt="Sunshine Community Health Center logo "
/>
<img
class="logos"
src="https://www.essentiahealth.org/app/files/public/2897/Essentia-Health-Logo.svg"
alt="Essentia Health Fosston logo"
/>
<img
class="logos"
src="https://www.ed2go.com/common/images/1/15190.png"
alt="Tri-State Technical School logo"
/>
<img
class="logos"
src="https://static.wixstatic.com/media/753cbe_8f9bd66db3c844a390505799dce20954~mv2.jpg/v1/fill/w_408,h_135,al_c,q_80,usm_0.33_1.00_0.00/dmh_1_JPG.webp"
alt="DeSoto Memorial Hospital"
/>
<img
class="logos"
src="https://www.titusregional.com/wp-content/uploads/trmc-logo-header.png"
alt="Titus Regional Medical Center logo"
/>
<img
class="logos"
src="https://www.palomarhealth.org/_img/NewDesign/logo.png"
alt="palomar health logo"
/>
<img
class="logos"
src="https://www.nychealthandhospitals.org/queens/wp-content/uploads/sites/11/2016/08/queens_logo.png"
alt="Queens General Hospital NYC logo"
/>
<img
class="logos"
src="https://www.communitymedical.org/CMC/media/CMC/logo.png"
alt="Community Regional Medical Center logo"
/>
<img
class="logos"
src="https://nantuckethospital.org/images/logo@2x.png"
alt="nantuckethospital logo"
/>
<img
class="logos"
src="https://www.abrazohealth.com/images/global/hospital-logo/abrazo/abrazo-logo.jpg?sfvrsn=938f879_10"
alt="abrazohealth logo"
/>
<img
class="logos"
src="https://www.sheridanhospital.org/wp-content/uploads/2019/11/sheridan-memorial-hospital-logo-web.png"
alt="sheridan-memorial-hospital-logo"
/>
<img
class="logos"
src="https://www.inspirahealthnetwork.org/upload/images/1-%20Inspira%20Health%20Logo/Inspira-Health-Footer-Logo.jpg"
alt="Inspira Health Network logo"
/>
<img
class="logos"
src="https://www.kaweahdelta.org/images/design/KAWEAH-DELTA_logo1[1].png"
alt="KAWEAH-DELTA_logo"
/>
<img
class="logos"
src="https://www.ghs.org/wp-content/uploads/2019/06/Prisma-Health-logo-registered2-800x181.png"
alt="Greenville Health System logo"
/>
<img
class="logos"
src="https://www.adventisthealth.org/images/healthcare/brand/AH_Hanford.png"
alt="Adventist Health Hanford logo"
/>
<img
class="logos"
src="https://www.providence.org/-/media/200x38/6294B19C274A30A9861AFB9AB9BE7C4F/Project/psjh/providence/socal/Images/Logos/providence_color_small.png"
alt="Providence St. John's Health Center logo"
/>
<img
class="logos"
src="https://locations.dignityhealth.org/permanent-b0b701/assets/images/header-logo.f8bafb76.png"
alt="LA California Hospital part of Dignity Health logo"
/>
<img
class="logos"
src="https://static1.squarespace.com/static/5706a4228259b5f5ce98896a/t/576094d5cf80a13dc5785125/1593615528176/?format=1500w"
alt="Bridge Point Healthcare logo"
/>
<img
class="logos"
src="http://www.cval.org/DesktopModules/mobiNuke/skins/page/mobinuke-simple/images/logo.jpg"
alt="Bayview Cardiovascular Associates logo"
/>
<img
class="logos"
src="https://s.yimg.com/fz/api/res/1.2/gdQhOsMh5Z8n9ryYH7sIrQ--~C/YXBwaWQ9c3JjaGRkO2ZpPWZpdDtoPTMwMDtxPTgwO3c9MzAw/https://s.yimg.com/zb/imgv1/397e84da-7c49-353f-8919-4513566295cf/t_500x300"
alt="Kindred Hospital logo"
/>
<img
class="logos"
src="https://www.wrangell.com/sites/default/files/styles/full_node_primary/public/imageattachments/organization/2829/wmc_logo_high_quality.jpg?itok=ay3NXBiL"
alt="wrangell Medical Center logo"
/>
<img
class="logos"
src="https://www.fdihb.org/images/logo-wide.png"
alt="Ft Defiance Indian Hospital logo"
/>
<img
class="logos"
src="https://www.hoag.org/images/hoag-logo-160x118.png"
alt="Hoag Hospital logo"
/>
</div>
</section>
<!--END PARTNERS HADIYAH-->
<!-- START REVIEW HADIYAH -->
<!--REVIEW SECTION-->
<section class="reviews">
<h2 class="section_title1">What Our Students Say...</h2>
<div class="container1">
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady1.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Omolola Bello</h4>
<p>2020 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady2.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Jane Doe</h4>
<p>2009 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/guy1.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Jacques Vertommen</h4>
<p>2019 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady2.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Amanda Bello</h4>
<p>2020 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/guy2.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Denis Peptanariu</h4>
<p>2020 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady1.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Omolola Bello</h4>
<p>2020 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady2.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Lola Perez</h4>
<p>2010 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/guy1.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Jacques Vertommen</h4>
<p>2011 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady2.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Gina Sheng</h4>
<p>2015 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/guy2.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Harry Morgan</h4>
<p>2018 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/guy1.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">Adebola Omotosho</h4>
<p>2016 Graduate, Los Angeles</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="student_review">
<p class="student_say">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Expedita, quos. Animi nemo, facilis vel alias ducimus culpa
necessitatibus consequatur assumenda dignissimos quisquam sint
minus mollitia?
</p>
</div>
<div class="student_image">
<img src="./images/lady1.jpg" alt="" class="student_pic" />
<div class="student_name">
<h4 class="student_name">DeSchanel Pedro</h4>
<p>2017 Graduate, Los Angeles</p>
</div>
</div>
</div>
</div>
</section>
<!-- END REVIEW HADIYAH -->
<!-- START FOOTER LOLA -->
<footer class="mainfooter" role="contentinfo">
<div class="footer-middle">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<!--Column1-->
<div class="footer-pad">
<h4>Our Courses</h4>
<ul class="list-unstyled">
<li><a href="#Practice reading rhythm">Practice reading rhythm</a></li>
<li><a href="#Arrhythmia Interpretation">Arrhythmia Interpretation</a></li>
<li><a href="#12-Lead ECG">12-Lead ECG</a></li>
<li><a href="CPR and First Aid">CPR and First Aid</a></li>
<li><a href="#Stress Test and Holter Monitor">Stress Test and Holter Monitor</a></li>
<li><a href="#CRAT Test Topics">CRAT Test Topics</a></li>
</ul>
</div>
</div>
<div class="col-md-3 col-sm-6">
<!--Column1-->
<div class="footer-pad">
<h4>Learn More</h4>
<ul class="list-unstyled">
<li><a href="#About Us">About Us</a></li>
<li><a href="#Enrolment">Enrolment</a></li>
<li><a href="#Training and Certification">Training and Certification</a></li>
<li><a href="#How it Works">How it Works</a></li>
<li><a href="#Other Courses">Other Courses</a></li>
<li><a href="#Enrolment">Enrolment</a></li>
</ul>
</div>
</div>
<div class="col-md-3 col-sm-6">
<!--Column1-->
<div class="footer-pad">
<h4>Monitor Tech</h4>
<ul class="list-unstyled">
<li><a href="#Contact Us">Contact Us</a></li>
<li><a href="#Scholarships">Scholarships</a></li>
<li><a href="#Educational Articles">Educational Articles</a></li>
<li><a href="#Corporate">Corporate</a></li>
<li><a href="#FAQ"> FAQ</a></li>
<li><a href="#Strips">Strips</a>
</li>
</ul>
</div>
</div>
<div class="col-md-3">
<h4>Monitor Tech </h4>
<p>3103 Philmont Ave, Suite 308</p>
<p>Huntingdon Valley, PA 19006</p>
<p>Phone: 1-844-481-5238 (8am -2pm)</p>
<h4>Follow Us</h4>
<ul class="social-network social-circle">
<li><a href="#" class="icoFacebook" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" class="icoInstagram" title="Instagram"><i class="fa fa-instagram"></i></a></li>
<li><a href="#" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12 copy">
<p class="text-center">© Copyright 2020 - Pacific Medical Training. All rights reserved.</p>
</div>
</div>
</div>
</div>
</footer>
<!-- END FOOTER LOLA -->
<!--BOOTSTRAP JS & JQUERY-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
</body>
</html>