-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog-detail.html
1207 lines (1166 loc) · 76.6 KB
/
blog-detail.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="description" content="Eduport- LMS, Education and Course Theme">
<!-- Favicon -->
<link rel="shortcut icon" href="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="css/all.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="js/tiny-slider.css">
<link rel="stylesheet" type="text/css" href="vendor/glightbox/css/glightbox.css">
<!-- Theme CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- Header START -->
<!-- Header START -->
<header class="navbar-light navbar-sticky">
<!-- Nav START -->
<nav class="navbar navbar-expand-xl z-index-9">
<div class="container">
<!-- Logo START -->
<a class="navbar-brand" href="index.html">
<img class="light-mode-item navbar-brand-item" src="images/logo-light.png" alt="logo">
<img class="dark-mode-item navbar-brand-item" src="images/logo-dark.png" 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 collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<!-- Nav item 1 Demos -->
<li class="nav-item dropdown dropdown-menu-shadow-stacked">
<a class="nav-link bg-primary bg-opacity-10 rounded-3 text-primary px-3 py-3 py-xl-0" href="#" id="categoryMenu" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="bi bi-ui-radios-grid me-2"></i><span>Category</span></a>
<ul class="dropdown-menu" aria-labelledby="categoryMenu">
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Development</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="#">Web Development</a>
<ul class="dropdown-menu" data-bs-popper="none">
<li> <a class="dropdown-item" href="#">CSS</a> </li>
<li> <a class="dropdown-item" href="#">JavaScript</a> </li>
<li> <a class="dropdown-item" href="#">Angular</a> </li>
<li> <a class="dropdown-item" href="#">PHP</a> </li>
<li> <a class="dropdown-item" href="#">HTML</a> </li>
<li> <a class="dropdown-item" href="#">React</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Data Science</a> </li>
<li> <a class="dropdown-item" href="#">Mobile Development</a> </li>
<li> <a class="dropdown-item" href="#">Programing Language</a> </li>
<li> <a class="dropdown-item" href="#">Software Testing</a> </li>
<li> <a class="dropdown-item" href="#">Software Engineering</a> </li>
<li> <a class="dropdown-item" href="#">Software Development Tools</a> </li>
</ul>
</li>
<li> <a class="dropdown-item" href="#">Design</a></li>
<!-- Dropdown submenu -->
<li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Marketing</a>
<div class="dropdown-menu dropdown-menu-start dropdown-width-lg" data-bs-popper="none">
<div class="row p-4">
<!-- Dropdown column item -->
<div class="col-xl-6 col-xxl-4 mb-4 mb-xl-0">
<h6 class="mb-0">Get started</h6>
<hr>
<!-- Divider -->
<ul class="list-unstyled">
<li> <a class="dropdown-item" href="#">Market Research</a> </li>
<li> <a class="dropdown-item" href="#">Advertising</a> </li>
<li> <a class="dropdown-item" href="#">Consumer Behavior</a> </li>
<li> <a class="dropdown-item" href="#">Digital Marketing</a> </li>
<li> <a class="dropdown-item" href="#">Marketing Ethics</a> </li>
<li> <a class="dropdown-item" href="#">Social Media Marketing</a> </li>
<li> <a class="dropdown-item" href="#">Public Relations</a> </li>
<li> <a class="dropdown-item" href="#">Advertising</a> </li>
<li> <a class="dropdown-item" href="#">Decision Science</a> </li>
<li> <a class="dropdown-item" href="#">SEO</a> </li>
<li> <a class="dropdown-item" href="#">Business Marketing</a> </li>
</ul>
</div>
<!-- Dropdown column item -->
<div class="col-xl-6 col-xxl-4 mb-4 mb-xl-0">
<h6 class="mb-0">Degree</h6>
<hr>
<!-- Divider -->
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-01.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">American Century University, New Mexico</a>
<p class="mb-0 small">Bachelor of computer science</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-02.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">Indiana College of - Bloomington</a>
<p class="mb-0 small">Masters of computer science</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-03.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">College of South Florida</a>
<p class="mb-0 small">Medical science college</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<img src="fonts/uni-logo-01.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">Andeerson Campus</a>
<p class="mb-0 small">Bachelor of computer science</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex position-relative">
<img src="fonts/uni-logo-04.svg" class="icon-md" alt>
<div class="ms-3">
<a class="stretched-link h6 mb-0" href="#">University of South California</a>
<p class="mb-0 small">Masters of business development</p>
</div>
</div>
</div>
<!-- Dropdown column item -->
<div class="col-xl-6 col-xxl-4">
<h6 class="mb-0">Certificate</h6>
<hr>
<!-- Divider -->
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0"><i class="fab fa-fw fa-google text-google-icon"></i></h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Google SEO certificate</a>
<p class="mb-0 small">No prerequisites</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0"><i class="fab fa-fw fa-linkedin-in text-linkedin"></i></h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Business Development Executive(BDE)</a>
<p class="mb-0 small">No prerequisites</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0"><i class="fab fa-fw fa-facebook text-facebook"></i></h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Facebook social media marketing</a>
<p class="mb-0 small">Expert advice</p>
</div>
</div>
<!-- Dropdown item -->
<div class="d-flex mb-4 position-relative">
<h2 class="mb-0"><i class="fas fa-fw fa-basketball-ball text-dribbble"></i></h2>
<div class="ms-2">
<a class="stretched-link h6 mb-0" href="#">Creative graphics design</a>
<p class="mb-0 small">No prerequisites</p>
</div>
</div>
</div>
</div>
<!-- Advertisement -->
<div class="row">
<div class="col-12">
<div class="card bg-blue rounded-0 rounded-bottom p-3 position-relative overflow-hidden" style="background:url(images/05.png) no-repeat center center; background-size:cover;">
<!-- SVG decoration -->
<figure class="position-absolute bottom-0 end-0 mb-n4 d-none d-md-block">
<svg width="92.6px" height="135.2px">
<path class="fill-white" d="M71.5,131.4c0.2,0.1,0.4,0.1,0.6-0.1c0,0,0.6-0.7,1.6-1.9c0.2-0.2,0.1-0.5-0.1-0.7c-0.2-0.2-0.5-0.1-0.7,0.1 c-1,1.2-1.6,1.8-1.6,1.8c-0.2,0.2-0.2,0.5,0,0.7C71.4,131.3,71.4,131.4,71.5,131.4z"/>
<path class="fill-white" d="M76,125.5c-0.2-0.2-0.3-0.5-0.1-0.7c1-1.4,1.9-2.8,2.8-4.2c0.1-0.2,0.4-0.3,0.7-0.2c0.2,0.1,0.3,0.4,0.2,0.7 c-0.9,1.4-1.8,2.9-2.8,4.2C76.6,125.6,76.3,125.6,76,125.5C76.1,125.5,76.1,125.5,76,125.5z M81.4,116.9 c-0.2-0.1-0.3-0.4-0.2-0.7c0.2-0.5,0.5-0.9,0.7-1.4c0.5-1.1,1-2.1,1.5-3.2c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6 c-0.5,1.1-1,2.1-1.5,3.2c-0.2,0.5-0.5,0.9-0.7,1.4C81.9,117,81.6,117,81.4,116.9C81.4,116.9,81.4,116.9,81.4,116.9z M85.1,107.1 c0.5-1.6,1-3.2,1.3-4.8c0.1-0.3,0.3-0.4,0.6-0.4c0.3,0.1,0.4,0.3,0.4,0.6c-0.4,1.6-0.8,3.3-1.3,4.9c-0.1,0.3-0.4,0.4-0.6,0.3 c0,0,0,0-0.1,0C85.1,107.6,85,107.3,85.1,107.1z M47.3,83c-1.5-1.1-2.5-2.5-3.1-4.2c-0.1-0.3,0-0.5,0.3-0.6 c0.3-0.1,0.5,0,0.6,0.3c0.5,1.5,1.5,2.7,2.8,3.7c0.2,0.2,0.3,0.5,0.1,0.7C47.9,83.1,47.6,83.1,47.3,83C47.4,83,47.4,83,47.3,83z M51.7,84.6c0-0.3,0.3-0.5,0.5-0.4c1.4,0.2,2.9-0.3,4.3-1.4c0.2-0.2,0.5-0.1,0.7,0.1c0.2,0.2,0.1,0.5-0.1,0.7 c-1.6,1.2-3.4,1.8-5,1.6c-0.1,0-0.1,0-0.2,0C51.8,85,51.7,84.8,51.7,84.6z M87.2,97.4c0.2-1.7,0.2-3.3,0.2-5 c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0.1,1.7,0,3.4-0.2,5.1c0,0.3-0.3,0.5-0.5,0.4c-0.1,0-0.1,0-0.2,0 C87.3,97.8,87.1,97.6,87.2,97.4z M43.7,73.6c0.2-1.6,0.7-3.2,1.5-4.8l0.1-0.1c0.1-0.2,0.4-0.3,0.7-0.2c0,0,0,0,0,0 c0.2,0.1,0.3,0.4,0.2,0.7l-0.1,0.1c-0.7,1.5-1.2,3-1.4,4.5c0,0.3-0.3,0.5-0.6,0.4c-0.1,0-0.1,0-0.2,0 C43.8,74,43.7,73.8,43.7,73.6z M60,79.8c-0.2-0.1-0.3-0.5-0.1-0.7c0.4-0.6,0.8-1.3,1.1-2c0.4-0.8,0.7-1.6,1-2.4 c0.1-0.3,0.4-0.4,0.6-0.3c0.3,0.1,0.4,0.4,0.3,0.6c-0.3,0.9-0.7,1.7-1.1,2.5c-0.4,0.7-0.8,1.4-1.2,2.1C60.5,79.9,60.2,80,60,79.8 C60,79.9,60,79.8,60,79.8z M86.8,87.5c-0.3-1.6-0.7-3.2-1.2-4.8c-0.1-0.3,0.1-0.5,0.3-0.6c0.3-0.1,0.5,0.1,0.6,0.3 c0.5,1.6,1,3.3,1.2,4.9c0,0.3-0.1,0.5-0.4,0.6c-0.1,0-0.2,0-0.3,0C87,87.7,86.9,87.6,86.8,87.5z M48.2,65.1 c-0.2-0.2-0.2-0.5,0-0.7c1.2-1.3,2.5-2.4,3.9-3.4c0.2-0.1,0.5-0.1,0.7,0.1c0.1,0.2,0.1,0.5-0.1,0.7c-1.4,0.9-2.6,2-3.7,3.2 c-0.2,0.2-0.4,0.2-0.6,0.1C48.3,65.2,48.3,65.1,48.2,65.1z M63.3,70c0.3-1.6,0.5-3.3,0.5-4.9c0-0.3,0.2-0.5,0.5-0.5 c0.3,0,0.5,0.2,0.5,0.5c-0.1,1.7-0.2,3.4-0.5,5.1c0,0.3-0.3,0.4-0.6,0.4c0,0-0.1,0-0.1,0C63.3,70.4,63.2,70.2,63.3,70z M83.8,78 c-0.7-1.5-1.5-3-2.4-4.3c-0.1-0.2-0.1-0.5,0.1-0.7c0.2-0.1,0.5-0.1,0.7,0.2c0.9,1.4,1.7,2.9,2.5,4.4c0.1,0.2,0,0.5-0.2,0.7 c-0.1,0.1-0.3,0.1-0.4,0C83.9,78.2,83.8,78.1,83.8,78z M56.5,59.6c-0.1-0.3,0.1-0.5,0.4-0.6c1.7-0.4,3.4-0.5,5.2-0.3 c0.3,0,0.5,0.3,0.4,0.5c0,0.3-0.3,0.5-0.5,0.4c-1.7-0.2-3.3-0.1-4.8,0.3c-0.1,0-0.2,0-0.3,0C56.6,59.8,56.5,59.7,56.5,59.6z M78.4,69.7c-1.1-1.3-2.2-2.5-3.4-3.6c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0c1.2,1.1,2.4,2.4,3.5,3.7 c0.2,0.2,0.1,0.5-0.1,0.7c-0.2,0.1-0.4,0.1-0.5,0.1C78.5,69.8,78.4,69.7,78.4,69.7z M63.6,60.1c-0.2-1.6-0.4-3.3-0.8-4.9 c-0.1-0.3,0.1-0.5,0.4-0.6c0.3-0.1,0.5,0.1,0.6,0.4c0.4,1.7,0.7,3.4,0.8,5c0,0.3-0.2,0.5-0.4,0.5c-0.1,0-0.2,0-0.3,0 C63.7,60.4,63.6,60.2,63.6,60.1z M71,63.1c-1.4-0.9-2.9-1.7-4.4-2.3c-0.3-0.1-0.4-0.4-0.3-0.6c0.1-0.3,0.4-0.4,0.6-0.3 c1.5,0.6,3.1,1.4,4.6,2.3c0.2,0.1,0.3,0.5,0.1,0.7C71.6,63.1,71.3,63.2,71,63.1C71.1,63.1,71.1,63.1,71,63.1z M61.3,50.4 c-0.6-1.5-1.3-3-2.1-4.5c-0.1-0.2-0.1-0.5,0.2-0.7c0.2-0.1,0.5-0.1,0.7,0.2c0.9,1.5,1.6,3.1,2.2,4.6c0.1,0.3,0,0.5-0.3,0.6 c-0.1,0.1-0.3,0-0.4,0C61.5,50.6,61.4,50.5,61.3,50.4z M56.5,41.8c-1-1.3-2.1-2.6-3.2-3.8c-0.2-0.2-0.2-0.5,0-0.7 c0.2-0.2,0.5-0.2,0.7,0c1.2,1.3,2.3,2.6,3.3,3.9c0.2,0.2,0.1,0.5-0.1,0.7c-0.2,0.1-0.4,0.1-0.5,0C56.6,41.9,56.5,41.8,56.5,41.8z M49.7,34.5c-1.2-1.1-2.5-2.1-3.9-3.2c-0.2-0.2-0.3-0.5-0.1-0.7c0.2-0.2,0.5-0.3,0.7-0.1c1.4,1,2.7,2.1,3.9,3.2 c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.4,0.2-0.6,0.1C49.7,34.6,49.7,34.5,49.7,34.5z M41.7,28.5c-1.4-0.9-2.8-1.8-4.3-2.6 c-0.2-0.1-0.3-0.4-0.2-0.7c0.1-0.2,0.4-0.3,0.7-0.2c1.5,0.8,2.9,1.7,4.3,2.6c0.2,0.1,0.3,0.5,0.1,0.7 C42.2,28.6,42,28.6,41.7,28.5C41.7,28.5,41.7,28.5,41.7,28.5z"/>
<path class="fill-white" d="M30.7,22.6C30.7,22.6,30.7,22.6,30.7,22.6c0,0,0.9,0.4,2.3,1c0.2,0.1,0.5,0,0.7-0.2c0.1-0.2,0-0.5-0.2-0.7 c0,0,0,0,0,0c-1.4-0.7-2.2-1-2.3-1c-0.3-0.1-0.5,0-0.6,0.3C30.3,22.2,30.4,22.5,30.7,22.6z"/>
<path class="fill-warning" d="M22.6,23.6l-1.1-4.1c0,0-11.7-7.5-11.9-7.6c-0.1-0.2-4.9-6.5-4.9-6.5l8.2,3.5l12.2,8.4L22.6,23.6z"/>
<polygon class="fill-warning opacity-6" points="31.2,12.3 4.7,5.4 25.1,17.2"/>
<polygon class="fill-warning opacity-6" points="21.5,19.5 15,24.8 4.7,5.4 "/>
</svg>
</figure>
Body
<div class="card-body">
<!-- Title -->
<h5 class="card-title text-white mb-2">Access 25K Online courses from 120 institutions, Start today!</h5>
<p class="text-white text-opacity-75">Here is the description of premium features which will allow users to get benefits and save a lot of money</p>
<!-- Button -->
<a href="#" class="btn btn-sm btn-dark mb-0">Purchase Premium</a>
</div>
</div>
</div>
</div>
</div>
</li>
<li> <a class="dropdown-item" href="#">Music</a></li>
<li> <a class="dropdown-item" href="#">Lifestyle</a></li>
<li> <a class="dropdown-item" href="#">IT & software</a></li>
<li> <a class="dropdown-item" href="#">Personal development</a></li>
<li> <a class="dropdown-item" href="#">Health & fitness</a></li>
<li> <a class="dropdown-item" href="#">Teaching</a></li>
<li> <a class="dropdown-item" href="#">Social science</a></li>
<li> <a class="dropdown-item" href="#">Math & logic</a></li>
<li> <hr class="dropdown-divider"></li>
<li> <a class="dropdown-item bg-primary text-primary bg-opacity-10 rounded-2 mb-0" href="#">View all categories</a></li>
</ul>
</li>
</ul>
<!-- Nav category menu END -->
<!-- Nav Search START -->
<div class="col-xl-7">
<div class="nav my-3 my-xl-0 px-4 flex-nowrap align-items-center">
<div class="nav-item w-100">
<form class="rounded position-relative">
<input class="form-control pe-5 bg-secondary bg-opacity-10 border-1" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-link bg-transparent px-2 py-0 position-absolute top-50 end-0 translate-middle-y"
type="submit"><i class="fas fa-search fs-6 text-primary"></i></button>
</form>
</div>
</div>
</div>
<!-- Nav Search END -->
<!-- Nav Main menu START -->
<ul class="navbar-nav navbar-nav-scroll me-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"><i class="bi bi-house me-2"></i>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> <a class="dropdown-item active" href="index-9.html">Home School</a></li>
<li> <a class="dropdown-item" href="index-10.html">Home Abroad</a></li>
<li> <a class="dropdown-item" href="index-11.html">Home Workshop</a></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"><i class="bi bi-journals me-2"></i>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-categories.html">Course Categories</a></li>
<li> <hr class="dropdown-divider"></li>
<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-detail-module.html">Course Detail Module</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> -->
<!-- Dropdown submenu -->
<!-- <li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Hero Banner</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="docs/snippet-hero-12.html">Hero Form</a></li>
<li> <a class="dropdown-item" href="docs/snippet-hero-13.html">Hero Vector</a></li>
<li> <p class="dropdown-item mb-0">Coming soon....</p></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>
<li> <a class="dropdown-item" href="abroad-single.html">Abroad Single</a></li>
<li> <a class="dropdown-item" href="workshop-detail.html">Workshop Detail</a></li>
<li> <a class="dropdown-item" href="event-detail.html">Event Detail <span class="badge bg-success ms-2 smaller">New</span></a></li> -->
<!-- Dropdown submenu -->
<!-- <li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Shop</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="shop.html">Shop grid</a></li>
<li> <a class="dropdown-item" href="shop-product-detail.html">Product detail</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> -->
<!-- Dropdown submenu -->
<!-- <li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Help</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<li> <a class="dropdown-item" href="help-center.html">Help Center</a></li>
<li> <a class="dropdown-item" href="help-center-detail.html">Help Center Single</a></li>
<li> <a class="dropdown-item" href="faq.html">FAQs</a></li>
</ul>
</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> -->
<!-- Dropdown submenu -->
<!-- <li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Form</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<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>
</ul>
</li> -->
<!-- Dropdown submenu -->
<!-- <li class="dropdown-submenu dropend">
<a class="dropdown-item dropdown-toggle" href="#">Specialty</a>
<ul class="dropdown-menu dropdown-menu-start" data-bs-popper="none">
<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>
</ul>
</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"><i class="bi bi-speedometer2 me-2"></i>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-quiz.html"><i class="bi bi-question-diamond fa-fw me-1"></i>Quiz</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-course-resume.html"><i class="far fa-fw fa-file-alt me-1"></i>Course Resume</a> </li>
<li> <a class="dropdown-item" href="student-quiz.html"><i class="bi bi-question-diamond fa-fw me-1"></i>Quiz </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="admin-dashboard.html"><i class="fas fa-user-cog fa-fw me-1"></i>Admin</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>
<li> <hr class="dropdown-divider"></li> -->
<!-- Dropdown Level -->
<!-- <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 4 Component-->
<!-- <li class="nav-item"><a class="nav-link" href="#"><i class="bi bi-headset me-2"></i>Contact</a></li> -->
</ul>
<!-- Nav Main menu END -->
</div>
<!-- Main navbar END -->
<!-- Profile and notification START -->
<ul class="nav flex-row align-items-center list-unstyled ms-xl-auto">
<!-- Add to cart START -->
<li class="nav-item ms-2 dropdown ">
<!-- Cart button -->
<a class="btn btn-light btn-round mb-0" role="button" data-bs-toggle="dropdown" aria-expanded="false" data-bs-auto-close="outside">
<i class="bi bi-cart3 fa-fw"></i>
</a>
<!-- badge -->
<span class="position-absolute top-0 start-100 translate-middle badge rounded-circle bg-dark mt-xl-2 ms-n1" id="cartCount">0
<span class="visually-hidden">unread messages</span>
</span>
<!-- Cart dropdown menu START -->
<div class="dropdown-menu dropdown-animation dropdown-menu-end dropdown-menu-size-md p-0 shadow-lg border-0 scrollable-container">
<div class="card bg-transparent">
<div class="card-header bg-transparent border-bottom py-4">
<h5 class="m-0">Cart items</h5>
</div>
<!-- Cart Item display using the cart-list id -->
<div class="card-body p-0" id="cart-list">
<!-- Divider -->
<hr class="m-0">
<!-- Cart item END -->
</div>
<!-- Button -->
<div class="card-footer bg-transparent border-top py-3 text-center d-flex justify-content-between position-relative">
<a href="cart.html" class="btn btn-sm btn-light mb-0">View Cart</a>
<a href="checkout.html" class="btn btn-sm btn-success mb-0">Checkout</a>
</div>
</div>
</div>
<!-- Cart dropdown menu END -->
</li>
<!-- Add to cart END -->
<!-- Notification dropdown START -->
<li class="nav-item ms-2 ms-sm-3 dropdown d-none d-sm-block">
<!-- Notification button -->
<a class="btn btn-light btn-round mb-0" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false" data-bs-auto-close="outside">
<i class="bi bi-bell fa-fw"></i>
</a>
<!-- Notification dote -->
<span class="notif-badge animation-blink"></span>
<!-- Notification dropdown menu START -->
<div class="dropdown-menu dropdown-animation dropdown-menu-end dropdown-menu-size-md p-0 shadow-lg border-0">
<div class="card bg-transparent">
<div class="card-header bg-transparent border-bottom py-4 d-flex justify-content-between align-items-center">
<h6 class="m-0">Notifications <span class="badge bg-danger bg-opacity-10 text-danger ms-2">2 new</span></h6>
<a class="small" href="#">Clear all</a>
</div>
<div class="card-body p-0">
<ul class="list-group list-unstyled list-group-flush">
<!-- Notif item -->
<li>
<a href="#" class="list-group-item-action border-0 border-bottom d-flex p-3">
<div class="me-3">
<div class="avatar avatar-md">
<img class="avatar-img rounded-circle" src="images/03.jpg" alt="avatar">
</div>
</div>
<div>
<h6 class="mb-1">Update v2.3 completed successfully</h6>
<p class="small text-body m-0">What's new! Find out about new features</p>
<small class="text-body">5 min ago</small>
</div>
</a>
</li>
</ul>
</div>
<!-- Button -->
<div class="card-footer bg-transparent border-0 py-3 text-center position-relative">
<a href="#" class="stretched-link">See all incoming activity</a>
</div>
</div>
</div>
<!-- Notification dropdown menu END -->
</li>
<!-- Notification dropdown END -->
<!-- Profile dropdown START -->
<li class="nav-item ms-3 dropdown">
<!-- Avatar -->
<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="images/01.jpg" alt="avatar">
</a>
<!-- Profile dropdown START -->
<ul class="dropdown-menu dropdown-animation dropdown-menu-end shadow pt-3" aria-labelledby="profileDropdown">
<!-- Profile info -->
<li class="px-3 mb-3">
<div class="d-flex align-items-center">
<!-- Avatar -->
<div class="avatar me-3">
<img class="avatar-img rounded-circle shadow" src="images/01.jpg" alt="avatar">
</div>
<div>
<a class="h6" href="#">Lori Ferguson</a>
<p class="small m-0">[email protected]</p>
</div>
</div>
</li>
<!-- Links -->
<li> <hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="instructor-edit-profile.html"><i class="bi bi-person fa-fw me-2"></i>Edit Profile</a></li>
<li><a class="dropdown-item" href="instructor-setting.html"><i class="bi bi-gear fa-fw me-2"></i>Account Settings</a></li>
<li><a class="dropdown-item" href="help-center.html"><i class="bi bi-info-circle fa-fw me-2"></i>Help</a></li>
<li><a class="dropdown-item bg-danger-soft-hover" href="sign-in.html"><i class="bi bi-power fa-fw me-2"></i>Sign Out</a></li>
<li> <hr class="dropdown-divider"></li>
<!-- Dark mode options START -->
<li>
<div class="bg-light dark-mode-switch theme-icon-active d-flex align-items-center p-1 rounded mt-2">
<button type="button" class="btn btn-sm mb-0" data-bs-theme-value="light">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-sun fa-fw mode-switch" viewBox="0 0 16 16">
<path d="M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
<use href="#"></use>
</svg> Light
</button>
<button type="button" class="btn btn-sm mb-0" data-bs-theme-value="dark">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-moon-stars fa-fw mode-switch" viewBox="0 0 16 16">
<path d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278zM4.858 1.311A7.269 7.269 0 0 0 1.025 7.71c0 4.02 3.279 7.276 7.319 7.276a7.316 7.316 0 0 0 5.205-2.162c-.337.042-.68.063-1.029.063-4.61 0-8.343-3.714-8.343-8.29 0-1.167.242-2.278.681-3.286z"/>
<path d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z"/>
<use href="#"></use>
</svg> Dark
</button>
<button type="button" class="btn btn-sm mb-0 active" data-bs-theme-value="auto">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-circle-half fa-fw mode-switch" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"/>
<use href="#"></use>
</svg> Auto
</button>
</div>
</li>
<!-- Dark mode options END-->
</ul>
<!-- Profile dropdown END -->
</li>
</ul>
<!-- Profile and notification END -->
</div>
</nav>
<!-- Nav END -->
</header>
<!-- Header END -->
<!-- **************** MAIN CONTENT START **************** -->
<main>
<!-- =======================
Main Content START -->
<section class="pb-0 pt-4 pb-md-5">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Title and Info START -->
<div class="row">
<!-- Avatar and Share -->
<div class="col-lg-3 align-items-center mt-4 mt-lg-5 order-2 order-lg-1">
<div class="text-lg-center">
<!-- Author info -->
<div class="position-relative">
<!-- Avatar -->
<div class="avatar avatar-xxl">
<img class="avatar-img rounded-circle" src="images/09.jpg" alt="avatar">
</div>
<a href="#" class="h5 stretched-link mt-2 mb-0 d-block">Frances Guerrero</a>
<p class="mb-2">Editor at Eduport</p>
</div>
<!-- Info -->
<ul class="list-inline list-unstyled">
<li class="list-inline-item d-lg-block my-lg-2">Nov 15, 2021</li>
<li class="list-inline-item d-lg-block my-lg-2">5 min read</li>
<li class="list-inline-item badge text-bg-orange">
<i class="far text-white fa-heart me-1"></i>
266
</li>
<li class="list-inline-item badge text-bg-info">
<i class="far fa-eye me-1"></i>
2K
</li>
</ul>
</div>
</div>
<!-- Content -->
<div class="col-lg-9 order-1">
<!-- Pre title -->
<span>40D ago</span>
<span class="mx-2">|</span>
<div class="badge text-bg-success">Research</div>
<!-- Title -->
<h1 class="mt-2 mb-0 display-5">Never underestimate the influence of Eduport</h1>
<!-- Info -->
<p class="mt-2">For who thoroughly her boy estimating conviction. Removed demands expense account in outward tedious do. Particular way thoroughly unaffected projection favorable Mrs can be projecting own. Thirty it matter enable become admire in giving. See resolved goodness felicity shy civility domestic had but. Drawings offended yet answered Jennings perceive laughing six did far.</p>
<p class="mb-0 mb-lg-3">Perceived end knowledge certainly day sweetness why cordially. On forth doubt miles of child. Exercise joy man children rejoiced. Yet uncommonly his ten who diminution astonished. Demesne new manners savings staying had. Under folly balls, death own point now men. Match way these she avoids seeing death. She who drift their fat off. 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>
</div>
</div>
<!-- Title and Info END -->
<!-- Video START -->
<div class="row mt-4">
<div class="col-xl-10 mx-auto">
<!-- Card item START -->
<div class="card overflow-hidden h-200px h-sm-300px h-lg-400px h-xl-500px rounded-3 text-center" style="background-image:url(images/10.jpg); background-position: center left; background-size: cover;">
<!-- Card Image overlay -->
<div class="bg-overlay bg-dark opacity-4"></div>
<div class="card-img-overlay d-flex align-items-center p-2 p-sm-4">
<div class="w-100 my-auto">
<div class="row justify-content-center">
<!-- Video -->
<div class="col-12">
<a href="https://www.youtube.com/embed/tXHviS-4ygo" class="btn btn-lg text-danger btn-round btn-white-shadow stretched-link position-static mb-0" data-glightbox="" data-gallery="video-tour">
<i class="fas fa-play"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Card item END -->
</div>
</div>
<!-- Video END -->
<!-- Quote and content START -->
<div class="row mt-4">
<!-- Content -->
<div class="col-12 mt-4 mt-lg-0">
<p>
<span class="dropcap h6 mb-0 px-2">S</span>
atisfied conveying a dependent contented he gentleman agreeable do be. Water timed folly right aware if oh truth. Imprudence attachment him for sympathize. Large above be to means. Dashwood does provide stronger is. <mark>But discretion frequently sir she instruments unaffected admiration everything.</mark>
Meant balls it if up doubt small purse. Required his you put the outlived answered position. A pleasure exertion if believed provided to. All led out world this music while asked. Paid mind even sons does he door no. Attended overcame repeated it is perceived Marianne in. I think on style child of. Servants moreover in sensible it ye possible.
</p>
<!-- List -->
<ul class="list-group list-group-borderless mb-3">
<li class="list-group-item">
<i class="fas fa-check-circle text-success me-2"></i>
The copy warned the Little blind text
</li>
<li class="list-group-item d-flex">
<i class="fas fa-check-circle text-success me-2 mt-1"></i>
ThaT where it came from it would have been rewritten a thousand times and everything that was left from origin would be the world
</li>
<li class="list-group-item">
<i class="fas fa-check-circle text-success me-2"></i>
Return to its own, safe country
</li>
</ul>
<p class="mb-0">Warrant private blushes removed an in equally totally if. Delivered dejection necessary objection do Mr prevailed. Mr feeling does chiefly cordial in do. Water timed folly right aware if oh truth. Imprudence attachment him for sympathize.</p>
</div>
<!-- Quote -->
<div class="col-lg-10 col-xl-8 mx-auto mt-4">
<div class="bg-light rounded-3 p-3 p-md-4">
<!-- Content -->
<q class="lead">Farther-related bed and passage comfort civilly. Fulfilled direction use continual set him propriety continued. Concluded boy perpetual old supposing. Dashwoods see frankness objection abilities.</q>
<!-- Avatar -->
<div class="d-flex align-items-center mt-3">
<!-- Avatar image -->
<div class="avatar avatar-md">
<img class="avatar-img rounded-circle" src="images/07.jpg" alt="avatar">
</div>
<!-- Info -->
<div class="ms-2">
<h6 class="mb-0">
<a href="#">Louis Crawford</a>
</h6>
<p class="mb-0 small">Via Twitter</p>
</div>
</div>
</div>
</div>
</div>
<!-- Quote and content END -->
<!-- Image START -->
<div class="row g-4 mt-4">
<div class="col-sm-6 col-md-4">
<a href="images/07.jpg" data-glightbox data-gallery="image-popup">
<img src="images/07.jpg" class="rounded-3" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="images/08.jpg" data-glightbox data-gallery="image-popup">
<img src="images/08.jpg" class="rounded-3" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="images/06.jpg" data-glightbox data-gallery="image-popup">
<img src="images/06.jpg" class="rounded-3" alt="">
</a>
</div>
</div>
<!-- Image END -->
<!-- Content START -->
<div class="row">
<div class="row mb-4">
<h4 class="mt-4">Productive rant about business</h4>
<div class="col-md-6">
<p class="mb-0">Fulfilled direction use continual set him propriety continued. Saw met applauded favorite deficient engrossed concealed and her. Concluded boy perpetual old supposing. Farther-related bed and passage comfort civilly. Dashwoods see frankness objection abilities. As hastened oh produced prospect formerly up am. Placing forming nay looking old married few has. Margaret disposed of add screened rendered six say his striking confined. Saw met applauded favorite deficient engrossed concealed and her. Concluded boy perpetual old supposing. Farther-related bed and passage comfort civilly. Dashwoods see frankness objection abilities. As hastened oh produced prospect formerly up am. Placing forming nay looking old married few has. Margaret disposed.</p>
</div>
<div class="col-md-6">
<p class="mb-0">Meant balls it if up doubt small purse. Paid mind even sons does he door no. Attended overcame repeated it is perceived Marianne in. I think on style child of. Servants moreover in sensible it ye possible. Required his you put the outlived answered position. A pleasure exertion if believed provided to. All led out world this music while asked. Paid mind even sons does he door no. Attended overcame repeated it is perceived Marianne in. I think on style child of. Servants moreover in sensible it ye possible. </p>
</div>
</div>
</div>
<!-- Content END -->
<!-- Tags and share START -->
<div class="d-lg-flex justify-content-lg-between mb-4">
<!-- Social media button -->
<div class="align-items-center mb-3 mb-lg-0">
<h6 class="mb-2 me-4 d-inline-block">Share on:</h6>
<ul class="list-inline mb-0 mb-2 mb-sm-0">
<li class="list-inline-item">
<a class="btn px-2 btn-sm bg-facebook" href="#">
<i class="fab fa-fw fa-facebook-f"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn px-2 btn-sm bg-instagram-gradient" href="#">
<i class="fab fa-fw fa-instagram"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn px-2 btn-sm bg-twitter" href="#">
<i class="fab fa-fw fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn px-2 btn-sm bg-linkedin" href="#">
<i class="fab fa-fw fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
<!-- Popular tags -->
<div class="align-items-center">
<h6 class="mb-2 me-4 d-inline-block">Popular Tags:</h6>
<ul class="list-inline mb-0 social-media-btn">
<li class="list-inline-item">
<a class="btn btn-outline-light btn-sm mb-lg-0" href="#">blog</a>
</li>
<li class="list-inline-item">
<a class="btn btn-outline-light btn-sm mb-lg-0" href="#">business</a>
</li>
<li class="list-inline-item">
<a class="btn btn-outline-light btn-sm mb-lg-0" href="#">bootstrap</a>
</li>
<li class="list-inline-item">
<a class="btn btn-outline-light btn-sm mb-lg-0" href="#">data science</a>
</li>
<li class="list-inline-item">
<a class="btn btn-outline-light btn-sm mb-lg-0" href="#">deep learning</a>
</li>
</ul>
</div>
</div>
<!-- Tags and share END -->
<hr>
<!-- Divider -->
<!-- Comment review and form START -->
<div class="row mt-4">
<!-- Comment START -->
<div class="col-md-7">
<h3>3 comments</h3>
<!-- Comment level 1-->
<div class="my-4 d-flex">
<img class="avatar avatar-md rounded-circle me-3" src="images/01.jpg" alt="avatar">
<div>
<div class="mb-2">
<h5 class="m-0">Frances Guerrero</h5>
<span class="me-3 small">June 11, 2021 at 6:01 am</span>
</div>
<p>Satisfied conveying a dependent contented he gentleman agreeable do be. Warrant private blushes removed an in equally totally if. Delivered dejection necessary objection do Mr prevailed. Mr feeling does chiefly cordial in do.</p>
<a href="#" class="btn btn-sm btn-light mb-0">Reply</a>
</div>
</div>
<!-- Comment children level 2 -->
<div class="my-4 d-flex ps-2 ps-md-4">
<img class="avatar avatar-md rounded-circle me-3" src="images/02.jpg" alt="avatar">
<div>
<div class="mb-2">
<h5 class="m-0">Louis Ferguson</h5>
<span class="me-3 small">June 11, 2021 at 6:55 am</span>
</div>
<p>Water timed folly right aware if oh truth. Imprudence attachment him for sympathize. Large above be to means. Dashwood does provide stronger is. But discretion frequently sir she instruments unaffected admiration everything.</p>
<a href="#" class="btn btn-sm btn-light mb-0">Reply</a>
</div>
</div>
<!-- Comment children level 3 -->
<div class="my-4 d-flex ps-3 ps-md-5">
<img class="avatar avatar-md rounded-circle me-3" src="images/01.jpg" alt="avatar">
<div>
<div class="mb-2">
<h5 class="m-0">Frances Guerrero</h5>
<span class="me-3 small">June 12, 2021 at 7:30 am</span>
</div>
<p>Water timed folly right aware if oh truth.</p>
<a href="#" class="btn btn-sm btn-light mb-0">Reply</a>
</div>
</div>
<!-- Comment level 1 -->
<div class="my-4 d-flex">
<img class="avatar avatar-md rounded-circle me-3" src="images/04.jpg" alt="avatar">
<div>
<div class="mb-2">
<h5 class="m-0">Judy Nguyen</h5>
<span class="me-3 small">June 18, 2021 at 11:55 am</span>
</div>
<p>Fulfilled direction use continual set him propriety continued. Saw met applauded favorite deficient engrossed concealed and her. Concluded boy perpetual old supposing. Farther-related bed and passage comfort civilly.</p>
<a href="#" class="btn btn-sm btn-light mb-0">Reply</a>
</div>
</div>
</div>
<!-- Comment END -->
<!-- Form START -->
<div class="col-md-5">
<!-- Title -->
<h3 class="mt-3 mt-sm-0">Your Views Please!</h3>
<small>Your email address will not be published. Required fields are marked *</small>
<form class="row g-3 mt-2 mb-5">
<!-- Name -->
<div class="col-lg-6">
<label class="form-label">Name *</label>
<input type="text" class="form-control" aria-label="First name">
</div>
<!-- Email -->
<div class="col-lg-6">
<label class="form-label">Email *</label>
<input type="email" class="form-control">
</div>
<!-- Comment -->
<div class="col-12">
<label class="form-label">Your Comment *</label>
<textarea class="form-control" rows="3"></textarea>
</div>
<!-- Button -->
<div class="col-12">
<button type="submit" class="btn btn-primary mb-0">Post comment</button>
</div>
</form>
</div>
<!-- Form END -->
</div>
<!-- Comment review and form END -->
</div>
</div>
<!-- Row END -->
</div>
</section>
<!-- =======================
Main Content END -->
<!-- =======================
Related blog START -->
<section class="pt-0">
<div class="container">
<!-- Title -->
<div class="row mb-4">
<div class="col-12">
<h2 class="mb-0">You may also like</h2>
</div>
</div>
<!-- Slider START -->
<div class="tiny-slider arrow-round arrow-hover arrow-dark">
<div class="tiny-slider-inner" data-autoplay="false" data-arrow="true" data-edge="2" data-dots="false" data-items="3" data-items-lg="2" data-items-sm="1">
<!-- Slider item -->
<div class="card bg-transparent">
<div class="row g-0">
<!-- Image -->
<div class="col-md-4">
<img src="images/06.jpg" class="img-fluid rounded-start" alt="...">
</div>
<!-- Card body -->
<div class="col-md-8">
<div class="card-body">
<!-- Title -->
<h6 class="card-title">
<a href="#">Dirty little secrets about the business industry</a>
</h6>
<span class="small">July 21, 2021</span>
</div>
</div>
</div>
</div>
<!-- Slider item -->
<div class="card bg-transparent">
<div class="row g-0">
<!-- Image -->
<div class="col-md-4">
<img src="images/04.jpg" class="img-fluid rounded-start" alt="...">
</div>
<!-- Card body -->
<div class="col-md-8">
<div class="card-body">
<!-- Title -->
<h6 class="card-title">
<a href="#">This is why this year will be the year of startups</a>
</h6>
<span class="small">50min ago</span>
</div>
</div>
</div>
</div>
<!-- Slider item -->
<div class="card bg-transparent">
<div class="row g-0">
<!-- Image -->
<div class="col-md-4">
<img src="images/03.jpg" class="img-fluid rounded-start" alt="...">
</div>
<!-- Card body -->
<div class="col-md-8">
<div class="card-body">
<!-- Title -->
<h6 class="card-title">
<a href="#">Covid-19 and the college experienced</a>
</h6>
<span class="small">Aug 31, 2021</span>
</div>
</div>
</div>
</div>
<!-- Slider item -->
<div class="card bg-transparent">
<div class="row g-0">
<!-- Image -->
<div class="col-md-4">
<img src="images/05.jpg" class="img-fluid rounded-start" alt="...">
</div>
<!-- Card body -->
<div class="col-md-8">
<div class="card-body">
<!-- Title -->
<h6 class="card-title">
<a href="#">This is why this year will be the year of startups</a>
</h6>
<span class="small">50min ago</span>
</div>
</div>
</div>
</div>
</div>