-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1151 lines (1126 loc) · 128 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TransitFlow </title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" href="img/Logo.png " type="img/x-icon">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@800&family=Nosifer&family=Playpen+Sans:wght@800&family=Rubik+Mono+One&family=Sedgwick+Ave+Display&family=Sriracha&display=swap" rel="stylesheet">
</head>
<body>
<!-- nav bar-->
<header>
<div>
<header>
<header id="header">
<div class="navbar" id="navbar">
<div class=" logo items" id="logo" >
<img style="width: 100%; height: 5vh;" src="img/Logo.png" alt="logo" srcset="">
<h4 class="items">TransitFlow</h4>
</div>
<div class="head-message">
<div style="display: flex; gap: .6rem;" >
<div style="display: flex;gap: .6rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 64 64" fill="none">
<circle cx="31.6309" cy="32" r="31" fill="#111C55" stroke="#273270"/>
<path d="M32.1309 42.5C38.206 42.5 43.1309 37.5751 43.1309 31.5C43.1309 25.4249 38.206 20.5 32.1309 20.5C26.0557 20.5 21.1309 25.4249 21.1309 31.5C21.1309 37.5751 26.0557 42.5 32.1309 42.5Z" stroke="#F6B426"/>
<path d="M32.1309 22.5V31.7058L37.1309 35.5" stroke="#F6B426"/>
</svg>
<p>
Mon - Sat 9.00 - 18.00
</p>
</div>
<div style="display: flex; gap: .6rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 64 64" fill="none">
<circle cx="31.6309" cy="32" r="31" fill="#111C55" stroke="#273270"/>
<path d="M41.1268 23.5H23.1349C22.5804 23.5 22.1309 23.8755 22.1309 24.3387V37.6613C22.1309 38.1245 22.5804 38.5 23.1349 38.5H41.1268C41.6813 38.5 42.1309 38.1245 42.1309 37.6613V24.3387C42.1309 23.8755 41.6813 23.5 41.1268 23.5Z" stroke="#F6B426"/>
<path d="M22.1309 23.5L32.5556 30.5L42.1309 23.7294" stroke="#F6B426"/>
</svg>
<p>
Email:
</p>
</div>
<div style="display: flex;gap: .5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 64 63" fill="none">
<circle cx="31.6309" cy="31.5" r="31" fill="#111C55" stroke="#273270"/>
<path d="M24.1049 22.1408C23.9703 22.1449 23.8379 22.1743 23.7157 22.2272C23.5934 22.28 23.4837 22.3554 23.393 22.4487C23.3024 22.542 23.2326 22.6514 23.1879 22.7704C23.1432 22.8894 23.1245 23.0156 23.1328 23.1416C23.2673 25.3015 23.9013 30.5716 26.9368 33.8583C30.5718 37.8181 35.3057 39.1824 40.1626 38.9808C40.4229 38.9662 40.6676 38.8596 40.8474 38.6826C41.0271 38.5055 41.1284 38.2712 41.1309 38.0268V34.5674C41.1278 34.2446 41.0091 33.9322 40.7938 33.6802C40.5785 33.4282 40.2791 33.2513 39.9435 33.1779L37.5113 32.6739C37.2104 32.6138 36.8973 32.6397 36.6123 32.7481C36.3273 32.8566 36.0837 33.0427 35.9128 33.2823L35.3749 34.0454C35.3255 34.1153 35.2516 34.1668 35.1661 34.1911C35.0805 34.2154 34.9885 34.211 34.9061 34.1786C33.6688 33.6783 28.7389 31.5184 28.1971 27.8753C28.1865 27.805 28.1984 27.7333 28.2312 27.6692C28.264 27.6051 28.3163 27.5516 28.3816 27.5154L29.3576 26.9574C29.6253 26.802 29.8355 26.5732 29.9599 26.3022C30.0843 26.0311 30.1168 25.7308 30.053 25.4419L29.5189 23.1236C29.4409 22.7988 29.245 22.5093 28.9648 22.3045C28.6846 22.0998 28.3373 21.9923 27.982 22.0004L24.1049 22.1408Z" stroke="#F6B426"/>
</svg>
<p>
call Me:
07068795963
</p>
</div>
</div>
</div>
<div class="mobile">
<button class="hamburger">
<span class="bar"></span>
</button>
<nav class="mobile-nav">
<a class="" href="#he"> home</a>
<a href="about-page.html">About us </a>
<a href="service.html">service</a>
<a href="contact.html">Contacts</a>
<a href="project.html">projects</a>
</nav>
</div>
</header>
</header>
</div>
</header>
<!-- nav bar end -->
<!-- hero section -->
<div>
<div class="hero-section">
<div>
<div class="nav-menu">
<nav>
<ul class="ali" id="home">
<li class="hom active"><a href="#he">home </a>|</li>
<li class="hom"><a href="#myguy">about us</a> |</li>
<li class="hom" id="#"><a href="service.html">service</a> |</li>
<li class="hom"><a href="contact.html">Contacts</a> |</li>
<li class="hom"><a href="project.html">projects</a> |</li>
<!-- <button><a href="">login</a></button> -->
<!-- <li><a href="home">Contacts</a></li> -->
</ul>
</nav>
<div style="display: flex; gap: 1rem;" >
<div>
<a href="https://www.instagram.com/jayni_yi?igshid=YzAwZjE1ZTI0Zg==">
<svg class="socials" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M14.0759 2.03236C15.173 2.03551 16.2242 2.45628 17 3.20276C17.7757 3.94925 18.213 4.9608 18.2162 6.01648V13.9839C18.213 15.0396 17.7757 16.0511 17 16.7976C16.2242 17.5441 15.173 17.9649 14.0759 17.968H5.79618C4.69911 17.9649 3.6479 17.5441 2.87215 16.7976C2.0964 16.0511 1.65914 15.0396 1.65586 13.9839V6.01648C1.65914 4.9608 2.0964 3.94925 2.87215 3.20276C3.6479 2.45628 4.69911 2.03551 5.79618 2.03236H14.0759ZM14.0759 0.438965H5.79618C2.60821 0.438965 0 2.94878 0 6.01648V13.9839C0 17.0516 2.60821 19.5614 5.79618 19.5614H14.0759C17.2639 19.5614 19.8721 17.0516 19.8721 13.9839V6.01648C19.8721 2.94878 17.2639 0.438965 14.0759 0.438965Z" fill="white"/>
<path d="M15.3177 6.01677C15.072 6.01677 14.8319 5.94668 14.6277 5.81535C14.4234 5.68403 14.2642 5.49737 14.1702 5.27898C14.0762 5.0606 14.0516 4.82029 14.0995 4.58846C14.1475 4.35662 14.2658 4.14366 14.4395 3.97652C14.6131 3.80937 14.8345 3.69555 15.0754 3.64943C15.3163 3.60331 15.566 3.62698 15.793 3.71744C16.0199 3.8079 16.2139 3.96108 16.3504 4.15763C16.4868 4.35417 16.5597 4.58524 16.5597 4.82162C16.56 4.97866 16.5282 5.13423 16.4659 5.27938C16.4036 5.42454 16.3121 5.55642 16.1967 5.66747C16.0813 5.77852 15.9442 5.86654 15.7934 5.92648C15.6425 5.98642 15.4809 6.01711 15.3177 6.01677ZM9.9358 6.81325C10.5909 6.81325 11.2313 7.00018 11.7759 7.3504C12.3206 7.70061 12.7452 8.19839 12.9958 8.78077C13.2465 9.36316 13.3121 10.004 13.1843 10.6223C13.0565 11.2405 12.7411 11.8084 12.2779 12.2542C11.8146 12.6999 11.2245 13.0035 10.582 13.1264C9.93948 13.2494 9.27351 13.1863 8.66829 12.9451C8.06307 12.7038 7.54578 12.2953 7.18184 11.7712C6.81789 11.2471 6.62364 10.6308 6.62364 10.0005C6.62458 9.15544 6.97384 8.34529 7.59478 7.74777C8.21573 7.15024 9.05765 6.81416 9.9358 6.81325ZM9.9358 5.21986C8.95322 5.21986 7.9927 5.50024 7.17571 6.02554C6.35873 6.55084 5.72196 7.29747 5.34594 8.17101C4.96993 9.04455 4.87154 10.0058 5.06323 10.9331C5.25493 11.8605 5.72809 12.7123 6.42288 13.3809C7.11767 14.0494 8.00289 14.5048 8.96659 14.6892C9.93029 14.8737 10.9292 14.779 11.837 14.4172C12.7448 14.0553 13.5207 13.4426 14.0666 12.6564C14.6125 11.8703 14.9038 10.946 14.9038 10.0005C14.9038 8.73257 14.3804 7.51661 13.4487 6.62007C12.517 5.72353 11.2534 5.21986 9.9358 5.21986Z" fill="white"/>
</svg>
</a>
</div>
<div>
<a href="">
<svg class="socials" xmlns="http://www.w3.org/2000/svg" width="22" height="20" viewBox="0 0 22 20" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.4065 10.0578C21.4065 4.74704 16.8092 0.440918 11.1393 0.440918C5.4694 0.440918 0.87207 4.74704 0.87207 10.0578C0.87207 14.8576 4.62602 18.8362 9.53503 19.5583V12.8385H6.92743V10.0578H9.53503V7.93907C9.53503 5.52927 11.0682 4.19708 13.4132 4.19708C14.5366 4.19708 15.7119 4.38512 15.7119 4.38512V6.75199H14.4165C13.1418 6.75199 12.7431 7.49301 12.7431 8.25463V10.0578H15.5904L15.1357 12.8385H12.7435V19.5592C17.6525 18.8375 21.4065 14.8589 21.4065 10.0578Z" fill="white"/>
</svg>
</a>
</div>
<div>
<a href="https://x.com/JosephObasan?t=sR-oiURiIIYlOkXXjIT25Q&s=09">
<svg class="socials" xmlns="http://www.w3.org/2000/svg" width="20" height="16" viewBox="0 0 20 16" fill="none">
<path d="M19.5756 2.1537C18.8566 2.46592 18.0958 2.67161 17.3172 2.76428C18.1354 2.28554 18.7507 1.52498 19.0477 0.625233C18.2742 1.07722 17.4293 1.39436 16.5493 1.56306C16.1787 1.17497 15.733 0.866237 15.2393 0.65562C14.7456 0.445004 14.2143 0.336906 13.6775 0.337897C11.5041 0.337897 9.74533 2.06989 9.74533 4.20495C9.74379 4.50193 9.77785 4.79802 9.84677 5.08691C8.28834 5.0139 6.76231 4.61663 5.36632 3.92051C3.97033 3.22439 2.73512 2.24475 1.73972 1.04426C1.39051 1.63255 1.20583 2.30377 1.20497 2.98777C1.20497 4.32866 1.90506 5.51392 2.96217 6.20832C2.33586 6.19346 1.72238 6.02781 1.17382 5.72543V5.77332C1.17382 7.64898 2.53166 9.20937 4.32879 9.56455C3.99084 9.65458 3.64259 9.70019 3.29284 9.70024C3.04467 9.70067 2.79706 9.67661 2.55362 9.6284C3.05322 11.1648 4.5073 12.2823 6.22975 12.3142C4.83014 13.3921 3.11178 13.9746 1.34475 13.9704C1.0311 13.9699 0.717739 13.9512 0.40625 13.9145C2.20385 15.0615 4.29342 15.6682 6.42624 15.6624C13.6691 15.6624 17.6259 9.76808 17.6259 4.65591C17.6259 4.4883 17.6216 4.32068 17.6136 4.15706C18.3816 3.61115 19.046 2.93274 19.5756 2.1537Z" fill="white"/>
</svg>
</a>
</div>
<div>
<a href="https://www.linkedin.com/in/joseph-obasan-59772a288?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">
<svg class="socials" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" >
<path d="M18.4415 0.291016H2.2354C1.34987 0.291016 0.576172 0.928181 0.576172 1.80331V18.0454C0.576172 18.9253 1.34987 19.7094 2.2354 19.7094H18.4367C19.327 19.7094 19.9945 18.9201 19.9945 18.0454V1.80331C19.9997 0.928181 19.327 0.291016 18.4415 0.291016ZM6.59543 16.4772H3.81358V7.82777H6.59543V16.4772ZM5.30073 6.51269H5.28079C4.39049 6.51269 3.81401 5.84996 3.81401 5.02034C3.81401 4.17555 4.40566 3.52842 5.3159 3.52842C6.22613 3.52842 6.78311 4.17079 6.80305 5.02034C6.80262 5.84996 6.22613 6.51269 5.30073 6.51269ZM16.7623 16.4772H13.9805V11.7478C13.9805 10.6148 13.5756 9.84069 12.5692 9.84069C11.8002 9.84069 11.3451 10.3608 11.1427 10.8675C11.0669 11.0496 11.0465 11.2975 11.0465 11.5506V16.4772H8.26463V7.82777H11.0465V9.03145C11.4513 8.45496 12.0837 7.62535 13.5553 7.62535C15.3814 7.62535 16.7628 8.82903 16.7628 11.4241L16.7623 16.4772Z" fill="white"/>
</svg>
</a>
</div>
<!-- <div>
<button>Request Demo</button>
</div> -->
</div>
</div>
</div>
<div class="hero-p">
<p>
Logistics & Supply Chain Solutions
</p>
<h1>
Your Gateway <br>
to any Destination in the World
</h1>
<h4>
As a one-stop logistic solutions provider, we are able to offer our reliable and efficient freight services worldwide. Our network spans over 107 agents in 127 countries worldwide.
</h4>
<button class="explore">
<a href="#">
Explore More
</a>
</button>
</div>
</div>
</div>
<!-- hero section end -->
<!-- what we do mobile -->
<div>
<div class="what-we-do ">
<h1 class="what">
Safe & Reliable Cargo <br> Solutions
</h1>
<div>
<div class="what-we-do-svg">
<svg xmlns="http://www.w3.org/2000/svg" width="84" height="84" viewBox="0 0 84 116" fill="none">
<path d="M33.6602 7.16494V1" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M58.3195 35.9345C54.5692 49.035 37.2046 53.6073 34.1221 54.3265C33.8187 54.4037 33.5008 54.4037 33.1974 54.3265C30.1149 53.6073 12.7503 49.035 9 35.9345V27.1494C8.99996 26.7167 9.13652 26.295 9.39021 25.9445C9.64389 25.594 10.0018 25.3324 10.4128 25.1972L33.0176 17.6452C33.436 17.5164 33.8835 17.5164 34.3019 17.6452L56.9067 25.1972C57.3178 25.3324 57.6756 25.594 57.9293 25.9445C58.183 26.295 58.3195 26.7167 58.3195 27.1494V35.9345Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.1271 47.6652C31.6883 47.1036 17.9496 43.5341 14.9824 33.3066" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.9824 9.98267V23.136L33.5288 16.555L52.0752 23.136V9.98267C52.0752 8.32581 50.7321 6.98267 49.0752 6.98267H17.9824C16.3256 6.98267 14.9824 8.32581 14.9824 9.98267Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2"/>
<path d="M33.6602 37.9898V17.5427" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M38.9141 36.8963L38.9141 28.5205" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.7686 17.7515V11.7688" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.8613 20.1446V9.37573" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="what-we-do-text">
<h1>Sea Transport Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
<div class="what-we-do-svg">
<svg xmlns="http://www.w3.org/2000/svg" width="77" height="116" viewBox="0 0 77 116" fill="none">
<path d="M2.33398 45H54.7149" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.7147 45V2.91304C32.7147 2.40567 32.5097 1.91908 32.1448 1.56032C31.7799 1.20155 31.2851 1 30.7691 1H7.42214C6.90614 1 6.41128 1.20155 6.04641 1.56032C5.68154 1.91908 5.47656 2.40567 5.47656 2.91304V45" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.7148 13.5715H48.572C50.2288 13.5715 51.572 14.9147 51.572 16.5715V43.9525H32.7148V13.5715Z" fill="#FFD550" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.8574 10.4285H21.1908" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.28613 40.8096L1.28613 26.1429" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M55.7627 30.3333L55.7627 15.6666" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M35.8574 9.38086L43.1908 9.38086" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 26.1428H24.3333" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.8574 35.5715H21.1908" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M40.0479 35.5715H44.2383" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M40.0479 26.1428H44.2383" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="what-we-do-text">
<h1 class="">Warehousing Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
<div class="what-we-do-svg">
<svg xmlns="http://www.w3.org/2000/svg" width="76" height="115" viewBox="0 0 76 115" fill="none">
<path d="M17.3047 55.4348H53.1743" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.333 40.4766L49.855 31.1317" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.69531 37.8877L15.7105 43.9029" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 35.7139L7.01521 41.7291" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.7687 35.4434L25.2262 44.5155C26.4873 45.7266 28.0962 46.4883 29.8137 46.6874C31.5313 46.8865 33.2657 46.5124 34.759 45.6206L72.7396 23.0045L68.0735 17.1449C66.8598 15.6262 65.1558 14.6023 63.2695 14.2582C61.3832 13.9141 59.439 14.2726 57.7882 15.2688L46.6499 21.9765L31.5981 16.8365L27.4589 18.6612C27.1492 18.7971 26.8779 19.0108 26.6701 19.2824C26.4622 19.554 26.3244 19.8749 26.2694 20.2154C26.2144 20.556 26.244 20.9052 26.3554 21.2309C26.4669 21.5567 26.6565 21.8484 26.907 22.0793L34.6085 29.1725L27.5843 33.2845L20.5602 30.2005L16.3457 32.0509C16.0391 32.1859 15.7701 32.397 15.5632 32.6652C15.3563 32.9335 15.2179 33.2503 15.1606 33.5871C15.1034 33.9239 15.129 34.27 15.2351 34.5941C15.3413 34.9183 15.5247 35.2101 15.7687 35.4434V35.4434Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M68.9352 18.4781C62.9052 23.2141 56.9528 23.8094 52.6309 18.4781L56.0268 16.2707C60.2468 13.5277 65.8664 14.4886 68.9352 18.4781Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2"/>
</svg>
<div class="what-we-do-text">
<h1>Air Fright Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
<div class="what-we-do-svg">
<svg xmlns="http://www.w3.org/2000/svg" width="77" height="126" viewBox="0 0 77 126" fill="none">
<path d="M42.0713 28.7858V18.8215H47.6681C50.5026 18.8215 53.0574 20.5309 54.1387 23.1511L56.1791 28.0951C56.3149 28.4242 56.073 28.7858 55.7169 28.7858H42.0713Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2"/>
<path d="M4.42871 35.4285H42.0716" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M45.3929 53.1431C49.0616 53.1431 52.0357 50.169 52.0357 46.5003C52.0357 42.8315 49.0616 39.8574 45.3929 39.8574C41.7241 39.8574 38.75 42.8315 38.75 46.5003C38.75 50.169 41.7241 53.1431 45.3929 53.1431Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.6067 53.1431C20.2755 53.1431 23.2496 50.169 23.2496 46.5003C23.2496 42.8315 20.2755 39.8574 16.6067 39.8574C12.938 39.8574 9.96387 42.8315 9.96387 46.5003C9.96387 50.169 12.938 53.1431 16.6067 53.1431Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M38.75 45.3926H23.25" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.90907 45.3926H6.31085C5.81168 45.3926 5.33295 45.1884 4.97998 44.8251C4.62701 44.4617 4.42871 43.9689 4.42871 43.4551V16.3301C4.42871 15.8162 4.62701 15.3234 4.97998 14.9601C5.33295 14.5967 5.81168 14.3926 6.31085 14.3926H42.0716V40.3551" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.0713 28.7861H57.5713V43.548C57.5713 44.0374 57.3672 44.5068 57.0038 44.8528C56.6405 45.1989 56.1476 45.3933 55.6338 45.3933H51.8972" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.85742 28.0947L8.85742 18.8215" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.7854 31L38.0586 31" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.786 49.7148L32.1074 49.7148" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="what-we-do-text">
<h1>Air Fright Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- what-we-do desktop -->
<div class="what-we-do-desktop items">
<div style="display: flex;justify-content: center; gap: 3rem;">
<div>
<p class="whatt">
what Do We Do
</p>
<h2>
Safe & Reliable Cargo Solutions
</h2>
</div>
<div>
<div style="display: flex;">
<div style="display: flex;gap: 1rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="76" height="115" viewBox="0 0 84 116" fill="none">
<path d="M33.6602 7.16494V1" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M58.3195 35.9345C54.5692 49.035 37.2046 53.6073 34.1221 54.3265C33.8187 54.4037 33.5008 54.4037 33.1974 54.3265C30.1149 53.6073 12.7503 49.035 9 35.9345V27.1494C8.99996 26.7167 9.13652 26.295 9.39021 25.9445C9.64389 25.594 10.0018 25.3324 10.4128 25.1972L33.0176 17.6452C33.436 17.5164 33.8835 17.5164 34.3019 17.6452L56.9067 25.1972C57.3178 25.3324 57.6756 25.594 57.9293 25.9445C58.183 26.295 58.3195 26.7167 58.3195 27.1494V35.9345Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.1271 47.6652C31.6883 47.1036 17.9496 43.5341 14.9824 33.3066" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.9824 9.98267V23.136L33.5288 16.555L52.0752 23.136V9.98267C52.0752 8.32581 50.7321 6.98267 49.0752 6.98267H17.9824C16.3256 6.98267 14.9824 8.32581 14.9824 9.98267Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2"/>
<path d="M33.6602 37.9898V17.5427" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M38.9141 36.8963L38.9141 28.5205" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.7686 17.7515V11.7688" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M56.8613 20.1446V9.37573" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<hr>
<div class="">
<h1>Sea Transport Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
<div style="display: flex;gap: 1rem;" >
<svg xmlns="http://www.w3.org/2000/svg" width="76" height="116" viewBox="0 0 77 116" fill="none">
<path d="M2.33398 45H54.7149" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.7147 45V2.91304C32.7147 2.40567 32.5097 1.91908 32.1448 1.56032C31.7799 1.20155 31.2851 1 30.7691 1H7.42214C6.90614 1 6.41128 1.20155 6.04641 1.56032C5.68154 1.91908 5.47656 2.40567 5.47656 2.91304V45" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.7148 13.5715H48.572C50.2288 13.5715 51.572 14.9147 51.572 16.5715V43.9525H32.7148V13.5715Z" fill="#FFD550" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.8574 10.4285H21.1908" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.28613 40.8096L1.28613 26.1429" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M55.7627 30.3333L55.7627 15.6666" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M35.8574 9.38086L43.1908 9.38086" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 26.1428H24.3333" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.8574 35.5715H21.1908" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M40.0479 35.5715H44.2383" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M40.0479 26.1428H44.2383" stroke="#141414" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<hr>
<div class="">
<h1 class="">Warehousing Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
</div>
<div style="display: flex;">
<div class="" style="display: flex;gap: 1rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="76" height="115" viewBox="0 0 76 115" fill="none">
<path d="M17.3047 55.4348H53.1743" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M34.333 40.4766L49.855 31.1317" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.69531 37.8877L15.7105 43.9029" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 35.7139L7.01521 41.7291" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.7687 35.4434L25.2262 44.5155C26.4873 45.7266 28.0962 46.4883 29.8137 46.6874C31.5313 46.8865 33.2657 46.5124 34.759 45.6206L72.7396 23.0045L68.0735 17.1449C66.8598 15.6262 65.1558 14.6023 63.2695 14.2582C61.3832 13.9141 59.439 14.2726 57.7882 15.2688L46.6499 21.9765L31.5981 16.8365L27.4589 18.6612C27.1492 18.7971 26.8779 19.0108 26.6701 19.2824C26.4622 19.554 26.3244 19.8749 26.2694 20.2154C26.2144 20.556 26.244 20.9052 26.3554 21.2309C26.4669 21.5567 26.6565 21.8484 26.907 22.0793L34.6085 29.1725L27.5843 33.2845L20.5602 30.2005L16.3457 32.0509C16.0391 32.1859 15.7701 32.397 15.5632 32.6652C15.3563 32.9335 15.2179 33.2503 15.1606 33.5871C15.1034 33.9239 15.129 34.27 15.2351 34.5941C15.3413 34.9183 15.5247 35.2101 15.7687 35.4434V35.4434Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M68.9352 18.4781C62.9052 23.2141 56.9528 23.8094 52.6309 18.4781L56.0268 16.2707C60.2468 13.5277 65.8664 14.4886 68.9352 18.4781Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2"/>
</svg>
<hr>
<div class="">
<h1>Air Fright Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
<div class="" style="display: flex; gap: 1rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="77" height="126" viewBox="0 0 77 126" fill="none">
<path d="M42.0713 28.7858V18.8215H47.6681C50.5026 18.8215 53.0574 20.5309 54.1387 23.1511L56.1791 28.0951C56.3149 28.4242 56.073 28.7858 55.7169 28.7858H42.0713Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2"/>
<path d="M4.42871 35.4285H42.0716" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M45.3929 53.1431C49.0616 53.1431 52.0357 50.169 52.0357 46.5003C52.0357 42.8315 49.0616 39.8574 45.3929 39.8574C41.7241 39.8574 38.75 42.8315 38.75 46.5003C38.75 50.169 41.7241 53.1431 45.3929 53.1431Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.6067 53.1431C20.2755 53.1431 23.2496 50.169 23.2496 46.5003C23.2496 42.8315 20.2755 39.8574 16.6067 39.8574C12.938 39.8574 9.96387 42.8315 9.96387 46.5003C9.96387 50.169 12.938 53.1431 16.6067 53.1431Z" fill="#FFD550" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M38.75 45.3926H23.25" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.90907 45.3926H6.31085C5.81168 45.3926 5.33295 45.1884 4.97998 44.8251C4.62701 44.4617 4.42871 43.9689 4.42871 43.4551V16.3301C4.42871 15.8162 4.62701 15.3234 4.97998 14.9601C5.33295 14.5967 5.81168 14.3926 6.31085 14.3926H42.0716V40.3551" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42.0713 28.7861H57.5713V43.548C57.5713 44.0374 57.3672 44.5068 57.0038 44.8528C56.6405 45.1989 56.1476 45.3933 55.6338 45.3933H51.8972" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.85742 28.0947L8.85742 18.8215" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.7854 31L38.0586 31" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.786 49.7148L32.1074 49.7148" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<hr>
<div class="">
<h1>Air Fright Services</h1>
<p>Following the quality of our service thus having gained trust of our many clients.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- what we do end -->
<!-- transportation section -->
<div>
<div class="transportation tagline">
<h1 class="trans">Transporting Around the world </h1>
<div>
<div class="images">
<div class="class">
<img src="img/2.png" alt="" srcset="">
<div class="bottom-right">
<h3> Liquid Transportation</h3>
<p>Premium Tankers</p>
</div>
</div>
<div>
<img src="img/3.png" alt="" srcset="">
<div class="bottom-right">
<h3> Liquid Transportation</h3>
<p>Premium Tankers</p>
</div>
</div>
<div>
<img src="img/1.png" alt="" srcset="">
<div class="bottom-right">
<h3> Liquid Transportation</h3>
<p>Premium Tankers</p>
</div>
</div>
<div>
<img src="img/4.png" alt="" srcset="">
<div class="bottom-right">
<h3> Liquid Transportation</h3>
<p>Premium Tankers</p>
</div>
</div>
<div>
<img src="img/5.png" alt="" srcset="">
<div class="bottom-right">
<h3> Liquid Transportation</h3>
<p>Premium Tankers</p>
</div>
</div>
</div>
<button style="margin: auto;" class="btn">
<a href="">Explore More </a>
</button>
</div>
</div>
</div>
<!-- transportation section end -->
<div style="margin-top: 5rem;margin-bottom: 8rem;">
<div class="swiper mySwiper">
<h1 style="text-align: center; " class="Customer">What Our Customer Say</h1>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="test">
<div class="test2 none">
<div style="display: flex;">
<div>
<img style="border-radius: 50px;" src="img/test1.png" alt="" srcset="">
</div>
<div>
<h5>Kathleen Smith</h5>
<p>Fuel Company</p>
</div>
</div>
<p style="color: #666C89;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
<div class="test2">
<div style="display: flex;">
<div>
<img style="border-radius: 50px;" src="img/test1.png" alt="" srcset="">
</div>
<div>
<h5>Kathleen Smith</h5>
<p>Fuel Company</p>
</div>
</div>
<p style="color: #666C89;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
<div class="test2 none">
<div style="display: flex;">
<div>
<img style="border-radius: 50px;" src="img/test1.png" alt="" srcset="">
</div>
<div>
<h5>Kathleen Smith</h5>
<p>Fuel Company</p>
</div>
</div>
<p style="color: #666C89;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="test">
<div class="test3 none">
<div style="display: flex;">
<div>
<img style="border-radius: 50px;" src="img/Phot.png" alt="" srcset="">
</div>
<div>
<h5 style="color: #fff;">Kathleen Smith</h5>
<p style="color: #fff;">Fuel Company</p>
</div>
</div>
<p style="color: #fff;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
<div class="test3">
<div style="display: flex;">
<div>
<img style="border-radius: 50px;" src="img/Phot.png" alt="" srcset="">
</div>
<div>
<h5 style="color: #fff;">Kathleen Smith</h5>
<p style="color:white;" >Fuel Company</p>
</div>
</div>
<p style="color: #fff;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
<div class="test3 none">
<div style="display: flex; width: 100%;">
<div>
<img style="border-radius: 50px;" src="img/Phot.png" alt="" srcset="">
</div>
<div>
<h5 style="color: #fff;">Kathleen Smith</h5>
<p style="color: #fff;">Fuel Company</p>
</div>
</div>
<p style="color: #fff;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="test">
<div class="test4 none">
<div style="display: flex;width: 100%;">
<div>
<img style="border-radius: 50px;" src="img/Phot.png" alt="" srcset="">
</div>
<div>
<h5 style="color: #fff;">Kathleen Smith</h5>
<p style="color: #fff;">Fuel Company</p>
</div>
</div>
<p>
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
<div class="test4 none">
<div style="display: flex; width: 100%;">
<div>
<img style="border-radius: 50px;" src="img/Phot.png" alt="" srcset="">
</div>
<div>
<h5 style="color: #fff;">Kathleen Smith</h5>
<p style="color: #fff;">Fuel Company</p>
</div>
</div>
<p style="color: #fff;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
<div class="test4">
<div style="display: flex;width: 100%;">
<div>
<img style="border-radius: 50px;" src="img/Phot.png" alt="" srcset="">
</div>
<div>
<h5 style="color: #fff;">Kathleen Smith</h5>
<p style="color: #fff;">Fuel Company</p>
</div>
</div>
<p style="color: #fff;">
Leverage agile frameworks to provide a robust synopsis for strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</p>
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="34" viewBox="0 0 180 34" fill="none">
<path d="M16.0489 2.92705C16.3483 2.00574 17.6517 2.00574 17.9511 2.92705L20.5922 11.0557C20.7261 11.4678 21.1101 11.7467 21.5433 11.7467L30.0903 11.7467C31.059 11.7467 31.4618 12.9863 30.6781 13.5557L23.7634 18.5795C23.4129 18.8342 23.2663 19.2855 23.4001 19.6976L26.0413 27.8262C26.3406 28.7475 25.2862 29.5137 24.5025 28.9443L17.5878 23.9205C17.2373 23.6658 16.7627 23.6658 16.4122 23.9205L9.49755 28.9443C8.71383 29.5137 7.65936 28.7475 7.95871 27.8262L10.5999 19.6976C10.7337 19.2855 10.5871 18.8342 10.2366 18.5795L3.32194 13.5557C2.53822 12.9863 2.941 11.7467 3.90972 11.7467L12.4567 11.7467C12.8899 11.7467 13.2739 11.4678 13.4078 11.0557L16.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M53.0489 2.92705C53.3483 2.00574 54.6517 2.00574 54.9511 2.92705L57.5922 11.0557C57.7261 11.4678 58.1101 11.7467 58.5433 11.7467L67.0903 11.7467C68.059 11.7467 68.4618 12.9863 67.6781 13.5557L60.7634 18.5795C60.4129 18.8342 60.2663 19.2855 60.4001 19.6976L63.0413 27.8262C63.3406 28.7475 62.2862 29.5137 61.5025 28.9443L54.5878 23.9205C54.2373 23.6658 53.7627 23.6658 53.4122 23.9205L46.4975 28.9443C45.7138 29.5137 44.6594 28.7475 44.9587 27.8262L47.5999 19.6976C47.7337 19.2855 47.5871 18.8342 47.2366 18.5795L40.3219 13.5557C39.5382 12.9863 39.941 11.7467 40.9097 11.7467L49.4567 11.7467C49.8899 11.7467 50.2739 11.4678 50.4078 11.0557L53.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M89.0489 2.92705C89.3483 2.00574 90.6517 2.00574 90.9511 2.92705L93.5922 11.0557C93.7261 11.4678 94.1101 11.7467 94.5433 11.7467L103.09 11.7467C104.059 11.7467 104.462 12.9863 103.678 13.5557L96.7634 18.5795C96.4129 18.8342 96.2663 19.2855 96.4001 19.6976L99.0413 27.8262C99.3406 28.7475 98.2862 29.5137 97.5025 28.9443L90.5878 23.9205C90.2373 23.6658 89.7627 23.6658 89.4122 23.9205L82.4975 28.9443C81.7138 29.5137 80.6594 28.7475 80.9587 27.8262L83.5999 19.6976C83.7337 19.2855 83.5871 18.8342 83.2366 18.5795L76.3219 13.5557C75.5382 12.9863 75.941 11.7467 76.9097 11.7467L85.4567 11.7467C85.8899 11.7467 86.2739 11.4678 86.4078 11.0557L89.0489 2.92705Z" fill="#FDAF3B"/>
<path d="M125.049 2.92705C125.348 2.00574 126.652 2.00574 126.951 2.92705L129.592 11.0557C129.726 11.4678 130.11 11.7467 130.543 11.7467L139.09 11.7467C140.059 11.7467 140.462 12.9863 139.678 13.5557L132.763 18.5795C132.413 18.8342 132.266 19.2855 132.4 19.6976L135.041 27.8262C135.341 28.7475 134.286 29.5137 133.502 28.9443L126.588 23.9205C126.237 23.6658 125.763 23.6658 125.412 23.9205L118.498 28.9443C117.714 29.5137 116.659 28.7475 116.959 27.8262L119.6 19.6976C119.734 19.2855 119.587 18.8342 119.237 18.5795L112.322 13.5557C111.538 12.9863 111.941 11.7467 112.91 11.7467L121.457 11.7467C121.89 11.7467 122.274 11.4678 122.408 11.0557L125.049 2.92705Z" fill="#FDAF3B"/>
<path d="M162.049 2.92705C162.348 2.00574 163.652 2.00574 163.951 2.92705L166.592 11.0557C166.726 11.4678 167.11 11.7467 167.543 11.7467L176.09 11.7467C177.059 11.7467 177.462 12.9863 176.678 13.5557L169.763 18.5795C169.413 18.8342 169.266 19.2855 169.4 19.6976L172.041 27.8262C172.341 28.7475 171.286 29.5137 170.502 28.9443L163.588 23.9205C163.237 23.6658 162.763 23.6658 162.412 23.9205L155.498 28.9443C154.714 29.5137 153.659 28.7475 153.959 27.8262L156.6 19.6976C156.734 19.2855 156.587 18.8342 156.237 18.5795L149.322 13.5557C148.538 12.9863 148.941 11.7467 149.91 11.7467L158.457 11.7467C158.89 11.7467 159.274 11.4678 159.408 11.0557L162.049 2.92705Z" fill="#FDAF3B"/>
</svg>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
<!-- opportunity section -->
<div class="tagline">
<div class=" opportunity-area-desktop">
<div class="opportunity-step1" style="display: flex;width:100%;">
<div class="section1">
<img src="/delivery website/img/airplane.png" alt="" srcset="">
<!-- -->
</div>
<div class="section2">
<h1>
We create opportunity to reach potential
</h1>
<p>Leverage agile frameworks to provide a robust synopsis <br> for strategy foster collaborative thinking to further the overall <br> value proposition. </p>
<div class="flex-opportunity" >
<div class="flex-icon" >
<svg xmlns="http://www.w3.org/2000/svg" width="53" height="63" viewBox="0 0 63 63" fill="none">
<circle cx="31.5" cy="31.5" r="31.5" fill="url(#paint0_linear_1_4228)"/>
<path d="M43 36.537V25.463C42.9991 25.303 42.9552 25.1461 42.8728 25.0081C42.7903 24.8701 42.6721 24.7558 42.5302 24.6768L32.4469 19.1174C32.311 19.0405 32.1569 19 32 19C31.8431 19 31.689 19.0405 31.5531 19.1174L21.4698 24.6768C21.3279 24.7558 21.2097 24.8701 21.1272 25.0081C21.0448 25.1461 21.0009 25.303 21 25.463V36.537C21.0009 36.697 21.0448 36.8539 21.1272 36.9919C21.2097 37.1299 21.3279 37.2442 21.4698 37.3232L31.5531 42.8826C31.689 42.9595 31.8431 43 32 43C32.1569 43 32.311 42.9595 32.4469 42.8826L42.5302 37.3232C42.6721 37.2442 42.7903 37.1299 42.8728 36.9919C42.9552 36.8539 42.9991 36.697 43 36.537V36.537Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M38 34V28.0853L27 22" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M43 25L32.1043 31L21 25" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32 31V43" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_1_4228" x1="-1.78608" y1="13.65" x2="77.4684" y2="19.2782" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB629"/>
<stop offset="0.507189" stop-color="#FFDA56"/>
<stop offset="1" stop-color="#FFD7A6"/>
</linearGradient>
</defs>
</svg>
<h2>Safe Package</h2>
</div>
<div class="flex-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="53" height="63" viewBox="0 0 63 63" fill="none">
<circle cx="31.5" cy="31.5" r="31.5" fill="url(#paint0_linear_1_4254)"/>
<path d="M32 23V20" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M42 34.487C40.4792 39.8216 33.4375 41.6835 32.1875 41.9764C32.0645 42.0079 31.9355 42.0079 31.8125 41.9764C30.5625 41.6835 23.5208 39.8216 22 34.487V30.9096C22 30.7334 22.0554 30.5617 22.1582 30.4189C22.2611 30.2762 22.4062 30.1697 22.5729 30.1146L31.7396 27.0393C31.9093 26.9869 32.0907 26.9869 32.2604 27.0393L41.4271 30.1146C41.5938 30.1697 41.7389 30.2762 41.8418 30.4189C41.9446 30.5617 42 30.7334 42 30.9096V34.487Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32 35V27" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M25 29V23.75C25 23.5511 25.0878 23.3603 25.2441 23.2197C25.4004 23.079 25.6123 23 25.8333 23H39.1667C39.3877 23 39.5996 23.079 39.7559 23.2197C39.9122 23.3603 40 23.5511 40 23.75V29" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_1_4254" x1="-1.78608" y1="13.65" x2="77.4684" y2="19.2782" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB629"/>
<stop offset="0.507189" stop-color="#FFDA56"/>
<stop offset="1" stop-color="#FFD7A6"/>
</linearGradient>
</defs>
</svg>
<h2>Ship Everywhere</h2>
</div>
</div>
<div class="flex-opportunity">
<div class="flex-icon" >
<svg xmlns="http://www.w3.org/2000/svg" width="53" height="63" viewBox="0 0 63 63" fill="none">
<circle cx="31.5" cy="31.5" r="31.5" fill="url(#paint0_linear_1_4237)"/>
<path d="M32 20C38.6274 20 44 25.3726 44 32C44 38.6274 38.6274 44 32 44C25.3726 44 20 38.6274 20 32C20 25.3726 25.3726 20 32 20Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 36H43" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 28H43" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32 20C34.2091 20 36 25.3726 36 32C36 38.6274 34.2091 44 32 44C29.7909 44 28 38.6274 28 32C28 25.3726 29.7909 20 32 20Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_1_4237" x1="-1.78608" y1="13.65" x2="77.4684" y2="19.2782" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB629"/>
<stop offset="0.507189" stop-color="#FFDA56"/>
<stop offset="1" stop-color="#FFD7A6"/>
</linearGradient>
</defs>
</svg>
<h2>Global Tracking</h2>
</div>
<div class="flex-icon" >
<svg xmlns="http://www.w3.org/2000/svg" width="53" height="63" viewBox="0 0 63 63" fill="none">
<circle cx="31.5" cy="31.5001" r="31.5" fill="url(#paint0_linear_1_4264)"/>
<path d="M41 29.143H37.8579C37.4412 29.143 37.0416 29.3035 36.747 29.5893C36.4523 29.8751 36.2868 30.2626 36.2868 30.6668V34.4762C36.2868 34.8804 36.4523 35.2679 36.747 35.5537C37.0416 35.8395 37.4412 36 37.8579 36H39.4289C39.8456 36 40.2452 35.8395 40.5398 35.5537C40.8345 35.2679 41 34.8804 41 34.4762V29.143ZM41 29.143C41 27.9359 40.7536 26.7408 40.275 25.6266C39.7964 24.5123 39.095 23.501 38.2114 22.6511C37.3277 21.8011 36.2793 21.1292 35.1265 20.6743C33.9738 20.2193 32.7396 19.9903 31.4951 20.0003C30.2514 19.9915 29.0183 20.2215 27.8667 20.677C26.7151 21.1326 25.6678 21.8046 24.7852 22.6545C23.9026 23.5043 23.2021 24.5152 22.7241 25.6288C22.246 26.7424 22 27.9367 22 29.143V34.4762C22 34.8804 22.1655 35.2679 22.4602 35.5537C22.7548 35.8395 23.1544 36 23.5711 36H25.1421C25.5588 36 25.9584 35.8395 26.253 35.5537C26.5477 35.2679 26.7132 34.8804 26.7132 34.4762V30.6668C26.7132 30.2626 26.5477 29.8751 26.253 29.5893C25.9584 29.3035 25.5588 29.143 25.1421 29.143H22" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41 35V37.1429C41 37.9006 40.661 38.6273 40.0575 39.1632C39.454 39.699 38.6356 40 37.7821 40H32" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_1_4264" x1="-1.78608" y1="13.65" x2="77.4684" y2="19.2783" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB629"/>
<stop offset="0.507189" stop-color="#FFDA56"/>
<stop offset="1" stop-color="#FFD7A6"/>
</linearGradient>
</defs>
</svg>
<h2>24/7 Support</h2>
</div>
</div>
<div class="flex-opportunity">
<div class="flex-icon" >
<svg xmlns="http://www.w3.org/2000/svg" width="53" height="63" viewBox="0 0 63 63" fill="none">
<circle cx="31.5" cy="31.5" r="31.5" fill="url(#paint0_linear_1_4246)"/>
<path d="M32 42C38.0751 42 43 37.0751 43 31C43 24.9249 38.0751 20 32 20C25.9249 20 21 24.9249 21 31C21 37.0751 25.9249 42 32 42Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32 25V31H39" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_1_4246" x1="-1.78608" y1="13.65" x2="77.4684" y2="19.2782" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB629"/>
<stop offset="0.507189" stop-color="#FFDA56"/>
<stop offset="1" stop-color="#FFD7A6"/>
</linearGradient>
</defs>
</svg>
<h2>Safe Package</h2>
</div>
<div class="flex-icon" >
<svg xmlns="http://www.w3.org/2000/svg" width="53" height="63" viewBox="0 0 63 63" fill="none">
<circle cx="31.5" cy="31.5" r="31.5" fill="url(#paint0_linear_1_4271)"/>
<path d="M29.5 42C33.6421 42 37 37.0751 37 31C37 24.9249 33.6421 20 29.5 20C25.3579 20 22 24.9249 22 31C22 37.0751 25.3579 42 29.5 42Z" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M30 20H35.5385C39.1038 20 42 24.9271 42 31C42 37.0729 39.1038 42 35.5385 42H30" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M36 24L39 24" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M37 31H42" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M35 39H40" stroke="#1C1F35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<defs>
<linearGradient id="paint0_linear_1_4271" x1="-1.78608" y1="13.65" x2="77.4684" y2="19.2782" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB629"/>
<stop offset="0.507189" stop-color="#FFDA56"/>
<stop offset="1" stop-color="#FFD7A6"/>
</linearGradient>
</defs>
</svg>
<h2>Ship Everyware</h2>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- opportunity end -->
<!-- team section-->
<div>
<div class="transportation-team">
<h4>
The transporters
</h4>
<h2>Meet Expert Team</h2>
<div class="teams">
<div class="team">
<img src="img/team1.png" alt="" srcset="">
<p>Jessca Arow</p>
<h3>Designer</h3>
<div class="social-media-icon">
<a href="https://x.com/JosephObasan?t=sR-oiURiIIYlOkXXjIT25Q&s=09">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="18" viewBox="0 0 23 18" >
<path d="M22.3392 2.58411C21.5309 2.93507 20.6757 3.16629 19.8006 3.27047C20.7203 2.73232 21.4119 1.87737 21.7457 0.865968C20.8762 1.37405 19.9265 1.73054 18.9373 1.92018C18.5207 1.48393 18.0198 1.13688 17.4648 0.900127C16.9099 0.663374 16.3125 0.541862 15.7091 0.542976C13.2661 0.542976 11.289 2.4899 11.289 4.88991C11.2873 5.22374 11.3256 5.55658 11.4031 5.88132C9.65123 5.79925 7.93583 5.35268 6.36661 4.57017C4.79738 3.78767 3.40889 2.68646 2.28996 1.337C1.89741 1.99829 1.68981 2.7528 1.68886 3.52168C1.68886 5.02898 2.47582 6.36132 3.66411 7.14188C2.96008 7.12519 2.27048 6.93898 1.65384 6.59908V6.65291C1.65384 8.76133 3.18017 10.5154 5.20032 10.9146C4.82043 11.0158 4.42897 11.0671 4.03582 11.0671C3.75685 11.0676 3.47851 11.0406 3.20486 10.9864C3.76646 12.7135 5.40099 13.9696 7.33718 14.0055C5.76388 15.2171 3.83228 15.872 1.84598 15.8672C1.49341 15.8666 1.14116 15.8457 0.791016 15.8044C2.81169 17.0937 5.16056 17.7757 7.55805 17.7692C15.6997 17.7692 20.1476 11.1434 20.1476 5.39683C20.1476 5.20842 20.1427 5.02001 20.1337 4.83608C20.997 4.22242 21.7439 3.45982 22.3392 2.58411Z" fill="#ffff"/>
</svg>
</a>
<a href="https://www.instagram.com/jayni_yi?igshid=YzAwZjE1ZTI0Zg==">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23">
<path d="M16.4242 2.3341C17.6575 2.33764 18.8391 2.81062 19.7111 3.64974C20.5831 4.48886 21.0747 5.62594 21.0784 6.81263L21.0784 15.7687C21.0747 16.9554 20.5831 18.0925 19.7111 18.9316C18.8391 19.7708 17.6575 20.2437 16.4242 20.2473L7.11702 20.2473C5.8838 20.2437 4.70215 19.7708 3.83013 18.9316C2.95812 18.0925 2.46659 16.9554 2.46291 15.7687L2.46291 6.81263C2.46659 5.62594 2.95812 4.48886 3.83013 3.64974C4.70215 2.81062 5.8838 2.33764 7.11702 2.3341L16.4242 2.3341ZM16.4242 0.542969L7.11702 0.542969C3.53344 0.542969 0.601563 3.36424 0.601563 6.81263L0.601563 15.7687C0.601563 19.2171 3.53344 22.0384 7.11702 22.0384L16.4242 22.0384C20.0078 22.0384 22.9397 19.2171 22.9397 15.7687L22.9397 6.81263C22.9397 3.36424 20.0078 0.542969 16.4242 0.542969Z" fill="#ffff"/>
<path d="M17.8208 6.81303C17.5447 6.81303 17.2747 6.73424 17.0452 6.58661C16.8156 6.43899 16.6366 6.22917 16.5309 5.98369C16.4253 5.7382 16.3976 5.46807 16.4515 5.20747C16.5054 4.94686 16.6383 4.70748 16.8336 4.51959C17.0288 4.3317 17.2776 4.20375 17.5484 4.15191C17.8193 4.10008 18.1 4.12668 18.3551 4.22836C18.6102 4.33005 18.8282 4.50224 18.9816 4.72317C19.1351 4.94411 19.2169 5.20385 19.2169 5.46956C19.2173 5.6461 19.1815 5.82097 19.1115 5.98413C19.0414 6.1473 18.9386 6.29556 18.8089 6.42038C18.6792 6.54521 18.5251 6.64415 18.3555 6.71154C18.186 6.77892 18.0043 6.81341 17.8208 6.81303ZM11.7711 7.70835C12.5074 7.70835 13.2273 7.91847 13.8396 8.31215C14.4518 8.70583 14.929 9.26537 15.2108 9.92003C15.4926 10.5747 15.5664 11.2951 15.4227 11.99C15.279 12.685 14.9244 13.3234 14.4037 13.8245C13.8831 14.3255 13.2196 14.6667 12.4974 14.805C11.7752 14.9432 11.0266 14.8723 10.3463 14.6011C9.66593 14.3299 9.08445 13.8707 8.67534 13.2815C8.26623 12.6924 8.04787 11.9997 8.04787 11.2911C8.04893 10.3412 8.44153 9.4305 9.13953 8.75883C9.83754 8.08716 10.7839 7.70937 11.7711 7.70835ZM11.7711 5.91723C10.6665 5.91723 9.58683 6.2324 8.66846 6.82288C7.75009 7.41337 7.0343 8.25265 6.61162 9.2346C6.18894 10.2165 6.07835 11.297 6.29383 12.3395C6.50931 13.3819 7.04119 14.3394 7.8222 15.091C8.60321 15.8425 9.59828 16.3543 10.6816 16.5617C11.7649 16.769 12.8877 16.6626 13.9082 16.2559C14.9286 15.8491 15.8008 15.1604 16.4144 14.2766C17.0281 13.3929 17.3556 12.3539 17.3556 11.2911C17.3556 9.86585 16.7672 8.49899 15.7199 7.49119C14.6726 6.4834 13.2522 5.91723 11.7711 5.91723Z" fill="#ffff"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/joseph-obasan-59772a288?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23" >
<path d="M20.9616 0.542969L2.80963 0.542969C1.81777 0.542969 0.951172 1.25664 0.951172 2.23684L0.951172 20.4291C0.951172 21.4146 1.81777 22.2929 2.80963 22.2929L20.9562 22.2929C21.9534 22.2929 22.7011 21.4088 22.7011 20.4291L22.7011 2.23684C22.7069 1.25664 21.9534 0.542969 20.9616 0.542969ZM7.69316 18.6726L4.57729 18.6726L4.57729 8.98466L7.69316 8.98466L7.69316 18.6726ZM6.24301 7.51168H6.22067C5.22348 7.51168 4.57778 6.76937 4.57778 5.84014C4.57778 4.89392 5.24047 4.16909 6.26 4.16909C7.27953 4.16909 7.90338 4.88858 7.92571 5.84014C7.92523 6.76937 7.27953 7.51168 6.24301 7.51168ZM19.0808 18.6726L15.9649 18.6726L15.9649 13.3754C15.9649 12.1064 15.5115 11.2393 14.3842 11.2393C13.5229 11.2393 13.0132 11.8219 12.7864 12.3894C12.7015 12.5933 12.6787 12.871 12.6787 13.1545L12.6787 18.6726L9.56278 18.6726L9.56278 8.98466L12.6787 8.98466L12.6787 10.3329C13.1321 9.68716 13.8404 8.75793 15.4887 8.75793C17.534 8.75793 19.0813 10.1061 19.0813 13.0128L19.0808 18.6726Z" fill="#ffff"/>
</svg>
</a>
</div>
</div>
<div class="team">
<img src="img/team 2.png" alt="" srcset="">
<p>Kathleen Smith</p>
<h3>Developer</h3>
<div class="social-media-icon">
<a href="https://x.com/JosephObasan?t=sR-oiURiIIYlOkXXjIT25Q&s=09">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="18" viewBox="0 0 23 18" >
<path d="M22.3392 2.58411C21.5309 2.93507 20.6757 3.16629 19.8006 3.27047C20.7203 2.73232 21.4119 1.87737 21.7457 0.865968C20.8762 1.37405 19.9265 1.73054 18.9373 1.92018C18.5207 1.48393 18.0198 1.13688 17.4648 0.900127C16.9099 0.663374 16.3125 0.541862 15.7091 0.542976C13.2661 0.542976 11.289 2.4899 11.289 4.88991C11.2873 5.22374 11.3256 5.55658 11.4031 5.88132C9.65123 5.79925 7.93583 5.35268 6.36661 4.57017C4.79738 3.78767 3.40889 2.68646 2.28996 1.337C1.89741 1.99829 1.68981 2.7528 1.68886 3.52168C1.68886 5.02898 2.47582 6.36132 3.66411 7.14188C2.96008 7.12519 2.27048 6.93898 1.65384 6.59908V6.65291C1.65384 8.76133 3.18017 10.5154 5.20032 10.9146C4.82043 11.0158 4.42897 11.0671 4.03582 11.0671C3.75685 11.0676 3.47851 11.0406 3.20486 10.9864C3.76646 12.7135 5.40099 13.9696 7.33718 14.0055C5.76388 15.2171 3.83228 15.872 1.84598 15.8672C1.49341 15.8666 1.14116 15.8457 0.791016 15.8044C2.81169 17.0937 5.16056 17.7757 7.55805 17.7692C15.6997 17.7692 20.1476 11.1434 20.1476 5.39683C20.1476 5.20842 20.1427 5.02001 20.1337 4.83608C20.997 4.22242 21.7439 3.45982 22.3392 2.58411Z" fill="#ffff"/>
</svg>
</a>
<a href="https://www.instagram.com/jayni_yi?igshid=YzAwZjE1ZTI0Zg==">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23">
<path d="M16.4242 2.3341C17.6575 2.33764 18.8391 2.81062 19.7111 3.64974C20.5831 4.48886 21.0747 5.62594 21.0784 6.81263L21.0784 15.7687C21.0747 16.9554 20.5831 18.0925 19.7111 18.9316C18.8391 19.7708 17.6575 20.2437 16.4242 20.2473L7.11702 20.2473C5.8838 20.2437 4.70215 19.7708 3.83013 18.9316C2.95812 18.0925 2.46659 16.9554 2.46291 15.7687L2.46291 6.81263C2.46659 5.62594 2.95812 4.48886 3.83013 3.64974C4.70215 2.81062 5.8838 2.33764 7.11702 2.3341L16.4242 2.3341ZM16.4242 0.542969L7.11702 0.542969C3.53344 0.542969 0.601563 3.36424 0.601563 6.81263L0.601563 15.7687C0.601563 19.2171 3.53344 22.0384 7.11702 22.0384L16.4242 22.0384C20.0078 22.0384 22.9397 19.2171 22.9397 15.7687L22.9397 6.81263C22.9397 3.36424 20.0078 0.542969 16.4242 0.542969Z" fill="#ffff"/>
<path d="M17.8208 6.81303C17.5447 6.81303 17.2747 6.73424 17.0452 6.58661C16.8156 6.43899 16.6366 6.22917 16.5309 5.98369C16.4253 5.7382 16.3976 5.46807 16.4515 5.20747C16.5054 4.94686 16.6383 4.70748 16.8336 4.51959C17.0288 4.3317 17.2776 4.20375 17.5484 4.15191C17.8193 4.10008 18.1 4.12668 18.3551 4.22836C18.6102 4.33005 18.8282 4.50224 18.9816 4.72317C19.1351 4.94411 19.2169 5.20385 19.2169 5.46956C19.2173 5.6461 19.1815 5.82097 19.1115 5.98413C19.0414 6.1473 18.9386 6.29556 18.8089 6.42038C18.6792 6.54521 18.5251 6.64415 18.3555 6.71154C18.186 6.77892 18.0043 6.81341 17.8208 6.81303ZM11.7711 7.70835C12.5074 7.70835 13.2273 7.91847 13.8396 8.31215C14.4518 8.70583 14.929 9.26537 15.2108 9.92003C15.4926 10.5747 15.5664 11.2951 15.4227 11.99C15.279 12.685 14.9244 13.3234 14.4037 13.8245C13.8831 14.3255 13.2196 14.6667 12.4974 14.805C11.7752 14.9432 11.0266 14.8723 10.3463 14.6011C9.66593 14.3299 9.08445 13.8707 8.67534 13.2815C8.26623 12.6924 8.04787 11.9997 8.04787 11.2911C8.04893 10.3412 8.44153 9.4305 9.13953 8.75883C9.83754 8.08716 10.7839 7.70937 11.7711 7.70835ZM11.7711 5.91723C10.6665 5.91723 9.58683 6.2324 8.66846 6.82288C7.75009 7.41337 7.0343 8.25265 6.61162 9.2346C6.18894 10.2165 6.07835 11.297 6.29383 12.3395C6.50931 13.3819 7.04119 14.3394 7.8222 15.091C8.60321 15.8425 9.59828 16.3543 10.6816 16.5617C11.7649 16.769 12.8877 16.6626 13.9082 16.2559C14.9286 15.8491 15.8008 15.1604 16.4144 14.2766C17.0281 13.3929 17.3556 12.3539 17.3556 11.2911C17.3556 9.86585 16.7672 8.49899 15.7199 7.49119C14.6726 6.4834 13.2522 5.91723 11.7711 5.91723Z" fill="#ffff"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/joseph-obasan-59772a288?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23" >
<path d="M20.9616 0.542969L2.80963 0.542969C1.81777 0.542969 0.951172 1.25664 0.951172 2.23684L0.951172 20.4291C0.951172 21.4146 1.81777 22.2929 2.80963 22.2929L20.9562 22.2929C21.9534 22.2929 22.7011 21.4088 22.7011 20.4291L22.7011 2.23684C22.7069 1.25664 21.9534 0.542969 20.9616 0.542969ZM7.69316 18.6726L4.57729 18.6726L4.57729 8.98466L7.69316 8.98466L7.69316 18.6726ZM6.24301 7.51168H6.22067C5.22348 7.51168 4.57778 6.76937 4.57778 5.84014C4.57778 4.89392 5.24047 4.16909 6.26 4.16909C7.27953 4.16909 7.90338 4.88858 7.92571 5.84014C7.92523 6.76937 7.27953 7.51168 6.24301 7.51168ZM19.0808 18.6726L15.9649 18.6726L15.9649 13.3754C15.9649 12.1064 15.5115 11.2393 14.3842 11.2393C13.5229 11.2393 13.0132 11.8219 12.7864 12.3894C12.7015 12.5933 12.6787 12.871 12.6787 13.1545L12.6787 18.6726L9.56278 18.6726L9.56278 8.98466L12.6787 8.98466L12.6787 10.3329C13.1321 9.68716 13.8404 8.75793 15.4887 8.75793C17.534 8.75793 19.0813 10.1061 19.0813 13.0128L19.0808 18.6726Z" fill="#ffff"/>
</svg>
</a>
</div>
</div>
<div class="team">
<img src="img/team 3.png" alt="" srcset="">
<p>Rebecca Tylor</p>
<h3>Data Sciencetist</h3>
<div class="social-media-icon">
<a href="https://x.com/JosephObasan?t=sR-oiURiIIYlOkXXjIT25Q&s=09">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="18" viewBox="0 0 23 18" >
<path d="M22.3392 2.58411C21.5309 2.93507 20.6757 3.16629 19.8006 3.27047C20.7203 2.73232 21.4119 1.87737 21.7457 0.865968C20.8762 1.37405 19.9265 1.73054 18.9373 1.92018C18.5207 1.48393 18.0198 1.13688 17.4648 0.900127C16.9099 0.663374 16.3125 0.541862 15.7091 0.542976C13.2661 0.542976 11.289 2.4899 11.289 4.88991C11.2873 5.22374 11.3256 5.55658 11.4031 5.88132C9.65123 5.79925 7.93583 5.35268 6.36661 4.57017C4.79738 3.78767 3.40889 2.68646 2.28996 1.337C1.89741 1.99829 1.68981 2.7528 1.68886 3.52168C1.68886 5.02898 2.47582 6.36132 3.66411 7.14188C2.96008 7.12519 2.27048 6.93898 1.65384 6.59908V6.65291C1.65384 8.76133 3.18017 10.5154 5.20032 10.9146C4.82043 11.0158 4.42897 11.0671 4.03582 11.0671C3.75685 11.0676 3.47851 11.0406 3.20486 10.9864C3.76646 12.7135 5.40099 13.9696 7.33718 14.0055C5.76388 15.2171 3.83228 15.872 1.84598 15.8672C1.49341 15.8666 1.14116 15.8457 0.791016 15.8044C2.81169 17.0937 5.16056 17.7757 7.55805 17.7692C15.6997 17.7692 20.1476 11.1434 20.1476 5.39683C20.1476 5.20842 20.1427 5.02001 20.1337 4.83608C20.997 4.22242 21.7439 3.45982 22.3392 2.58411Z" fill="#ffff"/>
</svg>
</a>
<a href="https://www.instagram.com/jayni_yi?igshid=YzAwZjE1ZTI0Zg==">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23">
<path d="M16.4242 2.3341C17.6575 2.33764 18.8391 2.81062 19.7111 3.64974C20.5831 4.48886 21.0747 5.62594 21.0784 6.81263L21.0784 15.7687C21.0747 16.9554 20.5831 18.0925 19.7111 18.9316C18.8391 19.7708 17.6575 20.2437 16.4242 20.2473L7.11702 20.2473C5.8838 20.2437 4.70215 19.7708 3.83013 18.9316C2.95812 18.0925 2.46659 16.9554 2.46291 15.7687L2.46291 6.81263C2.46659 5.62594 2.95812 4.48886 3.83013 3.64974C4.70215 2.81062 5.8838 2.33764 7.11702 2.3341L16.4242 2.3341ZM16.4242 0.542969L7.11702 0.542969C3.53344 0.542969 0.601563 3.36424 0.601563 6.81263L0.601563 15.7687C0.601563 19.2171 3.53344 22.0384 7.11702 22.0384L16.4242 22.0384C20.0078 22.0384 22.9397 19.2171 22.9397 15.7687L22.9397 6.81263C22.9397 3.36424 20.0078 0.542969 16.4242 0.542969Z" fill="#ffff"/>
<path d="M17.8208 6.81303C17.5447 6.81303 17.2747 6.73424 17.0452 6.58661C16.8156 6.43899 16.6366 6.22917 16.5309 5.98369C16.4253 5.7382 16.3976 5.46807 16.4515 5.20747C16.5054 4.94686 16.6383 4.70748 16.8336 4.51959C17.0288 4.3317 17.2776 4.20375 17.5484 4.15191C17.8193 4.10008 18.1 4.12668 18.3551 4.22836C18.6102 4.33005 18.8282 4.50224 18.9816 4.72317C19.1351 4.94411 19.2169 5.20385 19.2169 5.46956C19.2173 5.6461 19.1815 5.82097 19.1115 5.98413C19.0414 6.1473 18.9386 6.29556 18.8089 6.42038C18.6792 6.54521 18.5251 6.64415 18.3555 6.71154C18.186 6.77892 18.0043 6.81341 17.8208 6.81303ZM11.7711 7.70835C12.5074 7.70835 13.2273 7.91847 13.8396 8.31215C14.4518 8.70583 14.929 9.26537 15.2108 9.92003C15.4926 10.5747 15.5664 11.2951 15.4227 11.99C15.279 12.685 14.9244 13.3234 14.4037 13.8245C13.8831 14.3255 13.2196 14.6667 12.4974 14.805C11.7752 14.9432 11.0266 14.8723 10.3463 14.6011C9.66593 14.3299 9.08445 13.8707 8.67534 13.2815C8.26623 12.6924 8.04787 11.9997 8.04787 11.2911C8.04893 10.3412 8.44153 9.4305 9.13953 8.75883C9.83754 8.08716 10.7839 7.70937 11.7711 7.70835ZM11.7711 5.91723C10.6665 5.91723 9.58683 6.2324 8.66846 6.82288C7.75009 7.41337 7.0343 8.25265 6.61162 9.2346C6.18894 10.2165 6.07835 11.297 6.29383 12.3395C6.50931 13.3819 7.04119 14.3394 7.8222 15.091C8.60321 15.8425 9.59828 16.3543 10.6816 16.5617C11.7649 16.769 12.8877 16.6626 13.9082 16.2559C14.9286 15.8491 15.8008 15.1604 16.4144 14.2766C17.0281 13.3929 17.3556 12.3539 17.3556 11.2911C17.3556 9.86585 16.7672 8.49899 15.7199 7.49119C14.6726 6.4834 13.2522 5.91723 11.7711 5.91723Z" fill="#ffff"/>
</svg>
</a>
<a href="https://www.linkedin.com/in/joseph-obasan-59772a288?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23" >
<path d="M20.9616 0.542969L2.80963 0.542969C1.81777 0.542969 0.951172 1.25664 0.951172 2.23684L0.951172 20.4291C0.951172 21.4146 1.81777 22.2929 2.80963 22.2929L20.9562 22.2929C21.9534 22.2929 22.7011 21.4088 22.7011 20.4291L22.7011 2.23684C22.7069 1.25664 21.9534 0.542969 20.9616 0.542969ZM7.69316 18.6726L4.57729 18.6726L4.57729 8.98466L7.69316 8.98466L7.69316 18.6726ZM6.24301 7.51168H6.22067C5.22348 7.51168 4.57778 6.76937 4.57778 5.84014C4.57778 4.89392 5.24047 4.16909 6.26 4.16909C7.27953 4.16909 7.90338 4.88858 7.92571 5.84014C7.92523 6.76937 7.27953 7.51168 6.24301 7.51168ZM19.0808 18.6726L15.9649 18.6726L15.9649 13.3754C15.9649 12.1064 15.5115 11.2393 14.3842 11.2393C13.5229 11.2393 13.0132 11.8219 12.7864 12.3894C12.7015 12.5933 12.6787 12.871 12.6787 13.1545L12.6787 18.6726L9.56278 18.6726L9.56278 8.98466L12.6787 8.98466L12.6787 10.3329C13.1321 9.68716 13.8404 8.75793 15.4887 8.75793C17.534 8.75793 19.0813 10.1061 19.0813 13.0128L19.0808 18.6726Z" fill="#ffff"/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- team sections ends -->
<!-- contacts section -->
<div class="contacts tagline">
<div class="get-in-touch-forms">
<div class="get-in-touch">
<h6><strong>|</strong>contacts</h6>
<h2>Get in touch with us</h2>
<p>Leverage agile frameworks to provide a robust <br> synopsis for strategy foster collaborative <br>
thinking to further the overall value.</p>
<div class="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 64 63" fill="none">
<circle cx="32" cy="31.5" r="31" fill="#111C55" stroke="#273270"/>
<path d="M41.496 23H23.504C22.9495 23 22.5 23.3755 22.5 23.8387V37.1613C22.5 37.6245 22.9495 38 23.504 38H41.496C42.0505 38 42.5 37.6245 42.5 37.1613V23.8387C42.5 23.3755 42.0505 23 41.496 23Z" stroke="#F6B426"/>
<path d="M22.5 23L32.9247 30L42.5 23.2294" stroke="#F6B426"/>
</svg>
<div>
<p>Email <br>[email protected]</p>
</div>
</div>
<div class="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 64 63" fill="none">
<circle cx="32" cy="31.5" r="31" fill="#111C55" stroke="#273270"/>
<path d="M24.4741 22.1408C24.3394 22.1449 24.2071 22.1743 24.0848 22.2272C23.9625 22.28 23.8528 22.3554 23.7622 22.4487C23.6715 22.542 23.6018 22.6514 23.5571 22.7704C23.5124 22.8894 23.4936 23.0156 23.5019 23.1416C23.6364 25.3015 24.2704 30.5716 27.3059 33.8583C30.9409 37.8181 35.6748 39.1824 40.5317 38.9808C40.792 38.9662 41.0368 38.8596 41.2165 38.6826C41.3962 38.5055 41.4975 38.2712 41.5 38.0268V34.5674C41.497 34.2446 41.3783 33.9322 41.163 33.6802C40.9476 33.4282 40.6482 33.2513 40.3127 33.1779L37.8804 32.6739C37.5796 32.6138 37.2664 32.6397 36.9815 32.7481C36.6965 32.8566 36.4528 33.0427 36.2819 33.2823L35.744 34.0454C35.6946 34.1153 35.6208 34.1668 35.5352 34.1911C35.4496 34.2154 35.3577 34.211 35.2752 34.1786C34.0379 33.6783 29.1081 31.5184 28.5663 27.8753C28.5557 27.805 28.5675 27.7333 28.6003 27.6692C28.6332 27.6051 28.6855 27.5516 28.7507 27.5154L29.7267 26.9574C29.9944 26.802 30.2047 26.5732 30.3291 26.3022C30.4535 26.0311 30.486 25.7308 30.4222 25.4419L29.8881 23.1236C29.81 22.7988 29.6142 22.5093 29.3339 22.3045C29.0537 22.0998 28.7064 21.9923 28.3511 22.0004L24.4741 22.1408Z" stroke="#F6B426"/>
</svg>
<div>
<p>Call Me <br>07068795963</p>
</div>
</div>
<div class="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 64 63" fill="none">
<circle cx="32" cy="31.5" r="31" fill="#111C55" stroke="#273270"/>
<path d="M32.5 42C38.5751 42 43.5 37.0751 43.5 31C43.5 24.9249 38.5751 20 32.5 20C26.4249 20 21.5 24.9249 21.5 31C21.5 37.0751 26.4249 42 32.5 42Z" stroke="#F6B426"/>
<path d="M32.5 22V31.2058L37.5 35" stroke="#F6B426"/>
</svg>
<div>
<p>Mon - Sat 9.00 - 18.00 <br>
Sunday Closed
</p>
</div>
</div>
</div>
<div class="forms">
<div>
<div class="input-form">
<div class="input-group">
<input required="" type="text" name="text" autocomplete="on" placeholder="Your Name*" class="input">
</div>
<div class="input-group">
<input required="" type="email" name="text" autocomplete="on" placeholder="Email*" class="input">
</div>
</div> <br>
<div class="input-form">
<div class="input-group">
<input required type="tel" name="Phone Number" na pattern="[+234]" autocomplete="off" placeholder="Phone Number*" class="input">
</div>
<div class="input-group">
<input required="" type="text" name="text" autocomplete="on" placeholder="City*" class="input">
</div>
</div> <br>
<div>
<textarea class="input" name="" id="" cols="30" rows="10"></textarea>
</div>
</div>
<div class="">
<button class="form-button"><a href="">Submit Message</a></button>
</div>
</div>
</div>
<div class="sponsor">
<div class="contact1">
<div style="padding: 4rem; display: flex; gap: 1rem;justify-content: center;">
<svg xmlns="http://www.w3.org/2000/svg" width="52" height="52" viewBox="0 0 52 52" fill="none">
<path d="M25.8043 0L27.283 17.4183L34.6299 1.55619L30.062 18.4297L42.391 6.03706L32.3275 20.3307L48.1515 12.9022L33.8062 22.8919L51.2166 21.3234L34.3197 25.8043L51.2166 30.2852L33.8062 28.7168L48.1515 38.7065L32.3275 31.2779L42.391 45.5716L30.062 33.1789L34.6299 50.0525L27.283 34.1904L25.8043 51.6086L24.3256 34.1904L16.9787 50.0525L21.5466 33.1789L9.21762 45.5716L19.2811 31.2779L3.45712 38.7065L17.8024 28.7168L0.392025 30.2852L17.2889 25.8043L0.392025 21.3234L17.8024 22.8919L3.45712 12.9022L19.2811 20.3307L9.21762 6.03706L21.5466 18.4297L16.9787 1.55619L24.3256 17.4183L25.8043 0Z" fill="white"/>
</svg>
<div>
<p>Studio
Green</p>
</div>
</div>
</div>
<div class="contact2">
<div style="padding: 4rem; display: flex; justify-content: center;">
<svg xmlns="http://www.w3.org/2000/svg" width="87" height="39" viewBox="0 0 87 39" fill="none">
<path d="M12.648 0.000488281H16.554V38.5645H11.904L3.906 8.68049V38.5645H0V0.000488281H4.96L12.648 28.8305V0.000488281Z" fill="white"/>
<path d="M24.2391 0.000488281H30.5631C33.8284 0.000488281 35.4611 1.63315 35.4611 4.89849V33.6665C35.4611 36.9318 33.8284 38.5645 30.5631 38.5645H24.2391C20.9738 38.5645 19.3411 36.9318 19.3411 33.6665V4.89849C19.3411 1.63315 20.9738 0.000488281 24.2391 0.000488281ZM31.2451 32.9845V5.58049C31.2451 4.75382 31.1211 4.23715 30.8731 4.03049C30.6251 3.78249 30.1084 3.65849 29.3231 3.65849H25.4791C24.6938 3.65849 24.1771 3.78249 23.9291 4.03049C23.6811 4.23715 23.5571 4.75382 23.5571 5.58049V32.9845C23.5571 33.8112 23.6811 34.3485 23.9291 34.5965C24.1771 34.8032 24.6938 34.9065 25.4791 34.9065H29.3231C30.1084 34.9065 30.6251 34.8032 30.8731 34.5965C31.1211 34.3485 31.2451 33.8112 31.2451 32.9845Z" fill="white"/>
<path d="M42.4889 22.4445V38.5645H38.2729V0.000488281H49.4949C52.7602 0.000488281 54.3929 1.63315 54.3929 4.89849V17.5465C54.3929 20.4812 53.1116 22.0932 50.5489 22.3825L56.3769 38.5645H51.7889L46.1469 22.4445H42.4889ZM42.4889 3.65849V18.7865H48.2549C49.0816 18.7865 49.5982 18.6832 49.8049 18.4765C50.0529 18.2285 50.1769 17.6912 50.1769 16.8645V5.58049C50.1769 4.75382 50.0529 4.23715 49.8049 4.03049C49.5982 3.78249 49.0816 3.65849 48.2549 3.65849H42.4889Z" fill="white"/>
<path d="M70.6529 0.000488281V3.65849H64.4529V38.5645H60.2369V3.65849H54.0369V0.000488281H70.6529Z" fill="white"/>
<path d="M75.2607 0.000488281H81.5847C84.8501 0.000488281 86.4827 1.63315 86.4827 4.89849V33.6665C86.4827 36.9318 84.8501 38.5645 81.5847 38.5645H75.2607C71.9954 38.5645 70.3627 36.9318 70.3627 33.6665V4.89849C70.3627 1.63315 71.9954 0.000488281 75.2607 0.000488281ZM82.2667 32.9845V5.58049C82.2667 4.75382 82.1427 4.23715 81.8947 4.03049C81.6467 3.78249 81.1301 3.65849 80.3447 3.65849H76.5007C75.7154 3.65849 75.1987 3.78249 74.9507 4.03049C74.7027 4.23715 74.5787 4.75382 74.5787 5.58049V32.9845C74.5787 33.8112 74.7027 34.3485 74.9507 34.5965C75.1987 34.8032 75.7154 34.9065 76.5007 34.9065H80.3447C81.1301 34.9065 81.6467 34.8032 81.8947 34.5965C82.1427 34.3485 82.2667 33.8112 82.2667 32.9845Z" fill="white"/>
</svg>
</div>
</div>
<!-- -->
<div class="contact4">
<div style="padding: 4rem; display: flex; justify-content: center;">
<p> Out Of The
Sand Box</p>
</div>
</div>
</div>
</div>
<!-- contacts sections ends -->
<!-- blog section -->
<div class="blog sidebar">
<div class="blog-title">
<p>Our Blog</p>
</div>
<h1>Our Latest New</h1>
<div class="blog-section-1">
<div class="blog-1">
<img src="img/blog 1.png" alt="" srcset="">
<div class="overlay">
<div class="text"><a href="">Read More</a></div>
</div>
</div>
<div class="blog-section-1-svg">
<svg xmlns="http://www.w3.org/2000/svg" width="68" height="58" viewBox="0 0 53 58" fill="none">
<rect x="11" y="28" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="11" y="41" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="24" y="28" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="24" y="41" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="36" y="28" width="6" height="6" fill="#FFD550" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="36" y="41" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52 20H1V9C1 7.34315 2.34315 6 4 6H49C50.6569 6 52 7.34315 52 9V20Z" fill="#FFD550"/>
<path d="M50 5.66699H3.33333C2.04467 5.66699 1 6.71166 1 8.00033V54.667C1 55.9557 2.04467 57.0003 3.33333 57.0003H50C51.2887 57.0003 52.3333 55.9557 52.3333 54.667V8.00033C52.3333 6.71166 51.2887 5.66699 50 5.66699Z" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M40.667 1V10.3333" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.667 1V10.3333" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 19.667H52.3333" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
</svg> <br>
<p class="day">08 </p>
<p>September</p>
</div>
<div class="blog-2">
<h3>Inland freight a worthy <br> solution for your business</h3>
<p>We are dedicated in creating added br value for our <br> customers by implementing modern technology in our work. </p>
<ul>
<li>
Urgent transport solutions
</li>
<li>
Reliable & experienced staffs
</li>
<li>
Urgent transport solutions
</li>
<li>
Reliable & experienced staffs
</li>
</ul>
</div>
<div>
</div>
</div>
<div class="blog-section-2">
<div class="blog-1">
<img src="img/blog 2.png" alt="" srcset="">
<div class="overlay">
<div class="text"><a href="">Read More</a></div>
</div>
</div>
<div class="blog-section-1-svg">
<svg xmlns="http://www.w3.org/2000/svg" width="68" height="58" viewBox="0 0 53 58" fill="none">
<rect x="11" y="28" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="11" y="41" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="24" y="28" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="24" y="41" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="36" y="28" width="6" height="6" fill="#FFD550" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="36" y="41" width="6" height="6" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M52 20H1V9C1 7.34315 2.34315 6 4 6H49C50.6569 6 52 7.34315 52 9V20Z" fill="#FFD550"/>
<path d="M50 5.66699H3.33333C2.04467 5.66699 1 6.71166 1 8.00033V54.667C1 55.9557 2.04467 57.0003 3.33333 57.0003H50C51.2887 57.0003 52.3333 55.9557 52.3333 54.667V8.00033C52.3333 6.71166 51.2887 5.66699 50 5.66699Z" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M40.667 1V10.3333" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.667 1V10.3333" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 19.667H52.3333" stroke="#1C1F35" stroke-linecap="round" stroke-linejoin="round"/>
</svg> <br>
<p class="day">12</p>
<p>September</p>
</div>
<div class="blog-2">