-
Notifications
You must be signed in to change notification settings - Fork 89
/
teampage-4.html
1121 lines (954 loc) · 45.1 KB
/
teampage-4.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>
<script type="text/javascript" src ="//widget.instabot.io/jsapi/rokoInstabot.js" crossorigin>
apiKey: "vXj90M2ifAvu8fS739jFKepTXtES72ur59sGR5TPK9c="
</script>
<meta charset="UTF-8">
<meta name="theme-color" content="#333" />
<link rel="manifest" href="manifest.json" />
<link rel="icon" type="image/png" href="https://res.cloudinary.com/thecavemann/image/upload/v1571839870/logo_g4kuoa.png"/>
<link rel="stylesheet" type="text/css" href="https://dl.dropbox.com/s/v5nuo2k9pvuoogf/rose.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Ubuntu|Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Docufix | Team Page</title>
<style>
*{
box-sizing: border-box;
}
html{
scroll-behavior: smooth;
}
body{
font-family: Ubuntu,sans-serif;
width: 100%;
height: 100%;
margin: 0 auto;
padding: 0;
background-color: #DDE8E8;
}
@keyframes bottom {
from {
transform: translateY(50%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes left {
from {
transform: translateX(-50%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes right {
from {
transform: translateX(50%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
svg {
width: 200px;
height: 50px;
}
a {
color: #fff;
text-decoration: none;
}
#nav,
.dropdown-menu {
background: #141460 !important;
color: #fff !important;
font-weight: 300;
}
#nav li:hover {
background: #6130d4 !important;
}
.dropdown-menu a:hover {
background: #6130d4 !important;
}
#nav li a {
color: #ffffff !important;
}
.navbar ul {
margin-left: 1.7rem;
}
footer {
background: #003152;
color: #fff;
position: relative;
text-align: center;
font-family: Helvetica;
}
.section-one {
padding: 1rem;
}
footer li {
padding: 0.5rem;
}
footer ul {
margin-right: 1rem;
}
.section-one section {
margin: 2rem 0;
}
.section-one h4 {
padding: 0.5rem 0;
}
.section-one .text-two {
padding: 0.5rem 0;
}
.section-one .text-two {
color: red;
text-decoration: none;
}
.section-two .icons {
padding: 0.5rem 0;
}
.icons a {
padding: 0 0.5rem;
text-decoration: none;
color: #fff;
}
footer ul li {
list-style: none;
}
.footer-line {
width: 100%;
height: 2px;
background: #fff;
margin: 1rem 0;
}
#btn span i {
color: #fff;
}
@media (min-width: 1000px) {
.collapse {
display: flex;
justify-content:flex-end;
}
footer li {
padding: 0.5rem;
}
footer ul {
margin-right: 3rem;
}
.navbar li {
padding: 0 0.5rem;
}
.navbar ul {
margin-right: 3rem;
}
#logo {
margin-left: 1.5rem;
}
.section-one,
.section-two {
display: flex;
justify-content: space-between;
padding: 0 4rem;
padding-right: 3rem;
}
footer ul {
text-align: right;
}
.section-two {
flex-flow: row-reverse;
}
.section-one {
margin-bottom: 1rem;
}
.section-one h4 {
padding: 2rem 0;
}
footer {
text-align: left;
}
}
.content-box {
padding: 60px 0 60px 0;
}
.content-title h3 {
font-size: 40px;
font-weight: bold;
text-align: center;
margin: 0 0 10px 0;
font-family: 'Poppins', sans-serif;
color: #333333;
}
.content-title-underline {
width: 100px;
height: 5px;
background-color: #141460;
margin: 0 auto 30px auto;
}
/*====================================================================
Diagonal Line and Profile Picture Setting
===================================================================*/
.the-col {
width: 350px;
display: flex;
justify-content: space-around;
margin-bottom: 50px;
}
.all-users {
width: 350px;
height: auto;
background-color: #fff;
padding: 0;
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
.user-image {
background-color: #013A6B;
background-image: -webkit-linear-gradient(-60deg, #4747AD 50%, #fff 50%);
min-height: 200px;
padding-top: 50px;
border-radius: 10px;
}
.content-part {
padding: 30px 0 30px 0;
text-align: center;
}
.user-content {
padding: 0 0 30px 0;
}
/*.user-button {
padding: 0 0 30px 0;
}
.contact-btn {
border-radius: 30px;
padding: 10px 40px 10px 40px;
background: #060541;
}
.contact-btn:hover {
background: rgba(6, 5, 65, 0.83);
}*/
.content-footer {
text-align: center;
background: rgba(199, 195, 195, 0.1);
height: 50px;
}
.social-icons {
padding: 10px 20px;
}
/*====================================================================
Social Icons styles
===================================================================*/
.fa-twitter {
color: #50ABF1;
}
.fa-twitter {
color: #73C2FB;
}
.fa-linkedin {
color: #73C2FB;
}
.fa-facebook {
color: #4267B2;
}
.fa-facebook {
color: #73C2FB;
}
.fa-instagram{
color: #73C2FB;
}
.fa-instagram:hover{
color: #E1306C;
}
.fa-linkedin:hover{
color:#2867B2;
}.fa-facebook:hover{
color:#4267B2;
}
.fa-twitter:hover{
color: #1DA1F2;
}
.content-footer{
margin-bottom: 10%;
}
.content-footer a {
color: #060541;
}
.fa-bars{
color: white;
}
.navbar-brand h1{
font-family: 'Open Sans',sans-serif;
font-size:40px;
line-height: 1.5em;
}
.generic-image-circle {
height: 200px;
width: 200px;
background-size: cover;
background-position: center;
border-radius: 50%;
margin: 0 auto;
}
.user-image-box-1 {
background-image: url("https://res.cloudinary.com/mercyinyang/image/upload/v1567341335/mercy_-_Mercy_Inyang_fppxi9.jpg");
}
.user-image-box-2 {
background-image: url("https://res.cloudinary.com/chidi6ix/image/upload/v1571420011/20190825_112753_vdkudk.jpg");
}
.user-image-box-3 {
background-image: url("https://res.cloudinary.com/erys1521/image/upload/v1567323865/Me_jgxgkf.jpg");
}
.user-image-box-4 {
background-image: url("https://res.cloudinary.com/major/image/upload/v1571406076/IMG_20190823_004821_hsnwii.jpg");
}
.user-image-box-5 {
background-image: url("https://res.cloudinary.com/ros4eva/image/upload/v1570140043/IMG_20190927_150929_gpoaza.jpg");
}
.user-image-box-6 {
background-image: url("https://res.cloudinary.com/padom2020/image/upload/v1566740261/IMG-20190819-WA0002_xhki10.jpg");
}
.user-image-box-7 {
background-image: url("https://res.cloudinary.com/kuic/image/upload/v1566490915/startNg2019/kuic_jxb4la.jpg");
}
.user-image-box-8 {
background-image: url("https://res.cloudinary.com/chidiebere/image/upload/v1523832031/pp.jpg");
}
.user-image-box-9 {
background-image: url("https://res.cloudinary.com/geedee/image/upload/v1571420489/IMG_20190311_075802_315_hi0dii.jpg");
}
.user-image-box-10 {
background-image: url("https://res.cloudinary.com/sidebone/image/upload/v1566557645/arleuyaxygdgarwsvrha.jpg");
}
.user-image-box-11 {
background-image: url("https://res.cloudinary.com/patience/image/upload/v1566544234/peshie.jpg");
}
.user-image-box-12 {
background-image: url("https://res.cloudinary.com/emmaodia/image/upload/v1571423773/emmaodia.jpg");
}
.user-image-box-13{
background-image: url("https://res.cloudinary.com/abulwasiu22/image/upload/v1571411993/abdulwasiu02_p4qgpx.jpg");
}
.user-image-box-14 {
background-image: url("https://res.cloudinary.com/aboogeeky/image/upload/v1566541703/passport_hcist5.jpg");
}
.user-image-box-15{
background-image: url("https://res.cloudinary.com/ademolamadelewi/image/upload/v1571505429/IMG_20190910_180814_631_lgqv01.jpg");
}
.user-image-box-16{
background-image: url("https://res.cloudinary.com/rejreign/image/upload/v1566577575/Screenshot_from_2019-08-20_20-31-08_rexp8d.png");
}
.user-image-box-17{
background-image: url("https://res.cloudinary.com/rammy/image/upload/v1554506675/rammy.jpg");
}
.user-image-box-18{
background-image: url("https://res.cloudinary.com/adenike/image/upload/v1571418297/1_eiunzt.jpg");
}
.user-image-box-19{
background-image: url("https://res.cloudinary.com/onamusia/image/upload/v1567605657/Screenshot_2019-09-04_at_14.18.06_rap7kt.png");
}
.user-image-box-20{
background-image: url("https://res.cloudinary.com/omotosoyusuf/image/upload/v1566572749/yusufOmotoso_adafxo.jpg");
}
.user-image-box-21{
background-image: url("https://bit.ly/31w0RMR");
}
.user-image-box-22{
background-image: url("https://res.cloudinary.com/dqvu3ts0s/image/upload/v1502874057/IMG_20170707_065607_gqay7p.png");
}
.user-image-box-23{
background-image: url("https://res.cloudinary.com/dlkp3rtps/image/upload/v1571404933/paassport_tj_ukba4v.jpg");
}
.user-image-box-24{
background-image: url("https://res.cloudinary.com/dtbjhs8a6/image/upload/v1571405356/samples/lario/qqov6cplw8qs7uosewx7.jpg");
}
.user-image-box-74{
background-image: url("https://res.cloudinary.com/anikriz/image/upload/v1566560640/HNG%20%7CStartng%20Internship/passport_photo-min_zremwg.jpg");
}
.user-image-box-25{
background-image: url("https://res.cloudinary.com/ebukamoses/image/upload/v1570259839/MY%20PERSONAL%20PIX/DSC_1948_gb8tjn.jpg");
}
.user-image-box-26{
background-image: url("https://res.cloudinary.com/habeebability/image/upload/v1554381379/habeebability_pic.jpg");
}
.user-image-box-27{
background-image: url("https://res.cloudinary.com/hafizah/image/upload/v1566627089/Snapchat-733321432_3_ode4vf.jpg");
}
.user-image-box-28{
background-image: url("https://res.cloudinary.com/haroldb/image/upload/v1566662471/My_Photo_qjo6xz.jpg");
}
.user-image-box-29{
background-image: url("https://res.cloudinary.com/sima-inc/image/upload/v1566541929/samples/igoboSTNG_l7vvm4.jpg");
}
.user-image-box-30{
background-image: url("https://res.cloudinary.com/chimeziesolomon/image/upload/v1571403236/mypic.png_eq6fzr.jpg");
}
.user-image-box-31{
background-image: url("https://res.cloudinary.com/joshualoni2/image/upload/v1571407100/IMG-20190629-WA0011_s2kswp.jpg");
}
.user-image-box-33{
background-image: url("https://res.cloudinary.com/nnonornora/image/upload/v1571415194/IMG_20190624_100838_6_c2j4tr.jpg");
}
.user-image-box-34{
background-image: url("https://res.cloudinary.com/kuic/image/upload/v1571245043/docufix/Ellipse_3_ahe63z.png");
}
.user-image-box-35{
background-image: url("https://res.cloudinary.com/olaleye247/image/upload/v1571407030/passport_akcscg.jpg");
}
.user-image-box-36{
background-image: url("https://res.cloudinary.com/sidebone/image/upload/v1566557645/arleuyaxygdgarwsvrha.jpg");
}
.user-image-box-37{
background-image: url("https://res.cloudinary.com/adaeze123/image/upload/v1566518405/myfacepicture_fcjp8m.jpg");
}
.user-image-box-38{
background-image: url("https://res.cloudinary.com/omyasobie/image/upload/v1569340436/omi_ief366.jpg");
}
.user-image-box-39{
background-image: url("https://res.cloudinary.com/olasumboeniola/image/upload/v1571408198/FB_IMG_15700193231610244_tffkyv.jpg");
}
.user-image-box-40{
background-image: url("https://res.cloudinary.com/dlqceb87c/image/upload/v1566503590/shola_grav_het1lf.jpg");
}
.user-image-box-41{
background-image: url("https://res.cloudinary.com/el-beracah/image/upload/v1566893213/67973790_479745906182578_7630307018294191377_n.jpg_dmmkmn.jpg");
}
.user-image-box-42{
background-image: url("https://res.cloudinary.com/soares04/image/upload/v1566492008/uxxbl8xkagqeo9h00pl8.jpg");
}
.user-image-box-43{
background-image: url("https://res.cloudinary.com/saintmalik/image/upload/v1566558378/u9q6wxtekw0dv5p8hn2i.jpg");
}
.user-image-box-44{
background-image: url("https://res.cloudinary.com/sape123/image/upload/v1571408607/IMG_20190518_183300_785_500x466_2_sykpju.jpg");
}
.user-image-box-45{
background-image: url("https://res.cloudinary.com/michelle300/image/upload/v1566599180/81EBDAE3-32FE-4C3D-B237-EC19C38207F8_na3ccj.jpg");
}
.user-image-box-46{
background-image: url("https://res.cloudinary.com/dxonc8cxc/image/upload/v1566546938/Chigozie_i5bkw8.jpg");
}
.user-image-box-47{
background-image: url("https://pbs.twimg.com/profile_images/825105787467026436/0GILl_nN_400x400.jpg");
}
.user-image-box-48{
background-image: url("https://res.cloudinary.com/ecstasy/image/upload/v1571409691/Passport/IMG_20190817_183732_veknsq.jpg");
}
.user-image-box-49{
background-image: url("https://res.cloudinary.com/onose/image/upload/v1571412582/Ono/j5wdvxagvqr2rvthbfzr.jpg");
}
.user-image-box-50{
background-image: url("https://res.cloudinary.com/tomisin/image/upload/c_scale,h_177,w_138/v1571413110/tomisin_ebjcqo.png");
}
.user-image-box-51{
background-image: url("https://res.cloudinary.com/ajiva/image/upload/v1568641919/profile-pic.jpg");
}
.user-image-box-52{
background-image: url("https://res.cloudinary.com/cypher/image/upload/v1566537651/Yusuf_zrin2n.jpg");
}
.user-image-box-53{
background-image: url("https://pbs.twimg.com/profile_images/559637048030953473/saIYHqN8_400x400.jpeg");
}
.user-image-box-54{
background-image: url("https://res.cloudinary.com/dvqlwtdpk/image/upload/v1571414014/81A550CC-DF2C-4715-8107-368B3027FBB4_byznsq.jpg");
}
.user-image-box-55{
background-image: url("https://res.cloudinary.com/wonderwoman/image/upload/v1571413682/docufix/cloudinary_krfskf.jpg");
}
.user-image-box-56{
background-image: url("https://res.cloudinary.com/ositu/image/upload/v1571414130/bankole/banks_llrq1m.jpg");
}
.user-image-box-57{
background-image: url("https://res.cloudinary.com/omobola/image/upload/v1566608564/StartNG/Saudat.png");
}
.user-image-box-58{
background-image: url("https://res.cloudinary.com/young-einstein/image/upload/v1567517232/passport_cjsegl.jpg");
}
.user-image-box-59{
background-image: url("https://res.cloudinary.com/mirakul1/image/upload/ar_1:1,c_fill,e_art:hokusai,g_auto,w_416/v1570188521/oe4mjfk792exqjpzwkxz.jpg");
}
.user-image-box-60{
background-image: url("https://res.cloudinary.com/lodgendury/image/upload/v1571417716/20181113_213452_cfhslm.jpg");
}
.user-image-box-61{
background-image: url("https://res.cloudinary.com/luqmonac56/image/upload/v1571416406/IMG-20190331-WA0006_mo6bmh.jpg");
}
.user-image-box-62{
background-image: url("https://res.cloudinary.com/haroldb/image/upload/v1566662471/My_Photo_qjo6xz.jpg");
}
.user-image-box-63{
background-image: url("https://pbs.twimg.com/profile_images/1092875947756437507/HTY2WmLx_400x400.jpg");
}
.user-image-box-65{
background-image: url("https://res.cloudinary.com/dowrygm9b/image/upload/v1570267346/IMG_6894-1_ykvrgg.jpg");
}
.user-image-box-66{
background-image: url("https://res.cloudinary.com/mcnoble/image/upload/v1566593070/StartNG/festus_g91ynv.webp");
}
.user-image-box-67{
background-image: url("https://res.cloudinary.com/yugach/image/upload/v1571404456/yugach_wn6y2u.jpg");
}
.user-image-box-68{
background-image: url("https://res.cloudinary.com/dzwtycmnl/image/upload/v1566590092/IMG_2602_osa6ad.jpg");
}
.user-image-box-69{
background-image: url("https://res.cloudinary.com/martinideen/image/upload/c_scale,h_192,w_192/v1566761204/Martini_For_Real_zppc1k.jpg");
}
.user-image-box-71{
background-image: url("https://res.cloudinary.com/maphorbs/image/upload/v1571404331/IMG_20190824_183700_ec93wk.jpg");
}
.user-image-box-72{
background-image: url("https://res.cloudinary.com/chidi6ix/image/upload/v1571407468/IMG_20190909_152905_EDIT_1_tppov7.jpg");
}
.user-image-box-73{
background-image: url("https://res.cloudinary.com/aburahman/image/upload/v1566652016/AbdulRahman%20Pictures/gzscf5hwgqalt8kiogph.jpg");
}
.pagination a {
cursor: pointer;
}
.page-item.active .page-link {
color: #fff;
background-color: #003152;
border-color: #003152;
}
.page-link {
color: #003152;
}
.the-col,
.line,
.left,
.head,
.right {
opacity: 0;
}
</style>
<script type="text/javascript" src ="//widget.instabot.io/jsapi/rokoInstabot.js" crossorigin>
apiKey: "vXj90M2ifAvu8fS739jFKepTXtES72ur59sGR5TPK9c="
</script>
</head>
<body>
<header>
<div>
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="nav">
<a class="navbar-brand" href="index.html" id="logo">
<svg width="321" height="100" viewBox="0 0 321 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37.5171 38.9927C37.5171 45.4559 35.673 50.4062 31.9849 53.8438C28.3146 57.2812 23.0062 59 16.0596 59H4.94141V19.7373H17.2681C23.6776 19.7373 28.6548 21.4292 32.1997 24.813C35.7446 28.1968 37.5171 32.9233 37.5171 38.9927ZM28.8696 39.2075C28.8696 30.7749 25.1457 26.5586 17.6978 26.5586H13.2666V52.125H16.8384C24.8592 52.125 28.8696 47.8192 28.8696 39.2075ZM86.7915 39.3149C86.7915 45.814 85.1802 50.8091 81.9575 54.3003C78.7349 57.7915 74.1157 59.5371 68.1001 59.5371C62.0845 59.5371 57.4653 57.7915 54.2427 54.3003C51.02 50.8091 49.4087 45.7961 49.4087 39.2612C49.4087 32.7264 51.02 27.7402 54.2427 24.3027C57.4832 20.8473 62.1203 19.1196 68.1538 19.1196C74.1873 19.1196 78.7975 20.8563 81.9844 24.3296C85.1891 27.8029 86.7915 32.798 86.7915 39.3149ZM58.1367 39.3149C58.1367 43.7013 58.9692 47.0046 60.6343 49.2246C62.2993 51.4447 64.7879 52.5547 68.1001 52.5547C74.7424 52.5547 78.0635 48.1414 78.0635 39.3149C78.0635 30.4705 74.7603 26.0483 68.1538 26.0483C64.8416 26.0483 62.3441 27.1673 60.6611 29.4053C58.9782 31.6253 58.1367 34.9285 58.1367 39.3149ZM117.106 26.1021C113.973 26.1021 111.547 27.2837 109.828 29.647C108.109 31.9924 107.25 35.2687 107.25 39.4761C107.25 48.231 110.535 52.6084 117.106 52.6084C119.863 52.6084 123.202 51.9191 127.123 50.5405V57.5229C123.9 58.8657 120.302 59.5371 116.327 59.5371C110.616 59.5371 106.247 57.8094 103.222 54.354C100.196 50.8807 98.6831 45.9035 98.6831 39.4224C98.6831 35.3403 99.4261 31.7686 100.912 28.707C102.398 25.6276 104.529 23.2733 107.304 21.644C110.097 19.9969 113.364 19.1733 117.106 19.1733C120.919 19.1733 124.751 20.0954 128.6 21.9395L125.915 28.707C124.446 28.0088 122.969 27.4001 121.483 26.8809C119.997 26.3617 118.538 26.1021 117.106 26.1021ZM172.96 19.7373V45.1426C172.96 48.043 172.306 50.5853 171 52.7695C169.71 54.9538 167.84 56.6278 165.387 57.7915C162.934 58.9552 160.034 59.5371 156.686 59.5371C151.637 59.5371 147.716 58.248 144.923 55.6699C142.13 53.0739 140.733 49.529 140.733 45.0352V19.7373H149.032V43.7729C149.032 46.7987 149.64 49.0187 150.858 50.4331C152.075 51.8475 154.09 52.5547 156.9 52.5547C159.622 52.5547 161.591 51.8475 162.809 50.4331C164.044 49.0008 164.662 46.7629 164.662 43.7192V19.7373H172.96ZM196.265 59H188.074V19.7373H210.579V26.5586H196.265V36.6831H209.585V43.4775H196.265V59ZM223.76 59V19.7373H232.085V59H223.76Z" fill="white"/>
<path d="M267.093 12.1182L268.688 10.689C269.728 9.75781 269.508 8.2006 268.254 7.5265L256.171 1.02961C252.999 -0.672068 248.963 -0.227882 246.357 2.11339C243.744 4.45278 243.248 8.06934 245.147 10.908L252.397 21.734C253.151 22.8589 254.897 23.0539 255.927 22.1229L257.524 20.6937L269.729 31.6137L279.288 23.0471L267.093 12.1182Z" fill="white"/>
<path d="M319.462 8.04977C318.8 6.80386 316.94 6.49363 315.832 7.49103L309.996 12.7205C309.141 13.4865 307.661 13.4865 306.806 12.7205C305.927 11.9328 305.927 10.6497 306.806 9.86195L312.642 4.63253C313.74 3.64888 313.424 1.97968 312.018 1.37916C305.989 -1.20294 298.767 -0.0915298 294.044 4.14481C289.706 8.02982 288.305 13.8041 290.332 18.9032L265.094 41.5186C259.408 39.7023 252.962 40.9579 248.624 44.845C243.899 49.0794 242.658 55.5525 245.538 60.9517C246.209 62.2146 248.073 62.4914 249.168 61.5104L255.004 56.281C255.885 55.4953 257.317 55.4933 258.194 56.283C259.073 57.0664 259.079 58.3421 258.194 59.1395L252.358 64.3689C251.26 65.3526 251.576 67.0218 252.982 67.6223C255.147 68.5499 257.467 69 259.771 69C263.877 69 267.929 67.5688 270.953 64.8564C275.293 60.9714 276.692 55.1971 274.665 50.098L299.904 27.4829C305.588 29.2971 312.036 28.0435 316.376 24.1565C321.101 19.922 322.342 13.449 319.462 8.04977Z" fill="white"/>
<path d="M317.67 51.9063C310.012 45.0694 305.814 42.3531 296.837 36.0972L284.079 47.5306C290.389 54.7891 294.21 59.4707 301.376 65.8947C303.72 67.9951 306.835 68.975 309.9 68.975C312.149 68.975 314.37 68.4965 316.236 67.2944C318.956 65.5374 320.67 62.8309 320.937 59.8718C321.203 56.9087 320.014 54.0066 317.67 51.9063ZM311.172 60.2011C310.274 60.9343 308.875 60.8639 308.016 60.0941L299.082 52.0884C298.223 51.3186 298.144 50.0646 298.962 49.2598C299.836 48.4008 301.32 48.3775 302.227 49.1897L311.25 57.2756C312.157 58.0881 312.131 59.4185 311.172 60.2011Z" fill="white"/>
</svg>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation" id="btn">
<span><i class="fa fa-bars" aria-hidden="true" id="toggle"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="about_us.html">About Us<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="teampage.html">Team</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Tools
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="fileUpload.html">Compare files</a>
<a class="dropdown-item" href="fileDelimiter.html">Check for duplicates</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Support
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="faq.html">FAQ</a>
<a class="dropdown-item" href="userguide.html">User guide</a>
<a class="dropdown-item" href="use.html">Why use Docufix</a>
<a class="dropdown-item" href="feedback.html">Feedback</a>
<a class="dropdown-item" href="privacy.html">Privacy policy</a>
<a class="dropdown-item" href="t&c.html">Terms & Conditions</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="upgrade.html" target="_blank">Upgrade</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<main>
<!-- TEAM -->
<section id="team">
<div class="content-box">
<div class="content-title">
<h3 class="head">Meet Our Team</h3>
<div class="content-title-underline line"></div>
</div>
<div class="container">
<div class="row">
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-27"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Hafizah Muhyideen</h3>
<p>Front-end</p>
</div>
<div class="user-content"><b>Footer</b>
<p class="text-center pt-5">SlackUsername : @hafizaaah</p>
</div>
</div>
<div class="content-footer ">
<a href="https://www.twitter.com/strictyfiza">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://www.instagram.com/ha_fizaah_">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="#">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="http://www.facebook.com/hafizah.muhyideen7">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-28"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Abraham Harold</h3>
<p>Front-end</p>
</div>
<div class="user-content"><b>Team Comparison Page</b>
<p class="text-center pt-5">SlackUsername : @Haroldfr3shboss</p>
</div>
</div>
<div class="content-footer ">
<a href="https://www.twitter.com/haroldfr3shboss">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://www.instagram.com/haroldfr3shboss/">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="https://www.linkedin.com/in/abraham-harold-pmec-0ab799b3/">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="https://m.facebook.com/haroldfr3shboss">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-29"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>IGOBO JOSHUA F</h3>
<p>Front-end</p>
</div>
<div class="user-content"><b>Footer</b>
<p class="text-center pt-5">SlackUsername : @IGOBO</p>
</div>
</div>
<div class="content-footer ">
<a href="https://www.twitter.com/igobojoshua">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://instagram.com/joshua10043">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="https://www.linkedin.com/in/igobo-joshua-f-219072167">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="https://www.facebook.com/igobo.joshua">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-30"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Iwuoha Chimezie Solomon</h3>
<p>Front-end/Mobile</p>
</div>
<div class="user-content"><b>About Us Page</b>
<p class="text-center pt-5">SlackUsername : @iwuoha chimezie solomon</p>
</div>
</div>
<div class="content-footer ">
<a href="https://twitter.com/6e3c25b935fd489">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://www.instagram.com/chimezie.solomon/">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="https://www.linkedin.com/in/chimezie-solomon-iwuoha-tos-33699415b/">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="https://www.facebook.com/chimezie.solomon1">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-31"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Joshua Odejide</h3>
<p>Front-end</p>
</div>
<div class="user-content"><b>Upload Page</b>
<p class="text-center pt-5">SlackUsername : @Joshua Odjide</p>
</div>
</div>
<div class="content-footer ">
<a href="https://mobile.twitter.com/JOdejide">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://www.instagram.com/sir_novo/">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="#">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="https://m.facebook.com/joshua.odejide?ref=bookmarks">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-33"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Ndajem Nora </h3>
<p>Front-end</p>
</div>
<div class="user-content"><b>Homepage</b>
<p class="text-center pt-5">SlackUsername : @kingz</p>
</div>
</div>
<div class="content-footer ">
<a href="#">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="#">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="https://www.linkedin.com/in/nora-ndajem-a699aa98">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="https://www.facebook.com/nora.king.5209">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-35"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Bisiriyu Daniel</h3>
<p>Front-End Developer</p>
</div>
<div class="user-content"><b>About us page</b>
<p class="text-center pt-5">SlackUsername : @leye</p>
</div>
</div>
<div class="content-footer ">
<a href="https://twitter.com/ola_leye_">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://www.instagram.com/danielbisiriyu/?hl=en">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="#">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="#">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">
<div class="all-users side">
<div class="user-image">
<div class="generic-image-circle user-image-box-36"></div>
</div>
<div class="content-part back text-center">
<div class="user-info">
<h3>Amodu Ola-adewale</h3>
<p>Front-End</p>
</div>
<div class="user-content"><b>About page</b>
<p class="text-center pt-5">SlackUsername : @sidebone</p>
</div>
</div>
<div class="content-footer ">
<a href="https://twitter.com/I_Am_Amodu/status/1162042614167810050?s=08">
<i class="fab fa-twitter fa-2x social-icons"></i>
</a>
<a href="https://www.instagram.com/?hl=en">
<i class="fab fa-instagram fa-2x social-icons"></i>
</a>
<a href="https://www.linkedin.com/">
<i class="fab fa-linkedin fa-2x social-icons"></i>
</a>
<a href="https://m.facebook.com/?hrc=1&refsrc=http%3A%2F%2Fwww.google.com%2F&_rdr">
<i class="fab fa-facebook fa-2x social-icons"></i>
</a>
</div>
</div>
</div>
<div class="col the-col">