-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
1327 lines (1247 loc) · 93.7 KB
/
Copy pathabout.html
File metadata and controls
1327 lines (1247 loc) · 93.7 KB
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content=" Transport & Logistics HTML Template">
<meta name="keywords" content=" Transport & Logistics HTML Template">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title> Transport & Logistics HTML Template</title>
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/logo/favicon.png">
<!-- Bootstrap -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Stoshi font -->
<link rel="stylesheet" href="assets/css/satoshi.css">
<!-- swiper Slider -->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!-- AOS -->
<link rel="stylesheet" href="assets/css/aos.css">
<!-- Circle Progress -->
<link rel="stylesheet" href="assets/css/animated-radial-progress.css">
<!-- magnific -->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!-- Main css -->
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<!--==================== Preloader Start ====================-->
<div class="preloader bg-white tw-h-screen justify-content-center align-items-center tw-z-999 position-fixed top-0 tw-start-0 w-100 h-100">
<div class="car-road">
<div class="car">
<div class="car-top">
<div class="window">
</div>
</div>
<div class="car-base">
</div>
<div class="wheel-left wheel">
<div class="wheel-spike">
</div>
<div class="wheel-center">
</div>
</div>
<div class="wheel-right wheel">
<div class="wheel-spike">
</div>
<div class="wheel-center">
</div>
</div>
<div class="head-light"></div>
</div>
<div class="road">
</div>
</div>
</div>
<!--==================== Preloader End ====================-->
<!--==================== Overlay Start ====================-->
<div class="overlay"></div>
<!--==================== Overlay End ====================-->
<!--==================== Sidebar Overlay End ====================-->
<div class="side-overlay"></div>
<!--==================== Sidebar Overlay End ====================-->
<!-- ==================== Scroll to Top End Here ==================== -->
<div class="progress-wrap cursor-big">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<!-- ==================== Scroll to Top End Here ==================== -->
<!-- Custom Cursor Start -->
<div class="cursor"></div>
<span class="dot"></span>
<!-- Custom Cursor End -->
<!-- ======================= Offcanvas sidebar popup start ================================= -->
<div class="offcanvas-sidebar tw-p-8 bg-white position-fixed top-0 end-0 tw-max-h-screen tw-z-999 max-w-400-px w-100 tw-translate-x-full overflow-y-auto">
<button type="button" class="cursor-small offcanvas-sidebar__close border border-main-600 tw-w-10 tw-h-10 text-main-600 rounded-circle d-flex justify-content-center align-items-center tw-text-xl hover-bg-main-600 hover-text-white position-absolute tw-mt-8 top-0 tw-end-0 tw-me-8 z-1">
<i class="ph-bold ph-x"></i>
</button>
<div class="d-flex flex-column tw-gap-8 overflow-hidden">
<div class="animate-item">
<a href="index.html" class="cursor-big">
<img src="assets/images/logo/logo2.png" alt="Logo" class="max-w-200-px">
</a>
</div>
<div>
<h4 class="cursor-big tw-mb-5 animate-item">About Us </h4>
<p class="cursor-small text-neutral-950 animate-item">Temperate ocean-bass sea chub unicorn fish treefish eulachon tidewater goby. Flier, bighe carp Devario shortnose sucker platy smalleye</p>
</div>
<div>
<h4 class="cursor-big tw-mb-5 animate-item">Contact Us </h4>
<div class="d-flex flex-column tw-gap-6">
<div class="cursor-small animate-item d-flex align-items-center tw-gap-5">
<span class="tw-w-10 tw-h-10 flex-shrink-0 bg-main-600 rounded-circle text-white tw-text-xl d-flex justify-content-center align-items-center">
<i class="ph ph-phone"></i>
</span>
<a href="tel:+880(123)45688" class="text-main-two-600 hover-text-main-600 hover--translate-x-1 fw-medium tw-text-lg">+880 (123) 456 88</a>
</div>
<div class="cursor-small animate-item d-flex align-items-center tw-gap-5">
<span class="tw-w-10 tw-h-10 flex-shrink-0 bg-main-600 rounded-circle text-white tw-text-xl d-flex justify-content-center align-items-center">
<i class="ph ph-map-pin"></i>
</span>
<a href="mailto:support@gmail.com" class="text-main-two-600 hover-text-main-600 hover--translate-x-1 fw-medium tw-text-lg">support@gmail.com</a>
</div>
<div class="cursor-small animate-item d-flex align-items-start tw-gap-5">
<span class="tw-w-10 tw-h-10 flex-shrink-0 bg-main-600 rounded-circle text-white tw-text-xl d-flex justify-content-center align-items-center">
<i class="ph ph-phone"></i>
</span>
<p class="text-main-two-600 fw-medium tw-text-lg">55 Main Street, 2nd block
Malborne, Australia</p>
</div>
</div>
</div>
<div class="">
<h4 class="cursor-big tw-mb-5 animate-item">Contact Us </h4>
<ul class="cursor-small d-flex align-items-center tw-gap-3 animate-item">
<li>
<a href="https://www.facebook.com" class="tw-w-11 tw-h-11 border border-neutral-200 rounded-circle text-main-two-600 tw-text-xl d-flex justify-content-center align-items-center hover-bg-main-600 hover-text-white hover-border-main-600 active-scale-09 tw-duration-200">
<i class="ph ph-facebook-logo"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com" class="tw-w-11 tw-h-11 border border-neutral-200 rounded-circle text-main-two-600 tw-text-xl d-flex justify-content-center align-items-center hover-bg-main-600 hover-text-white hover-border-main-600 active-scale-09 tw-duration-200">
<i class="ph ph-x-logo"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com" class="tw-w-11 tw-h-11 border border-neutral-200 rounded-circle text-main-two-600 tw-text-xl d-flex justify-content-center align-items-center hover-bg-main-600 hover-text-white hover-border-main-600 active-scale-09 tw-duration-200">
<i class="ph ph-instagram-logo"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com" class="tw-w-11 tw-h-11 border border-neutral-200 rounded-circle text-main-two-600 tw-text-xl d-flex justify-content-center align-items-center hover-bg-main-600 hover-text-white hover-border-main-600 active-scale-09 tw-duration-200">
<i class="ph ph-youtube-logo"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- ======================= Offcanvas sidebar popup End ================================= -->
<!-- ==================== Mobile Menu Start Here ==================== -->
<div class="mobile-menu d-lg-none d-block scroll-sm position-fixed bg-white tw-w-300-px tw-h-screen overflow-y-auto tw-p-6 tw-z-999 tw--translate-x-full tw-pb-68 ">
<button type="button" class="close-button position-absolute tw-end-0 top-0 tw-me-2 tw-mt-2 tw-w-605 tw-h-605 rounded-circle d-flex justify-content-center align-items-center text-main-two-600 bg-neutral-200 hover-bg-main-two-600 hover-text-white">
<i class="ph ph-x"></i>
</button>
<div class="mobile-menu__inner">
<a href="index.html" class="mobile-menu__logo">
<img src="assets/images/logo/logo2.png" alt="Logo">
</a>
<div class="mobile-menu__menu">
<!-- Nav menu Start -->
<ul class="nav-menu cursor-small d-lg-flex align-items-center nav-menu--mobile d-block tw-mt-8">
<li class="nav-menu__item has-submenu position-relative activePage">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">Home</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-menu__item activePage">
<a href="index.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Home One</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="index-2.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Home Two</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="index-3.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Home Three</a>
</li>
</ul>
</li>
<li class="nav-menu__item has-submenu position-relative">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">Pages</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="project.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Project</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="project-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Project Details</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="team.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Team</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="team-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Team Details</a>
</li>
</ul>
</li>
<li class="nav-menu__item has-submenu position-relative">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">Services</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="service.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Service </a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="service-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded">Service Details</a>
</li>
</ul>
</li>
<li class="nav-menu__item">
<a href="about.html" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100">About</a>
</li>
<li class="nav-menu__item has-submenu position-relative">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">News</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="blog.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> News</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="blog-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> News Details</a>
</li>
</ul>
</li>
<li class="nav-menu__item">
<a href="contact.html" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100">Contact</a>
</li>
</ul>
<!-- Nav menu End -->
</div>
</div>
</div>
<!-- ==================== Mobile Menu End Here ==================== -->
<!-- ============================ Header Top Start ==================================== -->
<div class="bg-neutral-50 position-relative z-1 d-sm-block d-none header-top-bg">
<div class="container tw-container-1554-px">
<div class="d-flex align-items-center justify-content-between tw-gap-6">
<div class="d-flex align-items-center tw-gap-6">
<div class="cursor-small d-flex align-items-center tw-gap-2 tw-py-205">
<span class="text-main-600 d-flex"><i class="ph-bold ph-map-pin"></i></span>
<span class="text-black xl-tw-text-sm tw-text-xs fw-medium">55 Main Street, 2nd block, Malborne, Australia</span>
</div>
<div class="cursor-small d-flex align-items-center tw-gap-2 tw-py-205">
<span class="text-main-600 d-flex"><i class="ph-bold ph-phone"></i></span>
<a href="mailto:support@example.com" class="text-black xl-tw-text-sm tw-text-xs fw-medium hover--translate-x-05 hover-text-main-600 tw-transition-all">support@example.com</a>
</div>
</div>
<div class="d-md-flex d-none align-items-center tw-gap-6">
<div class="cursor-small d-flex align-items-center tw-gap-2 tw-py-205">
<span class="text-main-600 d-flex"><i class="ph-bold ph-envelope"></i></span>
<a href="mailto:contact@gmail.com" class="text-black xl-tw-text-sm tw-text-xs fw-medium hover--translate-x-05 hover-text-main-600 tw-transition-all">contact@gmail.com</a>
</div>
<div class="cursor-small d-lg-flex d-none align-items-center tw-py-205 tw-gap-6 tw-ps-10 clip-path position-relative">
<span class="text-white d-flex"><i class="ph-bold ph-map-trifold"></i></span>
<span class="text-white xl-tw-text-sm tw-text-xs fw-medium">734 H, Bryan Burlington, NC 27215 </span>
</div>
</div>
</div>
</div>
</div>
<!-- ============================ Header Top End ==================================== -->
<!-- ==================== Header Start Here ==================== -->
<header class="header bg-white transition-all">
<div class="tw-container-1742-px tw-ps-4 pe-lg-0 pe-3 tw-ms-auto">
<nav class="header-inner bg-white d-flex justify-content-between">
<div class="d-flex align-items-center ">
<!-- Logo Start -->
<div class="logo-mask-bg cursor-big position-relative d-lg-flex d-none z-1 tw-w-156-px d-flex justify-content-center align-items-center">
<a href="index.html" class="tw-mt-7">
<img src="assets/images/logo/logo.png" alt="Logo" class="max-w-200-px">
</a>
</div>
<div class="position-relative d-lg-none d-inline-block z-1">
<a href="index.html" class="cursor-big">
<img src="assets/images/logo/logo2.png" alt="Logo" class="max-w-100-px">
</a>
</div>
<!-- Logo End -->
<!-- Menu Start -->
<div class="header-menu d-lg-block d-none ps-108-px">
<!-- Nav menu Start -->
<ul class="nav-menu cursor-small d-lg-flex align-items-center xl-tw-gap-12 tw-gap-6">
<li class="nav-menu__item has-submenu position-relative activePage">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">Home</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-menu__item activePage">
<a href="index.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Home One</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="index-2.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Home Two</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="index-3.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Home Three</a>
</li>
</ul>
</li>
<li class="nav-menu__item has-submenu position-relative">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">Pages</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="project.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Project</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="project-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Project Details</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="team.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Team</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="team-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Team Details</a>
</li>
</ul>
</li>
<li class="nav-menu__item has-submenu position-relative">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">Services</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="service.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> Service </a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="service-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded">Service Details</a>
</li>
</ul>
</li>
<li class="nav-menu__item">
<a href="about.html" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100">About</a>
</li>
<li class="nav-menu__item has-submenu position-relative">
<a href="javascript:void(0)" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100 tw-pe-4">News</a>
<ul class="nav-submenu scroll-sm position-absolute start-0 top-100 tw-w-max bg-white tw-rounded-md overflow-hidden tw-p-2 tw-mt-4 tw-duration-200 tw-z-99">
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="blog.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> News</a>
</li>
<li class="nav-submenu__item d-block tw-rounded tw-duration-200 position-relative">
<a href="blog-details.html" class="nav-submenu__link hover-bg-neutral-100 text-black fw-medium w-100 d-block tw-py-2 tw-px-305 tw-rounded"> News Details</a>
</li>
</ul>
</li>
<li class="nav-menu__item">
<a href="contact.html" class="nav-menu__link hover--translate-y-1 text-main-two-600 tw-py-9 fw-medium w-100">Contact</a>
</li>
</ul>
<!-- Nav menu End -->
</div>
<!-- Menu End -->
</div>
<!-- Header Right start -->
<div class="d-flex gap-xxl-5 gap-3">
<div class="d-flex align-items-center xl-tw-gap-7 tw-gap-6 flex-shrink-0">
<!-- Language Start -->
<div class="cursor-small position-relative group-item hover-mt-0 xxsm-d-block d-none">
<div class="d-flex align-items-center tw-gap-2">
<a href="javascript:void(0)" class="selected-text text-black py-lg-4 d-flex align-items-center gap-2">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle common-shadow d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag1.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
English
</a>
<span class="text-neutral-700">
<i class="ph-bold ph-caret-down"></i>
</span>
</div>
<ul class="lang-dropdown tw-max-h-300-px overflow-y-auto scroll-sm bg-white common-shadow tw-px-4 tw-py-3 position-absolute tw-end-0 top-100 min-w-max tw-rounded-lg d-flex flex-column tw-gap-3 tw-invisible opacity-0 group-hover-item-visible group-hover-item-opacity-1 tw-duration-200 group-hover-item-mt-0 tw-mt-4 tw-z-99">
<li>
<a href="javascript:void(0)" class="text-black d-flex align-items-center gap-2 hover-text-main-600 active--translate-y-1 tw-duration-150">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag1.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
English
</a>
</li>
<li>
<a href="javascript:void(0)" class="text-black d-flex align-items-center gap-2 hover-text-main-600 active--translate-y-1 tw-duration-150">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag2.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
Japan
</a>
</li>
<li>
<a href="javascript:void(0)" class="text-black d-flex align-items-center gap-2 hover-text-main-600 active--translate-y-1 tw-duration-150">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag3.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
French
</a>
</li>
<li>
<a href="javascript:void(0)" class="text-black d-flex align-items-center gap-2 hover-text-main-600 active--translate-y-1 tw-duration-150">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag4.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
Germany
</a>
</li>
<li>
<a href="javascript:void(0)" class="text-black d-flex align-items-center gap-2 hover-text-main-600 active--translate-y-1 tw-duration-150">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag6.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
Bangladesh
</a>
</li>
<li>
<a href="javascript:void(0)" class="text-black d-flex align-items-center gap-2 hover-text-main-600 active--translate-y-1 tw-duration-150">
<span class="tw-w-25-px tw-h-25-px border border-white border-2 rounded-circle d-flex justify-content-center align-items-center">
<img src="assets/images/thumbs/flag5.png" alt="" class="w-100 h-100 object-fit-cover rounded-circle">
</span>
Sought Kores
</a>
</li>
</ul>
</div>
<!-- Language End -->
<!-- Line Start -->
<span class="line h-100"></span>
<!-- Line End -->
<!-- Bar icon -->
<button type="button" class="offcanvas-bar-icon cursor-small hover--translate-y-1 active--translate-y-05 tw-duration-150">
<img src="assets/images/icons/bars.svg" alt="">
</button>
<!-- Bar icon End -->
</div>
<!-- Social icons Start -->
<ul class=" d-lg-grid d-none grid-cols-2 bg-main-two-600 h-100 tw-w-200-px">
<li class="border-bottom border-neutral-1100 border-end">
<a href="https://www.twitter.com" class="hover-scale-20 cursor-small text-white tw-text-base w-100 h-100 d-flex justify-content-center align-items-center">
<i class="ph-fill ph-twitter-logo"></i>
</a>
</li>
<li class="border-bottom border-neutral-1100">
<a href="https://www.facebook.com" class="hover-scale-20 cursor-small text-white tw-text-base w-100 h-100 d-flex justify-content-center align-items-center">
<i class="ph-fill ph-facebook-logo"></i>
</a>
</li>
<li class="border-end border-neutral-1100">
<a href="https://www.instagram.com" class="hover-scale-20 cursor-small text-white tw-text-base w-100 h-100 d-flex justify-content-center align-items-center">
<i class="ph-bold ph-instagram-logo"></i>
</a>
</li>
<li class="">
<a href="https://www.youtube.com" class="hover-scale-20 cursor-small text-white tw-text-base w-100 h-100 d-flex justify-content-center align-items-center">
<i class="ph-fill ph-youtube-logo"></i>
</a>
</li>
</ul>
<!-- Social icons End -->
<button type="button" class="toggle-mobileMenu leading-none d-lg-none text-main-two-600 tw-text-9">
<i class="ph ph-list"></i>
</button>
</div>
<!-- Header Right End -->
</nav>
</div>
</header>
<!-- ==================== Header End Here ==================== -->
<!-- ==================== Breadcrumb Start Here ==================== -->
<section class="breadcrumb py-140 tw-pt-206-px mb-0 bg-img" data-background-image="assets/images/thumbs/breadcrumb-bg.png">
<div class="container">
<div class="text-center">
<span class="splitTextStyleTwo text-main-600 border-bottom border-main-600 fst-italic fw-bold tw-text-lg cursor-small">About Us</span>
<h1 class="splitTextStyleOne text-white tw-mt-1 cursor-big"> About Us</h1>
</div>
</div>
</section>
<!-- ==================== Breadcrumb End Here ==================== -->
<!-- ================================== About Section Start ======================================= -->
<section class="about py-140 position-relative max-lg-overflow-hidden">
<img src="assets/images/shapes/about-plane.png" alt="" class="cursor-big about-plane position-absolute tw-start-0 top-50">
<img src="assets/images/thumbs/truck-head.png" alt="" class="truck-head cursor-big position-absolute tw-end-0 d-xxl-block d-none">
<div class="container">
<div class="row gy-5 flex-wrap-reverse">
<div class="col-lg-5 pe-xl-5">
<div class="position-relative tw-pb-11 h-100">
<div class="position-relative" data-aos="zoom-in" data-aos-duration="1000" data-aos-delay="200">
<img src="assets/images/thumbs/about-img.png" alt="" class="w-100 h-100 object-fit-cover">
<span class="cursor-big tw-w-75-px tw-h-75-px bg-main-600 d-flex justify-content-center align-items-center rounded-circle position-absolute tw-end-0 bottom-0 tw-me-305 tw-mb-305 d-lg-flex d-none">
<img src="assets/images/icons/play-bar.svg" alt="">
</span>
</div>
<div class="positioned-image bg-white cursor-big common-shadow-four rounded-circle d-flex justify-content-center align-items-center position-absolute top-0 tw-start-0 tw-p-9" data-aos="zoom-in" data-aos-duration="1000" data-aos-delay="200">
<img src="assets/images/thumbs/glob-track.png" alt="">
</div>
<div class="tw-p-10 tw-pe-130-px tw--translate-x-30-px bg-main-600 position-absolute tw-start-0 bottom-0 tw--ms-30-px" data-aos="zoom-in" data-aos-duration="1000" data-aos-delay="200">
<h1 class="text-white tw-mb-4 cursor-big">25+</h1>
<div class="d-flex flex-column tw-gap-1 align-items-start">
<span class="text-white fw-medium cursor-small">Years Of Experience</span>
<img src="assets/images/shapes/line-shape.png" alt="">
</div>
<div class="cursor-small before-border position-relative tw-p-205 bg-white d-inline-flex align-items-start tw-gap-1 position-absolute top-0 tw-end-0 tw-mt-205 tw-me-205 z-1">
<span class="tw-text-xl fw-semibold text-main-600">4.9</span>
<span class="tw-text-xl fw-semibold text-main-600 d-flex tw--translate-y-4-px"><i class="ph-fill ph-star"></i></span>
</div>
</div>
</div>
</div>
<div class="col-lg-7 ps-lg-5">
<div class="">
<span class="splitTextStyleTwo cursor-small tw-text-2xl fw-bold text-black fst-italic text-decoration-underline tw-mb-305">Safe Transportation & Logistics</span>
<h1 class="splitTextStyleOne cursor-big tw-mb-8">Modern transport system & secure packaging</h1>
<p class="cursor-small text-neutral-900 tw-ps-205 border-start border-main-600 border-2">At our logistics company, we are committed to providing exceptional transportation solutions tailored to meet the diverse needs of our clients. Our expertise spans air, ocean, and land freight, ensuring that your goods are delivered safely and efficiently, no matter the distance.</p>
<div class="tw-mt-9">
<div class="row gy-4">
<div class="col-sm-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<div class="animation-item d-flex align-items-center tw-gap-6">
<span class="cursor-big animate__heartBeat">
<img src="assets/images/icons/about-icon1.svg" alt="">
</span>
<h6 class="cursor-big">Air Freight Transportation</h6>
</div>
<p class="cursor-small text-neutral-1000 tw-mt-605 line-clamp-2">Our air freight services ensure fast and reliable delivery of goods across the globe</p>
</div>
<div class="col-sm-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<div class="animation-item d-flex align-items-center tw-gap-6">
<span class="cursor-big animate__heartBeat">
<img src="assets/images/icons/about-icon2.svg" alt="">
</span>
<h6 class="cursor-big">Ocean Freight Transportation</h6>
</div>
<p class="cursor-small text-neutral-1000 tw-mt-605 line-clamp-2">Our ocean freight services provide cost-effective solutions.</p>
</div>
</div>
</div>
<span class="tw-my-7 border-bottom border-neutral-100 d-block"></span>
<ul class="cursor-small d-flex flex-column tw-gap-2">
<li class="d-flex align-items-center tw-gap-4" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<span class="text-main-600 d-flex"><i class="ph-bold ph-check"></i></span>
<span class="text-neutral-1000 fw-medium">We approached WiaTech with complex project delivery challenges and successfully implemented tailored logistics solutions.</span>
</li>
<li class="d-flex align-items-center tw-gap-4" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<span class="text-main-600 d-flex"><i class="ph-bold ph-check"></i></span>
<span class="text-neutral-1000 fw-medium">Awards Winning IT Solutions Company</span>
</li>
</ul>
<div class="d-flex align-items-center tw-gap-56-px tw-mt-10 flex-wrap">
<a href="service.html" class="cursor-small btn btn-main-two hover-style-three button--stroke d-inline-flex align-items-center justify-content-center tw-gap-5 group rounded-0" data-block="button" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<span class="button__flair"></span>
<span class="button__label">View services</span>
<span class="tw-w-7 tw-h-7 bg-white text-main-600 tw-text-sm tw-rounded d-flex justify-content-center align-items-center position-relative tw-duration-500">
<i class="ph-bold ph-check"></i>
</span>
</a>
<div class="d-flex align-items-center tw-gap-205" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<span class="tw-w-15 tw-h-15 rounded-circle tw-p-2 bg-white common-shadow-three flex-shrink-0">
<img src="assets/images/thumbs/user-img.png" alt="">
</span>
<div class="d-flex flex-column tw-gap-1 cursor-small">
<img src="assets/images/thumbs/signature.png" alt="">
<span class="fw-semibold tw-text-sm text-main-600">Ceo & Founder</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================================== About Section End ======================================= -->
<!-- ======================================== Section Features section start ===================================== -->
<section class="features bg-neutral-50 bg-img" data-background-image="assets/images/shapes/features-bg.png">
<div class="row g-0 features-item-wrapper">
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="100">
<div class="features-item animation-item p-80-px tw-duration-300 position-relative h-100">
<span class="fw-bold tw-text-xl text-main-two-600 position-absolute top-0 tw-end-0 tw-mt-12 tw-me-12 font-heading cursor-small">01</span>
<span class="pb-60-px cursor-big animate__wobble">
<img src="assets/images/icons/features-icon1.svg" alt="">
</span>
<h5 class="tw-mb-7 cursor-big splitTextStyleTwo">Warehouse Facility</h5>
<p class="text-neutral-1000 cursor-small">Our state-of-the-art warehouse facility is equipped to handle a wide range of goods, ensuring safe storage and efficient inventory management. We utilize advanced technology to monitor stock levels and streamline operations.</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<div class="features-item animation-item p-80-px tw-duration-300 position-relative h-100 bg-white common-shadow-two">
<span class="fw-bold tw-text-xl text-main-two-600 position-absolute top-0 tw-end-0 tw-mt-12 tw-me-12 font-heading cursor-small">02</span>
<span class="pb-60-px cursor-big animate__wobble">
<img src="assets/images/icons/features-icon2.svg" alt="">
</span>
<h5 class="tw-mb-7 cursor-big splitTextStyleTwo">Cost Effective Pricing</h5>
<p class="text-neutral-1000 cursor-small">We offer competitive pricing for all our logistics services, ensuring that you receive the best value without compromising on quality or reliability.</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="300">
<div class="features-item animation-item p-80-px tw-duration-300 position-relative h-100">
<span class="fw-bold tw-text-xl text-main-two-600 position-absolute top-0 tw-end-0 tw-mt-12 tw-me-12 font-heading cursor-small">03</span>
<span class="pb-60-px cursor-big animate__wobble">
<img src="assets/images/icons/features-icon3.svg" alt="">
</span>
<h5 class="tw-mb-7 cursor-big splitTextStyleTwo">Air Freight Facility</h5>
<p class="text-neutral-1000 cursor-small">Our air freight facility is designed for quick and efficient handling of urgent shipments, ensuring that your cargo reaches its destination in the shortest time possible.</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<div class="features-item animation-item p-80-px tw-duration-300 position-relative h-100">
<span class="fw-bold tw-text-xl text-main-two-600 position-absolute top-0 tw-end-0 tw-mt-12 tw-me-12 font-heading cursor-small">04</span>
<span class="pb-60-px cursor-big animate__wobble">
<img src="assets/images/icons/features-icon4.svg" alt="">
</span>
<h5 class="tw-mb-7 cursor-big splitTextStyleTwo">Container Delivery</h5>
<p class="text-neutral-1000 cursor-small">We provide reliable container delivery services, ensuring that your goods are transported securely and efficiently, whether by land or sea.</p>
</div>
</div>
</div>
</section>
<!-- ======================================== Section Features section End ===================================== -->
<!-- ========================= Video section start ============================== -->
<div class="overflow-hidden pt-140">
<div class="container">
<div class="position-relative">
<img src="assets/images/thumbs/video_bg.png" alt="" class="w-100 h-100 object-fit-cover tw-rounded-xl tw-min-h-300-px">
<div class="position-absolute top-50 tw-start-50 translate-middle z-1 text-center w-100">
<a href="https://www.youtube.com/watch?v=MFLVmAE4cqg" class="play-button bg-light-animation cursor-big tw-w-75-px tw-h-75-px position-relative d-inline-flex justify-content-center align-items-center bg-main-600 text-white hover-text-main-two-700 active-scale-094 rounded-circle tw-text-xl">
<i class="ph-fill ph-play"></i>
</a>
<h2 class="font-pacifico h1 text-white cursor-big tw-mt-12 fw-medium">Watch Video</h2>
</div>
</div>
</div>
</div>
<!-- ========================= Video section End ============================== -->
<!-- ============================== Team section start ============================== -->
<section class="team py-140 overflow-hidden">
<div class="container">
<div class="d-flex align-items-center flex-wrap tw-gap-6 justify-content-between tw-mb-15">
<div class="max-w-632-px text-start">
<span class="splitTextStyleTwo cursor-small tw-text-xl fw-bold fst-italic text-decoration-underline text-main-600 tw-mb-305">Safe Transportation & Logistics</span>
<h2 class="splitTextStyleOne cursor-big tw-mb-8 h1">Behind the scene who help us lot of</h2>
</div>
<a href="service.html" class="cursor-small btn btn-main hover-style-one button--stroke d-inline-flex align-items-center justify-content-center tw-gap-5 group active--translate-y-2 rounded-0 tw-px-13 tw-py-505" data-block="button">
<span class="button__flair"></span>
<span class="button__label">View services</span>
</a>
</div>
<div class="view-w-100 position-relative z-1">
<div class="team-slider swiper">
<div class="swiper-wrapper">
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="100">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img1.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Leslie Alexander</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">GRAPHIC DESIGNER</span>
</div>
</div>
</div>
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img2.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Mehedi Hasan</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">UX/UI designer</span>
</div>
</div>
</div>
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="300">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img3.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Robiul Hasan</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">Front-end developer</span>
</div>
</div>
</div>
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img1.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Riad Hasan</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">UX/Ui designer</span>
</div>
</div>
</div>
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="500">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img5.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Alex</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">GRAPHIC DESIGNER</span>
</div>
</div>
</div>
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="600">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img3.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Robiul Hasan</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">Front-end developer</span>
</div>
</div>
</div>
<div class="swiper-slide" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="700">
<div class="team-item group group-item">
<div class="position-relative tw-rounded-32-px tw-rounded-bl-0 overflow-hidden">
<a href="team-details.html" class="w-100 tw-h-400-px">
<img src="assets/images/thumbs/team-img1.png" alt="" class="w-100 h-100 object-fit-cover">
</a>
<div class="socails-share position-absolute bottom-0 tw-start-0 d-inline-block ">
<button class="tw-h-17 tw-w-17 bg-main-600 text-white tw-text-2xl group-hover-bg-main-two-600 tw-duration-300 cursor-big tw-rounded-lg tw-rounded-bl-0 tw-rounded-br-0 tw-rounded-tl-0 ">
<i class="ph-fill ph-share-network"></i>
</button>
<ul class="bg-white tw-py-205 tw-px-5 d-flex align-items-center tw-gap-5 position-absolute bottom-0 tw-start-full tw-invisible group-hover-item-visible tw-duration-300 clip-w-0 group-hover-clip-w-full">
<li>
<a href="https://wwww.twitter.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-twitter-logo"></i></a>
</li>
<li>
<a href="https://wwww.facebook.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-facebook-logo"></i></a>
</li>
<li>
<a href="https://wwww.instagram.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-bold ph-instagram-logo"></i></a>
</li>
<li>
<a href="https://wwww.youtube.com" class="tw-text-base text-neutral-1000 hover-text-main-two-600 hover-scale-20 cursor-small"><i class="ph-fill ph-youtube-logo"></i></a>
</li>
</ul>
</div>
</div>
<div class="text-center tw-mt-6">
<h5 class="tw-mb-1 cursor-big">
<a href="team-details.html" class="hover-text-main-600 line-clamp-1">Riad Hasan</a>
</h5>
<span class="tw-text-sm text-main-600 text-uppercase cursor-small">UX/Ui designer</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============================== Team section end ============================== -->
<!-- =========================== Transport way Start ============================== -->
<section class="transport-way py-140 position-relative overflow-hidden bg-img" data-background-image="assets/images/shapes/how-it-work-bg.png">
<img src="assets/images/shapes/about-plane.png" alt="" class="cursor-big about-plane position-absolute tw-start-0 bottom-0 tw-mb-705">
<div class="container">
<div class="max-w-856-px mx-auto text-center tw-pb-16 tw-mb-6">
<span class="splitTextStyleTwo cursor-small tw-text-xl fw-bold fst-italic text-decoration-underline text-main-600 tw-mb-305">Safe Transportation & Logistics</span>
<h2 class="splitTextStyleOne cursor-big h1">Introducing The most Modern way of Transportation</h2>
</div>
<div class="row gy-5">
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<div class="transport-way-item text-center">
<span class="transport-way-item__icon cursor-big tw-w-95-px tw-h-95-px bg-main-600 rounded-circle tw-rounded-bl-0 d-inline-flex justify-content-center align-items-center tw-transition-all tw-duration-300">
<img src="assets/images/icons/transport-way-icon1.svg" alt="">
</span>
<h3 class="cursor-big tw-py-6 w-100 tw-px-4 rounded-pill text-center bg-main-100-gradient-one">560</h3>
<h6 class="cursor-small tw-mt-10">Main Warehouses</h6>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="300">
<div class="transport-way-item text-center">
<span class="transport-way-item__icon cursor-big tw-w-95-px tw-h-95-px bg-main-600 rounded-circle tw-rounded-bl-0 d-inline-flex justify-content-center align-items-center bg-main-two-600">
<img src="assets/images/icons/transport-way-icon2.svg" alt="">
</span>
<h3 class="cursor-big tw-py-6 w-100 tw-px-4 rounded-pill text-center bg-main-100-gradient-two">100%</h3>
<h6 class="cursor-small tw-mt-10">Supply Engineers</h6>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<div class="transport-way-item text-center">
<span class="transport-way-item__icon cursor-big tw-w-95-px tw-h-95-px bg-main-600 rounded-circle tw-rounded-bl-0 d-inline-flex justify-content-center align-items-center">
<img src="assets/images/icons/transport-way-icon3.svg" alt="">
</span>
<h3 class="cursor-big tw-py-6 w-100 tw-px-4 rounded-pill text-center bg-main-100-gradient-three">3m+</h3>
<h6 class="cursor-small tw-mt-10">Countries Covered</h6>
</div>
</div>
<div class="col-lg-3 col-sm-6 col-xs-6" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="500">
<div class="transport-way-item text-center">
<span class="transport-way-item__icon cursor-big tw-w-95-px tw-h-95-px bg-main-600 rounded-circle tw-rounded-bl-0 d-inline-flex justify-content-center align-items-center">
<img src="assets/images/icons/transport-way-icon4.svg" alt="">
</span>
<h3 class="cursor-big tw-py-6 w-100 tw-px-4 rounded-pill text-center bg-main-100-gradient-four">30+</h3>
<h6 class="cursor-small tw-mt-10">Total Services</h6>
</div>
</div>
</div>
</div>
</section>
<!-- =========================== Transport way End ============================== -->
<!-- ========================== Contact us section start =============================== -->
<section class="d-xl-flex">
<div class="w-100 xl-w-50 position-relative">
<div class="d-flex h-100">
<img src="assets/images/thumbs/contact-us-img1.png" alt="" class="d-sm-block d-none">
<div class="text-center animation-item bg-main-two-600 tw-py-12 tw-px-6 flex-grow-1">
<span class="cursor-big">
<img src="assets/images/icons/conact-us-icon1.svg" alt="" class="animate__wobble">
</span>
<h2 class="splitTextStyleOne text-white tw-mb-8 tw-mt-6 cursor-big">Need Our Services?</h2>
<a href="#" class="cursor-small fw-bold text-white d-inline-flex align-items-center tw-gap-5 hover-text-main-600">
Contact With us
<img src="assets/images/icons/arrow-right.svg" alt="">
</a>
</div>
</div>
</div>
<div class="w-100 xl-w-50 position-relative">
<div class="d-sm-flex">
<div class="position-relative">
<img src="assets/images/thumbs/contact-us-img2.png" alt="" class="w-100 h-100 object-fit-cover">
<a href="https://www.youtube.com/watch?v=MFLVmAE4cqg" class="play-button circle-border bg-inherit-animation cursor-big tw-w-75-px tw-h-75-px d-flex justify-content-center align-items-center bg-main-three-600 text-main-two-600 hover-text-main-two-700 active-scale-094 rounded-circle tw-text-xl position-absolute top-50 tw-start-50 translate-middle">
<i class="ph-fill ph-play"></i>
</a>
</div>
<div class="text-center animation-item bg-main-600 tw-py-12 tw-px-6 flex-grow-1">
<span class="cursor-big">
<img src="assets/images/icons/conact-us-icon2.svg" alt="" class="animate__wobble">
</span>
<h2 class="splitTextStyleOne text-white tw-mb-8 tw-mt-6 cursor-big">Discuss With Agents</h2>
<a href="#" class="cursor-small fw-bold text-white d-inline-flex align-items-center tw-gap-5 hover-text-main-two-600">
Contact With us
<img src="assets/images/icons/arrow-right.svg" alt="">
</a>
</div>