-
Notifications
You must be signed in to change notification settings - Fork 1
/
course-grid.html
1138 lines (1068 loc) · 52.6 KB
/
course-grid.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 href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- 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/choices/css/choices.min.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">
<!-- 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" 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" 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">example@gmail.com</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>
<!-- =======================
Page Banner START -->
<section class="bg-blue align-items-center d-flex" style="background:url(assets/images/pattern/04.png) no-repeat center center; background-size:cover;">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<!-- Title -->
<h1 class="text-white">Course Grid Classic</h1>
<!-- Breadcrumb -->
<div class="d-flex justify-content-center">
<nav aria-label="breadcrumb">
<ol class="breadcrumb breadcrumb-dark breadcrumb-dots mb-0">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Courses classic</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
</section>
<!-- =======================
Page Banner END -->
<!-- =======================
Page content START -->
<section class="py-5">
<div class="container">
<div class="row">
<!-- Main content START -->
<div class="col-lg-8 col-xl-9">
<!-- Search option START -->
<div class="row mb-4 align-items-center">
<!-- Search bar -->
<div class="col-xl-6">
<form class="bg-body shadow rounded p-2">
<div class="input-group input-borderless">
<input class="form-control me-1" type="search" placeholder="Find your course">
<button type="button" class="btn btn-primary mb-0 rounded z-index-1"><i class="fas fa-search"></i></button>
</div>
</form>
</div>
<!-- Select option -->
<div class="col-xl-3 mt-3 mt-xl-0">
<form class="bg-body shadow rounded p-2 input-borderless">
<select class="form-select form-select-sm js-choice border-0" aria-label=".form-select-sm">
<option value="">Most Viewed</option>
<option>Recently search</option>
<option>Most popular</option>
<option>Top rated</option>
</select>
</form>
</div>
<!-- Content -->
<div class="col-12 col-xl-3 d-flex justify-content-between align-items-center mt-3 mt-xl-0">
<!-- Advanced filter responsive toggler START -->
<button class="btn btn-primary mb-0 d-lg-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar">
<i class="fas fa-sliders-h me-1"></i> Show filter
</button>
<!-- Advanced filter responsive toggler END -->
<p class="mb-0 text-end">Showing 1-7 of 32 result</p>
</div>
</div>
<!-- Search option END -->
<!-- Course Grid START -->
<div class="row g-4">
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/08.jpg" class="card-img-top" alt="course image">
<!-- Card body -->
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-purple bg-opacity-10 text-purple">All level</a>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Sketch from A to Z: for app designer</a></h5>
<p class="mb-2 text-truncate-2">Proposal indulged no do sociable he throwing settling.</p>
<!-- Rating star -->
<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="far fa-star text-warning"></i></li>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.0/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>12h 56m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>15 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/02.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-success bg-opacity-10 text-success">Beginner</a>
<a href="#" class="text-danger"><i class="fas fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Graphic Design Masterclass</a></h5>
<p class="mb-2 text-truncate-2">Rooms oh fully taken by worse do Points afraid but may end Rooms Points afraid but may end Rooms</p>
<!-- Rating star -->
<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>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>9h 56m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>65 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/03.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-success bg-opacity-10 text-success">Beginner</a>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Create a Design System in Figma</a></h5>
<p class="mb-2 text-truncate-2">Rooms oh fully taken by worse do. Points afraid but may end afraid but may end.</p>
<!-- Rating star -->
<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>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>5h 56m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>32 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/07.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-success bg-opacity-10 text-success">Beginner</a>
<a href="#" class="text-danger"><i class="fas fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Deep Learning with React-Native </a></h5>
<p class="mb-2 text-truncate-2">Far advanced settling say finished raillery. Offered chiefly farther.</p>
<!-- Rating star -->
<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="far fa-star text-warning"></i></li>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.0/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>18h 56m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>99 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/11.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-purple bg-opacity-10 text-purple">All level</a>
<a href="#" class="text-danger"><i class="fas fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Build Responsive Websites with HTML</a></h5>
<p class="mb-2 text-truncate-2">Far advanced settling say finished raillery. Offered chiefly farther.</p>
<!-- Rating star -->
<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="far fa-star text-warning"></i></li>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.0/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>15h 30m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>68 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/12.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-success bg-opacity-10 text-success">Beginner</a>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Build Websites with CSS</a></h5>
<p class="text-truncate-2 mb-2">Far advanced settling say finished raillery. Offered chiefly farther.</p>
<!-- Rating star -->
<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>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>36h 30m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>72 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/05.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-success bg-opacity-10 text-success">Beginner</a>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">The Complete Web Development in python</a></h5>
<p class="text-truncate-2 mb-2">Mention Mr manners opinion if garrets enabled.</p>
<!-- Rating star -->
<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>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>10h 00m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>26 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/06.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-info bg-opacity-10 text-info">Intermediate</a>
<a href="#" class="h6 fw-light mb-0"><i class="far fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Angular – The Complete Guider</a></h5>
<p class="text-truncate-2 mb-2">Rooms oh fully taken by worse do. Points afraid but may end.</p>
<!-- Rating star -->
<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>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>9h 32m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>42 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
<!-- Card item START -->
<div class="col-sm-6 col-xl-4">
<div class="card shadow h-100">
<!-- Image -->
<img src="assets/images/courses/4by3/10.jpg" class="card-img-top" alt="course image">
<div class="card-body pb-0">
<!-- Badge and favorite -->
<div class="d-flex justify-content-between mb-2">
<a href="#" class="badge bg-info bg-opacity-10 text-info">Intermediate</a>
<a href="#" class="text-danger"><i class="fas fa-heart"></i></a>
</div>
<!-- Title -->
<h5 class="card-title"><a href="#">Bootstrap 5 From Scratch</a></h5>
<p class="text-truncate-2 mb-2">Far advanced settling say finished raillery. Offered chiefly farther.</p>
<!-- Rating star -->
<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>
<li class="list-inline-item ms-2 h6 fw-light mb-0">4.5/5.0</li>
</ul>
</div>
<!-- Card footer -->
<div class="card-footer pt-0 pb-3">
<hr>
<div class="d-flex justify-content-between">
<span class="h6 fw-light mb-0"><i class="far fa-clock text-danger me-2"></i>25h 56m</span>
<span class="h6 fw-light mb-0"><i class="fas fa-table text-orange me-2"></i>38 lectures</span>
</div>
</div>
</div>
</div>
<!-- Card item END -->
</div>
<!-- Course Grid END -->
<!-- Pagination START -->
<div class="col-12">
<nav class="mt-4 d-flex justify-content-center" aria-label="navigation">
<ul class="pagination pagination-primary-soft rounded mb-0">
<li class="page-item mb-0"><a class="page-link" href="#" tabindex="-1"><i class="fas fa-angle-double-left"></i></a></li>
<li class="page-item mb-0"><a class="page-link" href="#">1</a></li>
<li class="page-item mb-0 active"><a class="page-link" href="#">2</a></li>
<li class="page-item mb-0"><a class="page-link" href="#">..</a></li>
<li class="page-item mb-0"><a class="page-link" href="#">6</a></li>
<li class="page-item mb-0"><a class="page-link" href="#"><i class="fas fa-angle-double-right"></i></a></li>
</ul>
</nav>
</div>
<!-- Pagination END -->
</div>
<!-- Main content END -->
<!-- Right sidebar START -->
<div class="col-lg-4 col-xl-3 pt-5 pt-lg-0">
<!-- Responsive offcanvas body START -->
<nav class="navbar navbar-light navbar-expand-lg mx-0">
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header bg-light">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">Advance Filter</h5>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body p-3 p-lg-0">
<form>
<!-- Category START -->
<div class="card card-body shadow p-4 mb-4">
<!-- Title -->
<h4 class="mb-3">Category</h4>
<!-- Category group -->
<div class="col-12">
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault9">
<label class="form-check-label" for="flexCheckDefault9">All</label>
</div>
<span class="small">(1256)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault10">
<label class="form-check-label" for="flexCheckDefault10">Development</label>
</div>
<span class="small">(365)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault11">
<label class="form-check-label" for="flexCheckDefault11">Design</label>
</div>
<span class="small">(156)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault12">
<label class="form-check-label" for="flexCheckDefault12">Accounting</label>
</div>
<span class="small">(65)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault17">
<label class="form-check-label" for="flexCheckDefault17">Translation</label>
</div>
<span class="small">(245)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault13">
<label class="form-check-label" for="flexCheckDefault13">Finance</label>
</div>
<span class="small">(184)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault14">
<label class="form-check-label" for="flexCheckDefault14">Legal</label>
</div>
<span class="small">(65)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault15">
<label class="form-check-label" for="flexCheckDefault15">Photography</label>
</div>
<span class="small">(99)</span>
</div>
<!-- Collapse body -->
<div class="collapse multi-collapse" id="multiCollapseExample1">
<div class="card card-body p-0">
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault16">
<label class="form-check-label" for="flexCheckDefault16">Writing</label>
</div>
<span class="small">(178)</span>
</div>
<!-- Checkbox -->
<div class="d-flex justify-content-between align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault18">
<label class="form-check-label" for="flexCheckDefault18">Marketing</label>
</div>
<span class="small">(104)</span>
</div>
</div>
</div>
<!-- Collapse button -->
<a class=" p-0 mb-0 mt-2 btn-more d-flex align-items-center" data-bs-toggle="collapse" href="#multiCollapseExample1" role="button" aria-expanded="false" aria-controls="multiCollapseExample1">
See <span class="see-more ms-1">more</span><span class="see-less ms-1">less</span><i class="fas fa-angle-down ms-2"></i>
</a>
</div>
</div>
<!-- Category END -->
<!-- Price START -->
<div class="card card-body shadow p-4 mb-4">
<!-- Title -->
<h4 class="mb-3">Price Level</h4>
<ul class="list-inline mb-0">
<!-- Rent -->
<li class="list-inline-item">
<input type="radio" class="btn-check" name="options" id="option1">
<label class="btn btn-light btn-primary-soft-check" for="option1">All</label>
</li>
<!-- Sale -->
<li class="list-inline-item">
<input type="radio" class="btn-check" name="options" id="option2">
<label class="btn btn-light btn-primary-soft-check" for="option2">Free</label>
</li>
<!-- Buy -->
<li class="list-inline-item">
<input type="radio" class="btn-check" name="options" id="option3">
<label class="btn btn-light btn-primary-soft-check" for="option3">Paid</label>
</li>
</ul>
</div>
<!-- Price END -->
<!-- Skill level START -->
<div class="card card-body shadow p-4 mb-4">
<!-- Title -->
<h4 class="mb-3">Skill level</h4>
<ul class="list-inline mb-0">
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-12">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-12">All levels</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-9">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-9">Beginner</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-10">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-10">Intermediate</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-11">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-11">Advanced</label>
</li>
</ul>
</div>
<!-- Skill level END -->
<!-- Language START -->
<div class="card card-body shadow p-4 mb-4">
<!-- Title -->
<h4 class="mb-3">Language</h4>
<ul class="list-inline mb-0 g-3">
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-2">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-2">English</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-3">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-3">Francas</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-4">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-4">Hindi</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-5">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-5">Russian</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-6">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-6">Spanish</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-7">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-7">Bengali</label>
</li>
<!-- Item -->
<li class="list-inline-item mb-2">
<input type="checkbox" class="btn-check" id="btn-check-8">
<label class="btn btn-light btn-primary-soft-check" for="btn-check-8">Portuguese</label>
</li>
</ul>
</div>
<!-- Language END -->
</form><!-- Form End -->
</div>
<!-- Button -->
<div class="d-grid p-2 p-lg-0 text-center">
<button class="btn btn-primary mb-0">Filter Results</button>
</div>
</div>
</nav>
<!-- Responsive offcanvas body END -->
</div>
<!-- Right sidebar END -->
</div><!-- Row END -->
</div>
</section>
<!-- =======================
Page content END -->
<!-- =======================
Newsletter START -->
<section class="pt-0">
<div class="container position-relative overflow-hidden">
<!-- SVG decoration -->
<figure class="position-absolute top-50 start-50 translate-middle ms-3">
<svg>
<path d="m496 22.999c0 10.493-8.506 18.999-18.999 18.999s-19-8.506-19-18.999 8.507-18.999 19-18.999 18.999 8.506 18.999 18.999z" fill="#fff" fill-rule="evenodd" opacity=".502"></path>
<path d="m775 102.5c0 5.799-4.701 10.5-10.5 10.5-5.798 0-10.499-4.701-10.499-10.5 0-5.798 4.701-10.499 10.499-10.499 5.799 0 10.5 4.701 10.5 10.499z" fill="#fff" fill-rule="evenodd" opacity=".102"></path>
<path d="m192 102c0 6.626-5.373 11.999-12 11.999s-11.999-5.373-11.999-11.999c0-6.628 5.372-12 11.999-12s12 5.372 12 12z" fill="#fff" fill-rule="evenodd" opacity=".2"></path>
<path d="m20.499 10.25c0 5.66-4.589 10.249-10.25 10.249-5.66 0-10.249-4.589-10.249-10.249-0-5.661 4.589-10.25 10.249-10.25 5.661-0 10.25 4.589 10.25 10.25z" fill="#fff" fill-rule="evenodd" opacity=".2"></path>
</svg>
</figure>
<!-- Svg decoration -->
<figure class="position-absolute bottom-0 end-0 mb-5 d-none d-sm-block">
<svg class="rotate-130" width="258.7px" height="86.9px" viewbox="0 0 258.7 86.9">
<path stroke="white" fill="none" stroke-width="2" d="M0,7.2c16,0,16,25.5,31.9,25.5c16,0,16-25.5,31.9-25.5c16,0,16,25.5,31.9,25.5c16,0,16-25.5,31.9-25.5 c16,0,16,25.5,31.9,25.5c16,0,16-25.5,31.9-25.5c16,0,16,25.5,31.9,25.5s16-25.5,31.9-25.5"></path>
<path stroke="white" fill="none" stroke-width="2" d="M0,57c16,0,16,25.5,31.9,25.5c16,0,16-25.5,31.9-25.5c16,0,16,25.5,31.9,25.5c16,0,16-25.5,31.9-25.5 c16,0,16,25.5,31.9,25.5c16,0,16-25.5,31.9-25.5c16,0,16,25.5,31.9,25.5s16-25.5,31.9-25.5"></path>
</svg>
</figure>
<div class="bg-grad-pink p-3 p-sm-5 rounded-3">
<div class="row justify-content-center position-relative">
<!-- SVG decoration -->
<figure class="fill-white opacity-1 position-absolute top-50 start-0 translate-middle-y">
<svg width="141px" height="141px">
<path d="M140.520,70.258 C140.520,109.064 109.062,140.519 70.258,140.519 C31.454,140.519 -0.004,109.064 -0.004,70.258 C-0.004,31.455 31.454,-0.003 70.258,-0.003 C109.062,-0.003 140.520,31.455 140.520,70.258 Z"></path>
</svg>
</figure>
<!-- Newsletter -->
<div class="col-12 position-relative my-2 my-sm-3">
<div class="row align-items-center">
<!-- Title -->
<div class="col-lg-6">
<h3 class="text-white mb-3 mb-lg-0">Are you ready for a more great Conversation?</h3>
</div>
<!-- Input item -->
<div class="col-lg-6 text-lg-end">
<form class="bg-body rounded p-2">
<div class="input-group">
<input class="form-control border-0 me-1" type="email" placeholder="Type your email here">
<button type="button" class="btn btn-dark mb-0 rounded">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</div> <!-- Row END -->
</div>
</div>
</section>
<!-- =======================
Newsletter END -->
</main>
<!-- **************** MAIN CONTENT END **************** -->
<!-- =======================
Footer START -->