-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-3.html
1695 lines (1582 loc) · 89.2 KB
/
index-3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Eduport - LMS, Education and Course Theme</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Webestica.com">
<meta name="description" content="Eduport- LMS, Education and Course Theme">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap">
<!-- Plugins CSS -->
<link rel="stylesheet" type="text/css" href="assets/vendor/font-awesome/css/all.min.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/bootstrap-icons/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/tiny-slider/tiny-slider.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/glightbox/css/glightbox.css">
<!-- Theme CSS -->
<link id="style-switch" rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<!-- Header START -->
<header class="navbar-light navbar-sticky header-static">
<!-- Logo Nav START -->
<nav class="navbar navbar-expand-xl">
<div class="container">
<!-- Logo START -->
<a class="navbar-brand" href="index.html">
<img class="light-mode-item navbar-brand-item" src="assets/images/logo.svg" alt="logo">
<img class="dark-mode-item navbar-brand-item" src="assets/images/logo-light.svg" alt="logo">
</a>
<!-- Logo END -->
<!-- Responsive navbar toggler -->
<button class="navbar-toggler ms-auto" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-animation">
<span></span>
<span></span>
<span></span>
</span>
</button>
<!-- Main navbar START -->
<div class="navbar-collapse w-100 collapse" id="navbarCollapse">
<!-- Nav Main menu START -->
<ul class="navbar-nav navbar-nav-scroll mx-auto">
<!-- Nav item 1 Demos -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="#" id="demoMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Demos</a>
<ul class="dropdown-menu" aria-labelledby="demoMenu">
<li> <a class="dropdown-item" href="index.html">Home Default</a></li>
<li> <a class="dropdown-item" href="index-2.html">Home Education</a></li>
<li> <a class="dropdown-item active" href="index-3.html">Home Academy</a></li>
<li> <a class="dropdown-item" href="index-4.html">Home Course</a></li>
<li> <a class="dropdown-item" href="index-5.html">Home University</a></li>
<li> <a class="dropdown-item" href="index-6.html">Home Kindergarten</a></li>
<li> <a class="dropdown-item" href="index-7.html">Home Landing</a></li>
<li> <a class="dropdown-item" href="index-8.html">Home Tutor</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="request-demo.html">Request a demo</a></li>
<li> <a class="dropdown-item" href="book-class.html">Book a Class</a></li>
<li> <a class="dropdown-item" href="request-access.html">Free Access</a></li>
<li> <a class="dropdown-item" href="university-admission-form.html">Admission Form</a></li>
<li> <hr class="dropdown-divider"></li>
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown levels</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<!-- dropdown submenu open right -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown (end)</a>
<ul class="dropdown-menu" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<!-- dropdown submenu open left -->
<li class="dropdown-submenu dropstart">
<a class="dropdown-item dropdown-toggle" href="#">Dropdown (start)</a>
<ul class="dropdown-menu dropdown-menu-end" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Dropdown item</a> </li>
</ul>
</li>
</ul>
</li>
<!-- Nav item 2 Pages -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="pagesMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Pages</a>
<ul class="dropdown-menu" aria-labelledby="pagesMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Course</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="course-grid.html">Course Grid Classic</a></li>
<li> <a class="dropdown-item" href="course-grid-2.html">Course Grid Minimal</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="course-list.html">Course List Classic</a></li>
<li> <a class="dropdown-item" href="course-list-2.html">Course List Minimal</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="course-detail.html">Course Detail Classic</a></li>
<li> <a class="dropdown-item" href="course-detail-min.html">Course Detail Minimal</a></li>
<li> <a class="dropdown-item" href="course-detail-adv.html">Course Detail Advance</a></li>
<li> <a class="dropdown-item" href="course-video-player.html">Course Full Screen Video</a></li>
</ul>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">About</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="about.html">About Us</a></li>
<li> <a class="dropdown-item" href="contact-us.html">Contact Us</a></li>
<li> <a class="dropdown-item" href="blog-grid.html">Blog Grid</a></li>
<li> <a class="dropdown-item" href="blog-masonry.html">Blog Masonry</a></li>
<li> <a class="dropdown-item" href="blog-detail.html">Blog Detail</a></li>
<li> <a class="dropdown-item" href="pricing.html">Pricing</a></li>
</ul>
</li>
<li> <a class="dropdown-item" href="instructor-list.html">Instructor List</a></li>
<li> <a class="dropdown-item" href="instructor-single.html">Instructor Single</a></li>
<li> <a class="dropdown-item" href="become-instructor.html">Become an Instructor</a></li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Authentication</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="sign-in.html">Sign In</a></li>
<li> <a class="dropdown-item" href="sign-up.html">Sign Up</a></li>
<li> <a class="dropdown-item" href="forgot-password.html">Forgot Password</a></li>
</ul>
</li>
<li> <a class="dropdown-item" href="faq.html">FAQs</a></li>
<li> <a class="dropdown-item" href="error-404.html">Error 404</a></li>
<li> <a class="dropdown-item" href="coming-soon.html">Coming Soon</a></li>
<li> <a class="dropdown-item" href="cart.html">Cart</a></li>
<li> <a class="dropdown-item" href="checkout.html">Checkout</a></li>
<li> <a class="dropdown-item" href="empty-cart.html">Empty Cart</a></li>
<li> <a class="dropdown-item" href="wishlist.html">Wishlist</a></li>
</ul>
</li>
<!-- Nav item 3 Account -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="accounntMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Accounts</a>
<ul class="dropdown-menu" aria-labelledby="accounntMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#"><i class="fas fa-user-tie fa-fw me-1"></i>Instructor</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="instructor-dashboard.html"><i class="bi bi-grid-fill fa-fw me-1"></i>Dashboard</a> </li>
<li> <a class="dropdown-item" href="instructor-manage-course.html"><i class="bi bi-basket-fill fa-fw me-1"></i>Courses</a> </li>
<li> <a class="dropdown-item" href="instructor-create-course.html"><i class="bi bi-file-earmark-plus-fill fa-fw me-1"></i>Create Course</a> </li>
<li> <a class="dropdown-item" href="course-added.html"><i class="bi bi-file-check-fill fa-fw me-1"></i>Course Added</a> </li>
<li> <a class="dropdown-item" href="instructor-earning.html"><i class="fas fa-chart-line fa-fw me-1"></i>Earnings</a> </li>
<li> <a class="dropdown-item" href="instructor-studentlist.html"><i class="fas fa-user-graduate fa-fw me-1"></i>Students</a> </li>
<li> <a class="dropdown-item" href="instructor-order.html"><i class="bi bi-cart-check-fill fa-fw me-1"></i>Orders</a> </li>
<li> <a class="dropdown-item" href="instructor-review.html"><i class="bi bi-star-fill fa-fw me-1"></i>Reviews</a> </li>
<li> <a class="dropdown-item" href="instructor-payout.html"><i class="fas fa-wallet fa-fw me-1"></i>Payout</a> </li>
</ul>
</li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#"><i class="fas fa-user-graduate fa-fw me-1"></i>Student</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="student-dashboard.html"><i class="bi bi-grid-fill fa-fw me-1"></i>Dashboard</a> </li>
<li> <a class="dropdown-item" href="student-subscription.html"><i class="bi bi-card-checklist fa-fw me-1"></i>My Subscriptions</a> </li>
<li> <a class="dropdown-item" href="student-course-list.html"><i class="bi bi-basket-fill fa-fw me-1"></i>Courses</a> </li>
<li> <a class="dropdown-item" href="student-payment-info.html"><i class="bi bi-credit-card-2-front-fill fa-fw me-1"></i>Payment Info</a> </li>
<li> <a class="dropdown-item" href="student-bookmark.html"><i class="fas bi-cart-check-fill fa-fw me-1"></i>Wishlist</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#"><i class="fas fa-user-cog fa-fw me-1"></i>Admin (Coming Soon)</a> </li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item" href="instructor-edit-profile.html"><i class="fas fa-fw fa-edit me-1"></i>Edit Profile</a> </li>
<li> <a class="dropdown-item" href="instructor-setting.html"><i class="fas fa-fw fa-cog me-1"></i>Settings</a> </li>
<li> <a class="dropdown-item" href="instructor-delete-account.html"><i class="fas fa-fw fa-trash-alt me-1"></i>Delete Profile</a> </li>
</ul>
</li>
<!-- Nav item 4 Component-->
<li class="nav-item"><a class="nav-link" href="docs/alerts.html">Components</a></li>
<!-- Nav item 5 link-->
<li class="nav-item dropdown">
<a class="nav-link" href="#" id="advanceMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fas fa-ellipsis-h"></i>
</a>
<ul class="dropdown-menu dropdown-menu-end min-w-auto" data-bs-popper="none">
<li>
<a class="dropdown-item" href="index-2.htm" target="_blank">
<i class="text-warning fa-fw bi bi-life-preserver me-2"></i>Support
</a>
</li>
<li>
<a class="dropdown-item" href="docs/index.html" target="_blank">
<i class="text-danger fa-fw bi bi-card-text me-2"></i>Documentation
</a>
</li>
<li> <hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="rtl/index.htm" target="_blank">
<i class="text-info fa-fw bi bi-toggle-off me-2"></i>RTL demo
</a>
</li>
<li>
<a class="dropdown-item" href="https://themes.getbootstrap.com/store/webestica/" target="_blank">
<i class="text-success fa-fw bi bi-cloud-download-fill me-2"></i>Buy Eduport!
</a>
</li>
</ul>
</li>
</ul>
<!-- Nav Main menu END -->
<!-- Nav Search START -->
<div class="nav my-3 my-xl-0 px-4 flex-nowrap align-items-center">
<div class="nav-item w-100">
<form class="position-relative">
<input class="form-control pe-5 bg-transparent" type="search" placeholder="Search" aria-label="Search">
<button class="btn bg-transparent px-2 py-0 position-absolute top-50 end-0 translate-middle-y" type="submit"><i class="fas fa-search fs-6 "></i></button>
</form>
</div>
</div>
<!-- Nav Search END -->
</div>
<!-- Main navbar END -->
<!-- Profile START -->
<div class="dropdown ms-1 ms-lg-0">
<a class="avatar avatar-sm p-0" href="#" id="profileDropdown" role="button" data-bs-auto-close="outside" data-bs-display="static" data-bs-toggle="dropdown" aria-expanded="false">
<img class="avatar-img rounded-circle" src="assets/images/avatar/01.jpg" alt="avatar">
</a>
<ul class="dropdown-menu dropdown-animation dropdown-menu-end shadow pt-3" aria-labelledby="profileDropdown">
<!-- Profile info -->
<li class="px-3">
<div class="d-flex align-items-center">
<!-- Avatar -->
<div class="avatar me-3">
<img class="avatar-img rounded-circle shadow" src="assets/images/avatar/01.jpg" alt="avatar">
</div>
<div>
<a class="h6" href="#">Lori Ferguson</a>
<p class="small m-0">[email protected]</p>
</div>
</div>
<hr>
</li>
<!-- Links -->
<li><a class="dropdown-item" href="#"><i class="bi bi-person fa-fw me-2"></i>Edit Profile</a></li>
<li><a class="dropdown-item" href="#"><i class="bi bi-gear fa-fw me-2"></i>Account Settings</a></li>
<li><a class="dropdown-item" href="#"><i class="bi bi-info-circle fa-fw me-2"></i>Help</a></li>
<li><a class="dropdown-item bg-danger-soft-hover" href="#"><i class="bi bi-power fa-fw me-2"></i>Sign Out</a></li>
<li> <hr class="dropdown-divider"></li>
<!-- Dark mode switch START -->
<li>
<div class="modeswitch-wrap" id="darkModeSwitch">
<div class="modeswitch-item">
<div class="modeswitch-icon"></div>
</div>
<span>Dark mode</span>
</div>
</li>
<!-- Dark mode switch END -->
</ul>
</div>
<!-- Profile START -->
</div>
</nav>
<!-- Logo Nav END -->
</header>
<!-- Header END -->
<!-- **************** MAIN CONTENT START **************** -->
<main>
<!-- =======================
Main Banner START -->
<section class="position-relative overflow-hidden pb-0 pb-sm-5">
<!-- SVG decoration -->
<figure class="ms-5 position-absolute top-0 start-0">
<svg width="29px" height="29px">
<path class="fill-orange opacity-4" d="M29.004,14.502 C29.004,22.512 22.511,29.004 14.502,29.004 C6.492,29.004 -0.001,22.512 -0.001,14.502 C-0.001,6.492 6.492,-0.001 14.502,-0.001 C22.511,-0.001 29.004,6.492 29.004,14.502 Z"></path>
</svg>
</figure>
<!-- Content START -->
<div class="container">
<div class="row align-items-center justify-content-xl-between g-4 g-md-5">
<!-- Left content START -->
<div class="col-lg-7 col-xl-5 position-relative z-index-1 text-center text-lg-start mb-2 mb-md-9 mb-xl-0">
<!-- Badge -->
<h6 class="mb-3 font-base bg-primary bg-opacity-10 text-primary py-2 px-4 rounded-2 d-inline-block">Get started with Eduport</h6>
<!-- Title -->
<h1 class="mb-4 display-5">Develop the skillset & your
<span class="position-relative d-inline-block">Bright Future
<!-- SVG decoration -->
<span class="position-absolute top-50 start-50 translate-middle z-index-n1 d-none d-sm-block">
<svg width="387.7px" height="119.7px">
<path class="fill-warning" d="M382.7,51.4c-0.2-1-0.4-2-0.7-3c-0.2-0.6-0.5-1.2-0.9-1.7c-0.6-0.9-1.5-1.7-2.9-2.2l0.1-0.1l-0.1,0.1 c0.2-0.9-0.4-1.2-1.2-1.3c-0.1,0-0.2,0-0.4-0.1c-0.2-0.2-0.5-0.5-0.7-0.7c0-0.7-0.1-1.3-0.6-1.7c-0.3-0.2-0.7-0.4-1.3-0.5 c0-0.7-0.2-1.1-0.6-1.4c-0.3-0.2-0.7-0.4-1.2-0.5c-0.2,0-0.3-0.1-0.5-0.1c-1.1-0.9-2.2-1.8-3.4-2.7c0-0.1,0-0.2-0.1-0.3 c-0.1-0.2-0.3-0.4-0.7-0.4c-2.1-1.2-4.2-2.3-6.2-3.5c-14.1-8.5-31.1-10.2-46.8-14.7c-9.6-2.7-19.8-3.4-29.8-4.7 c-13.3-1.8-26.7-1.5-40-2.5c-5.4-0.4-10.8-0.7-16.1-0.7c-2.8,0-5.7-0.6-8.3-0.2c-5.8,0.9-11.6,1.5-17.4,1.8c-2,0.1-3.9,0.2-5.9,0.2 c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0.1c-2.1,0-4.3,0.1-6.4,0.2c-2.1,0.1-4.3,0.1-6.4-0.1c-13-0.8-25.3,1.7-37.8,3.5 c-6,0.9-11.9,2.2-17.9,3.5c-6.5,1.4-13.3,1.7-19.8,3.3c-9.6,2.3-19.3,4.4-29.1,6c-9.5,1.6-18.9,3.9-28.2,6.4 c-8.5,2.3-16.2,5.9-23.8,9.7c-4.4,2.2-9,4.1-12.4,7.6c-4.1,4.3-6.6,9.4-10,14.1C1.9,68,2.5,70.8,4.6,74c4.7,7.3,12.9,10.3,21.3,13.4 c4.1,1.5,8.6,2.4,12.5,4.3c5.5,2.6,10.9,5.4,16.7,7.6c12.3,4.6,25.1,8,38.1,10.5c7.1,1.4,14.5,2.1,21.8,2.6 c11.2,0.8,22.5,2.5,33.8,1.9c0.8,0.7,1.5,0.7,2.1-0.1c1.6-0.7,3.4,0.2,5.1-0.1c8.8-1.5,17.8-0.8,26.8-0.6c5,0.1,10.1,0.8,15.1,0.6 c9.4-0.4,18.8-1,28.2-1.9c12.9-1.2,25.7-2.4,38.2-5.3c0.3,0.4,0.5,0.3,0.6-0.1c1.1-0.2,2.3-0.4,3.4-0.6c0.3,0.3,0.5,0.2,0.7-0.1 c1.2-0.3,2.4-0.6,3.7-0.8c7.9-0.8,15.8-1.4,23.6-2.4c4.9-0.6,9.7-1.8,14.5-2.8c0.4,0.2,0.8,0.3,1.1,0.2c0.2,0,0.3-0.1,0.4-0.2 c0.1-0.1,0.1-0.1,0.2-0.2s0.1-0.2,0.2-0.2c0.5-0.1,1-0.3,1.5-0.4c0.1,0,0.2,0.1,0.3,0.1c0.3,0,0.5-0.1,0.6-0.4c0,0,0,0,0,0l0,0 c0,0,0,0,0,0c0.4-0.1,0.8-0.2,1.3-0.3c0,0,0,0,0.1,0c0.2,0,0.3,0,0.5,0c0.4,0,0.7-0.2,0.8-0.7c1.1-0.4,2.2-0.8,3.3-1.3 c0.2,0.1,0.4,0.1,0.6,0c0.1,0,0.2-0.1,0.2-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0 c0.6,0.2,1,0.2,1.4,0c0.2-0.1,0.3-0.2,0.5-0.4c0.1-0.2,0.2-0.4,0.3-0.6c1.2-0.5,2.4-1,3.7-1.6c3.7-1.6,7.3-3.3,11.1-4.4 c11.2-3.4,21.5-7.9,30.2-14.9c1.8-0.4,2.9-1.2,3.7-2.4c0.5-0.7,0.8-1.4,1.1-2.2c1.1-0.1,1.7-0.6,2.1-1.1c0.4-0.6,0.6-1.3,0.7-2 c0-0.1,0.1-0.2,0.2-0.3c1.1,0.1,1.4-0.7,1.8-1.3C382.2,61.1,383.8,56.5,382.7,51.4z M9.5,72.3c-0.4-0.9-0.8-2-0.2-2.9 c4.3-6.9,8-14.3,15.9-19c6.6-3.9,13.9-6.9,21.1-10c10.1-4.3,21.1-6,32-8.1c0,0.2,0,0.4,0.1,0.6l0,0c-2.5,0.9-5.1,1.7-7.7,2.6 c-7.7,2.5-15.4,5-22.9,7.9c-10,3.9-18.1,9.9-23.8,17.8c-1.2,1.6-2.5,3.1-3.7,4.6c-5.1,6.3-2.3,11,2.9,16.4c0.3,0.3,0.7,0.7,0.9,1.1 C17.6,81.2,12,78.2,9.5,72.3z M372.5,60.6c-4,6.6-9.6,11.9-16.6,16.1c-4.8,2.9-10.5,5-16.2,6.8c-7.8,2.5-15.1,5.6-22.5,8.6 c-9.3,3.8-19,5.9-29.3,6.8c-14.1,1.2-27.8,3.6-41.6,5.9c-11.4,2-23.2,2.4-34.8,3.6c-13.2,1.4-26.4,0.4-39.6,0.2 c-7.4-0.1-14.8,0.8-22.1,1.2c-6.1,0.4-12.2,0.3-18.3-0.2c-9.2-0.7-18.5-1.3-27.7-2.2c-6.5-0.6-13.1-1.7-19.4-3.4 c-7.5-2-14.9-4-22.4-6c-1.2-0.3-2.3-0.6-3.2-1.3c-0.5-0.2-0.9-0.4-1.5-0.6c0.1,0,0.2-0.1,0.3-0.1c0.7-0.2,1.2,0,1.8,0.2c0,0,0,0,0,0 c8.1,1.1,16.2,2.8,24.4,3.2c1.2,0.1,2.4,0.1,3.5,0.1c1.1,0,3,0.5,3.1-0.6c0.1-1.4-1.8-2-3.3-2c-5,0-9.9-0.5-14.8-1.2 c-10.8-1.6-21.5-3.4-31.6-7.2c-6.9-2.5-12.7-6.4-16.2-12.3c-1.1-1.9-1.2-3.7-0.2-5.7c7.6-14.6,21.3-23.3,38.6-28.9 c15.7-5.1,31.3-10.6,47.6-14.2c11.7-2.6,23.7-4.3,35.3-6.9c20-4.5,40.6-5.7,61.3-6.4c8.5-0.3,16.8-2,25.4-1.3 c19.7,1.6,39.4,2.8,59.1,5.5c10.6,1.5,21.4,2.9,32.1,4c8.4,0.8,16.8,3.3,24.8,6.5c7.4,3,14.1,6.8,20,11.7 C374.7,46.2,376.4,54.2,372.5,60.6z"></path>
</svg>
</span>
</span>
</h1>
<!-- Content -->
<p class="mb-3">The most reliable online courses and certifications in marketing, information technology, programming, and data science.
</p>
<!-- Search bar -->
<form class="bg-body shadow rounded p-2 mb-4">
<div class="input-group">
<input class="form-control border-0 me-1" type="search" placeholder="Find your course">
<button type="button" class="btn btn-primary mb-0 rounded"><i class="fas fa-search"></i></button>
</div>
</form>
<!-- Counter START -->
<div class="row g-3 mb-3 mb-lg-0">
<!-- Item -->
<div class="col-sm-6">
<div class="d-flex align-items-center">
<!-- Icon -->
<div class="icon-lg fs-4 text-orange bg-orange bg-opacity-10 rounded"> <i class="bi bi-book-half"></i> </div>
<!-- Info -->
<div class="ms-3">
<div class="d-flex">
<h4 class="purecounter fw-bold mb-0" data-purecounter-start="0" data-purecounter-end="600" data-purecounter-delay="100">0</h4>
<span class="h4 mb-0">+</span>
</div>
<div>Online Courses</div>
</div>
</div>
</div>
<!-- Item -->
<div class="col-sm-6">
<div class="d-flex align-items-center">
<!-- Icon -->
<div class="icon-lg fs-4 text-info bg-info bg-opacity-10 rounded"> <i class="fas fa-university"></i> </div>
<!-- Info -->
<div class="ms-3">
<div class="d-flex">
<h4 class="purecounter fw-bold mb-0" data-purecounter-start="0" data-purecounter-end="400" data-purecounter-delay="100">0</h4>
<span class="h4 mb-0">+</span>
</div>
<div>Universities</div>
</div>
</div>
</div>
</div>
<!-- Counter END -->
</div>
<!-- Left content END -->
<!-- Right content START -->
<div class="col-lg-5 col-xl-6 text-center position-relative">
<!-- SVG decoration -->
<figure class="position-absolute top-100 start-0 translate-middle mt-n6 ms-5 ps-5 d-none d-md-block">
<svg width="297.5px" height="295.9px">
<path stroke="#F99D2B" fill="none" stroke-width="13" d="M286.2,165.5c-9.8,74.9-78.8,128.9-153.9,120.4c-76-8.6-131.4-78.2-122.8-154.2C18.2,55.8,87.8,0.3,163.7,9"></path>
</svg>
</figure>
<!-- Bell icon -->
<div class="icon-lg bg-primary text-white rounded-4 shadow position-absolute top-0 start-100 translate-middle z-index-9 ms-n4 d-none d-md-block">
<i class="fas fa-bell"></i>
</div>
<!-- Live class -->
<div class="p-3 bg-body shadow rounded-4 position-absolute top-0 start-0 translate-middle ms-5 z-index-1 d-none d-xl-block">
<div class="d-flex justify-content-between">
<!-- Avatar -->
<div class="avatar">
<img class="avatar-img rounded-circle shadow" src="assets/images/avatar/04.jpg" alt="avatar">
</div>
<!-- Info -->
<div class="text-start ms-3">
<h6 class="mb-0">Java Development class</h6>
<p class="mb-0 small text-body">Today at 1:00 pm</p>
<!-- Button -->
<a href="#" class="btn btn-sm btn-danger-soft mt-2 mb-0">Join now</a>
</div>
</div>
</div>
<!-- Student review -->
<div class="position-absolute top-100 start-100 translate-middle z-index-1 ms-n6 mt-n5 d-none d-xxl-block">
<div class="bg-body shadow p-4 rounded-3 d-inline-block position-relative z-index-1">
<!-- Icon -->
<div class="icon-lg bg-success rounded-circle position-absolute top-100 start-100 translate-middle">
<i class="bi bi-chat-left-text text-white"></i>
</div>
<!-- Avatar list -->
<ul class="avatar-group mb-2">
<li class="avatar avatar-sm">
<img class="avatar-img rounded-circle" src="assets/images/avatar/01.jpg" alt="avatar">
</li>
<li class="avatar avatar-sm">
<img class="avatar-img rounded-circle" src="assets/images/avatar/02.jpg" alt="avatar">
</li>
<li class="avatar avatar-sm">
<img class="avatar-img rounded-circle" src="assets/images/avatar/03.jpg" alt="avatar">
</li>
<li class="avatar avatar-sm">
<div class="avatar-img rounded-circle bg-primary">
<span class="text-white position-absolute top-50 start-50 translate-middle">+</span>
</div>
</li>
</ul>
<!-- Title -->
<h6 class="mb-1 text-start">15K+ Students</h6>
<!-- Review -->
<ul class="list-inline mb-0">
<li class="list-inline-item me-1 h6 mb-0">4.5</li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star-half-alt text-warning"></i></li>
</ul>
</div>
</div>
<div class=" position-relative">
<!-- Yellow background -->
<div class="bg-warning rounded-4 border border-white border-5 h-200px h-sm-300px shadow"></div>
<!-- Image -->
<img src="assets/images/element/06.png" class="position-absolute bottom-0 start-50 translate-middle-x" alt="">
</div>
</div>
<!-- Right content END -->
</div>
</div>
<!-- Content END -->
</section>
<!-- =======================
Main Banner END -->
<!-- =======================
Course slider START -->
<section>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="bg-light rounded-3 p-4">
<!-- Slider START -->
<div class="tiny-slider arrow-round arrow-creative arrow-blur arrow-hover py-1">
<div class="tiny-slider-inner" data-autoplay="true" data-gutter="80" data-arrow="true" data-dots="false" data-items="5" data-items-lg="3" data-items-md="2" data-items-xs="1">
<!-- Item -->
<div>
<div class="bg-body text-center rounded-2 border py-2 px-1 position-relative">
<img src="assets/images/element/22.svg" class="h-40px" alt="">
<a href="#" class="text-primary-hover stretched-link"><span class="h6 ms-2">Chemistry</span></a>
</div>
</div>
<!-- Item -->
<div>
<div class="bg-body text-center rounded-2 border py-2 px-1 position-relative">
<img src="assets/images/element/23.svg" class="h-40px" alt="">
<a href="#" class="text-primary-hover stretched-link"><span class="h6 ms-2">Physics</span></a>
</div>
</div>
<!-- Item -->
<div>
<div class="bg-body text-center rounded-2 border py-2 px-1 position-relative">
<img src="assets/images/element/21.svg" class="h-40px" alt="">
<a href="#" class="text-primary-hover stretched-link"><span class="h6 ms-2">Technology</span></a>
</div>
</div>
<!-- Item -->
<div>
<div class="bg-body text-center rounded-2 border py-2 px-1 position-relative">
<img src="assets/images/element/24.svg" class="h-40px" alt="">
<a href="#" class="text-primary-hover stretched-link"><span class="h6 ms-2">Health</span></a>
</div>
</div>
<!-- Item -->
<div>
<div class="bg-body text-center rounded-2 border py-2 px-1 position-relative">
<img src="assets/images/element/25.svg" class="h-40px" alt="">
<a href="#" class="text-primary-hover stretched-link"><span class="h6 ms-2">Business</span></a>
</div>
</div>
<!-- Item -->
<div>
<div class="bg-body text-center rounded-2 border py-2 px-1 position-relative">
<img src="assets/images/element/26.svg" class="h-40px" alt="">
<a href="#" class="text-primary-hover stretched-link"><span class="h6 ms-2">Engineer</span></a>
</div>
</div>
</div>
</div>
<!-- Slider END -->
</div>
</div>
</div> <!-- Row END -->
</div>
</section>
<!-- =======================
Course slider END -->
<!-- =======================
Trending course START -->
<section class="pt-0 pt-lg-5">
<div class="container">
<!-- Title -->
<div class="row mb-4">
<div class="col-12">
<h2 class="fs-1 fw-bold">
<span class="position-relative z-index-9">Trending</span>
<span class="position-relative z-index-1">Courses
<!-- SVG START -->
<span class="position-absolute top-50 start-50 translate-middle z-index-n1">
<svg width="163.9px" height="48.6px">
<path class="fill-warning" d="M162.5,19.9c-0.1-0.4-0.2-0.8-0.3-1.3c-0.1-0.3-0.2-0.5-0.4-0.7c-0.3-0.4-0.7-0.7-1.2-0.9l0.1,0l-0.1,0 c0.1-0.4-0.2-0.5-0.5-0.6c0,0-0.1,0-0.1,0c-0.1-0.1-0.2-0.2-0.3-0.3c0-0.3,0-0.6-0.2-0.7c-0.1-0.1-0.3-0.2-0.6-0.2 c0-0.3-0.1-0.5-0.3-0.6c-0.1-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.1,0-0.2,0c-0.5-0.4-1-0.8-1.4-1.1c0,0,0-0.1,0-0.1c0-0.1-0.1-0.1-0.3-0.2 c-0.9-0.5-1.8-1-2.6-1.5c-6-3.6-13.2-4.3-19.8-6.2c-4.1-1.2-8.4-1.4-12.6-2c-5.6-0.8-11.3-0.6-16.9-1.1c-2.3-0.2-4.6-0.3-6.8-0.3 c-1.2,0-2.4-0.2-3.5-0.1c-2.4,0.4-4.9,0.6-7.4,0.7c-0.8,0-1.7,0.1-2.5,0.1c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0 c-0.9,0-1.8,0.1-2.7,0.1c-0.9,0-1.8,0-2.7,0c-5.5-0.3-10.7,0.7-16,1.5c-2.5,0.4-5.1,1-7.6,1.5c-2.8,0.6-5.6,0.7-8.4,1.4 c-4.1,1-8.2,1.9-12.3,2.6c-4,0.7-8,1.6-11.9,2.7c-3.6,1-6.9,2.5-10.1,4.1c-1.9,0.9-3.8,1.7-5.2,3.2c-1.7,1.8-2.8,4-4.2,6 c-1,1.3-0.7,2.5,0.2,3.9c2,3.1,5.5,4.4,9,5.7c1.8,0.7,3.6,1,5.3,1.8c2.3,1.1,4.6,2.3,7.1,3.2c5.2,2,10.6,3.4,16.2,4.4 c3,0.6,6.2,0.9,9.2,1.1c4.8,0.3,9.5,1.1,14.3,0.8c0.3,0.3,0.6,0.3,0.9-0.1c0.7-0.3,1.4,0.1,2.1-0.1c3.7-0.6,7.6-0.3,11.3-0.3 c2.1,0,4.3,0.3,6.4,0.2c4-0.2,8-0.4,11.9-0.8c5.4-0.5,10.9-1,16.2-2.2c0.1,0.2,0.2,0.1,0.2,0c0.5-0.1,1-0.2,1.4-0.3 c0.1,0.1,0.2,0.1,0.3,0c0.5-0.1,1-0.3,1.6-0.3c3.3-0.3,6.7-0.6,10-1c2.1-0.3,4.1-0.8,6.2-1.2c0.2,0.1,0.3,0.1,0.4,0.1 c0.1,0,0.1,0,0.2-0.1c0,0,0.1,0,0.1-0.1c0,0,0-0.1,0.1-0.1c0.2-0.1,0.4-0.1,0.6-0.2c0,0,0.1,0,0.1,0c0.1,0,0.2-0.1,0.3-0.2 c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0.2,0,0.4-0.1,0.5-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.2,0,0.3-0.1,0.3-0.3c0.5-0.2,0.9-0.4,1.4-0.5 c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.2,0.1,0.4,0.1,0.6,0 c0.1,0,0.1-0.1,0.2-0.2c0.1-0.1,0.1-0.2,0.1-0.3c0.5-0.2,1-0.4,1.6-0.7c1.5-0.7,3.1-1.4,4.7-1.9c4.8-1.5,9.1-3.4,12.8-6.3 c0.8-0.2,1.2-0.5,1.6-1c0.2-0.3,0.4-0.6,0.5-0.9c0.5-0.1,0.7-0.2,0.9-0.5c0.2-0.2,0.2-0.5,0.3-0.9c0-0.1,0-0.1,0.1-0.1 c0.5,0,0.6-0.3,0.8-0.5C162.3,24,163,22,162.5,19.9z M4.4,28.7c-0.2-0.4-0.3-0.9-0.1-1.2c1.8-2.9,3.4-6,6.8-8 c2.8-1.7,5.9-2.9,8.9-4.2c4.3-1.8,9-2.5,13.6-3.4c0,0.1,0,0.2,0,0.2l0,0c-1.1,0.4-2.2,0.7-3.2,1.1c-3.3,1.1-6.5,2.1-9.7,3.4 c-4.2,1.6-7.6,4.2-10.1,7.5c-0.5,0.7-1,1.3-1.6,2c-2.2,2.7-1,4.7,1.2,6.9c0.1,0.1,0.3,0.3,0.4,0.5C7.8,32.5,5.5,31.2,4.4,28.7z M158.2,23.8c-1.7,2.8-4.1,5.1-7,6.8c-2,1.2-4.5,2.1-6.9,2.9c-3.3,1-6.4,2.4-9.5,3.7c-3.9,1.6-8.1,2.5-12.4,2.9 c-6,0.5-11.8,1.5-17.6,2.5c-4.8,0.8-9.8,1-14.7,1.5c-5.6,0.6-11.2,0.2-16.8,0.1c-3.1-0.1-6.3,0.3-9.4,0.5c-2.6,0.2-5.2,0.1-7.8-0.1 c-3.9-0.3-7.8-0.5-11.7-0.9c-2.8-0.3-5.5-0.7-8.2-1.4c-3.2-0.8-6.3-1.7-9.5-2.5c-0.5-0.1-1-0.3-1.4-0.5c-0.2-0.1-0.4-0.1-0.6-0.2 c0,0,0.1,0,0.1,0c0.3-0.1,0.5,0,0.7,0.1c0,0,0,0,0,0c3.4,0.5,6.9,1.2,10.3,1.4c0.5,0,1,0,1.5,0c0.5,0,1.3,0.2,1.3-0.3 c0-0.6-0.7-0.9-1.4-0.9c-2.1,0-4.2-0.2-6.3-0.5c-4.6-0.7-9.1-1.5-13.4-3c-2.9-1.1-5.4-2.7-6.9-5.2c-0.5-0.8-0.5-1.6-0.1-2.4 c3.2-6.2,9-9.8,16.3-12.2c6.7-2.2,13.2-4.5,20.2-6c5-1.1,10-1.8,15-2.9c8.5-1.9,17.2-2.4,26-2.7c3.6-0.1,7.1-0.8,10.8-0.6 c8.4,0.7,16.7,1.2,25,2.3c4.5,0.6,9,1.2,13.6,1.7c3.6,0.4,7.1,1.4,10.5,2.8c3.1,1.3,6,2.9,8.5,5C159.1,17.7,159.8,21.1,158.2,23.8z"></path>
</svg>
</span>
<!-- SVG END -->
</span>
</h2>
<p class="mb-0">Find courses that are best for your profession</p>
</div>
</div>
<div class="row g-4">
<!-- Card START -->
<div class="col-md-6 col-xl-4">
<div class="card shadow-hover overflow-hidden">
<div class="position-relative">
<!-- Image -->
<img class="card-img-top" src="assets/images/courses/4by3/16.jpg" alt="Card image">
<!-- Overlay -->
<div class="bg-overlay bg-dark opacity-4"></div>
<div class="card-img-overlay d-flex align-items-start flex-column">
<!-- Card overlay bottom -->
<div class="w-100 mt-auto d-inline-flex">
<div class="d-flex align-items-center bg-white p-2 rounded-2">
<!-- Avatar -->
<div class="avatar avatar-sm me-2">
<img class="avatar-img rounded-1" src="assets/images/avatar/10.jpg" alt="avatar">
</div>
<!-- Avatar info -->
<div>
<h6 class="mb-0"><a href="#" class="text-dark">Larry Lawson</a></h6>
<span class="small">Tutor</span>
</div>
</div>
</div>
</div>
</div>
<!-- Card body -->
<div class="card-body">
<!-- Badge and icon -->
<div class="d-flex justify-content-between mb-3">
<div class="hstack gap-2">
<a href="#" class="badge bg-orange bg-opacity-10 text-orange">All level</a>
<a href="#" class="badge bg-dark text-white">6 month</a>
</div>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-bookmark"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#" class="stretched-link">The Complete Digital Marketing Course - 12 Courses in 1</a></h5>
<!-- Rating -->
<ul class="list-inline">
<li class="list-inline-item h6 fw-light mb-0">4.5</li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star-half-alt text-warning"></i></li>
<li class="list-inline-item ms-2 text-reset">(6,500)</li>
</ul>
<!-- Divider -->
<hr>
<!-- Time -->
<div class="d-flex justify-content-between align-items-center mb-2">
<h4 class="text-success mb-0">$125</h4>
<span class="h6 fw-light mb-0 me-3"><i class="far fa-clock text-danger me-2"></i>6h 56m</span>
</div>
</div>
</div>
</div>
<!-- Card END -->
<!-- Card START -->
<div class="col-md-6 col-xl-4">
<div class="card shadow-hover overflow-hidden">
<div class="position-relative">
<!-- Image -->
<img class="card-img-top" src="assets/images/courses/4by3/14.jpg" alt="Card image">
<!-- Overlay -->
<div class="bg-overlay bg-dark opacity-4"></div>
<div class="card-img-overlay d-flex align-items-start flex-column">
<!-- Card overlay bottom -->
<div class="w-100 mt-auto d-inline-flex">
<div class="d-flex align-items-center bg-white p-2 rounded-2">
<!-- Avatar -->
<div class="avatar avatar-sm me-2">
<img class="avatar-img rounded-1" src="assets/images/avatar/08.jpg" alt="avatar">
</div>
<!-- Avatar info -->
<div>
<h6 class="mb-0"><a href="#" class="text-dark">Billy Vasquez</a></h6>
<span class="small">Developer</span>
</div>
</div>
</div>
</div>
</div>
<!-- Card body -->
<div class="card-body">
<!-- Badge and icon -->
<div class="d-flex justify-content-between mb-3">
<div class="hstack gap-2">
<a href="#" class="badge bg-info bg-opacity-10 text-info">Beginner</a>
<a href="#" class="badge bg-dark text-white">8 month</a>
</div>
<a href="#" class="text-danger"><i class="fas fa-bookmark fa-fw"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#" class="stretched-link">Angular – The Complete Guide (2021 Edition)</a></h5>
<!-- Rating -->
<ul class="list-inline">
<li class="list-inline-item h6 fw-light mb-0">4.5</li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star-half-alt text-warning"></i></li>
<li class="list-inline-item ms-2 text-reset">(5,436)</li>
</ul>
<!-- Divider -->
<hr>
<!-- Time -->
<div class="d-flex justify-content-between align-items-center mb-2">
<h4 class="text-success mb-0">$355</h4>
<span class="h6 fw-light mb-0 me-3"><i class="far fa-clock text-danger me-2"></i>12h 56m</span>
</div>
</div>
</div>
</div>
<!-- Card END -->
<!-- Card START -->
<div class="col-md-6 col-xl-4">
<div class="card shadow-hover overflow-hidden">
<div class="position-relative">
<!-- Image -->
<img class="card-img-top" src="assets/images/courses/4by3/21.jpg" alt="Card image">
<!-- Overlay -->
<div class="bg-overlay bg-dark opacity-4"></div>
<div class="card-img-overlay d-flex align-items-start flex-column">
<!-- Card overlay bottom -->
<div class="w-100 mt-auto d-inline-flex">
<div class="d-flex align-items-center bg-white p-2 rounded-2">
<!-- Avatar -->
<div class="avatar avatar-sm me-2">
<img class="avatar-img rounded-1" src="assets/images/avatar/05.jpg" alt="avatar">
</div>
<!-- Avatar info -->
<div>
<h6 class="mb-0"><a href="#" class="text-dark">Lori Stevens</a></h6>
<span class="small">psychiatrist</span>
</div>
</div>
</div>
</div>
</div>
<!-- Card body -->
<div class="card-body">
<!-- Badge and icon -->
<div class="d-flex justify-content-between mb-3">
<div class="hstack gap-2">
<a href="#" class="badge bg-info bg-opacity-10 text-info">Beginner</a>
<a href="#" class="badge bg-dark text-white">12 month</a>
</div>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-bookmark fa-fw"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#" class="stretched-link">Time Management Mastery: Do More, Stress Less</a></h5>
<!-- Rating -->
<ul class="list-inline">
<li class="list-inline-item h6 fw-light mb-0">3.5</li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star-half-alt text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="far fa-star text-warning"></i></li>
<li class="list-inline-item ms-2 text-reset">(1,254)</li>
</ul>
<!-- Divider -->
<hr>
<!-- Time -->
<div class="d-flex justify-content-between align-items-center mb-2">
<h4 class="text-success mb-0">$280</h4>
<span class="h6 fw-light mb-0 me-3"><i class="far fa-clock text-danger me-2"></i>5h 40m</span>
</div>
</div>
</div>
</div>
<!-- Card END -->
</div>
</div>
</section>
<!-- =======================
Trending course END -->
<!-- =======================
Popular course START -->
<section class="bg-light position-relative overflow-hidden">
<!-- SVG decoration -->
<figure class="position-absolute bottom-0 end-0 mb-n5">
<svg width="822.2px" height="301.9px" viewbox="0 0 822.2 301.9">
<path class="fill-warning" d="M752.5,51.9c-4.5,3.9-8.9,7.8-13.4,11.8c-51.5,45.3-104.8,92.2-171.7,101.4c-39.9,5.5-80.2-3.4-119.2-12.1 c-32.3-7.2-65.6-14.6-98.9-13.9c-66.5,1.3-128.9,35.2-175.7,64.6c-11.9,7.5-23.9,15.3-35.5,22.8c-40.5,26.4-82.5,53.8-128.4,70.7 c-2.1,0.8-4.2,1.5-6.2,2.2L0,301.9c3.3-1.1,6.7-2.3,10.2-3.5c46.1-17,88.1-44.4,128.7-70.9c11.6-7.6,23.6-15.4,35.4-22.8 c46.7-29.3,108.9-63.1,175.1-64.4c33.1-0.6,66.4,6.8,98.6,13.9c39.1,8.7,79.6,17.7,119.7,12.1C634.8,157,688.3,110,740,64.6 c4.5-3.9,9-7.9,13.4-11.8C773.8,35,797,16.4,822.2,1l-0.7-1C796.2,15.4,773,34,752.5,51.9z"></path>
</svg>
</figure>
<!-- SVG decoration -->
<figure class="position-absolute top-0 start-0 mt-n8 me-5 d-none d-lg-block">
<svg width="822.2px" height="301.9px" viewbox="0 0 822.2 301.9">
<path class="fill-purple opacity-3" d="M752.5,51.9c-4.5,3.9-8.9,7.8-13.4,11.8c-51.5,45.3-104.8,92.2-171.7,101.4c-39.9,5.5-80.2-3.4-119.2-12.1 c-32.3-7.2-65.6-14.6-98.9-13.9c-66.5,1.3-128.9,35.2-175.7,64.6c-11.9,7.5-23.9,15.3-35.5,22.8c-40.5,26.4-82.5,53.8-128.4,70.7 c-2.1,0.8-4.2,1.5-6.2,2.2L0,301.9c3.3-1.1,6.7-2.3,10.2-3.5c46.1-17,88.1-44.4,128.7-70.9c11.6-7.6,23.6-15.4,35.4-22.8 c46.7-29.3,108.9-63.1,175.1-64.4c33.1-0.6,66.4,6.8,98.6,13.9c39.1,8.7,79.6,17.7,119.7,12.1C634.8,157,688.3,110,740,64.6 c4.5-3.9,9-7.9,13.4-11.8C773.8,35,797,16.4,822.2,1l-0.7-1C796.2,15.4,773,34,752.5,51.9z"></path>
</svg>
</figure>
<div class="container position-relative">
<!-- Title -->
<div class="row mb-4">
<div class="col-12">
<h2 class="fs-1 fw-bold">
<span class="position-relative z-index-9">Most Popular</span>
<span class="position-relative z-index-1">Courses
<!-- SVG START -->
<span class="position-absolute top-50 start-50 translate-middle z-index-n1">
<svg width="163.9px" height="48.6px">
<path class="fill-warning" d="M162.5,19.9c-0.1-0.4-0.2-0.8-0.3-1.3c-0.1-0.3-0.2-0.5-0.4-0.7c-0.3-0.4-0.7-0.7-1.2-0.9l0.1,0l-0.1,0 c0.1-0.4-0.2-0.5-0.5-0.6c0,0-0.1,0-0.1,0c-0.1-0.1-0.2-0.2-0.3-0.3c0-0.3,0-0.6-0.2-0.7c-0.1-0.1-0.3-0.2-0.6-0.2 c0-0.3-0.1-0.5-0.3-0.6c-0.1-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.1,0-0.2,0c-0.5-0.4-1-0.8-1.4-1.1c0,0,0-0.1,0-0.1c0-0.1-0.1-0.1-0.3-0.2 c-0.9-0.5-1.8-1-2.6-1.5c-6-3.6-13.2-4.3-19.8-6.2c-4.1-1.2-8.4-1.4-12.6-2c-5.6-0.8-11.3-0.6-16.9-1.1c-2.3-0.2-4.6-0.3-6.8-0.3 c-1.2,0-2.4-0.2-3.5-0.1c-2.4,0.4-4.9,0.6-7.4,0.7c-0.8,0-1.7,0.1-2.5,0.1c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0 c-0.9,0-1.8,0.1-2.7,0.1c-0.9,0-1.8,0-2.7,0c-5.5-0.3-10.7,0.7-16,1.5c-2.5,0.4-5.1,1-7.6,1.5c-2.8,0.6-5.6,0.7-8.4,1.4 c-4.1,1-8.2,1.9-12.3,2.6c-4,0.7-8,1.6-11.9,2.7c-3.6,1-6.9,2.5-10.1,4.1c-1.9,0.9-3.8,1.7-5.2,3.2c-1.7,1.8-2.8,4-4.2,6 c-1,1.3-0.7,2.5,0.2,3.9c2,3.1,5.5,4.4,9,5.7c1.8,0.7,3.6,1,5.3,1.8c2.3,1.1,4.6,2.3,7.1,3.2c5.2,2,10.6,3.4,16.2,4.4 c3,0.6,6.2,0.9,9.2,1.1c4.8,0.3,9.5,1.1,14.3,0.8c0.3,0.3,0.6,0.3,0.9-0.1c0.7-0.3,1.4,0.1,2.1-0.1c3.7-0.6,7.6-0.3,11.3-0.3 c2.1,0,4.3,0.3,6.4,0.2c4-0.2,8-0.4,11.9-0.8c5.4-0.5,10.9-1,16.2-2.2c0.1,0.2,0.2,0.1,0.2,0c0.5-0.1,1-0.2,1.4-0.3 c0.1,0.1,0.2,0.1,0.3,0c0.5-0.1,1-0.3,1.6-0.3c3.3-0.3,6.7-0.6,10-1c2.1-0.3,4.1-0.8,6.2-1.2c0.2,0.1,0.3,0.1,0.4,0.1 c0.1,0,0.1,0,0.2-0.1c0,0,0.1,0,0.1-0.1c0,0,0-0.1,0.1-0.1c0.2-0.1,0.4-0.1,0.6-0.2c0,0,0.1,0,0.1,0c0.1,0,0.2-0.1,0.3-0.2 c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0.2,0,0.4-0.1,0.5-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0.2,0,0.3-0.1,0.3-0.3c0.5-0.2,0.9-0.4,1.4-0.5 c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.2,0.1,0.4,0.1,0.6,0 c0.1,0,0.1-0.1,0.2-0.2c0.1-0.1,0.1-0.2,0.1-0.3c0.5-0.2,1-0.4,1.6-0.7c1.5-0.7,3.1-1.4,4.7-1.9c4.8-1.5,9.1-3.4,12.8-6.3 c0.8-0.2,1.2-0.5,1.6-1c0.2-0.3,0.4-0.6,0.5-0.9c0.5-0.1,0.7-0.2,0.9-0.5c0.2-0.2,0.2-0.5,0.3-0.9c0-0.1,0-0.1,0.1-0.1 c0.5,0,0.6-0.3,0.8-0.5C162.3,24,163,22,162.5,19.9z M4.4,28.7c-0.2-0.4-0.3-0.9-0.1-1.2c1.8-2.9,3.4-6,6.8-8 c2.8-1.7,5.9-2.9,8.9-4.2c4.3-1.8,9-2.5,13.6-3.4c0,0.1,0,0.2,0,0.2l0,0c-1.1,0.4-2.2,0.7-3.2,1.1c-3.3,1.1-6.5,2.1-9.7,3.4 c-4.2,1.6-7.6,4.2-10.1,7.5c-0.5,0.7-1,1.3-1.6,2c-2.2,2.7-1,4.7,1.2,6.9c0.1,0.1,0.3,0.3,0.4,0.5C7.8,32.5,5.5,31.2,4.4,28.7z M158.2,23.8c-1.7,2.8-4.1,5.1-7,6.8c-2,1.2-4.5,2.1-6.9,2.9c-3.3,1-6.4,2.4-9.5,3.7c-3.9,1.6-8.1,2.5-12.4,2.9 c-6,0.5-11.8,1.5-17.6,2.5c-4.8,0.8-9.8,1-14.7,1.5c-5.6,0.6-11.2,0.2-16.8,0.1c-3.1-0.1-6.3,0.3-9.4,0.5c-2.6,0.2-5.2,0.1-7.8-0.1 c-3.9-0.3-7.8-0.5-11.7-0.9c-2.8-0.3-5.5-0.7-8.2-1.4c-3.2-0.8-6.3-1.7-9.5-2.5c-0.5-0.1-1-0.3-1.4-0.5c-0.2-0.1-0.4-0.1-0.6-0.2 c0,0,0.1,0,0.1,0c0.3-0.1,0.5,0,0.7,0.1c0,0,0,0,0,0c3.4,0.5,6.9,1.2,10.3,1.4c0.5,0,1,0,1.5,0c0.5,0,1.3,0.2,1.3-0.3 c0-0.6-0.7-0.9-1.4-0.9c-2.1,0-4.2-0.2-6.3-0.5c-4.6-0.7-9.1-1.5-13.4-3c-2.9-1.1-5.4-2.7-6.9-5.2c-0.5-0.8-0.5-1.6-0.1-2.4 c3.2-6.2,9-9.8,16.3-12.2c6.7-2.2,13.2-4.5,20.2-6c5-1.1,10-1.8,15-2.9c8.5-1.9,17.2-2.4,26-2.7c3.6-0.1,7.1-0.8,10.8-0.6 c8.4,0.7,16.7,1.2,25,2.3c4.5,0.6,9,1.2,13.6,1.7c3.6,0.4,7.1,1.4,10.5,2.8c3.1,1.3,6,2.9,8.5,5C159.1,17.7,159.8,21.1,158.2,23.8z"></path>
</svg>
</span>
<!-- SVG END -->
</span>
</h2>
<p class="mb-0">See what course other students and experts in your domain are learning on.</p>
</div>
</div>
<!-- Outer tabs START -->
<ul class="nav nav-pills nav-pill-soft mb-3" id="course-pills-tab" role="tablist">
<!-- Tab item -->
<li class="nav-item me-2 me-sm-5" role="presentation">
<button class="nav-link active" id="course-pills-tab-1" data-bs-toggle="pill" data-bs-target="#course-pills-tab1" type="button" role="tab" aria-controls="course-pills-tab1" aria-selected="true">Art & Design</button>
</li>
<!-- Tab item -->
<li class="nav-item me-2 me-sm-5" role="presentation">
<button class="nav-link" id="course-pills-tab-2" data-bs-toggle="pill" data-bs-target="#course-pills-tab2" type="button" role="tab" aria-controls="course-pills-tab2" aria-selected="false">Development</button>
</li>
<!-- Tab item -->
<li class="nav-item me-2 me-sm-5" role="presentation">
<button class="nav-link" id="course-pills-tab-3" data-bs-toggle="pill" data-bs-target="#course-pills-tab3" type="button" role="tab" aria-controls="course-pills-tab3" aria-selected="false">Data Science</button>
</li>
<!-- Tab item -->
<li class="nav-item me-2 me-sm-5" role="presentation">
<button class="nav-link" id="course-pills-tab-4" data-bs-toggle="pill" data-bs-target="#course-pills-tab4" type="button" role="tab" aria-controls="course-pills-tab4" aria-selected="false">Marketing</button>
</li>
<!-- Tab item -->
<li class="nav-item me-2 me-sm-5" role="presentation">
<button class="nav-link" id="course-pills-tab-5" data-bs-toggle="pill" data-bs-target="#course-pills-tab5" type="button" role="tab" aria-controls="course-pills-tab5" aria-selected="false">Finance</button>
</li>
</ul>
<!-- Outer tabs END -->
<!-- Outer tabs contents START -->
<div class="tab-content mb-0" id="course-pills-tabContent">
<!-- Outer content START -->
<div class="tab-pane fade show active" id="course-pills-tab1" role="tabpanel" aria-labelledby="course-pills-tab-1">
<div class="row">
<div class="col-12">
<div class="row justify-content-between">
<!-- Left content START -->
<div class="col-lg-6">
<!-- Title -->
<h3>Art & Design</h3>
<p class="mb-3">Perceived end knowledge certainly day sweetness why cordially. Ask a quick six seven offer see among. Handsome met debating sir dwelling age material. As style lived he worse dried. Offered related so visitors we private removed.</p>
<!-- Inner tabs START -->
<ul class="nav nav-pills nav-pill-dark-soft mb-0" id="course-pills-tab-inner" role="tablist">
<!-- Tab item -->
<li class="nav-item me-2 me-sm-3" role="presentation">
<button class="nav-link active" id="course-pills-tab-01" data-bs-toggle="pill" data-bs-target="#course-pills-tab01" type="button" role="tab" aria-controls="course-pills-tab01" aria-selected="true">Art & Design</button>
</li>
<!-- Tab item -->
<li class="nav-item me-2 me-sm-3" role="presentation">
<button class="nav-link" id="course-pills-tab-02" data-bs-toggle="pill" data-bs-target="#course-pills-tab02" type="button" role="tab" aria-controls="course-pills-tab02" aria-selected="false">Graphic Design</button>
</li>
<!-- Tab item -->
<li class="nav-item me-2 me-sm-3" role="presentation">
<button class="nav-link" id="course-pills-tab-03" data-bs-toggle="pill" data-bs-target="#course-pills-tab03" type="button" role="tab" aria-controls="course-pills-tab03" aria-selected="false">Web Design</button>
</li>
</ul>
<!-- Inner tabs END -->
<!-- Rating -->
<div class="d-flex align-items-center mb-3">
<h2 class="me-3 mb-0">4.5</h2>
<div class="rating">
<ul class="list-inline mb-0">
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star text-warning"></i></li>
<li class="list-inline-item me-0 small"><i class="fas fa-star-half-alt text-warning"></i></li>
</ul>
<p class="mb-0">Review from our students </p>
</div>
</div>
</div>
<!-- Left content END -->
<!-- Right content START -->
<div class="col-lg-6 position-relative">
<!-- SVG decoration -->
<figure class="position-absolute top-0 start-100 translate-middle z-index-1 mt-5 pt-5 ms-3 d-none d-md-block">
<svg>
<path class="fill-primary" d="m105.32 16.607c-3.262 5.822-12.294 0.748-9.037-5.064 3.262-5.821 12.294-0.747 9.037 5.064zm-6.865 21.74c-5.481 9.779-20.654 1.255-15.182-8.509 5.48-9.779 20.653-1.255 15.182 8.509zm-36.466-11.481c6.134-10.943 23.113-1.404 16.99 9.522-6.133 10.943-23.113 1.404-16.99-9.522zm5.08-24.019c3.002-5.355 11.311-0.687 8.314 4.66-3.001 5.355-11.31 0.687-8.314-4.66zm-4.357 58.171c6.507-0.155 10.785 7.113 7.628 12.746-3.156 5.634-11.589 5.779-14.853 0.148-0.108-0.186-0.215-0.371-0.322-0.556-3.091-5.332 0.744-12.175 6.905-12.322 0.214-5e-3 0.428-0.011 0.642-0.016zm-14.997-8.34c-2.57 0.843-5.367 0.264-7.715-0.917-2.262-1.137-4.134-3.706-4.81-6.102-0.706-2.505-0.358-5.443 0.914-7.712 1.344-2.399 3.54-3.965 6.101-4.806 2.571-0.843 5.368-0.263 7.715 0.917 2.262 1.138 4.134 3.706 4.81 6.102 0.706 2.506 0.358 5.444-0.913 7.713-1.345 2.398-3.541 3.965-6.102 4.805zm-4.824-41.632c3.915-6.985 14.753-0.896 10.845 6.078-3.915 6.985-14.753 0.896-10.845-6.078zm-11.502 89.749c-1.138 1.37-3.658 2.357-5.408 2.314-1.387-0.035-2.719-0.374-3.958-0.997-1.529-0.769-2.655-2.243-3.307-3.773-0.615-1.445-0.989-3.345-0.459-4.903 0.039-0.113 0.077-0.227 0.116-0.341 0.929-2.724 2.63-4.878 5.509-5.688 1.943-0.547 4.222-0.276 5.984 0.711 1.861 1.043 3.077 2.746 3.729 4.732 0.922 2.805-0.2 5.531-1.976 7.668-0.077 0.093-0.153 0.185-0.23 0.277zm-7.657-31.402c2.806-5.006 10.573-0.642 7.772 4.356-2.806 5.006-10.573 0.642-7.772-4.356zm-3.281-18.47c3.262-5.821 12.294-0.747 9.037 5.065-3.262 5.821-12.294 0.747-9.037-5.065zm-4.63-25.623c3.849-6.869 14.506-0.881 10.663 5.976-3.849 6.869-14.507 0.882-10.663-5.976zm-0.416 16.398c-3.785 6.753-14.261 0.867-10.483-5.874 3.784-6.753 14.261-0.867 10.483 5.874zm-6.41 13.04c-2.871 5.122-10.819 0.657-7.953-4.457 2.871-5.123 10.819-0.658 7.953 4.457zm3.665 16.114c2.701 1.359 3.576 5.061 2.147 7.612-1.533 2.735-4.903 3.506-7.613 2.143-2.702-1.359-3.577-5.061-2.147-7.612 1.532-2.735 4.903-3.506 7.613-2.143zm6.319 39.375c-2.936 5.239-11.064 0.673-8.133-4.558 2.936-5.239 11.064-0.672 8.133 4.558zm30.789-17.287c-3.98 7.101-14.998 0.911-11.025-6.179 3.98-7.102 14.998-0.912 11.025 6.179zm7.01 23.118c-5.807 10.362-21.883 1.33-16.086-9.015 5.807-10.361 21.884-1.329 16.086 9.015z" fill="#f00" fill-rule="evenodd"></path>
</svg>
</figure>
<!-- Inner tab content START -->
<div class="tab-content mb-0 pb-0" id="course-pills-tabContent1">
<!-- Inner content item START -->
<div class="tab-pane fade show active" id="course-pills-tab01" role="tabpanel" aria-labelledby="course-pills-tab-01">
<!-- Card START -->
<div class="card p-2 pb-0 shadow">
<div class="overflow-hidden h-xl-200px">
<img src="assets/images/about/13.jpg" class="card-img-top" alt="course image">
<div class="card-img-overlay d-flex p-3">
<!-- Video button and link -->
<div class="m-auto">
<a href="https://www.youtube.com/embed/tXHviS-4ygo" class="btn btn-lg text-danger btn-round btn-white-shadow mb-0" data-glightbox="" data-gallery="course-video">
<i class="fas fa-play"></i>
</a>
</div>
</div>
</div>
<!-- Card body -->
<div class="card-body">
<!-- Price and cart -->
<div class="row g-3">
<!-- Item -->
<div class="col-sm-4 col-lg-6 col-xl-4">
<div class="d-flex align-items-center">
<a href="#" class="btn btn-orange rounded-2 me-3 mb-0"><i class="bi bi-cart3 fs-5"></i></a>
<div>
<!-- Badge -->
<span class="badge bg-info text-white mb-1">6 months</span>
<h5 class="mb-0">$134</h5>
</div>
</div>
</div>
<!-- Item -->
<div class="col-sm-4 col-lg-6 col-xl-4">
<div class="d-flex align-items-center">
<a href="#" class="btn btn-orange rounded-2 me-3 mb-0"><i class="bi bi-cart3 fs-5"></i></a>
<div>
<!-- Badge -->
<span class="badge bg-info text-white mb-1">12 months</span>
<h5 class="mb-0">$355</h5>
</div>
</div>
</div>
<!-- Item -->
<div class="col-sm-4 col-lg-6 col-xl-4">
<div class="d-flex align-items-center">
<a href="#" class="btn btn-orange rounded-2 me-3 mb-0"><i class="bi bi-cart3 fs-5"></i></a>
<div>
<!-- Badge -->
<span class="badge bg-info text-white mb-1">18 months</span>
<h5 class="mb-0">$654</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card END -->
</div>
<!-- Inner content item END -->
<!-- Inner content item START -->
<div class="tab-pane fade" id="course-pills-tab02" role="tabpanel" aria-labelledby="course-pills-tab-02">
<!-- Card START -->
<div class="card p-2 pb-0 shadow">
<div class="overflow-hidden h-xl-200px">
<img src="assets/images/about/11.jpg" class="card-img-top" alt="course image">
<div class="card-img-overlay d-flex p-3">
<!-- Video button and link -->
<div class="m-auto">
<a href="https://www.youtube.com/embed/tXHviS-4ygo" class="btn btn-lg text-danger btn-round btn-white-shadow mb-0" data-glightbox="" data-gallery="course-video">
<i class="fas fa-play"></i>
</a>
</div>
</div>
</div>
<!-- Card body -->
<div class="card-body">
<!-- Price and cart -->
<div class="row g-3">
<!-- Item -->
<div class="col-sm-4 col-lg-6 col-xl-4">
<div class="d-flex align-items-center">
<a href="#" class="btn btn-orange rounded-2 me-3 mb-0"><i class="bi bi-cart3 fs-5"></i></a>
<div>
<!-- Badge -->
<span class="badge bg-info text-white mb-1">6 month</span>
<h5 class="mb-0">$150</h5>
</div>
</div>
</div>
<!-- Item -->
<div class="col-sm-4 col-lg-6 col-xl-4">
<div class="d-flex align-items-center">
<a href="#" class="btn btn-orange rounded-2 me-3 mb-0"><i class="bi bi-cart3 fs-5"></i></a>
<div>
<!-- Badge -->
<span class="badge bg-info text-white mb-1">12 month</span>
<h5 class="mb-0">$385</h5>
</div>
</div>
</div>
<!-- Item -->
<div class="col-sm-4 col-lg-6 col-xl-4">
<div class="d-flex align-items-center">
<a href="#" class="btn btn-orange rounded-2 me-3 mb-0"><i class="bi bi-cart3 fs-5"></i></a>
<div>
<!-- Badge -->
<span class="badge bg-info text-white mb-1">18 month</span>
<h5 class="mb-0">$800</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card END -->
</div>
<!-- Inner content item END -->
<!-- Inner content item START -->
<div class="tab-pane fade" id="course-pills-tab03" role="tabpanel" aria-labelledby="course-pills-tab-03">
<!-- Card START -->
<div class="card p-2 shadow">
<div class="overflow-hidden h-xl-200px">
<img src="assets/images/about/14.jpg" class="card-img-top" alt="course image">
<div class="card-img-overlay d-flex p-3">
<!-- Video button and link -->
<div class="m-auto">
<a href="https://www.youtube.com/embed/tXHviS-4ygo" class="btn btn-lg text-danger btn-round btn-white-shadow mb-0" data-glightbox="" data-gallery="course-video">
<i class="fas fa-play"></i>
</a>
</div>
</div>
</div>
<!-- Card body -->
<div class="card-body px-2">
<p class="mb-0"><span class="h6 mb-0 fw-bold me-1">Note:</span>Before you learning this video you need to first learn Beginner course</p>
</div>
</div>
</div>