-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1534 lines (1354 loc) · 95.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="html" lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>BUS102 – Student Bus Booking System</title>
<meta name='robots' content='noindex, nofollow' />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="BUS102 » Feed" href="https://bus102.cloudaccess.host/feed/" />
<link rel="alternate" type="application/rss+xml" title="BUS102 » Comments Feed" href="https://bus102.cloudaccess.host/comments/feed/" />
<script>
window._wpemojiSettings = {
"baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/",
"ext": ".png",
"svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/",
"svgExt": ".svg",
"source": {
"concatemoji": "https:\/\/bus102.cloudaccess.host\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8.2"
}
};
! function(e, a, t) {
var n, r, o, i = a.createElement("canvas"),
p = i.getContext && i.getContext("2d");
function s(e, t) {
var a = String.fromCharCode;
p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, e), 0, 0);
e = i.toDataURL();
return p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, t), 0, 0), e === i.toDataURL()
}
function c(e) {
var t = a.createElement("script");
t.src = e, t.defer = t.type = "text/javascript", a.getElementsByTagName("head")[0].appendChild(t)
}
for (o = Array("flag", "emoji"), t.supports = {
everything: !0,
everythingExceptFlag: !0
}, r = 0; r < o.length; r++) t.supports[o[r]] = function(e) {
if (!p || !p.fillText) return !1;
switch (p.textBaseline = "top", p.font = "600 32px Arial", e) {
case "flag":
return s([127987, 65039, 8205, 9895, 65039], [127987, 65039, 8203, 9895, 65039]) ? !1 : !s([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819]) && !s([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447]);
case "emoji":
return !s([10084, 65039, 8205, 55357, 56613], [10084, 65039, 8203, 55357, 56613])
}
return !1
}(o[r]), t.supports.everything = t.supports.everything && t.supports[o[r]], "flag" !== o[r] && (t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && t.supports[o[r]]);
t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && !t.supports.flag, t.DOMReady = !1, t.readyCallback = function() {
t.DOMReady = !0
}, t.supports.everything || (n = function() {
t.readyCallback()
}, a.addEventListener ? (a.addEventListener("DOMContentLoaded", n, !1), e.addEventListener("load", n, !1)) : (e.attachEvent("onload", n), a.attachEvent("onreadystatechange", function() {
"complete" === a.readyState && t.readyCallback()
})), (n = t.source || {}).concatemoji ? c(n.concatemoji) : n.wpemoji && n.twemoji && (c(n.twemoji), c(n.wpemoji)))
}(window, document, window._wpemojiSettings);
</script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='dashicons-css' href='https://bus102.cloudaccess.host/wp-includes/css/dashicons.min.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='admin-bar-css' href='https://bus102.cloudaccess.host/wp-includes/css/admin-bar.min.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='sweetalert2-css' href='https://bus102.cloudaccess.host/wp-content/plugins/user-registration/assets/css/sweetalert2/sweetalert2.min.css?ver=10.16.7' media='all' />
<link rel='stylesheet' id='user-registration-general-css' href='https://bus102.cloudaccess.host/wp-content/plugins/user-registration/assets/css/user-registration.css?ver=2.0.5' media='all' />
<link rel='stylesheet' id='user-registration-smallscreen-css' href='https://bus102.cloudaccess.host/wp-content/plugins/user-registration/assets/css/user-registration-smallscreen.css?ver=2.0.5' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='user-registration-my-account-layout-css' href='https://bus102.cloudaccess.host/wp-content/plugins/user-registration/assets/css/my-account-layout.css?ver=2.0.5' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.13.0' media='all' />
<link rel='stylesheet' id='elementor-common-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/css/common.min.css?ver=3.4.7' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://bus102.cloudaccess.host/wp-includes/css/dist/block-library/style.min.css?ver=5.8.2' media='all' />
<style id='wp-block-library-inline-css'>
.has-text-align-justify {
text-align: justify;
}
</style>
<style id='wp-block-library-theme-inline-css'>
#start-resizable-editor-section {
display: none
}
.wp-block-audio figcaption {
color: #555;
font-size: 13px;
text-align: center
}
.is-dark-theme .wp-block-audio figcaption {
color: hsla(0, 0%, 100%, .65)
}
.wp-block-code {
font-family: Menlo, Consolas, monaco, monospace;
color: #1e1e1e;
padding: .8em 1em;
border: 1px solid #ddd;
border-radius: 4px
}
.wp-block-embed figcaption {
color: #555;
font-size: 13px;
text-align: center
}
.is-dark-theme .wp-block-embed figcaption {
color: hsla(0, 0%, 100%, .65)
}
.blocks-gallery-caption {
color: #555;
font-size: 13px;
text-align: center
}
.is-dark-theme .blocks-gallery-caption {
color: hsla(0, 0%, 100%, .65)
}
.wp-block-image figcaption {
color: #555;
font-size: 13px;
text-align: center
}
.is-dark-theme .wp-block-image figcaption {
color: hsla(0, 0%, 100%, .65)
}
.wp-block-pullquote {
border-top: 4px solid;
border-bottom: 4px solid;
margin-bottom: 1.75em;
color: currentColor
}
.wp-block-pullquote__citation,
.wp-block-pullquote cite,
.wp-block-pullquote footer {
color: currentColor;
text-transform: uppercase;
font-size: .8125em;
font-style: normal
}
.wp-block-quote {
border-left: .25em solid;
margin: 0 0 1.75em;
padding-left: 1em
}
.wp-block-quote cite,
.wp-block-quote footer {
color: currentColor;
font-size: .8125em;
position: relative;
font-style: normal
}
.wp-block-quote.has-text-align-right {
border-left: none;
border-right: .25em solid;
padding-left: 0;
padding-right: 1em
}
.wp-block-quote.has-text-align-center {
border: none;
padding-left: 0
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
border: none
}
.wp-block-search .wp-block-search__label {
font-weight: 700
}
.wp-block-group.has-background {
padding: 1.25em 2.375em;
margin-top: 0;
margin-bottom: 0
}
.wp-block-separator {
border: none;
border-bottom: 2px solid;
margin-left: auto;
margin-right: auto;
opacity: .4
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
width: 100px
}
.wp-block-separator.has-background:not(.is-style-dots) {
border-bottom: none;
height: 1px
}
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
height: 2px
}
.wp-block-table thead {
border-bottom: 3px solid
}
.wp-block-table tfoot {
border-top: 3px solid
}
.wp-block-table td,
.wp-block-table th {
padding: .5em;
border: 1px solid;
word-break: normal
}
.wp-block-table figcaption {
color: #555;
font-size: 13px;
text-align: center
}
.is-dark-theme .wp-block-table figcaption {
color: hsla(0, 0%, 100%, .65)
}
.wp-block-video figcaption {
color: #555;
font-size: 13px;
text-align: center
}
.is-dark-theme .wp-block-video figcaption {
color: hsla(0, 0%, 100%, .65)
}
.wp-block-template-part.has-background {
padding: 1.25em 2.375em;
margin-top: 0;
margin-bottom: 0
}
#end-resizable-editor-section {
display: none
}
</style>
<link rel='stylesheet' id='mediaelement-css' href='https://bus102.cloudaccess.host/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.16' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css' href='https://bus102.cloudaccess.host/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='cf7_add_password_field_style-css' href='https://bus102.cloudaccess.host/wp-content/plugins/cf7-add-password-field/css/all.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='https://bus102.cloudaccess.host/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.5.2' media='all' />
<link rel='stylesheet' id='walcf7-datepicker-css-css' href='https://bus102.cloudaccess.host/wp-content/plugins/date-time-picker-for-contact-form-7/assets/css/jquery.datetimepicker.min.css?ver=1.0.0' media='all' />
<link rel='stylesheet' id='som_lost_password_style-css' href='https://bus102.cloudaccess.host/wp-content/plugins/frontend-reset-password/assets/css/password-lost.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://bus102.cloudaccess.host/wp-content/themes/oceanwp/assets/fonts/fontawesome/css/all.min.css?ver=5.15.1' media='all' />
<link rel='stylesheet' id='simple-line-icons-css' href='https://bus102.cloudaccess.host/wp-content/themes/oceanwp/assets/css/third/simple-line-icons.min.css?ver=2.4.0' media='all' />
<link rel='stylesheet' id='oceanwp-style-css' href='https://bus102.cloudaccess.host/wp-content/themes/oceanwp/assets/css/style.min.css?ver=3.1.0' media='all' />
<link rel='stylesheet' id='fontawesome-css' href='https://bus102.cloudaccess.host/wp-content/themes/oceanwp/inc/customizer/assets/css/fontawesome-all.min.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.4.7' media='all' />
<style id='elementor-frontend-inline-css'>
@font-face {
font-family: eicons;
src: url(https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0);
src: url(https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0#iefix) format("embedded-opentype"), url(https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.10.0) format("woff2"), url(https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.10.0) format("woff"), url(https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.10.0) format("truetype"), url(https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.10.0#eicon) format("svg");
font-weight: 400;
font-style: normal
}
</style>
<link rel='stylesheet' id='elementor-post-51-css' href='https://bus102.cloudaccess.host/wp-content/uploads/elementor/css/post-51.css?ver=1636960454' media='all' />
<link rel='stylesheet' id='elementor-global-css' href='https://bus102.cloudaccess.host/wp-content/uploads/elementor/css/global.css?ver=1636960486' media='all' />
<link rel='stylesheet' id='elementor-post-8-css' href='https://bus102.cloudaccess.host/wp-content/uploads/elementor/css/post-8.css?ver=1637308737' media='all' />
<link rel='stylesheet' id='oe-widgets-style-css' href='https://bus102.cloudaccess.host/wp-content/plugins/ocean-extra/assets/css/widgets.css?ver=5.8.2' media='all' />
<link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPhilosopher%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPlayfair+Display%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPoppins%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=5.8.2'
media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-regular-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://bus102.cloudaccess.host/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='https://bus102.cloudaccess.host/wp-content/plugins/jetpack/css/jetpack.css?ver=10.3' media='all' />
<script src='https://bus102.cloudaccess.host/wp-content/plugins/cf7-add-password-field/js/eye.js?ver=5.8.2' id='cf7_add_password_field_scripts-js'></script>
<script src='https://bus102.cloudaccess.host/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script>
<script src='https://bus102.cloudaccess.host/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script src='https://bus102.cloudaccess.host/wp-content/themes/oceanwp/assets/js/vendors/smoothscroll.min.js?ver=3.1.0' id='ow-smoothscroll-js'></script>
<link rel="https://api.w.org/" href="https://bus102.cloudaccess.host/wp-json/" />
<link rel="alternate" type="application/json" href="https://bus102.cloudaccess.host/wp-json/wp/v2/pages/8" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://bus102.cloudaccess.host/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://bus102.cloudaccess.host/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.8.2" />
<link rel="canonical" href="https://bus102.cloudaccess.host/" />
<link rel='shortlink' href='https://bus102.cloudaccess.host/' />
<link rel="alternate" type="application/json+oembed" href="https://bus102.cloudaccess.host/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fbus102.cloudaccess.host%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://bus102.cloudaccess.host/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fbus102.cloudaccess.host%2F&format=xml" />
<style>
.som-password-error-message,
.som-password-sent-message {
background-color: #2679ce;
border-color: #2679ce;
}
</style>
<style type='text/css'>
img#wpstats {
display: none
}
</style>
<style media="print">
#wpadminbar {
display: none;
}
</style>
<style media="screen">
html {
margin-top: 32px !important;
}
* html body {
margin-top: 32px !important;
}
@media screen and ( max-width: 782px) {
html {
margin-top: 46px !important;
}
* html body {
margin-top: 46px !important;
}
}
</style>
<link rel="icon" href="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-2-150x150.jpg" sizes="32x32" />
<link rel="icon" href="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-2-300x300.jpg" sizes="192x192" />
<link rel="apple-touch-icon" href="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-2-300x300.jpg" />
<meta name="msapplication-TileImage" content="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-2-300x300.jpg" />
<style data-ampdevmode type='text/css'>
#wpadminbar .quicklinks li#wp-admin-bar-stats {
height: 32px;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a {
height: 32px;
padding: 0;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a div {
height: 32px;
width: 95px;
overflow: hidden;
margin: 0 10px;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a:hover div {
width: auto;
margin: 0 8px 0 10px;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a img {
height: 24px;
margin: 4px 0;
max-width: none;
border: none;
}
</style>
<!-- OceanWP CSS -->
<style type="text/css">
/* Header CSS */
#site-header.has-header-media .overlay-header-media {
background-color: rgba(0, 0, 0, 0.5)
}
</style>
<!-- WLCMS Style-->
<style type="text/css">
.wlcms-admin-logo img {
vertical-align: middle;
max-height: 20px !important;
margin: 0 auto;
}
.wlcms-admin-logo .ab-item,
.wlcms-admin-logo a {
line-height: 28px !important;
display: flex;
align-items: center;
}
#footer-left img {
vertical-align: middle;
max-height: 50px;
margin-right: 5px;
}
#footer-left a {
text-decoration: none;
}
#wp-admin-bar-wp-logo,
#wpadminbar .quicklinks li .blavatar {
display: none !important;
}
</style>
<!-- WLCMS End Style-->
</head>
<body class="home page-template page-template-elementor_header_footer page page-id-8 logged-in admin-bar no-customize-support wp-custom-logo wp-embed-responsive user-registration-page oceanwp-theme dropdown-mobile default-breakpoint has-sidebar content-right-sidebar has-topbar page-header-disabled has-breadcrumbs elementor-default elementor-template-full-width elementor-kit-51 elementor-page elementor-page-8"
itemscope="itemscope" itemtype="https://schema.org/WebPage">
<script>
(function() {
var request, b = document.body,
c = 'className',
cs = 'customize-support',
rcs = new RegExp('(^|\\s+)(no-)?' + cs + '(\\s+|$)');
request = true;
b[c] = b[c].replace(rcs, ' ');
// The customizer requires postMessage and CORS (if the site is cross domain).
b[c] += (window.postMessage && request ? ' ' : ' no-') + cs;
}());
</script>
<div id="wpadminbar" class="nojq nojs mobile">
<div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="Toolbar">
<ul id='wp-admin-bar-root-default' class="ab-top-menu">
<li id='wp-admin-bar-wlcms-admin-logo' class="wlcms-admin-logo"><a class='ab-item' href='https://bus102.cloudaccess.host/' target='_blank' title='Gift Mangena'><img src="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-2.jpg" /></a></li>
<li id='wp-admin-bar-wp-logo' class="menupop"><a class='ab-item' aria-haspopup="true" href='https://bus102.cloudaccess.host/wp-admin/about.php'><span class="ab-icon" aria-hidden="true"></span><span class="screen-reader-text">About WordPress</span></a>
<div class="ab-sub-wrapper">
<ul id='wp-admin-bar-wp-logo-default' class="ab-submenu">
<li id='wp-admin-bar-about'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/about.php'>About WordPress</a></li>
</ul>
<ul id='wp-admin-bar-wp-logo-external' class="ab-sub-secondary ab-submenu">
<li id='wp-admin-bar-wporg'><a class='ab-item' href='https://wordpress.org/'>WordPress.org</a></li>
<li id='wp-admin-bar-documentation'><a class='ab-item' href='https://wordpress.org/support/'>Documentation</a></li>
<li id='wp-admin-bar-support-forums'><a class='ab-item' href='https://wordpress.org/support/forums/'>Support</a></li>
<li id='wp-admin-bar-feedback'><a class='ab-item' href='https://wordpress.org/support/forum/requests-and-feedback'>Feedback</a></li>
</ul>
</div>
</li>
<li id='wp-admin-bar-site-name' class="menupop"><a class='ab-item' aria-haspopup="true" href='https://bus102.cloudaccess.host/wp-admin/'>BUS102</a>
<div class="ab-sub-wrapper">
<ul id='wp-admin-bar-site-name-default' class="ab-submenu">
<li id='wp-admin-bar-dashboard'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/'>Dashboard</a></li>
</ul>
<ul id='wp-admin-bar-appearance' class="ab-submenu">
<li id='wp-admin-bar-themes'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/themes.php'>Themes</a></li>
<li id='wp-admin-bar-widgets'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/widgets.php'>Widgets</a></li>
<li id='wp-admin-bar-menus'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/nav-menus.php'>Menus</a></li>
<li id='wp-admin-bar-header' class="hide-if-customize"><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/themes.php?page=custom-header'>Header</a></li>
<li id='wp-admin-bar-ot-theme-options'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/themes.php?page=ot-theme-options'>Theme Options</a></li>
</ul>
</div>
</li>
<li id='wp-admin-bar-customize' class="hide-if-no-customize"><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/customize.php?url=https%3A%2F%2Fbus102.cloudaccess.host%2F'>Customize</a></li>
<li id='wp-admin-bar-updates'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/update-core.php'><span class="ab-icon" aria-hidden="true"></span><span class="ab-label" aria-hidden="true">4</span><span class="screen-reader-text updates-available-text">4 updates available</span></a></li>
<li
id='wp-admin-bar-comments'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/edit-comments.php'><span class="ab-icon" aria-hidden="true"></span><span class="ab-label awaiting-mod pending-count count-0" aria-hidden="true">0</span><span class="screen-reader-text comments-in-moderation-text">0 Comments in moderation</span></a></li>
<li
id='wp-admin-bar-new-content' class="menupop"><a class='ab-item' aria-haspopup="true" href='https://bus102.cloudaccess.host/wp-admin/post-new.php'><span class="ab-icon" aria-hidden="true"></span><span class="ab-label">New</span></a>
<div class="ab-sub-wrapper">
<ul id='wp-admin-bar-new-content-default' class="ab-submenu">
<li id='wp-admin-bar-new-post'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/post-new.php'>Post</a></li>
<li id='wp-admin-bar-new-media'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/media-new.php'>Media</a></li>
<li id='wp-admin-bar-new-page'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/post-new.php?post_type=page'>Page</a></li>
<li id='wp-admin-bar-new-e-landing-page'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/edit.php?action=elementor_new_post&post_type=e-landing-page&template_type=landing-page&_wpnonce=a506110a88#library'>Landing Page</a></li>
<li
id='wp-admin-bar-new-elementor_library'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/post-new.php?post_type=elementor_library'>Template</a></li>
<li id='wp-admin-bar-new-user'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/user-new.php'>User</a></li>
</ul>
</div>
</li>
<li id='wp-admin-bar-edit'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/post.php?post=8&action=edit'>Edit Page</a></li>
<li id='wp-admin-bar-stats'>
<a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/admin.php?page=stats'>
<div><img src='https://bus102.cloudaccess.host/wp-admin/admin.php?page=stats&noheader&proxy&chart=admin-bar-hours-scale' srcset='https://bus102.cloudaccess.host/wp-admin/admin.php?page=stats&noheader&proxy&chart=admin-bar-hours-scale 1x, https://bus102.cloudaccess.host/wp-admin/admin.php?page=stats&noheader&proxy&chart=admin-bar-hours-scale-2x 2x'
width='112' height='24' alt='Stats' title='Views over 48 hours. Click for more Site Stats.'></div>
</a>
</li>
</ul>
<ul id='wp-admin-bar-top-secondary' class="ab-top-secondary ab-top-menu">
<li id='wp-admin-bar-search' class="admin-bar-search">
<div class="ab-item ab-empty-item" tabindex="-1">
<form action="https://bus102.cloudaccess.host/" method="get" id="adminbarsearch"><input class="adminbar-input" name="s" id="adminbar-search" type="text" value="" maxlength="150" /><label for="adminbar-search" class="screen-reader-text">Search</label><input type="submit" class="adminbar-button" value="Search"
/></form>
</div>
</li>
<li id='wp-admin-bar-my-account' class="menupop with-avatar"><a class='ab-item' aria-haspopup="true" href='https://bus102.cloudaccess.host/wp-admin/profile.php'>Hello there Gift Mangena<img alt='' src='https://secure.gravatar.com/avatar/b3254cfca14c28a9f0af234a933d05e3?s=28&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/b3254cfca14c28a9f0af234a933d05e3?s=56&d=mm&r=g 2x' class='avatar avatar-28 photo' height='28' width='28' loading='lazy'/></a>
<div
class="ab-sub-wrapper">
<ul id='wp-admin-bar-user-actions' class="ab-submenu">
<li id='wp-admin-bar-user-info'><a class='ab-item' tabindex="-1" href='https://bus102.cloudaccess.host/wp-admin/profile.php'><img alt='' src='https://secure.gravatar.com/avatar/b3254cfca14c28a9f0af234a933d05e3?s=64&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/b3254cfca14c28a9f0af234a933d05e3?s=128&d=mm&r=g 2x' class='avatar avatar-64 photo' height='64' width='64' loading='lazy'/><span class='display-name'>Gift Mangena</span><span class='username'>sbzhrdbc-ca</span></a></li>
<li
id='wp-admin-bar-edit-profile'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-admin/profile.php'>Edit Profile</a></li>
<li id='wp-admin-bar-logout'><a class='ab-item' href='https://bus102.cloudaccess.host/wp-login.php?action=logout&_wpnonce=db780c6999'>Log Out</a></li>
</ul>
</div>
</li>
</ul>
</div>
<a class="screen-reader-shortcut" href="https://bus102.cloudaccess.host/wp-login.php?action=logout&_wpnonce=db780c6999">Log Out</a>
</div>
<div id="outer-wrap" class="site clr">
<a class="skip-link screen-reader-text" href="#main">Skip to content</a>
<div id="wrap" class="clr">
<div id="top-bar-wrap" class="clr">
<div id="top-bar" class="clr container has-no-content">
<div id="top-bar-inner" class="clr">
</div>
<!-- #top-bar-inner -->
</div>
<!-- #top-bar -->
</div>
<!-- #top-bar-wrap -->
<header id="site-header" class="minimal-header clr" data-height="74" itemscope="itemscope" itemtype="https://schema.org/WPHeader" role="banner">
<div id="site-header-inner" class="clr container">
<div id="site-logo" class="clr" itemscope itemtype="https://schema.org/Brand">
<div id="site-logo-inner" class="clr">
<a href="https://bus102.cloudaccess.host/" class="custom-logo-link" rel="home" aria-current="page"><img width="40" height="40" src="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1.jpg" class="custom-logo" alt="BUS102" srcset="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1.jpg 40w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1-300x300.jpg 300w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1-1024x1024.jpg 1024w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1-150x150.jpg 150w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1-768x768.jpg 768w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1-1536x1536.jpg 1536w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/OIP-1-1-2048x2048.jpg 2048w" sizes="(max-width: 40px) 100vw, 40px" /></a>
</div>
<!-- #site-logo-inner -->
</div>
<!-- #site-logo -->
<div id="site-navigation-wrap" class="clr">
<nav id="site-navigation" class="navigation main-navigation clr" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" role="navigation">
<ul id="menu-main-menu" class="main-menu dropdown-menu sf-menu">
<li id="menu-item-62" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-62"><a href="https://bus102.cloudaccess.host/register/" class="menu-link"><span class="text-wrap">REGISTER</span></a></li>
<li id="menu-item-65" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-65"><a href="https://bus102.cloudaccess.host/login/" class="menu-link"><span class="text-wrap">LOGIN</span></a></li>
<li id="menu-item-68" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68"><a href="https://bus102.cloudaccess.host/my-account/" class="menu-link"><span class="text-wrap">MY ACCOUNT</span></a></li>
<li id="menu-item-268" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-268"><a href="https://bus102.cloudaccess.host/wp-login.php?action=logout" class="menu-link"><span class="text-wrap">Logout</span></a></li>
<li class="search-toggle-li"><a href="javascript:void(0)" class="site-search-toggle search-dropdown-toggle" aria-label="Search website"><i class=" icon-magnifier" aria-hidden="true" role="img"></i></a></li>
</ul>
<div id="searchform-dropdown" class="header-searchform-wrap clr">
<form role="search" method="get" class="searchform" action="https://bus102.cloudaccess.host/">
<label for="ocean-search-form-1">
<span class="screen-reader-text">Search this website</span>
<input type="search" id="ocean-search-form-1" class="field" autocomplete="off" placeholder="Search" name="s">
</label>
</form>
</div>
<!-- #searchform-dropdown -->
</nav>
<!-- #site-navigation -->
</div>
<!-- #site-navigation-wrap -->
<div class="oceanwp-mobile-menu-icon clr mobile-right">
<a href="javascript:void(0)" class="mobile-menu" aria-label="Mobile Menu">
<i class="fa fa-bars" aria-hidden="true"></i>
<span class="oceanwp-text">Menu</span>
<span class="oceanwp-close-text">Close</span>
</a>
</div>
<!-- #oceanwp-mobile-menu-navbar -->
</div>
<!-- #site-header-inner -->
<div id="mobile-dropdown" class="clr">
<nav class="clr" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement">
<ul id="menu-main-menu-1" class="menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-62"><a href="https://bus102.cloudaccess.host/register/">REGISTER</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-65"><a href="https://bus102.cloudaccess.host/login/">LOGIN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68"><a href="https://bus102.cloudaccess.host/my-account/">MY ACCOUNT</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-268"><a href="https://bus102.cloudaccess.host/wp-login.php?action=logout">Logout</a></li>
<li class="search-toggle-li"><a href="javascript:void(0)" class="site-search-toggle search-dropdown-toggle" aria-label="Search website"><i class=" icon-magnifier" aria-hidden="true" role="img"></i></a></li>
</ul>
<div id="mobile-menu-search" class="clr">
<form aria-label="Search this website" method="get" action="https://bus102.cloudaccess.host/" class="mobile-searchform" role="search">
<input aria-label="Insert search query" value="" class="field" id="ocean-mobile-search-2" type="search" name="s" autocomplete="off" placeholder="Search" />
<button aria-label="Submit search" type="submit" class="searchform-submit">
<i class=" icon-magnifier" aria-hidden="true" role="img"></i> </button>
</form>
</div>
<!-- .mobile-menu-search -->
</nav>
</div>
</header>
<!-- #site-header -->
<main id="main" class="site-main clr" role="main">
<div data-elementor-type="wp-page" data-elementor-id="8" class="elementor elementor-8" data-elementor-settings="[]">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-5f3f108 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="5f3f108" data-element_type="section"
data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2dcef0b" data-id="2dcef0b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-09d0e32 elementor-widget elementor-widget-heading" data-id="09d0e32" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Student Bus Booking Made Easy</h2>
</div>
</div>
<div class="elementor-element elementor-element-3f2847e elementor-widget elementor-widget-heading" data-id="3f2847e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">TSHWANE UNIVERSITY OF TECHNOLOGY</h2>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-6417c6d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6417c6d" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-dd26b34" data-id="dd26b34" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4982cfb elementor-align-center elementor-widget elementor-widget-button" data-id="4982cfb" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://bus102.cloudaccess.host/search/" class="elementor-button-link elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">MAKE A BOOKING</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b51d831 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b51d831" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c5036dc" data-id="c5036dc" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-7a0742c0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7a0742c0" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ba2ae04" data-id="3ba2ae04" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-164293ba elementor-widget elementor-widget-heading" data-id="164293ba" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-large">our driver team</h3>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-286d6dd0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="286d6dd0" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-153190b9" data-id="153190b9" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-65eee313 elementor-widget elementor-widget-image" data-id="65eee313" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="166" height="165" src="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/teacther1.png" class="attachment-large size-large" alt="" loading="lazy" srcset="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/teacther1.png 166w, https://bus102.cloudaccess.host/wp-content/uploads/2021/11/teacther1-150x150.png 150w"
sizes="(max-width: 166px) 100vw, 166px" /> </div>
</div>
<div class="elementor-element elementor-element-433e0e6 elementor-widget elementor-widget-heading" data-id="433e0e6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-large">Stella Lindley</h2>
</div>
</div>
<div class="elementor-element elementor-element-1f7dd6cf elementor-widget elementor-widget-text-editor" data-id="1f7dd6cf" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>A careful driver that has been driving since the age of 18. Stella won’t give you any doubts.</p>
</div>
</div>
<div class="elementor-element elementor-element-44748c7c elementor-shape-circle e-grid-align-tablet-center e-grid-align-mobile-center elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="44748c7c" data-element_type="widget"
data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-1q7inly" target="_blank">
<span class="elementor-screen-only">Facebook-f</span>
<i class="fab fa-facebook-f"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-qw9z55k" target="_blank">
<span class="elementor-screen-only">Twitter</span>
<i class="fab fa-twitter"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-1kfdigf" target="_blank">
<span class="elementor-screen-only">Linkedin</span>
<i class="fab fa-linkedin"></i> </a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5e556672" data-id="5e556672" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-3fc6020b elementor-widget elementor-widget-image" data-id="3fc6020b" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="162" height="165" src="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/teacher2.jpg" class="attachment-large size-large" alt="" loading="lazy" /> </div>
</div>
<div class="elementor-element elementor-element-26178c45 elementor-widget elementor-widget-heading" data-id="26178c45" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-large">Donald Martin</h2>
</div>
</div>
<div class="elementor-element elementor-element-1888ff1f elementor-widget elementor-widget-text-editor" data-id="1888ff1f" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Donald has excellent driver skill set. Having over 10 years experience working with a number of companies</p>
</div>
</div>
<div class="elementor-element elementor-element-40db7c9d elementor-shape-circle e-grid-align-tablet-center e-grid-align-mobile-center elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="40db7c9d" data-element_type="widget"
data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-lf5yt4c" target="_blank">
<span class="elementor-screen-only">Facebook-f</span>
<i class="fab fa-facebook-f"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-01xie82" target="_blank">
<span class="elementor-screen-only">Twitter</span>
<i class="fab fa-twitter"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-grhvqhn" target="_blank">
<span class="elementor-screen-only">Linkedin</span>
<i class="fab fa-linkedin"></i> </a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1706d332" data-id="1706d332" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-698ab986 elementor-widget elementor-widget-image" data-id="698ab986" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="162" height="165" src="https://bus102.cloudaccess.host/wp-content/uploads/2021/11/teacher3.jpg" class="attachment-large size-large" alt="" loading="lazy" /> </div>
</div>
<div class="elementor-element elementor-element-473ab2ba elementor-widget elementor-widget-heading" data-id="473ab2ba" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-large">Gaby Williams</h2>
</div>
</div>
<div class="elementor-element elementor-element-7fd02e29 elementor-widget elementor-widget-text-editor" data-id="7fd02e29" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>If there’s someone who can drive with a smile, Gaby is the one. With more than 7 years of driving experience.</p>
</div>
</div>
<div class="elementor-element elementor-element-55e216c elementor-shape-circle e-grid-align-tablet-center e-grid-align-mobile-center elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="55e216c" data-element_type="widget"
data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-1j7enrh" target="_blank">
<span class="elementor-screen-only">Facebook-f</span>
<i class="fab fa-facebook-f"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-mw0ffet" target="_blank">
<span class="elementor-screen-only">Twitter</span>
<i class="fab fa-twitter"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-39ofihx" target="_blank">
<span class="elementor-screen-only">Linkedin</span>
<i class="fab fa-linkedin"></i> </a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-6c69d1b8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6c69d1b8" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-53d339e6" data-id="53d339e6" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-33cf8011 elementor-widget elementor-widget-heading" data-id="33cf8011" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-large">Student Bus Booking </h2>
</div>
</div>
<div class="elementor-element elementor-element-491c8ab1 elementor-widget elementor-widget-text-editor" data-id="491c8ab1" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-7471a4ec elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7471a4ec" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3eff48da" data-id="3eff48da" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7ee6e7f3 elementor-position-left elementor-view-default elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="7ee6e7f3" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<i aria-hidden="true" class="far fa-clock"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Working hours </span>
</h3>
<p class="elementor-icon-box-description">
Monday- Thursday:8:00-22:30 Hrs <br>(Phone until 17:30 Hrs)<br>Friday - 8:00-19:00 </p>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-7987bed5 elementor-position-left elementor-view-default elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="7987bed5" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<i aria-hidden="true" class="fas fa-map-marker-alt"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
We are here </span>
</h3>
<p class="elementor-icon-box-description">
Tshwane University of Technology<br> Staatsartillerie Rd, Pretoria West, <br>Pretoria,<br> 0183
<br>Phone:+27 12 8834 688 <br>Fax:+44 20 8859 6598 <br>Email: info@TUT.com </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7bc752d7" data-id="7bc752d7" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4c980238 elementor-widget elementor-widget-google_maps" data-id="4c980238" data-element_type="widget" data-widget_type="google_maps.default">
<div class="elementor-widget-container">
<div class="elementor-custom-embed">
<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=Pretoria%20TUT&t=m&z=10&output=embed&iwloc=near" title="Pretoria TUT" aria-label="Pretoria TUT"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
</div>
</div>
</main>
<!-- #main -->
<footer id="footer" class="site-footer" itemscope="itemscope" itemtype="https://schema.org/WPFooter" role="contentinfo">
<div id="footer-inner" class="clr">
<div id="footer-widgets" class="oceanwp-row clr">
<div class="footer-widgets-inner container">
<div class="footer-box span_1_of_4 col col-1">
</div>
<!-- .footer-one-box -->
<div class="footer-box span_1_of_4 col col-2">
</div>
<!-- .footer-one-box -->
<div class="footer-box span_1_of_4 col col-3 ">
</div>
<!-- .footer-one-box -->
<div class="footer-box span_1_of_4 col col-4">
</div>
<!-- .footer-box -->
</div>
<!-- .container -->
</div>
<!-- #footer-widgets -->
<div id="footer-bottom" class="clr no-footer-nav">
<div id="footer-bottom-inner" class="container clr">
<div id="copyright" class="clr" role="contentinfo">
Copyright [2021] - by Gift Mangena </div>
<!-- #copyright -->
</div>
<!-- #footer-bottom-inner -->
</div>
<!-- #footer-bottom -->
</div>
<!-- #footer-inner -->
</footer>
<!-- #footer -->