-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1380 lines (1296 loc) · 52.9 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 content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Eastern Fulfillment Co - Index</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css"
rel="stylesheet"
/>
<!-- <link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/> -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Jost:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<header id="header" class="fixed-top">
<div class="container d-flex justify-content-between align-items-between">
<div class="logo">
<img src="./assets/img/logo.png" class="logo" alt="">
</div>
<nav id="navbar" class="navbar">
<ul>
<li>
<a class="nav-link scrollto" href="#hero">Home</a>
</li>
<li>
<a class="nav-link scrollto" href="./fulfillment.html">Fulfillment</a>
</li>
<li>
<a class="nav-link scrollto" href="./Software.html">Software</a>
</li>
<li>
<a class="nav-link scrollto" href="#team">About</a>
</li>
<li>
<a class="nav-link scrollto" href="#contact">Contact</a>
</li>
<li>
<a class="getstarted scrollto" href="#about">Get Started</a>
</li>
</ul>
<i
class="bi bi-list mobile-nav-toggle"
style="font-size: 35px; color: white"
onclick="showMenu()"
></i>
</nav>
<div class="navbar-mobile"></div>
</div>
</header>
<div class="mobile-header" id="mobile-menu">
<a href="./index.html">Home</a>
<a href="./fulfillment.html">Fulfillment</a>
<a href="./Software.html">Software</a>
<a href="#team">About</a>
<a href="#contact">Contact</a>
<button>Get Started</button>
</ul>
<i class="bi bi-x close-btn" onclick="closeMenu()"></i>
</div>
<section id="hero" class="d-flex align-items-center">
<div class="container">
<div class="row">
<div
class="col-lg-6 d-flex flex-column justify-content-center pt-4 pt-lg-0 order-2 order-lg-1"
data-aos="fade-up"
data-aos-delay="200"
>
<h1>Simplified Ecommerce Fulfillment</h1>
<h2>Trusted Choice for Worldwide E-Commerce</h2>
<div class="d-flex justify-content-center justify-content-lg-start">
<a href="#about" class="btn-get-started scrollto">Get Started</a>
<!-- <a
href="https://www.youtube.com/watch?v=jDDaplaOz7Q"
class="glightbox btn-watch-video"
><i class="bi bi-play-circle"></i><span>Watch Video</span></a
> -->
</div>
</div>
<div
class="col-lg-6 order-1 order-lg-2 hero-img"
data-aos="zoom-in"
data-aos-delay="200"
>
<img
src="assets/img/hero-img.png"
class="img-fluid animated"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= Clients Section ======= -->
<!-- ======= About Us Section ======= -->
<!-- ======= Why Us Section ======= -->
<section id="about" class="why-us section-bg">
<div class="container-fluid" data-aos="fade-up">
<div class="row">
<div
class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1"
>
<div class="content">
<h3>How it <strong>Works</strong></h3>
<p>
Experience the difference with Eastern, your avant-garde 3PL partner, redefining fulfillment with simplicity and efficiency. We prioritize transparency, eradicating cost uncertainties, ensuring you stay in control. Count on our dedicated customer support and fixed-rate delivery charges for a smooth journey. Elevate your logistics game with Eastern – where precision meets reliability, and success follows suit.
<br /><strong
>Your Fulfillment is managed through a streamlined three-step process.</strong
>
</p>
</div>
<div class="accordion-list">
<ul>
<li>
<a
data-bs-toggle="collapse"
class="collapsed"
data-bs-target="#accordion-list-1"
><span>01</span> Receiving to our warehouse
<i class="bi bi-send-check" style="color: #37517e"></i>
</a>
</li>
<li>
<a
data-bs-toggle="collapse"
data-bs-target="#accordion-list-2"
class="collapsed"
><span>02</span> Integrations and storage
<i class="bi bi-shop-window" style="color: #37517e"></i>
</a>
</li>
<li>
<a
data-bs-toggle="collapse"
data-bs-target="#accordion-list-3"
class="collapsed"
><span>03</span> Pick Pack and ship
<i class="bi bi-truck" style="color: #37517e"></i>
</a>
</li>
</ul>
</div>
</div>
<div
class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style="background-image: url('assets/img/why-us.png')"
data-aos="zoom-in"
data-aos-delay="150"
>
</div>
</div>
</div>
</section>
<!-- End Why Us Section -->
<!-- ======= Features Section ======= -->
<section id="portfolio" class="features">
<div class="container" data-aos="fade-up">
<div class="content" >
<h3 style="color: #37517E;">Our <strong>Software</strong></h3>
<p>
Eastern offers complimentary access to our robust 3PL software specifically designed for eCommerce, striking the perfect balance between simplicity for newcomers and advanced functionality for seasoned users. Our software ensures a seamless Ecommerce Fulfillment management experience through automation, encompassing critical features such as data flow, order processing, status tracking, real-time inventory updates, inbound processes to our warehouses, billing, and robust integration with various marketplaces. Elevate your eCommerce operations effortlessly with Eastern's powerful software suite.
</p>
</div>
<ul class="nav nav-tabs row gy-4 d-flex justify-content-center" id="myTabs">
<li class="nav-item col-5 col-md-4 col-lg-2">
<a
class="nav-link active show"
data-bs-toggle="tab"
data-bs-target="#tab-1"
>
<i class="bi bi-binoculars color-cyan"></i>
<h4>Dashboard</h4>
</a>
</li>
<!-- End Tab 1 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-2">
<i class="bi bi-box-seam color-indigo"></i>
<h4>Orders</h4>
</a>
</li>
<!-- End Tab 2 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-3">
<i class="bi bi-brightness-high color-teal"></i>
<h4>Inventory</h4>
</a>
</li>
<!-- End Tab 3 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-4">
<i class="bi bi-command color-red"></i>
<h4 style="text-align: center">Inbound Shipments</h4>
</a>
</li>
<!-- End Tab 5 Nav -->
<li class="nav-item col-6 col-md-4 col-lg-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-6">
<i class="bi bi-map color-orange"></i>
<h4 style="text-align: center;">B2B Fulfillment</h4>
</a>
</li>
<!-- End Tab 6 Nav -->
</ul>
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row gy-4">
<p class="fst-italic">
Gain instant insights into your eCommerce enterprise with just a glance. Consolidate all critical store data effortlessly in one comprehensive overview
</p>
<div
class="col-lg-8 order-2 order-lg-1"
data-aos="fade-up"
data-aos-delay="100"
>
<h3 style="color: #37517e">Enhancements</h3>
<ul>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Complete Account Snapshot
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Sales Trend Analysis
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Multichannel Omni Inventory Management
</li>
</ul>
</div>
<div
class="col-lg-4 order-1 order-lg-2 text-center"
data-aos="fade-up"
data-aos-delay="200"
>
<img
src="undraw_dashboard_re_3b76-01.png"
alt=""
class="img-fluid"
/>
</div>
</div>
</div>
<!-- End Tab Content 1 -->
<div class="tab-pane" id="tab-2">
<div class="row gy-4">
<p>
operating around the clock, we ensure real-time processing of all your orders. The Eastern Fulfillment Suite empowers you to experience robust order processing with real-time shipping data, providing unparalleled efficiency and accuracy for your business
</p>
<div class="col-lg-8 order-2 order-lg-1">
<h3 style="color: #37517e">Enhancements</h3>
<ul>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Same-day Order
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Processing Real-time Shipment Reporting
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Flat Rate Shipping
</li>
</ul>
</div>
<div class="col-lg-4 order-1 order-lg-2 text-center">
<img
src="assets/img/feature-2.png"
alt=""
class="img-fluid"
/>
</div>
</div>
</div>
<!-- End Tab Content 2 -->
<div class="tab-pane" id="tab-3">
<div class="row gy-4">
<p>
From inbound to outbound, we track every movement of your inventory. We understand that managing inventory across multiple selling channels can be frustrating, our Eastern Fulfillment Suite ensures comprehensive control and visibility throughout the entire process.
</p>
<div class="col-lg-8 order-2 order-lg-1">
<h3 style="color: #37517e">Enhancements</h3>
<ul>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Real-time Inventory Updates
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Effortlessly manage, organize, and track
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Optimize Utilization
</li>
</ul>
</div>
<div class="col-lg-4 order-1 order-lg-2 text-center">
<img
src="assets/img/feature-3.png"
alt=""
class="img-fluid"
/>
</div>
</div>
</div>
<!-- End Tab Content 3 -->
<div class="tab-pane" id="tab-4">
<div class="row gy-4">
<p>
Ship us your Inventory Air, Sea or Truck full of goods and watch as our dedicated team processes all inbound shipments in lightning-fast time—less than 12 hours to be precise. Imagine receiving your products and having them ready for shipment on the very same day.
</p>
<div class="col-lg-8 order-2 order-lg-1">
<h3 style="color: #37517e">Enhancements</h3>
<ul>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Same-day turnaround
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Static storage slotting
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Shipments ready for the shelf
</li>
</ul>
</div>
<div class="col-lg-4 order-1 order-lg-2 text-center">
<img
src="assets/img/feature-4.png"
alt=""
class="img-fluid"
/>
</div>
</div>
</div>
<!-- End Tab Content 4 -->
<div class="tab-pane" id="tab-5">
<div class="row gy-4">
<p>
Keeping up with inventory restrictions from Amazon can be
tedious. Whether it's an FBA prep or replenishment request, we
will take care of it within 1 business day. Simply upload your
labels to our software and we will take it from there.
</p>
<div class="col-lg-8 order-2 order-lg-1">
<h3 style="color: #37517e">Features</h3>
<ul>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i
>Same Day Forwarding.
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
FBA Prep 2 Day Turnaround.
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>
Custom Work Orders for Bundles and more.
</li>
</ul>
</div>
<div class="col-lg-4 order-1 order-lg-2 text-center">
<img
src="assets/img/undraw_social_update_re_xhjr.svg"
alt=""
class="img-fluid"
/>
</div>
</div>
</div>
<!-- End Tab Content 5 -->
<div class="tab-pane" id="tab-6">
<div class="row gy-4">
<p>
Elevate your B2B fulfillment experience with Eastern. Our comprehensive solutions ensure seamless and efficient handling of your business-to-business operations, empowering you with reliability and precision at every step
</p>
<div class="col-lg-8 order-2 order-lg-1">
<h3 style="color: #37517e">Enhancements</h3>
<ul>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>Wholesale order fulfillment
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>Retail Dropshipping
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>6000 orders per day Capacity
</li>
<li>
<i
class="bi bi-check-circle-fill"
style="color: #37517e"
></i>Kitting and special requests
LTL, TL, Grounds services
</li>
</ul>
</div>
<div class="col-lg-4 order-1 order-lg-2 text-center">
<img
src="assets/img/feature-6.png"
alt=""
class="img-fluid"
/>
</div>
</div>
</div>
<!-- End Tab Content 6 -->
</div>
</div>
</section>
<!-- End Features Section -->
<!-- ======= Skills Section ======= -->
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>
We make it simple, and take care of the tough parts for you with:
</p>
</div>
<div class="row">
<div
class="col-xl-3 col-md-6 d-flex align-items-stretch"
data-aos="zoom-in"
data-aos-delay="100"
>
<div class="icon-box">
<div class="icon"><i class="bi bi-truck-flatbed"></i></div>
<h4><a href="">Same day order shipping</a></h4>
</div>
</div>
<div
class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="zoom-in"
data-aos-delay="200"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Customer support from warehouse
</a></h4>
</div>
</div>
<div
class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0"
data-aos="zoom-in"
data-aos-delay="300"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4><a href="">7 days warehouse operations</a></h4>
</div>
</div>
<div
class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0"
data-aos="zoom-in"
data-aos-delay="400"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-layer"></i></div>
<h4><a href="">Flat Rate Shipping</a></h4>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<section id="clients" class="clients section-bg">
<div class="container">
<div class="row" data-aos="zoom-in">
<div class="section-title">
<h2>Our Integrations</h2>
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/amazon.webp"
class="img-fluid"
alt=""
/>
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img src="assets/img/clients/wix.webp" class="img-fluid" alt="" />
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/ebay.webp"
class="img-fluid"
alt=""
/>
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img src="assets/img/clients/etsy.svg" class="img-fluid" alt="" />
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/pic2.webp"
class="img-fluid"
alt=""
/>
</div>
<div
class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center"
>
<img
src="assets/img/clients/shopify.webp"
class="img-fluid"
alt=""
/>
</div>
</div>
<button type="button" class="btn btn-outline-primary">
Load More
</button>
</div>
</section>
<!-- End Cliens Section -->
<!-- ======= Cta Section ======= -->
<div class="container" data-aos="fade-up">
<div class="section-title" style="padding-top: 40px">
<h2>Inquire Now</h2>
</div>
<div class="col-12 mt-3 mt-md-5" style="padding-bottom: 70px">
<div
class="d-flex flex-column flex-md-row justify-content-around align-items-md-end"
>
<div class="card text-center border-0 mt-3 mt-md-0" onclick="showChat()">
<i
class="bi bi-chat-left-text-fill"
style="font-size: 100px; color: #37517e"
></i>
<div class="card-body">
<div class="card-text">
<span
class="purple-link large-link text-center stretched-link cursor-pointer"
>Live Chat</span
>
</div>
</div>
</div>
<div class="card text-center border-0 my-5 my-md-0">
<i
class="bi bi-card-heading"
style="font-size: 100px; color: #37517e"
></i>
<div class="card-body">
<div class="card-text">
<a
class="purple-link large-link text-center stretched-link"
href="/get-started"
>Get Started</a
>
</div>
</div>
</div>
<div
class="card text-center border-0"
role="button"
data-bs-toggle="modal"
data-bs-target="#schedulePhoneCallModal"
>
<i
class="bi bi-telephone-inbound-fill"
style="font-size: 100px; color: #37517e"
></i>
<div class="card-body">
<div class="card-text">
<a
class="purple-link large-link text-center stretched-link"
href="./Phone.html"
>Schedule a Phone Call</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="row">
<div class="col-lg-9 text-center text-lg-start">
<h3>Call To Action</h3>
<p>
Experience a customer support revolution at Eastern! Our round-the-clock support and sales teams are ready to tackle any issue, anytime, no matter the time zone. Schedule a call today and unlock the power of Eastern in overcoming your fulfillment challenges. Let us redefine excellence in support, making your success our priority.
</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="#">Call To Action</a>
</div>
</div>
</div>
</section>
<!-- End Cta Section -->
<!-- ======= Portfolio Section ======= -->
<!-- ======= Team Section ======= -->
<section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Reviews</h2>
<p>
Magnam dolores commodi suscipit. Necessitatibus eius consequatur
ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam
quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea.
Quia fugiat sit in iste officiis commodi quidem hic quas.
</p>
</div>
<div class="row">
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="100">
<div class="member">
<div class="pic">
<img
src="assets/img/team/team-1.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="member-info">
<h4>Walter White</h4>
<span>Chief Executive Officer</span>
<p>
Explicabo voluptatem mollitia et repellat qui dolorum quasi
</p>
</div>
</div>
</div>
<div
class="col-lg-6 mt-4 mt-lg-0"
data-aos="zoom-in"
data-aos-delay="200"
>
<div class="member d-col">
<div class="pic">
<img
src="assets/img/team/team-2.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Product Manager</span>
<p>
Aut maiores voluptates amet et quis praesentium qui senda
para
</p>
<!-- <div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div> -->
</div>
</div>
</div>
<div class="col-lg-6 mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="member ">
<div class="pic">
<img
src="assets/img/team/team-3.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="member-info">
<h4>William Anderson</h4>
<span>CTO</span>
<p>
Quisquam facilis cum velit laborum corrupti fuga rerum quia
</p>
</div>
</div>
</div>
<div class="col-lg-6 mt-4" data-aos="zoom-in" data-aos-delay="400">
<div class="member">
<div class="pic">
<img
src="assets/img/team/team-4.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
<p>
Dolorum tempora officiis odit laborum officiis et et
accusamus
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
class="collapse"
data-bs-target="#faq-list-1"
>What is Third-party Fulfillment?
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-1"
class="collapse show"
data-bs-parent=".faq-list"
>
<p>
Third-party fulfillment encompasses a range of solutions, from warehousing to shipping and order tracking. An eCommerce order fulfillment company manages the storage, packing, and shipping of products on behalf of eCommerce merchants.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
data-bs-target="#faq-list-2"
class="collapsed"
>How does Third-party fulfillment work?
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-2"
class="collapse"
data-bs-parent=".faq-list"
>
<p>
Third-party fulfillment works by fulfilling orders on behalf of eCommerce businesses. These services handle the storage, picking, packing, and shipping of products, streamlining the fulfillment process for businesses.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
data-bs-target="#faq-list-3"
class="collapsed"
>Is it safe to use a 3PL eCommerce order fulfillment service?
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-3"
class="collapse"
data-bs-parent=".faq-list"
>
<p>
Absolutely! A reputable 3PL e-commerce fulfillment company like Eastern Fulfillment ensures secure storage and safe delivery of products, reducing the operational burden on ecommerce merchants.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
data-bs-target="#faq-list-4"
class="collapsed"
>What are the Different Types of Third-party Fulfillment? <i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-4"
class="collapse"
data-bs-parent=".faq-list"
>
<p>
There are various types, including distribution, transportation, and shipper-focused 3PLs. Each type offers a unique ecommerce fulfillment solution tailored to different business needs.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="500">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
data-bs-target="#faq-list-5"
class="collapsed"
>What does a 3PL do?
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-5"
class="collapse"
data-bs-parent=".faq-list"
>
<p>
A 3PL manages various aspects of the fulfillment process for businesses, including warehousing, inventory management, packing, and shipping, allowing ecommerce merchants to focus on growth and sales.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="500">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
data-bs-target="#faq-list-6"
class="collapsed"
>What is the difference between 3PL, 4PL, and dropshipping?
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-6"
class="collapse"
data-bs-parent=".faq-list"
>
<p>
3PL focuses on storage and shipping, 4PL oversees the entire supply chain, and dropshipping involves selling products without holding inventory. Each has its own advantages, but 3PL is often preferred by ecommerce merchants for its cost-effectiveness and streamlined fulfillment operations.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="500">
<i class="bx bx-help-circle icon-help"></i>
<a
data-bs-toggle="collapse"
data-bs-target="#faq-list-7"
class="collapsed"
>Can I make my business profitable when using a 3PL solution?
<i class="bx bx-chevron-down icon-show"></i
><i class="bx bx-chevron-up icon-close"></i
></a>
<div
id="faq-list-7"
class="collapse"