-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1589 lines (1394 loc) · 169 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-us">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MXM93Z8');</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5" />
<link href="Content/fonts/silka-regular-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link href="Content/fonts/silka-medium-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link href="Content/fonts/silka-semibold-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link href="Content/fonts/silka-bold-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link rel="home" id="ApplicationPath" href="index.html" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script type="text/javascript">window.paceOptions = { startOnPageLoad: false, ajax: { trackMethods: [], trackWebSockets: false, ignoreURLs: [] } };</script>
<title>Next Generation Digital Forwarding - All Forward</title>
<meta name="description" content="Next Generation Digital Forwarding">
<meta property="og:site_name" content="All-Forward">
<meta property="og:url" content="https://www.all-forward.com/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="og:title" content="Next Generation Digital Forwarding" />
<meta name="twitter:title" content="Next Generation Digital Forwarding">
<meta property="og:image" content="https://www.all-forward.com/Content/images/commercial/OceanFreight-Hero-banner.jpg" />
<meta name="twitter:image" content="https://www.all-forward.com/Content/images/commercial/OceanFreight-Hero-banner.jpg">
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css"/>
</head>
<body ng-app="AllForward" ng-cloak ng-controller="CommercialController">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MXM93Z8"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<link href="DynJS.axd/CssBundle.Base%EF%B9%96v=gSxZ2sWrAy9Cio8GqoWJvw2.css" rel="stylesheet" type="text/css"/>
<script src="DynJS.axd/Bundle.Base%EF%B9%96v=3krHtmnUHhzkM5mDeXO-Aw2.js" type="text/javascript"></script>
<script src="DynJS.axd/Bundle.Configuration%EF%B9%96v=yFifqqFBdhA5n8_MhDL42w2.js" type="text/javascript"></script>
<script type="text/javascript">
Q.ScriptData.set('Lookup.Administration.Language', new Q.Lookup({"idField":"LanguageId","textField":"LanguageName"},
[{"Id":6,"LanguageId":"zh-CN","LanguageName":"Chinese (Simplified)"},{"Id":1,"LanguageId":"en","LanguageName":"English"},{"Id":5,"LanguageId":"de","LanguageName":"German"},{"Id":12,"LanguageId":"he","LanguageName":"Hebrew"},{"Id":7,"LanguageId":"it","LanguageName":"Italian"},{"Id":8,"LanguageId":"pt","LanguageName":"Portuguese"},{"Id":9,"LanguageId":"pt-BR","LanguageName":"Portuguese (Brazil)"},{"Id":2,"LanguageId":"ru","LanguageName":"Russian"},{"Id":3,"LanguageId":"es","LanguageName":"Spanish"},{"Id":4,"LanguageId":"tr","LanguageName":"Turkish"},{"Id":11,"LanguageId":"vi-VN","LanguageName":"Vietnamese (Vietnam)"}]
));
Q.ScriptData.setRegisteredScripts({"Template.PropertyDialog":0,"Lookup.CurrenciesLookup":0,"Form.Membership.ResetPassword":0,"Form.SiteManagement.WebContentTeams":0,"Form.Administration.PriceDetails":0,"Columns.SiteManagement.WebContentClients":0,"Lookup.RoleLookup":0,"Lookup.Administration.Role":0,"Columns.Administration.FreeShipperQuotes":0,"Bundle.Client":"8NQbAyL59Tv-h7gkngT8QA2","Columns.Administration.Leads":0,"Lookup.UnitTypesLookup":0,"Columns.SiteManagement.WebContentEmailLogs":0,"Columns.Administration.SystemCarriers":0,"Lookup.SystemCarriersLookup":"rxrWc8pdGxjIKSMvWF8lAA2","Template.Administration.QuotesDialog":0,"Columns.Administration.ChargingUnits":0,"Columns.Administration.OceanFreightIndex":0,"Lookup.EmailParametersLookup":0,"Columns.Administration.StandardText":0,"Form.Administration.Ports":0,"Form.Administration.Goods":0,"Form.SiteManagement.WebContentQuations":0,"CssBundle.Site":"px98JYmk3P4Fo2cpBR4Fvw2","Columns.Administration.Companies":0,"Form.Administration.CompaniesIpn":0,"Form.Administration.User":0,"Form.Administration.NetworkComments":0,"TemplateBundle":0,"Columns.Administration.FreightDictionary":0,"Lookup.LanguagesLookup":0,"Form.Administration.OceanFreightIndex":0,"Columns.Administration.SpotRateConfiguration":0,"Columns.SiteManagement.WebContentFeedBacks":0,"Lookup.Administration.Language":"i28GxBTKrv13jT7Tei2NFQ2","Columns.Administration.CompanyFreightoolsConnections":0,"FormBundle":0,"Columns.Administration.Goods":0,"Columns.SiteManagement.WebContentTeams":0,"Form.Administration.FreeShipperQuotes":0,"Form.Administration.SpecialOffers":0,"Columns.Administration.User":0,"Form.Administration.Currencies":0,"CssBundle.Client":"gtQ2mY8HzJW5MuITSWApGw2","Form.Membership.ChangePassword":0,"Columns.Administration.CrmActivities":0,"Columns.Administration.Branches":0,"Lookup.PortsLookup":"5BfUE-N_8FCgVaDPjTUHaA2","Columns.Administration.ExchangeRates":0,"Lookup.FreightoolsConnectionsLookup":0,"Columns.Administration.CompaniesIpn":0,"Form.Administration.ScheduleSearchLogs":0,"Form.SiteManagement.WebContentTabs":0,"Form.Administration.SpotRates":0,"Form.Administration.Role":0,"Bundle.Pages/Dashboard":0,"Form.Administration.QuotesLogs":0,"Template.Administration.CompaniesDialog":0,"Columns.SiteManagement.WebContentTabs":0,"Form.Administration.EmailParameters":0,"Template.Administration.TrustScoresDialog":0,"Lookup.ServicesLookup":"uZ8G1s2QU7r6pav2j-HXDQ2","Lookup.ChargingUnitsLookup":0,"Form.Administration.Tags":0,"Lookup.BranchesLookup":0,"Lookup.PriceDetailsLookup":0,"Form.Administration.UnitTypes":0,"Lookup.UserLookup":0,"Form.Administration.ExchangeRates":0,"Columns.SiteManagement.WebContentPlans":0,"Form.Administration.NetworkLikes":0,"Lookup.PublicEmailDomainsLookup":0,"Form.Administration.Leads":0,"Columns.Administration.Ports":0,"Form.SiteManagement.WebContentFeedBacks":0,"Form.Membership.Login":0,"Form.Administration.StandardText":0,"Columns.Administration.NetworkNews":0,"Lookup.CompaniesLookup":0,"CssBundle.Base":"gSxZ2sWrAy9Cio8GqoWJvw2","Columns.Administration.Logs":0,"Columns.Administration.SpotRates":0,"Form.Administration.SpotRateFees":0,"Columns.Administration.Role":0,"Form.Administration.CompanyFreightoolsConnections":0,"Lookup.CountriesLookup":"cjdw6LOuxVV65jRGkFedIQ2","ColumnsBundle":0,"Form.Administration.Countries":0,"Lookup.BlogsLookup":0,"Form.Administration.FreightoolsConnections":0,"Form.Administration.ProductPricingPlans":0,"Columns.Administration.Countries":0,"Bundle.Configuration":"yFifqqFBdhA5n8_MhDL42w2","Form.SiteManagement.WebContentPlanPackages":0,"Columns.Administration.SpotRateFees":0,"Columns.Administration.Blogs":0,"Columns.Administration.Services":0,"Template.Common.ReportDialog":0,"Form.SiteManagement.WebContents":0,"RemoteData.Administration.ImplicitPermissions":0,"Bundle.NorthwindLookups":0,"Lookup.ExchangeRatesLookup":0,"Lookup.CompanyTypesLookup":0,"Form.Administration.FreightDictionary":0,"Bundle.Base":"3krHtmnUHhzkM5mDeXO-Aw2","Columns.Administration.EmailLogs":0,"Columns.Administration.PriceDetails":0,"Columns.SiteManagement.WebContentPlanPackages":0,"Columns.Administration.UnitTypes":0,"Columns.Administration.SpecialOffers":0,"Lookup.TagsLookup":0,"Form.Administration.Blogs":0,"Lookup.WebContentPlanPackagesLookup":0,"Columns.SiteManagement.WebContents":0,"Form.Administration.CrmActivities":0,"Columns.Administration.EmailParameters":0,"Columns.Administration.FreightoolsConnections":0,"Form.Membership.ForgotPassword":0,"Columns.Administration.QuotesLogs":0,"Columns.Administration.NetworkLikes":0,"Form.Administration.CommercialSiteContent":0,"Form.Administration.PublicEmailDomains":0,"Bundle.Site":0,"Form.Administration.ChargingUnits":0,"Columns.Administration.NetworkComments":0,"Columns.Administration.ScheduleSearchLogs":0,"Columns.Administration.ProductPricingPlans":0,"Form.Administration.Companies":0,"CssBundle.Pages/Dashboard":0,"Form.Administration.EmailLogs":0,"Columns.Administration.CommercialSiteContent":0,"Columns.Administration.PublicEmailDomains":0,"RemoteData.Administration.PermissionKeys":0,"Columns.SiteManagement.WebContentQuations":0,"Form.Administration.Language":0,"Columns.Administration.CompanyTypes":0,"Columns.Administration.Language":0,"Form.Administration.CompanyTypes":0,"Form.Administration.NetworkNews":0,"Columns.Administration.Currencies":0,"Form.Administration.Branches":0,"Form.Administration.Services":0,"Form.SiteManagement.WebContentEmailLogs":0,"Lookup.PhoneCodeLookup":"cIjmVgOadCEyKPoz6nfi4g2","Form.Administration.SpotRateConfiguration":0,"LocalText.Site.en-US.Public":"YbI2Do41sljgv2UQziZbYw2","Form.SiteManagement.WebContentClients":0,"Template.EntityDialog":0,"Form.Administration.SystemCarriers":0,"Columns.Administration.Tags":0,"RemoteData.UserData":0,"Form.Membership.SignUp":0,"Form.SiteManagement.WebContentPlans":0,"Form.Administration.Logs":0});
</script>
<script>
app.controller('CommercialController', ($scope, $timeout, CommonServices) => {
$scope.navItems = [{"Header":{"Id":305,"Page":7,"MiniTitle":null,"Title":"Our Solutions","SubTitle":"We design supply chain solutions that leverage technology and logistics expertise.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":0,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":306,"Page":7,"MiniTitle":null,"Title":"Sustainable Logistics","SubTitle":"Carbon offset emissions","Content":null,"ButtonText":null,"ButtonLink":"SustainableLogistics","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":307,"Page":7,"MiniTitle":null,"Title":"OceanFreight","SubTitle":"Ship in a few clicks","Content":null,"ButtonText":null,"ButtonLink":"ContainerFreightRates","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":308,"Page":7,"MiniTitle":null,"Title":"Air Freight","SubTitle":"Fly for faster arrivals","Content":null,"ButtonText":null,"ButtonLink":"AirFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":309,"Page":7,"MiniTitle":null,"Title":"Less-than-Container Load","SubTitle":"Ship any volume","Content":null,"ButtonText":null,"ButtonLink":"LCLFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":310,"Page":7,"MiniTitle":null,"Title":"Rail Freight","SubTitle":"Go intermodal or direct.","Content":null,"ButtonText":null,"ButtonLink":"RailFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":311,"Page":7,"MiniTitle":null,"Title":"Additional Services","SubTitle":"Collaborate on orders","Content":null,"ButtonText":null,"ButtonLink":"AdditionalServices","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":6,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":312,"Page":7,"MiniTitle":null,"Title":"The Network","SubTitle":"We provide a global logistics platform where professionals can collaborate.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":0,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":313,"Page":7,"MiniTitle":null,"Title":"The Power Of Many","SubTitle":"Get instant rates","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":314,"Page":7,"MiniTitle":null,"Title":"Members Benefits","SubTitle":"Build your own digital network","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork#members-benefits","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":315,"Page":7,"MiniTitle":null,"Title":"Members Directory","SubTitle":"Members Directory","Content":null,"ButtonText":null,"ButtonLink":"MembersDirectory","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":316,"Page":7,"MiniTitle":null,"Title":"Payment Protection","SubTitle":"Payment Protection","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork#payment-protection","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":318,"Page":7,"MiniTitle":null,"Title":"Resources","SubTitle":"The tools and resources you need to deepen your knowledge and expertise.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":0,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":333,"Page":7,"MiniTitle":null,"Title":"Ocean Freight Rates","SubTitle":"Ocean Freight Rates","Content":null,"ButtonText":null,"ButtonLink":"ContainerFreightRates","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":319,"Page":7,"MiniTitle":null,"Title":"Blogs","SubTitle":"News & Trends you should read","Content":null,"ButtonText":null,"ButtonLink":"Blogs","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":320,"Page":7,"MiniTitle":null,"Title":"Freight Dictionary","SubTitle":"Boost your supply chain reminology","Content":null,"ButtonText":null,"ButtonLink":"FreightDictionary","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":330,"Page":7,"MiniTitle":null,"Title":"Schedule","SubTitle":"Port to Port shipping schedule","Content":null,"ButtonText":null,"ButtonLink":"Schedule","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":322,"Page":7,"MiniTitle":null,"Title":"About Us","SubTitle":"We bring digital freight solutions and networking opportunities to companies of all sizes.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":0,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":323,"Page":7,"MiniTitle":null,"Title":"Our Mission","SubTitle":"We’re making global trade easy for everyone","Content":null,"ButtonText":null,"ButtonLink":"AboutUs","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":324,"Page":7,"MiniTitle":null,"Title":"Why All-Forward","SubTitle":"The fastest freight forwarders network.","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#why-all-forward","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":325,"Page":7,"MiniTitle":null,"Title":"Careers","SubTitle":"Help Move the World Forward","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#careers","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":326,"Page":7,"MiniTitle":null,"Title":"Blog","SubTitle":"Featured Story","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#press","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":327,"Page":7,"MiniTitle":null,"Title":"Contact","SubTitle":"Contact and follow us","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#contact-us","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1}]}];
$scope.newsLetterEmail = '';
$scope.lead = {"Id":0,"Email":null,"IP":null,"FirstName":null,"LastName":null,"Phone":null,"PhoneCode":null,"CompanyName":null,"CompanyVAT":null,"CompanyAddress":null,"CompanyCountryId":null,"CompanyWebsite":null,"CompanyId":null,"CompanyTypeId":null,"CompanySize":null,"Created":"0001-01-01T00:00:00","UTMSource":null,"UTMCampaign":null,"UTMMedium":null,"UTMTerm":null,"UTMContent":null,"GCLID":null};
$scope.countries = Q.getLookup('CountriesLookup').items;
const params = new URLSearchParams(window.location.search);
$scope.scrollToTop = () => $(window).scrollTop(0);
$scope.isNavOpen = false;
$scope.selectedSubMenuIndex = null;
$scope.toggleNav = () => {
$scope.isNavOpen = !$scope.isNavOpen;
if (!$scope.isNavOpen) {
$scope.selectedSubMenuIndex = null;
}
}
$scope.openSubMenu = index => {
$scope.selectedSubMenuIndex = index;
}
$scope.closeSubMenu = () => {
$scope.selectedSubMenuIndex = null;
}
$scope.signupLink = 'https://app.all-forward.com/Account/Signup';
$scope.loginLink = 'https://app.all-forward.com/Account/Login';
$scope.signupToNewsletter = () => {
if (!CommonServices.isValidEmail($scope.newsLetterEmail)) {
Q.notifyError('Please enter a valid email');
return;
}
$scope.lead.Email = $scope.newsLetterEmail;
$scope.lead.UTMSource = 'NEWSLETTER';
$scope.lead.UTMCampaign = params.get('utm_campaign');
$scope.lead.UTMMedium = params.get('utm_medium');
$scope.lead.UTMTerm = params.get('utm_term');
$scope.lead.UTMContent = params.get('utm_content');
$scope.lead.GCLID = params.get('gclid');
$.post(Q.resolveUrl('~/Administration/Leads/Set'), { lead: $scope.lead })
.then(() => {
Q.notifySuccess('You will now receive newsletters from us');
})
.catch(e => {
Q.notifyError(e.statusText);
});
}
$scope.scrollTo = (selector, offset) => {
$('html').animate(
{
scrollTop: $(selector).offset().top - offset
})
}
$timeout(() => {
$('a').each(function(i, el) {
const searchParams = location.search;
const onboardingWizard = $(el).attr('data-onboarding-wizard');
let onboardingWizardParam = ''
if (onboardingWizard) {
onboardingWizardParam = `${searchParams ? '&' : '?'}onboardingWizard=${onboardingWizard}`;
};
const href = $(this).attr('href');
if (location.search || onboardingWizardParam) {
$(this).attr('href', href + searchParams + onboardingWizardParam);
}
});
const nav = $(".main-navigation");
const onScroll = () => {
if($(window).scrollTop()) {
!nav.hasClass('nav-scroll') && nav.addClass("nav-scroll");
}
else if (nav.hasClass('nav-scroll') && !nav.hasClass('force-scroll-class')) {
nav.removeClass("nav-scroll");
}
}
$(window).on("scroll", onScroll);
$(".nav-item").hover(() => {
if($(window).scrollTop() || nav.hasClass('force-scroll-class')) return
nav.addClass("nav-scroll");
}, () => {
if($(window).scrollTop() || nav.hasClass('force-scroll-class')) return
nav.removeClass("nav-scroll");
});
onScroll();
});
});
</script>
<nav class="main-navigation" ng-show="!isNavOpen">
<a class="nav-logo" href="index.html" aria-label="All Forward Home Page">
<svg viewBox="0 0 321 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M83 1V38H92.1198V24.8008H105.83V16.9173H92.1198V9.02385H107V1H83Z" fill="#57B89C" />
<path d="M37 1V38H58V30.2332H46.2257V1H37Z" fill="currentColor" />
<path d="M60 1V38H81V30.2332H69.2155V1H60Z" fill="currentColor" />
<path d="M128.16 0C116.71 0 108.7 8.49 108.7 19.28C108.7 30.07 116.71 38.56 128.16 38.56C139.61 38.56 147.62 30.07 147.62 19.28C147.62 8.49 139.54 0 128.16 0ZM128.16 30.18C121.71 30.18 117.68 25.36 117.68 19.28C117.68 13.2 121.72 8.38 128.16 8.38C134.6 8.38 138.64 13.2 138.64 19.28C138.64 25.36 134.54 30.18 128.16 30.18Z" fill="#57B89C" />
<path d="M301.792 1H289V38H301.792C313.541 38 321 29.3006 321 19.4399C321 9.01867 312.618 1 301.792 1ZM301.613 29.7411H298.008V9.20888H301.613C307.92 9.20888 311.773 13.7137 311.773 19.4499C311.773 25.6767 307.374 29.7511 301.613 29.7511V29.7411Z" fill="#57B89C" />
<path d="M179 1H189.034L193.041 21.7148H193.471L197.389 1H208.611L212.529 21.7148H212.959L216.966 1H227L218.255 38H207.652L203.205 15.6918H202.775L198.328 38H187.725L179 1Z" fill="#57B89C" />
<path d="M35 37.99L22.6152 1H12.3748L0 37.99H1.85371C1.85371 37.99 1.85371 37.99 1.85371 38H9.8998C9.8998 33.8002 13.2866 30.3785 17.4549 30.3785C21.6232 30.3785 25.01 33.8002 25.01 38H33.0661C33.0661 38 33.0661 38 33.0661 37.99H34.99H35ZM13.9279 22.6573L16.8637 12.3624L20.2605 22.5077C19.3487 22.3381 18.4168 22.2583 17.4649 22.2583C16.2625 22.2583 15.0802 22.398 13.9279 22.6573Z" fill="currentColor" />
<path d="M288 37.99L277.956 24.2391C283.472 22.8851 286.76 19.2442 286.76 12.775C286.76 5.80428 281.556 1 273.56 1H258V13.2464V19.5752V38H267.106V24.1889L276.585 38H287.99L288 37.99ZM274.427 17.0276H267.116V8.71293H274.185C276.232 8.71293 277.845 10.6286 277.845 12.785C277.845 14.9414 276.484 17.0377 274.437 17.0377L274.427 17.0276Z" fill="#57B89C" />
<path d="M180 37.99L169.956 24.2391C175.472 22.8851 178.76 19.2442 178.76 12.775C178.76 5.80428 173.556 1 165.56 1H150V13.2464V19.5752V38H159.106V24.1889L168.585 38H179.99L180 37.99ZM166.427 17.0276H159.116V8.71293H166.185C168.232 8.71293 169.845 10.6286 169.845 12.785C169.845 14.9414 168.484 17.0377 166.437 17.0377L166.427 17.0276Z" fill="#57B89C" />
<path d="M227.5 11.29L241.38 16.88L224.47 24.08L227.5 11.29Z" fill="currentColor" />
<path d="M229.696 1L227.82 8.99321L247.388 16.8959L223.527 27.2519L221 38L264.92 18.213L265 14.9152L229.696 1Z" fill="#57B89C" />
</svg>
<span style="display: none;">All Forward Home Page</span>
</a>
<ul class="nav-list">
<li class="nav-item nav-dropdown-container" ng-repeat="navItem in navItems" tabindex="0" ng-class="{'nav-dropdown-first': $first}">
<span class="nav-title uppercase">{{navItem.Header.Title}}</span>
<svg class="nav-dropdown-arrow" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 14.9999C11.744 14.9999 11.488 14.9019 11.293 14.7069L6.586 9.99994L8 8.58594L12 12.5859L16 8.58594L17.414 9.99994L12.707 14.7069C12.512 14.9019 12.256 14.9999 12 14.9999Z" fill="currentColor" />
</svg>
<img class="nav-dropdown-polygon"
src="Content/images/commercial/polygon.png"
alt="polygon" />
<div class="dropdown-wrapper" ng-class="{'dropdown-wrapper-first': $first}">
<div class="nav-dropdown">
<div class="nav-dropdown-items-container">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html" class="nav-dropdown-item" ng-repeat="item in navItem.Items | limitTo: 4">
<div class="flex_col">
<span class="nav-item-title">{{item.Title}}</span>
<span class="nav-item-subtitle">{{item.SubTitle}}</span>
</div>
<img class="nav-dropdown-item-icon"
src="Content/images/commercial/arrow-right-white.svg"
alt="arrow" />
</a>
</div>
<div class="nav-dropdown-items-container" ng-if="navItem.Items.length > 4">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html" class="nav-dropdown-item" ng-repeat="item in navItem.Items | limitTo: 4 - navItem.Items.length">
<div class="flex_col">
<span class="nav-item-title">{{item.Title}}</span>
<span class="nav-item-subtitle">{{item.SubTitle}}</span>
</div>
<img class="nav-dropdown-item-icon"
src="Content/images/commercial/arrow-right-white.svg"
alt="arrow" />
</a>
</div>
<div class="nav-dropdown-card-container">
<div class="nav-dropdown-card-text">
<h4 class="uppercase">{{navItem.Header.Title}}</h4>
<p>{{navItem.Header.SubTitle}}</p>
</div>
<img src="Content/images/commercial/calculator-1.jpg" ng-show="navItem.Header.SectionType == 77" alt="calculator" />
<img src="Content/images/commercial/THE-NETWORK-nav-dropdown-card.jpg" ng-show="navItem.Header.SectionType == 78" alt="calculator" />
<img src="Content/images/commercial/RESOURCES-nav-dropdown-card.png" ng-show="navItem.Header.SectionType == 79" alt="calculator" />
<img src="Content/images/commercial/ABOUT-US-nav-dropdown-card.png" ng-show="navItem.Header.SectionType == 80" alt="calculator" />
</div>
</div>
</div>
</li>
</ul>
<div class="nav-icons">
<button class="mobile-nav-toggler" ng-click="toggleNav()">
<svg width="24" height="16" viewBox="0 0 24 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 1H23" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M1 1H17" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M3 8H1" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M23 8H7" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M21 15H23" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M1 15H17" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
</svg>
</button>
<a href="%7B%7BloginLink%7D%7D.html" class="base-btn btn-secondary hide_mobile">Login</a>
<a href="%7B%7BsignupLink%7D%7D.html" class="base-btn primary-btn hide_mobile btn-white">Get Started</a>
</div>
</nav>
<nav class="nav-mobile" ng-class="{ 'nav-mobile-active': isNavOpen }">
<div class="nav-logo-mobile">
<a href="index.html">
<img src="Content/images/commercial/squareLogoBlue.svg" alt="logo-mobile" />
</a>
<div class="mobile-nav-exit" ng-click="toggleNav()">
<img src="Content/images/commercial/e-remove.svg" alt="exit">
<img src="Content/images/commercial/Rectangle%2019.svg" alt="blue-backgroud">
</div>
</div>
<ul>
<li class="nav-mobile-item" ng-repeat="navItem in navItems">
<button class="nav-mobile-menu-btn" ng-click="openSubMenu($index)">
<div class="nav-mobile-item-text">
<h4 class="uppercase">{{navItem.Header.Title}}</h4>
<span>
Check more
<img src="Content/images/commercial/arrow-right-white.svg" alt="arrow-right" />
</span>
</div>
<img src="Content/images/commercial/CalcMobile.jpg" ng-show="navItem.Header.SectionType == 77" alt="calculator" />
<img src="Content/images/commercial/TheNetworkMobile.jpg" ng-show="navItem.Header.SectionType == 78" alt="calculator" />
<img src="Content/images/commercial/bl_Mobile.jpg" ng-show="navItem.Header.SectionType == 79" alt="calculator" />
<img src="Content/images/commercial/water-home-blog-img-Mobile.jpg" ng-show="navItem.Header.SectionType == 80" alt="calculator" />
</button>
</li>
</ul>
<div class="footer-socials nav-socials-mobile">
<div class="socials-icons nav-socials-icons">
<a href="https://www.facebook.com/alllforward" target="_blank">
<img src="Content/images/commercial/fb.svg" alt="facebook" />
</a>
<a href="https://linkedin.com/company/allforward" target="_blank">
<img src="Content/images/commercial/linkedin.svg" alt="linkedin" />
</a>
</div>
<div class="footer-copy-rights nav-copy-rights">
<span>Copyright ©</span>
<span>2023</span>
<span>Terms of Use</span>
</div>
</div>
<div class="nav-mobile-logo-bot">
<img src="Content/images/commercial/NavBotLogo.svg" alt="all-forward-logo" />
</div>
</nav>
<div class="nav-mobile nav-mobile-submenu" ng-class="{ 'nav-mobile-active': selectedSubMenuIndex != null }">
<div class="nav-logo-mobile">
<img src="Content/images/commercial/squareLogoBlue.svg" alt="logo-mobile" />
<div class="mobile-nav-exit" ng-click="toggleNav()">
<img src="Content/images/commercial/e-remove.svg" alt="exit">
<img src="Content/images/commercial/Rectangle%2019.svg" alt="blue-backgroud">
</div>
</div>
<ul>
<li class="nav-mobile-item nav-mobile-side-first">
<button class="nav-mobile-menu-btn" ng-click="closeSubMenu()">
<div class="nav-mobile-item-text nav-mobile-item-text-side">
<h4 class="uppercase">{{navItems[selectedSubMenuIndex].Header.Title}}</h4>
<span>
<img class="arrow-icon-rotate-side" src="Content/images/commercial/arrow-right-white.svg" alt="arrow-right" />
Go back
</span>
</div>
<img src="Content/images/commercial/CalcMobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 77" alt="calculator" />
<img src="Content/images/commercial/TheNetworkMobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 78" alt="calculator" />
<img src="Content/images/commercial/bl_Mobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 79" alt="calculator" />
<img src="Content/images/commercial/water-home-blog-img-Mobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 80" alt="calculator" />
</button>
</li>
<li ng-repeat="item in navItems[selectedSubMenuIndex].Items">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html" class="nav-side-item" ng-click="toggleNav()">
<div class="nav-side-item-text">
<span>{{item.Title}}</span>
<p>{{item.SubTitle}}</p>
</div>
<img class="nav-side-item-icon"
src="Content/images/commercial/right-arrow.svg"
alt="arrow" />
</a>
</li>
</ul>
<div class="footer-socials nav-socials-mobile">
<div class="socials-icons nav-socials-icons">
<a href="https://www.facebook.com/alllforward" target="_blank">
<img src="Content/images/commercial/fb.svg" alt="facebook" />
</a>
<a href="https://linkedin.com/company/allforward" target="_blank">
<img src="Content/images/commercial/linkedin.svg" alt="linkedin" />
</a>
</div>
<div class="footer-copy-rights nav-copy-rights">
<span>Copyright ©</span>
<span>2023</span>
<span>Terms of Use</span>
</div>
</div>
<div class="nav-mobile-logo-bot">
<img src="Content/images/commercial/NavBotLogo.svg" alt="All-Forward-logo" />
</div>
</div>
<div class="commercial-container">
<style>.hero h1 {
display: flex;
flex-direction: column;
padding: 0 0 20px 0 !important;
margin: -20px auto 40px;
}
@media screen and (min-width: 768px) {
.info-section-container {
margin-bottom: 0px;
height: 90vh;
align-items: flex-start;
}
.text-scroll-section > :last-child {
height: 70vh;
}
.title-techno-home {
position: sticky;
top: 0px;
background: #fff;
z-index: 1;
padding: 100px 0 40px;
margin: 0;
transition: all 350ms ease;
}
.title-techno-home > * {
transition: all 350ms ease;
}
.title-techno-home.last {
top: -200px;
}
.title-techno-home.last .videos-scroll-section .card-border {
position: initial;
}
.tech-sticky h2 {
font-size: 0;
line-height: 0;
opacity: 0;
}
.tech-sticky .title {
font-size: var(--fs-3xl);
line-height: 40px;
}
.tech-sticky .sub-title {
margin-top: -20px;
font-size: 0;
line-height: 0;
opacity: 0;
}
.commercial-container {
overflow-x: initial;
}
.hero {
overflow-x: hidden;
}
}
</style>
<script>
app.controller('HomeController', ($scope, $timeout) => {
const sectionItemType = AllForward.SystemEnums.CommercialSiteSectionItemType
$scope.homeContent = {"Hero":{"Id":265,"Page":0,"MiniTitle":null,"Title":"Next Generation Digital Forwarding","SubTitle":null,"Content":"Next Generation Digital Forwarding","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":"TheNetwork","SecondaryButtonText":"Freight Forwarder, Click here","SectionType":0,"SectionItemType":null,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"TechnologyHeader":{"Id":1,"Page":0,"MiniTitle":null,"Title":"THE TECHNOLOGY","SubTitle":"Manage, Get Quotes & Track Shipments Easily","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":1,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"TechnologyItems":[{"Id":2,"Page":0,"MiniTitle":null,"Title":"QUOTE","SubTitle":"Instant Quotes & Booking","Content":"Quotes and bookings has never been easier! Just few clicks will help you to find the best rates for your shipments, whether FCL, LCL or Air. Our booking system is designed to slash time and effort spent on finding suitable quotes, making sure your shipment reaches you safely and smoothly.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":1,"SectionItemType":1,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":3,"Page":0,"MiniTitle":null,"Title":"TRACK & MONITOR","SubTitle":"Track & Monitor Shipments With Ease","Content":"Easily keep track of each shipment with our easy-to-use Track & Trace system. Get email notifications on every stage of your shipment’s progress, download or upload relevant documents and get real time updates on what’s happening with your shipments.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":1,"SectionItemType":2,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":4,"Page":0,"MiniTitle":null,"Title":"SCHEDULES","SubTitle":"All Schedules in 1 Click","Content":"Search schedules on our global routes to find specific information. Whether you are shipping goods between Asia and North America or bringing your goods to Europe, visit All-Forward to get detailed shipping schedules in real time.\n\nSearch our global routes to find schedules suited to your supply chain.\n\nSelect the vessel name to trace the schedules by vessel.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":1,"SectionItemType":3,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":5,"Page":0,"MiniTitle":null,"Title":"PRICING","SubTitle":"Instant FCL, LCL and Air Shipping Rates","Content":"All-Forward’s fast, fixed ocean and inland container shipping rates are designed to save your business money. Simply provide us with any location and something to ship, we will show you all possible rates in just 30 seconds. We also allow you to choose from multiple commodity types, routes and container types so you can optimize our system to suit your exact needs.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":1,"SectionItemType":4,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1}],"SolutionsHeader":{"Id":6,"Page":0,"MiniTitle":null,"Title":"OUR SOLUTIONS","SubTitle":"We move your cargo by sea, air and land","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"SolutionsItems":[{"Id":7,"Page":0,"MiniTitle":null,"Title":"Ocean Freight","SubTitle":null,"Content":"All Forward's ocean freight solution is designed to make sure your container is checked and loaded correctly, from the moment it's booked in until it reaches its destination.","ButtonText":"Explore more","ButtonLink":"OceanFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":5,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":8,"Page":0,"MiniTitle":null,"Title":"Air Freight","SubTitle":null,"Content":"Airfreight has never been faster. Track your goods in real time. Get the visibility you need to make smart decisions about your supply chain.","ButtonText":"Explore more","ButtonLink":"AirFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":6,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":9,"Page":0,"MiniTitle":null,"Title":"Less-than-Container","SubTitle":null,"Content":"Perfectly fit your shipment. Pick the right carrier, at the right time, and deliver your shipments safely, efficiently, and on time—every single time.","ButtonText":"Explore more","ButtonLink":"LCLFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":7,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":10,"Page":0,"MiniTitle":null,"Title":"Rail Freight","SubTitle":null,"Content":"Our logistics solutions are tailor-made to your needs, whether it’s block trains or individual container. Including long distance train transportation from China to Europe, Russia and CIS countries.","ButtonText":"Explore more","ButtonLink":"RailFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":8,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":11,"Page":0,"MiniTitle":null,"Title":"Sustainable Logistics","SubTitle":null,"Content":"All-Forward offers holistic green value-added services to help reduce costs and CO2 emissions and design sustainable supply chains for the long-term.","ButtonText":"Explore more","ButtonLink":"SustainableLogistics","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":9,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":12,"Page":0,"MiniTitle":null,"Title":"Additional Services","SubTitle":null,"Content":"Unchain Your Supply Chain - Let us complete your logistic experience","ButtonText":"Explore more","ButtonLink":"AdditionalServices","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":2,"SectionItemType":10,"Order":6,"OnboardingWizardForwarders":null,"LanguageId":1}],"FindPartnersHeader":{"Id":13,"Page":0,"MiniTitle":null,"Title":"THE POWER OF MANY","SubTitle":"ALL IN ONE PLATFORM","Content":"Find Forwarding Partners any in the world","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"FindPartnersItems":[{"Id":14,"Page":0,"MiniTitle":null,"Title":"North America","SubTitle":"Partners in North America ready for you.","Content":null,"ButtonText":"Get Offers","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":11,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":15,"Page":0,"MiniTitle":null,"Title":"Europe","SubTitle":"Partners in Europe ready for you.","Content":"Get Offers","ButtonText":"Get Offers","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":12,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":16,"Page":0,"MiniTitle":null,"Title":"Asia","SubTitle":"Partners in Asia ready for you.","Content":"Get Offers","ButtonText":"Get Offers","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":13,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":17,"Page":0,"MiniTitle":null,"Title":"Australia","SubTitle":"Partners in Australia ready for you.","Content":"Get Offers","ButtonText":"Get Offers","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":14,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":18,"Page":0,"MiniTitle":null,"Title":"Africa","SubTitle":"Partners in Africa ready for you.","Content":"Get Offers","ButtonText":"Get Offers","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":15,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":19,"Page":0,"MiniTitle":null,"Title":"South America","SubTitle":"Partners in South America ready for you.","Content":"Get Offers","ButtonText":"Get Offers","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":3,"SectionItemType":16,"Order":6,"OnboardingWizardForwarders":null,"LanguageId":1}],"MapTitle":{"Id":298,"Page":0,"MiniTitle":null,"Title":"Find Partners","SubTitle":null,"Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":10,"SectionItemType":64,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"MapButtons":{"Id":299,"Page":0,"MiniTitle":null,"Title":"The All-Forward Network brings shipping and logistics providers together to help businesses grow.","SubTitle":"With more than 6,000 offices, we can help you find the perfect shipping partner for your needs.","Content":null,"ButtonText":"Find a Freight Forwarder","ButtonLink":"MembersDirectory","SecondaryButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonText":"Become an All-Forward member","SectionType":10,"SectionItemType":65,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"ResourcesHeader":{"Id":21,"Page":0,"MiniTitle":null,"Title":"RESOURCES","SubTitle":"Raise the Bar on Your Supply Chain","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":4,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"FAQHeader":null,"FAQItems":[],"Navigation":[{"Header":{"Id":305,"Page":7,"MiniTitle":null,"Title":"Our Solutions","SubTitle":"We design supply chain solutions that leverage technology and logistics expertise.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":0,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":306,"Page":7,"MiniTitle":null,"Title":"Sustainable Logistics","SubTitle":"Carbon offset emissions","Content":null,"ButtonText":null,"ButtonLink":"SustainableLogistics","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":307,"Page":7,"MiniTitle":null,"Title":"OceanFreight","SubTitle":"Ship in a few clicks","Content":null,"ButtonText":null,"ButtonLink":"ContainerFreightRates","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":308,"Page":7,"MiniTitle":null,"Title":"Air Freight","SubTitle":"Fly for faster arrivals","Content":null,"ButtonText":null,"ButtonLink":"AirFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":309,"Page":7,"MiniTitle":null,"Title":"Less-than-Container Load","SubTitle":"Ship any volume","Content":null,"ButtonText":null,"ButtonLink":"LCLFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":310,"Page":7,"MiniTitle":null,"Title":"Rail Freight","SubTitle":"Go intermodal or direct.","Content":null,"ButtonText":null,"ButtonLink":"RailFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":311,"Page":7,"MiniTitle":null,"Title":"Additional Services","SubTitle":"Collaborate on orders","Content":null,"ButtonText":null,"ButtonLink":"AdditionalServices","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":6,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":312,"Page":7,"MiniTitle":null,"Title":"The Network","SubTitle":"We provide a global logistics platform where professionals can collaborate.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":0,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":313,"Page":7,"MiniTitle":null,"Title":"The Power Of Many","SubTitle":"Get instant rates","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":314,"Page":7,"MiniTitle":null,"Title":"Members Benefits","SubTitle":"Build your own digital network","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork#members-benefits","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":315,"Page":7,"MiniTitle":null,"Title":"Members Directory","SubTitle":"Members Directory","Content":null,"ButtonText":null,"ButtonLink":"MembersDirectory","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":316,"Page":7,"MiniTitle":null,"Title":"Payment Protection","SubTitle":"Payment Protection","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork#payment-protection","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":318,"Page":7,"MiniTitle":null,"Title":"Resources","SubTitle":"The tools and resources you need to deepen your knowledge and expertise.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":0,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":333,"Page":7,"MiniTitle":null,"Title":"Ocean Freight Rates","SubTitle":"Ocean Freight Rates","Content":null,"ButtonText":null,"ButtonLink":"ContainerFreightRates","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":319,"Page":7,"MiniTitle":null,"Title":"Blogs","SubTitle":"News & Trends you should read","Content":null,"ButtonText":null,"ButtonLink":"Blogs","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":320,"Page":7,"MiniTitle":null,"Title":"Freight Dictionary","SubTitle":"Boost your supply chain reminology","Content":null,"ButtonText":null,"ButtonLink":"FreightDictionary","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":330,"Page":7,"MiniTitle":null,"Title":"Schedule","SubTitle":"Port to Port shipping schedule","Content":null,"ButtonText":null,"ButtonLink":"Schedule","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":322,"Page":7,"MiniTitle":null,"Title":"About Us","SubTitle":"We bring digital freight solutions and networking opportunities to companies of all sizes.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":0,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":323,"Page":7,"MiniTitle":null,"Title":"Our Mission","SubTitle":"We’re making global trade easy for everyone","Content":null,"ButtonText":null,"ButtonLink":"AboutUs","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":324,"Page":7,"MiniTitle":null,"Title":"Why All-Forward","SubTitle":"The fastest freight forwarders network.","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#why-all-forward","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":325,"Page":7,"MiniTitle":null,"Title":"Careers","SubTitle":"Help Move the World Forward","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#careers","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":326,"Page":7,"MiniTitle":null,"Title":"Blog","SubTitle":"Featured Story","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#press","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":327,"Page":7,"MiniTitle":null,"Title":"Contact","SubTitle":"Contact and follow us","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#contact-us","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1}]}],"CompaniesByContinents":{"Africa":933,"Europe":1648,"Asia":1788,"NorthAmerica":501,"SouthAmerica":342,"Australia":73},"Blogs":[{"Id":1,"Active":true,"Name":"NVOCC vs. Freight Forwarder","Title":"The Difference Between An NVOCC And A Freight Forwarder","SubTitle":"What is the difference between a NVOCC and a Freight Forwarder?","Text":"<h1>Introduction</h1>\n\n<p>Whether you’re shipping across the country or halfway around the world, you’ll need to arrange ocean transportation at some point. This can be a complicated process, especially if you don’t have experience with international shipping. In this post we’ll go over what an NVOCC and freight forwarder are, their differences, and when each would be useful in your business operations.</p>\n\n<p> </p>\n\n<h2>What is an NVOCC?</h2>\n\n<p> </p>\n\n<p>NVOCC stands for “non-vessel operating common carrier.” An NVOCC is an ocean carrier, providing transportation services almost exactly like a steamship line—but unlike most of them, the NVOCC does not own or operate its own ships—it just sources space on cargo vessels from other carriers and resells it to customers.</p>\n\n<p>If you have ever booked transportation through a freight forwarder or logistics company like us here at Transplace, then you may have ended up booking with an NVOCC as well.</p>\n\n<p>The difference between an NVOCC and other freight companies (such as freight forwarders or logistics companies) lies in their business model. While they both offer similar services (i.e., booking transportation), the way they go about doing so is different:</p>\n\n<p> </p>\n\n<h2>What is a Freight Forwarder?</h2>\n\n<p>A freight forwarder is an agent that arranges for the movement of cargo from one place to another. They are not a carrier and do not own any assets, but they take responsibility for the paperwork, customs clearance and logistics for their customers. Freight forwarders work with carriers (e.g., airlines) to arrange transportation for their customers.</p>\n\n<p>Some companies may also be called freight brokers or freight agents</p>\n\n<p> </p>\n\n<h2>Are an NVOCC and a freight forwarder the same thing?</h2>\n\n<p>While NVOCC and freight forwarder are often used interchangeably, they're not the same thing. They do share some similarities, though: both provide ocean transportation services and are involved in the shipping process. However, as you may have guessed from their names (NVOCC stands for \"non-vessel operating common carrier\"), NVOCCs are ocean carriers whereas freight forwarders are logistics companies.</p>\n\n<p>To put it another way: NVOCCs own ships and containers; freight forwarders do not. This means that an NVOCC can provide its clients with door-to-door service throughout the entire shipping process (from picking up a shipment at one location to delivering it at another), but a freight forwarder must work with a third party—the actual shipper or carrier—in order to arrange pick-up/delivery of goods on behalf of its client(s).</p>\n\n<p> </p>\n\n<h2>How do I choose between them?</h2>\n\n<p>When it comes to choosing between NVOCCs and freight forwarders, the most important thing is that you choose the one that best meets your needs. If you want cheaper rates but don't need much in the way of services, an NVOCC may be a good choice for you. Conversely, if price isn't much of an issue and you need a lot of services, then a freight forwarder might be more suitable. You can also choose a mix of both; some companies offer their own shipping rates through an NVOCC while also taking advantage of other companies' lower prices when booking shipments through them.</p>\n\n<p> </p>\n\n<h2>Both NVOCCs and freight forwarders can help you arrange ocean transportation, but they each do it differently. It’s important to understand their differences before deciding which one to use.</h2>\n\n<p>Both NVOCCs and freight forwarders can help you arrange ocean transportation, but they each do it differently. It's important to understand their differences before deciding which one to use.</p>\n\n<p>NVOCCs are not carriers, they are agents. When you hire them, they will arrange ocean transportation for your cargo with a carrier on your behalf. They don't own any trucks or ships—they just act as an intermediary between you and the actual carriers (the people who drive the trucks or sail the ships).</p>\n\n<p>By contrast, freight forwarders are agents whose services extend beyond arranging shipments by ocean transportation; they also handle customs clearance documents, packaging materials and sometimes insurance requirements for domestic shipments too (although most large companies have their own insurance policies that cover domestic transit).</p>\n\n<p> </p>\n\n<h2>Conclusion</h2>\n\n<p>We hope this post has helped clarify some of the differences between freight forwarders and NVOCCs. If you still have questions, feel free to reach out! We’re more than happy to answer any questions you may have about the services we provide or help you choose which one will work best for your business.</p>","Tags":"NVOCC,Freight Forwarder","Suffix":"NVOCCvsFreightForwarder","HeroImage":"BlogsImages/00000/00000001_c33bv6my745ri.jpg","CardImage":"BlogsImages/00000/00000001_mb45xjvk6yvr6.jpg","RelatedBlogIds":"2","Created":"2023-01-04T00:00:00","TagsNames":null,"RelatedBlogs":null},{"Id":2,"Active":true,"Name":"Ocean Alliances: A Beginner's Guide","Title":"Ocean Alliances: A Beginner's Guide","SubTitle":"Everything You Need to Know About Ocean Alliances","Text":"<h1> </h1>\n\n<h2>Introduction</h2>\n\n<p>With the implementation of ocean alliances, shippers now have access to comprehensive logistics networks. The trick is figuring out how to take advantage of these connections. Here are some key factors to consider as you book shipments through an alliance:</p>\n\n<h2> </h2>\n\n<h2>What Are Ocean Alliances?</h2>\n\n<p>Ocean alliances are cooperative groups of carriers that commit to vessel-sharing agreements in order to help cover as much of the ocean shipping market as possible. These agreements enable the participating carriers to reduce their costs by sharing vessels, crew and port facilities.</p>\n\n<p>Ocean alliances are a relatively new concept, but they have been gaining momentum over the last few years. Currently, there are six major ocean alliances operating: The Alliance (The Alliance), Ocean Network Express (ONE), P3 Network (P3N), NYK Line/Hana World Wide Freight Forwarding/NYK Logistics System/Mitsui O.S.K Lines Group Joint Service Agreement (JSA), OOCL group and 2M2L group</p>\n\n<h2> </h2>\n\n<h2>Which Carriers Are in Which Alliance?</h2>\n\n<p>Now that you're familiar with the major alliances and their roles in the industry, let's break down which carriers are in which.</p>\n\n<ul>\n\t<li>\n\t<p>The 2M Alliance is made up of MSC, MAERSK and ZIM.</p>\n\t</li>\n\t<li>\n\t<p>The Ocean Alliance is made up of CMA- CGM, COSCO, OOCL (purchased by Cosco), and EVERGREEN.</p>\n\t</li>\n\t<li>\n\t<p>THE Alliance includes HAPAG LLOYD (HHJ), NYK, YANG MING, MOL, K-LINE and HYUNDAI MERCHANT MARINE (HMM).</p>\n\t</li>\n</ul>\n\n<h2> </h2>\n\n<h2>Technology Standardization</h2>\n\n<p>The first step in standardization is the creation of a single technology platform for carriers to use. This allows them to share information and data, as well as make decisions more quickly than they could before. With access to data from all the carriers involved in an alliance, there are many opportunities for carriers to improve their operations. For example, knowing which routes are most profitable at any given time can help increase efficiency by steering ships away from less-productive areas and toward those with higher returns.</p>\n\n<p>Another benefit of technology standardization is that it makes communication between carriers easier than ever before. Instead of having separate systems for managing their operations and communicating with each other about cargo shipments, members of an ocean alliance now have one system that allows them all to communicate seamlessly with each other through a common platform</p>\n\n<h2> </h2>\n\n<h2>Where Does Each Ocean Alliance Ship?</h2>\n\n<p>Ocean Alliances, like their real-world counterparts, are made up of ships that carry goods and passengers around the world. They provide an efficient and affordable way to travel between ports all over the globe.</p>\n\n<p>Each ocean alliance serves a specific geographic region, defined by trade lanes that connect major cities like New York City with San Francisco; Hong Kong with Singapore; London with Amsterdam; Cape Town with Bangkok; and so on. Each alliance has its own headquarters in one of these cities where you can find offices for shipping companies or other businesses that need to ship goods or passengers through that particular region's trade routes.</p>\n\n<p>Each ocean alliance also serves dozens of ports along its trade routes—each port has a pier where cargo ships dock, allowing them to load and unload everything from apples to cars onto their decks before sailing off again on their next leg of the journey.</p>\n\n<h2> </h2>\n\n<h2>Booking Strategies</h2>\n\n<p>When it comes to booking strategies, it's important to understand the difference between the three alliances.</p>\n\n<p>Each alliance serves a different mix of trade lanes and preferred ports. For example, Maersk Line has access to ports in South America, North America, and Europe. MSC Mediterranean Shipping Company (MSC) also offers services throughout Europe but also has routes for Asia-Pacific and Africa/Middle East shipping. Finally, CMA CGM operates from all over the world with a focus on connecting Europe with Africa/Middle East countries such as Egypt or Morocco through its West Coast Express Line service—which is run by a sister company called Grand Alliance Ltd.—and onto Australia via its Southern Cross Line service —which is operated by another sister company called Pacific International Lines Co Ltd (PIL).</p>\n\n<h2> </h2>\n\n<h2>See what else you can get through an alliance.</h2>\n\n<p>An alliance is a community of like-minded businesses that work together to help each other grow. The members of an alliance share resources, expertise and experiences with their partners, creating opportunities for everyone involved. If you're interested in becoming part of an alliance, check out the list below:</p>\n\n<ul>\n\t<li>\n\t<p>Which alliances are near you?</p>\n\t</li>\n\t<li>\n\t<p>How far do they cover?</p>\n\t</li>\n\t<li>\n\t<p>How many ports do they have?</p>\n\t</li>\n\t<li>\n\t<p>Do they offer any other services besides shipping or logistics?</p>\n\t</li>\n</ul>\n\n<h2> </h2>\n\n<h2>Conclusion</h2>\n\n<p>With so many alliances and carriers available, it can be hard to know which one to pick. But with the right booking strategy, you can use the benefits of ocean alliances to save time, money and hassle. The best thing about this system is that you have a choice: if one alliance doesn’t work for your shipment, there are plenty of others out there!</p>","Tags":"Ocean Alliances, Shipping Lines","Suffix":"OceanAlliances","HeroImage":"BlogsImages/00000/00000002_2wnnlaeusmuaw.jpg","CardImage":"BlogsImages/00000/00000002_e3ehtsevwo4rk.jpg","RelatedBlogIds":null,"Created":"2023-01-05T00:00:00","TagsNames":null,"RelatedBlogs":null},{"Id":4,"Active":true,"Name":"What are the Factors that Influence Ocean Freight Rates?","Title":"What are the Factors that Influence Ocean Freight Rates?","SubTitle":"There are a number of factors that affect shipping rates, and understanding them will help you make the best decisions","Text":"<p> </p>\n\n<p>Did you ever wonder why some corridors are more expensive than others, what causes fluctuations in freight rates and how ocean freight is determined?</p>\n\n<p>There are a number of factors that affect shipping rates, and knowing them will help you make the best decisions. Here are the main ones:</p>\n\n<p> </p>\n\n<h2>Shipping route and distance</h2>\n\n<p> </p>\n\n<p>Shipping costs vary based on factors like the distance between your original pick-up point, and the final destination. The longer the distance, the higher the shipping cost. But freight rates also depend on geographic location, transportation move and complexity of the delivery. If you are shipping merchandise to a location that is difficult/ remote or expensive to reach, rates will be higher.</p>\n\n<p> </p>\n\n<h2>Seasonality</h2>\n\n<p> </p>\n\n<p>When demand is high and supply of space limited, shipping companies may charge a premium. During peak seasons, shipping companies raise their rates to take advantage of the high demand and compensate for lower rates in off-peak months.</p>\n\n<p>Holidays affect the floating of ocean freight in several ways. For example, Christmas, Chinese New Year and Ramadan are all significant holidays that occur in different parts of the world—and their effects on global commerce can be usually seen before they begin when ocean freight rates increase as preparation.</p>\n\n<p>Another seasonality is cargo related. For certain types of cargo (vegetables, fruit, grain), seasonality is important as these items tend to be shipped during a particular period every year, and have higher freight rates.</p>\n\n<p> </p>\n\n<h2>Type and size of container</h2>\n\n<p> </p>\n\n<p>The size and type of the container will also affect the cost. For instance, 40' HC container will cost more than a smaller 20' container, and an Open top container will cost more than a regular container. A reefer will cost more than a dry container. </p>\n\n<p> </p>\n\n<h2>Cargo type</h2>\n\n<p> </p>\n\n<p>When shipping dangerous goods that require special storage and handling, you will pay a higher freight rate because of the costs associated with handling them.</p>\n\n<p>Oversized cargo takes up more space aboard vessels and requires special handling, which makes it more expensive than standard-sized containers.</p>\n\n<p> </p>\n\n<h2>Fuel Cost</h2>\n\n<p> </p>\n\n<p>The fuel cost fluctuations also affect ocean freight. When there is an increase in oil prices, ocean shipping companies will charge more for their services—and pass the additional costs onto businesses requesting shipments. Conversely, when fuel prices decrease many businesses can afford to ship goods using lower-priced sea freight.</p>\n\n<p> </p>\n\n<h2>Currency</h2>\n\n<p> </p>\n\n<p>While different countries use different currencies, the dollar is used as a standard unit of international currency in transactions. Therefore, ocean freight rates are affected by the currency exchange rate at the moment of transaction, and companies should keep track of currency fluctuations so that they will not be surprised by higher costs than expected.</p>\n\n<p> </p>\n\n<h2>Service charges</h2>\n\n<p> </p>\n\n<p>Port service charges and terminal fees affect shipping rates as well. Depending on your origin and destination, you may have to pay different local charges on top of the port's charge of THC (Terminal handling cost).</p>\n\n<p> </p>\n\n<h2>Competition</h2>\n\n<p> </p>\n\n<p>In the current shipping economy, rates are affected by many factors—the number of competitors and their strength in the market position among them. In today's shipping industry, you'll see that competition is no longer strictly limited to ocean transport: land service and transport have become important areas as well.</p>\n\n<p>Carriers often adjust their freight rates to ensure they get the largest possible share of traffic, which affects prices. if a carrier is fighting for market share this can heavily influence rates given to customers.</p>\n\n<p> </p>","Tags":"Ocean rate, freight, rates","Suffix":"Oceanrate","HeroImage":"BlogsImages/00000/00000004_ukgqbssxksbwy.jpg","CardImage":"BlogsImages/00000/00000004_5dwxnosbl5ozk.jpg","RelatedBlogIds":null,"Created":"2023-02-13T00:00:00","TagsNames":null,"RelatedBlogs":null},{"Id":5,"Active":true,"Name":"Differences between Digital and Traditional Freight Forwarding","Title":"Differences between Digital and Traditional Freight Forwarding","SubTitle":"How have recent developments in information technology and automation changed the face of freight forwarding?","Text":"<p>As the world continues to digitize and becomes increasingly automated, almost all traditional fields of work are being affected—and Freight forwarding is no exception. The digital freight forwarding industry has been rapidly growing in recent years, as more companies have begun operating online and offering services that traditionally were handled by long-established traditional freight forwarders. In our fast paced world, velocity is one of the main keys. Customers are connected via their mobile devices, so they can track/ approach suppliers at any time and from any place, and usually expect fast, online responses, especially within working hours. </p>\n\n<p> </p>\n\n<p>In this article, we will review the differences between traditional and digital freight forwarding, as well as the different Pros and Cons. </p>\n\n<p> </p>\n\n<h2>What are the differences between traditional and digital freight forwarding?</h2>\n\n<p> </p>\n\n<ol>\n\t<li>\n\t<p>Contact with customer: Fast replies and immediate answers have become basic ingredients in today’s customer experience expectation. Traditional Freight Forwarders will usually use the phone, sometimes mail to contact customers. Digital Freight Forwarders will use immediate communication tools like mail, chat and are usually connected via different communication flows to insure immediate response. </p>\n\t</li>\n\t<li>\n\t<p>Receiving a quote: Traditional Freight Forwarders will usually quote the carrier that best fits the customer’s needs based on the carriers they work with. If you want to compare different quotes, you’ll have to do it manually. Digital Freight Forwarders provide a platform where you can check and compare yourself within minutes. </p>\n\t</li>\n\t<li>\n\t<p>Documentation: Shipping documentation is a major and crucial part of every shipment. Traditional Freight Forwarders will usually correspond over a number of mails until the last version is approved and they can pick it up/ download from the website. Digital Freight Forwarders have a platform that allows them to share the documents online with the customer. </p>\n\t</li>\n\t<li>\n\t<p>Track & Trace: Customers expect to be able to check and receive live updates on the shipments, without having to contact the shipper/ consignee/ freight forwarder and wait for a reply. Traditional freight forwarders struggle with this, while digital freight forwarders connect their systems to different tracking tools that allow that, and give a visible real time tracking experience to their customers.</p>\n\t</li>\n</ol>\n\n<p> </p>\n\n<p> </p>\n\n<p>While digital freight forwarders have an advantage over their traditional counterparts in many ways, we can see that many of those older companies are adapting to the new world and digitizing themselves as well, in order to remain competitive. We should also keep in mind that despite their advantages over traditional freight forwarders, digital freight forwarding companies will have to keep modernizing in order to keep pace with the growing competition. With additional technologies around the corner, like AI, Machine learning, Blockchain and more, we can expect to see more rapid developments already in the near future.</p>\n\n<p> </p>","Tags":"digital freight forwarding, freight forwarding","Suffix":"digital freight forwarding","HeroImage":"BlogsImages/00000/00000005_zcjduud7hlep2.jpg","CardImage":"BlogsImages/00000/00000005_kq3rwxsy73yos.jpg","RelatedBlogIds":null,"Created":"2023-02-14T00:00:00","TagsNames":null,"RelatedBlogs":null}],"RateIndexes":[{"Order":12,"CountryFromId":45,"CountryToId":100,"PercentageDiff":14.518779342723,"CurrentPrice":2032.7083333333333,"Data":null},{"Order":17,"CountryFromId":114,"CountryToId":41,"PercentageDiff":-49.324713747790675,"CurrentPrice":753.64285714285711,"Data":null}],"Companies":[{"Id":110117,"Name":"Turna Logistics Inc","CountryId":3,"City":"Nova Scotia","Logo":"company/cd3b0386df794d089d890b8c6d161e74.png","IsPro":false,"LastLoginTime":"2023-01-26T02:37:14.733","IsOnline":false,"RatingAverage":0.0,"ConnectedAmount":2,"TrustScoreLevel":2,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"turnalogisticsinc","CoverImage":null},{"Id":112169,"Name":"Fresh Ways","CountryId":64,"City":"Casablanca","Logo":"company//112169/112169.jpg","IsPro":false,"LastLoginTime":"2023-03-05T11:18:45.96","IsOnline":false,"RatingAverage":0.0,"ConnectedAmount":4,"TrustScoreLevel":2,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"freshways","CoverImage":null},{"Id":107767,"Name":"ACE Global Logistics co., Ltd.","CountryId":175,"City":"TAIPEI","Logo":"company/5b62b8ad43a14a4882c322198b24fbf3.png","IsPro":false,"LastLoginTime":"2023-03-06T01:31:54.853","IsOnline":true,"RatingAverage":0.0,"ConnectedAmount":28,"TrustScoreLevel":2,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"acegloballogisticscoltd","CoverImage":null},{"Id":111732,"Name":"DLT LOGISTICS MOROCCO","CountryId":64,"City":"Casablanca","Logo":"company//111732/111732.jpg","IsPro":false,"LastLoginTime":"2023-03-02T10:45:09.23","IsOnline":false,"RatingAverage":0.0,"ConnectedAmount":12,"TrustScoreLevel":2,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"dltlogisticsmorocco","CoverImage":null},{"Id":107012,"Name":"Shenzhen Penavico Logistics LTD","CountryId":45,"City":"Shenzhen","Logo":"company/107012_16427285701612117828.png","IsPro":false,"LastLoginTime":"2023-03-06T02:20:23.85","IsOnline":true,"RatingAverage":4.83,"ConnectedAmount":75,"TrustScoreLevel":2,"RatingsCount":3,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"shenzhenpenavicologisticsltd","CoverImage":null},{"Id":107811,"Name":"NewComex SpA","CountryId":8,"City":"Padre Hurtado","Logo":"company//107811/107811.jpg","IsPro":true,"LastLoginTime":"2023-03-03T12:27:53.943","IsOnline":false,"RatingAverage":0.0,"ConnectedAmount":56,"TrustScoreLevel":3,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"newcomexspa","CoverImage":"company/13951ad67bcb45758211bf0b3175553e.png"},{"Id":102235,"Name":"WAXBILL COMPANY LTD","CountryId":176,"City":"Dar es salaam","Logo":"company/abafc1564a1f427a8714c708a55bd3f8.png","IsPro":false,"LastLoginTime":"2023-03-03T12:09:10.23","IsOnline":false,"RatingAverage":5.0,"ConnectedAmount":178,"TrustScoreLevel":2,"RatingsCount":1,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"waxbillcompanyltd","CoverImage":"company/c221da7ffc5a4f0db4bb7ff8b1bf9a4b.jpg"},{"Id":108339,"Name":"TNS LOG SERVICES SDN BHD","CountryId":141,"City":"klang","Logo":"company//108339/108339.jpg","IsPro":true,"LastLoginTime":"2023-03-06T02:46:47.833","IsOnline":true,"RatingAverage":0.0,"ConnectedAmount":41,"TrustScoreLevel":2,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"tnslogservicessdnbhd","CoverImage":"company/da4f39dc10b04b7f9e568d6933e42f1a.jpg"},{"Id":101016,"Name":"MD logistic","CountryId":34,"City":"Riga","Logo":"company/101016_1590931020465108116.png","IsPro":false,"LastLoginTime":"2023-03-02T17:56:28.103","IsOnline":false,"RatingAverage":0.0,"ConnectedAmount":90,"TrustScoreLevel":2,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"mdlogistic","CoverImage":"company/8a4c139ae673472293a40aba623044b4.jpg"},{"Id":112232,"Name":"SHENZHEN EAST-OUT INTERNATIONAL FORWARDING CO.,LTD","CountryId":45,"City":"Shenzhen","Logo":"company//112232/112232.jpg","IsPro":false,"LastLoginTime":"2023-03-06T02:06:21.82","IsOnline":true,"RatingAverage":0.0,"ConnectedAmount":3,"TrustScoreLevel":1,"RatingsCount":0,"IsPendingFriend":0,"TotalResult":5089,"IsMyFriend":0,"PersonalUrlSuffix":"shenzheneastoutinternationalforwardingcoltd","CoverImage":null}],"MembersHeader":{"Id":337,"Page":0,"MiniTitle":"THE POWER OF MANY","Title":"ALL IN ONE PLATFORM","SubTitle":"Find Forwarding Partners any in the world","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":84,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"RateIndex":{"Id":338,"Page":0,"MiniTitle":"ALL-FORWARD OCEAB RATES INDEX","Title":"RATE INDEX","SubTitle":"All-Forward Ocean rates Index (AFX): Up-To-Date Global Container Rates","Content":"Worldwide freight rates are fluctuating constantly, making it essential to stay up-to-date and track rates. All-Forward's Container Freight Rate Index (AFX) allows you to check up-to-date information on shipping costs between different countries!","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":85,"SectionItemType":null,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"BottomStrip":{"Id":339,"Page":0,"MiniTitle":null,"Title":"Stay Up-to-Date with AFX","SubTitle":"Join thousands of top-tier companies getting AFX updates directly to their inbox.","Content":null,"ButtonText":"Join the AFX","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":86,"SectionItemType":null,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1}};
$scope.blogs = [{"Id":1,"Active":true,"Name":"NVOCC vs. Freight Forwarder","Title":"The Difference Between An NVOCC And A Freight Forwarder","SubTitle":"What is the difference between a NVOCC and a Freight Forwarder?","Text":"<h1>Introduction</h1>\n\n<p>Whether you’re shipping across the country or halfway around the world, you’ll need to arrange ocean transportation at some point. This can be a complicated process, especially if you don’t have experience with international shipping. In this post we’ll go over what an NVOCC and freight forwarder are, their differences, and when each would be useful in your business operations.</p>\n\n<p> </p>\n\n<h2>What is an NVOCC?</h2>\n\n<p> </p>\n\n<p>NVOCC stands for “non-vessel operating common carrier.” An NVOCC is an ocean carrier, providing transportation services almost exactly like a steamship line—but unlike most of them, the NVOCC does not own or operate its own ships—it just sources space on cargo vessels from other carriers and resells it to customers.</p>\n\n<p>If you have ever booked transportation through a freight forwarder or logistics company like us here at Transplace, then you may have ended up booking with an NVOCC as well.</p>\n\n<p>The difference between an NVOCC and other freight companies (such as freight forwarders or logistics companies) lies in their business model. While they both offer similar services (i.e., booking transportation), the way they go about doing so is different:</p>\n\n<p> </p>\n\n<h2>What is a Freight Forwarder?</h2>\n\n<p>A freight forwarder is an agent that arranges for the movement of cargo from one place to another. They are not a carrier and do not own any assets, but they take responsibility for the paperwork, customs clearance and logistics for their customers. Freight forwarders work with carriers (e.g., airlines) to arrange transportation for their customers.</p>\n\n<p>Some companies may also be called freight brokers or freight agents</p>\n\n<p> </p>\n\n<h2>Are an NVOCC and a freight forwarder the same thing?</h2>\n\n<p>While NVOCC and freight forwarder are often used interchangeably, they're not the same thing. They do share some similarities, though: both provide ocean transportation services and are involved in the shipping process. However, as you may have guessed from their names (NVOCC stands for \"non-vessel operating common carrier\"), NVOCCs are ocean carriers whereas freight forwarders are logistics companies.</p>\n\n<p>To put it another way: NVOCCs own ships and containers; freight forwarders do not. This means that an NVOCC can provide its clients with door-to-door service throughout the entire shipping process (from picking up a shipment at one location to delivering it at another), but a freight forwarder must work with a third party—the actual shipper or carrier—in order to arrange pick-up/delivery of goods on behalf of its client(s).</p>\n\n<p> </p>\n\n<h2>How do I choose between them?</h2>\n\n<p>When it comes to choosing between NVOCCs and freight forwarders, the most important thing is that you choose the one that best meets your needs. If you want cheaper rates but don't need much in the way of services, an NVOCC may be a good choice for you. Conversely, if price isn't much of an issue and you need a lot of services, then a freight forwarder might be more suitable. You can also choose a mix of both; some companies offer their own shipping rates through an NVOCC while also taking advantage of other companies' lower prices when booking shipments through them.</p>\n\n<p> </p>\n\n<h2>Both NVOCCs and freight forwarders can help you arrange ocean transportation, but they each do it differently. It’s important to understand their differences before deciding which one to use.</h2>\n\n<p>Both NVOCCs and freight forwarders can help you arrange ocean transportation, but they each do it differently. It's important to understand their differences before deciding which one to use.</p>\n\n<p>NVOCCs are not carriers, they are agents. When you hire them, they will arrange ocean transportation for your cargo with a carrier on your behalf. They don't own any trucks or ships—they just act as an intermediary between you and the actual carriers (the people who drive the trucks or sail the ships).</p>\n\n<p>By contrast, freight forwarders are agents whose services extend beyond arranging shipments by ocean transportation; they also handle customs clearance documents, packaging materials and sometimes insurance requirements for domestic shipments too (although most large companies have their own insurance policies that cover domestic transit).</p>\n\n<p> </p>\n\n<h2>Conclusion</h2>\n\n<p>We hope this post has helped clarify some of the differences between freight forwarders and NVOCCs. If you still have questions, feel free to reach out! We’re more than happy to answer any questions you may have about the services we provide or help you choose which one will work best for your business.</p>","Tags":"NVOCC,Freight Forwarder","Suffix":"NVOCCvsFreightForwarder","HeroImage":"BlogsImages/00000/00000001_c33bv6my745ri.jpg","CardImage":"BlogsImages/00000/00000001_mb45xjvk6yvr6.jpg","RelatedBlogIds":"2","Created":"2023-01-04T00:00:00","TagsNames":null,"RelatedBlogs":null},{"Id":2,"Active":true,"Name":"Ocean Alliances: A Beginner's Guide","Title":"Ocean Alliances: A Beginner's Guide","SubTitle":"Everything You Need to Know About Ocean Alliances","Text":"<h1> </h1>\n\n<h2>Introduction</h2>\n\n<p>With the implementation of ocean alliances, shippers now have access to comprehensive logistics networks. The trick is figuring out how to take advantage of these connections. Here are some key factors to consider as you book shipments through an alliance:</p>\n\n<h2> </h2>\n\n<h2>What Are Ocean Alliances?</h2>\n\n<p>Ocean alliances are cooperative groups of carriers that commit to vessel-sharing agreements in order to help cover as much of the ocean shipping market as possible. These agreements enable the participating carriers to reduce their costs by sharing vessels, crew and port facilities.</p>\n\n<p>Ocean alliances are a relatively new concept, but they have been gaining momentum over the last few years. Currently, there are six major ocean alliances operating: The Alliance (The Alliance), Ocean Network Express (ONE), P3 Network (P3N), NYK Line/Hana World Wide Freight Forwarding/NYK Logistics System/Mitsui O.S.K Lines Group Joint Service Agreement (JSA), OOCL group and 2M2L group</p>\n\n<h2> </h2>\n\n<h2>Which Carriers Are in Which Alliance?</h2>\n\n<p>Now that you're familiar with the major alliances and their roles in the industry, let's break down which carriers are in which.</p>\n\n<ul>\n\t<li>\n\t<p>The 2M Alliance is made up of MSC, MAERSK and ZIM.</p>\n\t</li>\n\t<li>\n\t<p>The Ocean Alliance is made up of CMA- CGM, COSCO, OOCL (purchased by Cosco), and EVERGREEN.</p>\n\t</li>\n\t<li>\n\t<p>THE Alliance includes HAPAG LLOYD (HHJ), NYK, YANG MING, MOL, K-LINE and HYUNDAI MERCHANT MARINE (HMM).</p>\n\t</li>\n</ul>\n\n<h2> </h2>\n\n<h2>Technology Standardization</h2>\n\n<p>The first step in standardization is the creation of a single technology platform for carriers to use. This allows them to share information and data, as well as make decisions more quickly than they could before. With access to data from all the carriers involved in an alliance, there are many opportunities for carriers to improve their operations. For example, knowing which routes are most profitable at any given time can help increase efficiency by steering ships away from less-productive areas and toward those with higher returns.</p>\n\n<p>Another benefit of technology standardization is that it makes communication between carriers easier than ever before. Instead of having separate systems for managing their operations and communicating with each other about cargo shipments, members of an ocean alliance now have one system that allows them all to communicate seamlessly with each other through a common platform</p>\n\n<h2> </h2>\n\n<h2>Where Does Each Ocean Alliance Ship?</h2>\n\n<p>Ocean Alliances, like their real-world counterparts, are made up of ships that carry goods and passengers around the world. They provide an efficient and affordable way to travel between ports all over the globe.</p>\n\n<p>Each ocean alliance serves a specific geographic region, defined by trade lanes that connect major cities like New York City with San Francisco; Hong Kong with Singapore; London with Amsterdam; Cape Town with Bangkok; and so on. Each alliance has its own headquarters in one of these cities where you can find offices for shipping companies or other businesses that need to ship goods or passengers through that particular region's trade routes.</p>\n\n<p>Each ocean alliance also serves dozens of ports along its trade routes—each port has a pier where cargo ships dock, allowing them to load and unload everything from apples to cars onto their decks before sailing off again on their next leg of the journey.</p>\n\n<h2> </h2>\n\n<h2>Booking Strategies</h2>\n\n<p>When it comes to booking strategies, it's important to understand the difference between the three alliances.</p>\n\n<p>Each alliance serves a different mix of trade lanes and preferred ports. For example, Maersk Line has access to ports in South America, North America, and Europe. MSC Mediterranean Shipping Company (MSC) also offers services throughout Europe but also has routes for Asia-Pacific and Africa/Middle East shipping. Finally, CMA CGM operates from all over the world with a focus on connecting Europe with Africa/Middle East countries such as Egypt or Morocco through its West Coast Express Line service—which is run by a sister company called Grand Alliance Ltd.—and onto Australia via its Southern Cross Line service —which is operated by another sister company called Pacific International Lines Co Ltd (PIL).</p>\n\n<h2> </h2>\n\n<h2>See what else you can get through an alliance.</h2>\n\n<p>An alliance is a community of like-minded businesses that work together to help each other grow. The members of an alliance share resources, expertise and experiences with their partners, creating opportunities for everyone involved. If you're interested in becoming part of an alliance, check out the list below:</p>\n\n<ul>\n\t<li>\n\t<p>Which alliances are near you?</p>\n\t</li>\n\t<li>\n\t<p>How far do they cover?</p>\n\t</li>\n\t<li>\n\t<p>How many ports do they have?</p>\n\t</li>\n\t<li>\n\t<p>Do they offer any other services besides shipping or logistics?</p>\n\t</li>\n</ul>\n\n<h2> </h2>\n\n<h2>Conclusion</h2>\n\n<p>With so many alliances and carriers available, it can be hard to know which one to pick. But with the right booking strategy, you can use the benefits of ocean alliances to save time, money and hassle. The best thing about this system is that you have a choice: if one alliance doesn’t work for your shipment, there are plenty of others out there!</p>","Tags":"Ocean Alliances, Shipping Lines","Suffix":"OceanAlliances","HeroImage":"BlogsImages/00000/00000002_2wnnlaeusmuaw.jpg","CardImage":"BlogsImages/00000/00000002_e3ehtsevwo4rk.jpg","RelatedBlogIds":null,"Created":"2023-01-05T00:00:00","TagsNames":null,"RelatedBlogs":null},{"Id":4,"Active":true,"Name":"What are the Factors that Influence Ocean Freight Rates?","Title":"What are the Factors that Influence Ocean Freight Rates?","SubTitle":"There are a number of factors that affect shipping rates, and understanding them will help you make the best decisions","Text":"<p> </p>\n\n<p>Did you ever wonder why some corridors are more expensive than others, what causes fluctuations in freight rates and how ocean freight is determined?</p>\n\n<p>There are a number of factors that affect shipping rates, and knowing them will help you make the best decisions. Here are the main ones:</p>\n\n<p> </p>\n\n<h2>Shipping route and distance</h2>\n\n<p> </p>\n\n<p>Shipping costs vary based on factors like the distance between your original pick-up point, and the final destination. The longer the distance, the higher the shipping cost. But freight rates also depend on geographic location, transportation move and complexity of the delivery. If you are shipping merchandise to a location that is difficult/ remote or expensive to reach, rates will be higher.</p>\n\n<p> </p>\n\n<h2>Seasonality</h2>\n\n<p> </p>\n\n<p>When demand is high and supply of space limited, shipping companies may charge a premium. During peak seasons, shipping companies raise their rates to take advantage of the high demand and compensate for lower rates in off-peak months.</p>\n\n<p>Holidays affect the floating of ocean freight in several ways. For example, Christmas, Chinese New Year and Ramadan are all significant holidays that occur in different parts of the world—and their effects on global commerce can be usually seen before they begin when ocean freight rates increase as preparation.</p>\n\n<p>Another seasonality is cargo related. For certain types of cargo (vegetables, fruit, grain), seasonality is important as these items tend to be shipped during a particular period every year, and have higher freight rates.</p>\n\n<p> </p>\n\n<h2>Type and size of container</h2>\n\n<p> </p>\n\n<p>The size and type of the container will also affect the cost. For instance, 40' HC container will cost more than a smaller 20' container, and an Open top container will cost more than a regular container. A reefer will cost more than a dry container. </p>\n\n<p> </p>\n\n<h2>Cargo type</h2>\n\n<p> </p>\n\n<p>When shipping dangerous goods that require special storage and handling, you will pay a higher freight rate because of the costs associated with handling them.</p>\n\n<p>Oversized cargo takes up more space aboard vessels and requires special handling, which makes it more expensive than standard-sized containers.</p>\n\n<p> </p>\n\n<h2>Fuel Cost</h2>\n\n<p> </p>\n\n<p>The fuel cost fluctuations also affect ocean freight. When there is an increase in oil prices, ocean shipping companies will charge more for their services—and pass the additional costs onto businesses requesting shipments. Conversely, when fuel prices decrease many businesses can afford to ship goods using lower-priced sea freight.</p>\n\n<p> </p>\n\n<h2>Currency</h2>\n\n<p> </p>\n\n<p>While different countries use different currencies, the dollar is used as a standard unit of international currency in transactions. Therefore, ocean freight rates are affected by the currency exchange rate at the moment of transaction, and companies should keep track of currency fluctuations so that they will not be surprised by higher costs than expected.</p>\n\n<p> </p>\n\n<h2>Service charges</h2>\n\n<p> </p>\n\n<p>Port service charges and terminal fees affect shipping rates as well. Depending on your origin and destination, you may have to pay different local charges on top of the port's charge of THC (Terminal handling cost).</p>\n\n<p> </p>\n\n<h2>Competition</h2>\n\n<p> </p>\n\n<p>In the current shipping economy, rates are affected by many factors—the number of competitors and their strength in the market position among them. In today's shipping industry, you'll see that competition is no longer strictly limited to ocean transport: land service and transport have become important areas as well.</p>\n\n<p>Carriers often adjust their freight rates to ensure they get the largest possible share of traffic, which affects prices. if a carrier is fighting for market share this can heavily influence rates given to customers.</p>\n\n<p> </p>","Tags":"Ocean rate, freight, rates","Suffix":"Oceanrate","HeroImage":"BlogsImages/00000/00000004_ukgqbssxksbwy.jpg","CardImage":"BlogsImages/00000/00000004_5dwxnosbl5ozk.jpg","RelatedBlogIds":null,"Created":"2023-02-13T00:00:00","TagsNames":null,"RelatedBlogs":null},{"Id":5,"Active":true,"Name":"Differences between Digital and Traditional Freight Forwarding","Title":"Differences between Digital and Traditional Freight Forwarding","SubTitle":"How have recent developments in information technology and automation changed the face of freight forwarding?","Text":"<p>As the world continues to digitize and becomes increasingly automated, almost all traditional fields of work are being affected—and Freight forwarding is no exception. The digital freight forwarding industry has been rapidly growing in recent years, as more companies have begun operating online and offering services that traditionally were handled by long-established traditional freight forwarders. In our fast paced world, velocity is one of the main keys. Customers are connected via their mobile devices, so they can track/ approach suppliers at any time and from any place, and usually expect fast, online responses, especially within working hours. </p>\n\n<p> </p>\n\n<p>In this article, we will review the differences between traditional and digital freight forwarding, as well as the different Pros and Cons. </p>\n\n<p> </p>\n\n<h2>What are the differences between traditional and digital freight forwarding?</h2>\n\n<p> </p>\n\n<ol>\n\t<li>\n\t<p>Contact with customer: Fast replies and immediate answers have become basic ingredients in today’s customer experience expectation. Traditional Freight Forwarders will usually use the phone, sometimes mail to contact customers. Digital Freight Forwarders will use immediate communication tools like mail, chat and are usually connected via different communication flows to insure immediate response. </p>\n\t</li>\n\t<li>\n\t<p>Receiving a quote: Traditional Freight Forwarders will usually quote the carrier that best fits the customer’s needs based on the carriers they work with. If you want to compare different quotes, you’ll have to do it manually. Digital Freight Forwarders provide a platform where you can check and compare yourself within minutes. </p>\n\t</li>\n\t<li>\n\t<p>Documentation: Shipping documentation is a major and crucial part of every shipment. Traditional Freight Forwarders will usually correspond over a number of mails until the last version is approved and they can pick it up/ download from the website. Digital Freight Forwarders have a platform that allows them to share the documents online with the customer. </p>\n\t</li>\n\t<li>\n\t<p>Track & Trace: Customers expect to be able to check and receive live updates on the shipments, without having to contact the shipper/ consignee/ freight forwarder and wait for a reply. Traditional freight forwarders struggle with this, while digital freight forwarders connect their systems to different tracking tools that allow that, and give a visible real time tracking experience to their customers.</p>\n\t</li>\n</ol>\n\n<p> </p>\n\n<p> </p>\n\n<p>While digital freight forwarders have an advantage over their traditional counterparts in many ways, we can see that many of those older companies are adapting to the new world and digitizing themselves as well, in order to remain competitive. We should also keep in mind that despite their advantages over traditional freight forwarders, digital freight forwarding companies will have to keep modernizing in order to keep pace with the growing competition. With additional technologies around the corner, like AI, Machine learning, Blockchain and more, we can expect to see more rapid developments already in the near future.</p>\n\n<p> </p>","Tags":"digital freight forwarding, freight forwarding","Suffix":"digital freight forwarding","HeroImage":"BlogsImages/00000/00000005_zcjduud7hlep2.jpg","CardImage":"BlogsImages/00000/00000005_kq3rwxsy73yos.jpg","RelatedBlogIds":null,"Created":"2023-02-14T00:00:00","TagsNames":null,"RelatedBlogs":null}];
$scope.selectedContinent = $scope.homeContent.FindPartnersItems[0].SectionItemType;
$scope.homeContent.Companies.forEach(c => {
if (c.CoverImage)
c.CoverImage = "'" + 'https://app.all-forward.com/' + "upload/" + c.CoverImage + "'"
else
c.CoverImage = Q.resolveUrl("~/Content/images/commercial/member-card-default-cover-image.png")
})
$timeout(() => {
let observerOptions = {
rootMargin: '0px 0px 0px 0px',
threshold: 0.6
}
var observer = new IntersectionObserver(function(entries, observer) {
entries.forEach(entry => {
if(entry.isIntersecting) {
setTimeout(() => {
$(`.videos-scroll-section > div`).eq(entry.target.id).addClass('in');
if (entry.target.id == 3) {
$('.title-techno-home').addClass('last');
} else {
$('.title-techno-home').removeClass('last');
}
}, 250);
$(`.videos-scroll-section > div`).each((i, el) => {
if (i != entry.target.id) {
$(el).removeClass('in');
}
});
}
});
}, observerOptions);
const solutionObserver = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if(entry.isIntersecting) {
$('.card-container.card-border.fade.in').removeClass('in');
}
});
}, { threshold: 1 });
solutionObserver.observe(document.querySelector('#solution-header'));
let target = '.text-scroll-section .info-section-home';
document.querySelectorAll(target).forEach((i) => {
observer.observe(i);
});
const height = $('.main-navigation').height();
$(window).scroll(
throttle(() => {
const position = $(window).scrollTop();
const offset = $('.title-techno-home').offset().top;
position > offset - height
? document.querySelector(".tech-section .title-techno-home").classList.add("tech-sticky")
: document.querySelector(".tech-section .title-techno-home").classList.remove("tech-sticky");
}, 10)
);
});
});
</script>
<script>
$(() => {
$('.member-cards-container').slick({
slidesToShow: 5,
slidesToScroll: 1,
autoplay: false,
autoplaySpeed: 0,
responsive: [
{
breakpoint: 1600,
settings: {
slidesToShow: 4,
},
},
{
breakpoint: 1366,
settings: {
slidesToShow: 3,
},
},
{
breakpoint: 1024,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 768,
settings: {
slidesToShow: 1,
},
},
],
})
});
</script>
<div ng-controller="HomeController" class="commercial-home-container">
<header class="hero">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/af-hero.mp4" type="video/mp4" />
</video>
<div class="hero-content">
<h1 class="uppercase">
<span class="h1-top">
<span class="span-large">Next</span>
<span class="span-small span-letter-space">Generation</span>
</span>
<span class="h1-bot">
<span class="digital span-medium">Digital</span>
<span class="span-small">Forwarding</span>
</span>
</h1>
<div class="btns-container">
<div class="btns">
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn btn-white">
Get Started
</a>
<a href="TheNetwork.html" data-onboarding-wizard="" class="base-btn btn-transparent">
Freight Forwarder, Click here
</a>
</div>
<button class="hero-scroll-down" ng-click="scrollTo('.title-techno-home', 130)">
<img class="scroll-down" src="Content/images/commercial/ScrollArrow.png" alt="arrow-down" />
<img class="ocean-hero-arrow-mobile" src="Content/images/commercial/Scroll-arrow-ocean-freight-hero.svg" alt="arrow-down" />
</button>
</div>
</div>
</header>
<main class="home-container">
<section class="tech-section">
<header class="titels-section title-techno-home">
<h2 class="text uppercase hide_mobile">THE TECHNOLOGY</h2>
<h3 class="title uppercase">THE TECHNOLOGY</h3>
<h3 class="sub-title">Manage, Get Quotes & Track Shipments Easily</h3>
</header>
<div class="scroll-section">
<div class="text-scroll-section">
<div id="0" class="info-section-container info-section-home">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">QUOTE</h3>
<p class="title-small uppercase hide_mobile">QUOTE</p>
</div>
<h3 class="info-sub-title">Instant Quotes & Booking</h3>
<p class="info-content">Quotes and bookings has never been easier! Just few clicks will help you to find the best rates for your shipments, whether FCL, LCL or Air. Our booking system is designed to slash time and effort spent on finding suitable quotes, making sure your shipment reaches you safely and smoothly.</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get Started
</a>
</div>
<div class="card-container card-border hide_desktop">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/Quotes.mp4" type="video/mp4" />
</video>
</div>
</div>
<div id="1" class="info-section-container info-section-home">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">TRACK & MONITOR</h3>
<p class="title-small uppercase hide_mobile">TRACK & MONITOR</p>
</div>
<h3 class="info-sub-title">Track & Monitor Shipments With Ease</h3>
<p class="info-content">Easily keep track of each shipment with our easy-to-use Track & Trace system. Get email notifications on every stage of your shipment’s progress, download or upload relevant documents and get real time updates on what’s happening with your shipments.</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get Started
</a>
</div>
<div class="card-container card-border hide_desktop">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/TrackTrace.mp4" type="video/mp4" />
</video>
</div>
</div>
<div id="2" class="info-section-container info-section-home">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">SCHEDULES</h3>
<p class="title-small uppercase hide_mobile">SCHEDULES</p>
</div>
<h3 class="info-sub-title">All Schedules in 1 Click</h3>
<p class="info-content">Search schedules on our global routes to find specific information. Whether you are shipping goods between Asia and North America or bringing your goods to Europe, visit All-Forward to get detailed shipping schedules in real time.
Search our global routes to find schedules suited to your supply chain.
Select the vessel name to trace the schedules by vessel.</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get Started
</a>
</div>
<div class="card-container card-border hide_desktop">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/SCHEDULE.mp4" type="video/mp4" />
</video>
</div>
</div>
<div id="3" class="info-section-container info-section-home">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">PRICING</h3>
<p class="title-small uppercase hide_mobile">PRICING</p>
</div>
<h3 class="info-sub-title">Instant FCL, LCL and Air Shipping Rates</h3>
<p class="info-content">All-Forward’s fast, fixed ocean and inland container shipping rates are designed to save your business money. Simply provide us with any location and something to ship, we will show you all possible rates in just 30 seconds. We also allow you to choose from multiple commodity types, routes and container types so you can optimize our system to suit your exact needs.</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get Started
</a>
</div>
<div class="card-container card-border hide_desktop">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/NewShipment.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
<div class="videos-scroll-section hide_mobile">
<div class="card-container card-border fade">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/Quotes.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container card-border fade">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/TrackTrace.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container card-border fade">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/SCHEDULE.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container card-border fade">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/NewShipment.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</section>
<div id="solution-header" class="titels-section" style="margin-bottom: 100px;">
<p class="text uppercase hide_mobile">OUR SOLUTIONS</p>
<h3 class="title uppercase">OUR SOLUTIONS</h3>
<h3 class="sub-title">We move your cargo by sea, air and land</h3>
</div>
<section class="commercial-grid-container">
<div class="card-container">
<div class="content-container">
<div class="content-container-text">
<h3>Ocean Freight</h3>
<p>
All Forward's ocean freight solution is designed to make sure your container is checked and loaded correctly, from the moment it's booked in until it reaches its destination.
</p>
<a href="OceanFreight.html"
class="base-btn primary-btn">
Explore more
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_4_1020)"><path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4_1020"><rect width="17" height="16" fill="currentColor" /></clipPath></defs></svg>
</a>
</div>
</div>
<img srcset="Content/images/commercial/OceanFreightLaptop.jpg 608w, Content/images/commercial/promo_topLeft.jpg 920w" src="Content/images/commercial/promo_topLeft.jpg"
sizes="(max-width: 1600px) 608px, (min-width: 1600px) 920px"
alt="container-ship" />
<video class="grid-card-vid" loop muted onmouseover="this.play()" onmouseout="this.pause()" playsinline>
<source src="https://www.all-forward.com/Content/videos/OceanFreight.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container">
<div class="content-container">
<div class="content-container-text">
<h3>Air Freight</h3>
<p>
Airfreight has never been faster. Track your goods in real time. Get the visibility you need to make smart decisions about your supply chain.
</p>
<a href="AirFreight.html"
class="base-btn primary-btn">
Explore more
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_4_1020)"><path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4_1020"><rect width="17" height="16" fill="currentColor" /></clipPath></defs></svg>
</a>
</div>
</div>
<img srcset="Content/images/commercial/AirFreightLaptop.jpg 608w, Content/images/commercial/promo_topRight.jpg 920w" src="Content/images/commercial/promo_topRight.jpg"
sizes="(max-width: 1600px) 608px, (min-width: 1600px) 920px"
alt="cargo-plane" />
<video class="grid-card-vid" loop muted onmouseover="this.play()" onmouseout="this.pause()" playsinline>
<source src="https://www.all-forward.com/Content/videos/AirFreight.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container">
<div class="content-container">
<div class="content-container-text">
<h3>Less-than-Container</h3>
<p>
Perfectly fit your shipment. Pick the right carrier, at the right time, and deliver your shipments safely, efficiently, and on time—every single time.
</p>
<a href="LCLFreight.html"
class="base-btn primary-btn">
Explore more
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_4_1020)"><path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4_1020"><rect width="17" height="16" fill="currentColor" /></clipPath></defs></svg>
</a>
</div>
</div>
<img srcset="Content/images/commercial/LCLLaptop.jpg 608w, Content/images/commercial/promo_middleLeft.jpg 920w" src="Content/images/commercial/promo_middleLeft.jpg"
sizes="(max-width: 1600px) 608px, (min-width: 1600px) 920px"
alt="lcl-containers-on-ship" />
<video class="grid-card-vid" loop muted onmouseover="this.play()" onmouseout="this.pause()" playsinline>
<source src="https://www.all-forward.com/Content/videos/LCLFreight.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container">
<div class="content-container">
<div class="content-container-text">
<h3>Rail Freight</h3>
<p>
Our logistics solutions are tailor-made to your needs, whether it’s block trains or individual container. Including long distance train transportation from China to Europe, Russia and CIS countries.
</p>
<a href="RailFreight.html"
class="base-btn primary-btn">
Explore more
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_4_1020)"><path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4_1020"><rect width="17" height="16" fill="currentColor" /></clipPath></defs></svg>
</a>
</div>
</div>
<img srcset="Content/images/commercial/RailFreightLaptop.jpg 608w, Content/images/commercial/promo_middleRight.jpg 920w" src="Content/images/commercial/promo_middleRight.jpg"
sizes="(max-width: 1600px) 608px, (min-width: 1600px) 920px"
alt="train-on-railroads" />
<video class="grid-card-vid" loop muted onmouseover="this.play()" onmouseout="this.pause()" playsinline>
<source src="https://www.all-forward.com/Content/videos/RailFreight.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container">
<div class="content-container">
<div class="content-container-text">
<h3>Sustainable Logistics</h3>
<p>
All-Forward offers holistic green value-added services to help reduce costs and CO2 emissions and design sustainable supply chains for the long-term.
</p>
<a href="SustainableLogistics.html"
class="base-btn primary-btn">
Explore more
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_4_1020)"><path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4_1020"><rect width="17" height="16" fill="currentColor" /></clipPath></defs></svg>
</a>
</div>
</div>
<img srcset="Content/images/commercial/SLLaptop.jpg 608w, Content/images/commercial/promo_bottomLeft.jpg 920w" src="Content/images/commercial/promo_bottomLeft.jpg"
sizes="(max-width: 1600px) 608px, (min-width: 1600px) 920px"
alt="train-on-roads" />
<video class="grid-card-vid" loop muted onmouseover="this.play()" onmouseout="this.pause()" playsinline>
<source src="https://www.all-forward.com/Content/videos/SustainableLogistics.mp4" type="video/mp4" />
</video>
</div>
<div class="card-container">
<div class="content-container">
<div class="content-container-text">
<h3>Additional Services</h3>
<p>
Unchain Your Supply Chain - Let us complete your logistic experience
</p>
<a href="AdditionalServices.html"
class="base-btn primary-btn">
Explore more
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_4_1020)"><path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4_1020"><rect width="17" height="16" fill="currentColor" /></clipPath></defs></svg>
</a>
</div>
</div>
<img srcset="Content/images/commercial/ASLaptop.jpg 608w, Content/images/commercial/promo_bottomRight.jpg 920w" src="Content/images/commercial/promo_bottomRight.jpg"
sizes="(max-width: 1600px) 608px, (min-width: 1600px) 920px"
alt="women-in-warehouse" />
<video class="grid-card-vid" loop muted onmouseover="this.play()" onmouseout="this.pause()" playsinline>
<source src="https://www.all-forward.com/Content/videos/AdditionalServices.mp4" type="video/mp4" />
</video>
</div>
</section>
<div class="titels-section">
<p class="text uppercase hide_mobile">THE POWER OF MANY</p>
<h3 class="title uppercase">ALL IN ONE PLATFORM</h3>
<h3 class="sub-title">Find Forwarding Partners any in the world</h3>
</div>
</main>
<section class="find-partners-container"
ng-class="{
na: selectedContinent == 11,
eu: selectedContinent == 12,
asia: selectedContinent == 13,
aus: selectedContinent == 14,
africa: selectedContinent == 15,
sa: selectedContinent == 16,}"
>
<div class="home-container">
<div class="find-partners-content">
<div class="find-partners-list">
<h3 class="find-partners-title uppercase">
Find Partners
</h3>
<ul>
<li class="find-partners-asia">
<div ng-show="selectedContinent == 11" class="find-partners-dot-container">
<div class="dot"></div>
</div>
<button class="find-partners-btn" ng-class="{'selected-cont': selectedContinent == 11}" ng-click="selectedContinent = 11">
North America
</button>
<span ng-show="selectedContinent == 11" class="font-sm">
<span>501</span>
Partners in North America ready for you.
</span>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" ng-show="selectedContinent == 11" class="find-partners-offers">
Get Offers
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4_1020)">
<path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_4_1020">
<rect width="17" height="16" fill="currentColor" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="find-partners-asia">
<div ng-show="selectedContinent == 12" class="find-partners-dot-container">
<div class="dot"></div>
</div>
<button class="find-partners-btn" ng-class="{'selected-cont': selectedContinent == 12}" ng-click="selectedContinent = 12">
Europe
</button>
<span ng-show="selectedContinent == 12" class="font-sm">
<span>1648</span>
Partners in Europe ready for you.
</span>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" ng-show="selectedContinent == 12" class="find-partners-offers">
Get Offers
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4_1020)">
<path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_4_1020">
<rect width="17" height="16" fill="currentColor" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="find-partners-asia">
<div ng-show="selectedContinent == 13" class="find-partners-dot-container">
<div class="dot"></div>
</div>
<button class="find-partners-btn" ng-class="{'selected-cont': selectedContinent == 13}" ng-click="selectedContinent = 13">
Asia
</button>
<span ng-show="selectedContinent == 13" class="font-sm">
<span>1788</span>
Partners in Asia ready for you.
</span>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" ng-show="selectedContinent == 13" class="find-partners-offers">
Get Offers
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4_1020)">
<path d="M0.5 8H15.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M10.5 3L15.5 8L10.5 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_4_1020">
<rect width="17" height="16" fill="currentColor" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="find-partners-asia">
<div ng-show="selectedContinent == 14" class="find-partners-dot-container">
<div class="dot"></div>
</div>
<button class="find-partners-btn" ng-class="{'selected-cont': selectedContinent == 14}" ng-click="selectedContinent = 14">
Australia
</button>
<span ng-show="selectedContinent == 14" class="font-sm">
<span>73</span>
Partners in Australia ready for you.
</span>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" ng-show="selectedContinent == 14" class="find-partners-offers">