-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAirFreight.html
1044 lines (930 loc) · 94 KB
/
AirFreight.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>Air Freight - All Forward</title>
<meta name="description" content="Full digital visibility, exceptional service from origin to destination and a product designed to deliver fast, flexible and more dependable air freight for your cargo. All-Forward takes you from order to takeoff with the world’s fastest digital air freight network, with full visibility and exceptional service from origin to destination.">
<meta property="og:site_name" content="All-Forward">
<meta property="og:url" content="https://www.all-forward.com/AirFreight" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:title" content="AIR FREIGHT" />
<meta name="twitter:title" content="AIR FREIGHT">
<meta property="og:description" content="The skies are no longer the limit for reliable shipments" />
<meta name="twitter:description" content="The skies are no longer the limit for reliable shipments">
<meta property="og:image" content="Content/images/commercial/AirFreightHeroBanner.jpg" />
<meta name="twitter:image" content="Content/images/commercial/AirFreightHeroBanner.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">
<script>
app.controller('AirFreightController', ($scope) => {
const sectionItemType = AllForward.SystemEnums.CommercialSiteSectionItemType
$scope.AirFreightContent = {"Hero":{"Id":152,"Page":2,"MiniTitle":null,"Title":"AIR FREIGHT","SubTitle":"The skies are no longer the limit for reliable shipments","Content":"Full digital visibility, exceptional service from origin to destination and a product designed to deliver fast, flexible and more dependable air freight for your cargo. All-Forward takes you from order to takeoff with the world’s fastest digital air freight network, with full visibility and exceptional service from origin to destination.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":0,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"SupplyChainHeader":{"Id":150,"Page":2,"MiniTitle":null,"Title":"As digital technologies reshape industries, we're taking a human touch to the sky.","SubTitle":null,"Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":11,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"SupplyChainItems":[{"Id":47,"Page":2,"MiniTitle":null,"Title":"Improve your performance","SubTitle":null,"Content":"Our fully integrated systems and processes, data-driven insights and innovative technological solutions help you find the unexpected in real time, so your just-in-time supply chain stays on time.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":11,"SectionItemType":30,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":48,"Page":2,"MiniTitle":null,"Title":"Logistics streamlined","SubTitle":null,"Content":"All-Forward Platform provides real-time visibility of your entire supply chain, right down to the SKU. With total digitization your documents and goods, you can track everything, anywhere, anytime.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":11,"SectionItemType":31,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":49,"Page":2,"MiniTitle":null,"Title":"Turning data into value","SubTitle":null,"Content":"Book air freight cargo online in three clicks with full cost transparency. All-Forward lets you compare costs across modes, determine landed costs down to the SKU, and pull analytics in just few clicks.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":11,"SectionItemType":32,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1}],"TrackAndManageHeader":{"Id":50,"Page":2,"MiniTitle":null,"Title":"TRACK & MANAGE","SubTitle":"Manage Your Supply Chain End to End","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":12,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"TrackAndManageItems":[{"Id":51,"Page":2,"MiniTitle":null,"Title":"QUOTE","SubTitle":"Quick Quotes Spot Tool","Content":"The All-Forward Quick Quotes Spot Tool gives you real-time access to spot rates as well as available capacities from multiple airlines. Direct carrier integration makes rate procurement faster and simpler. Save money based on live data. Benchmark Spot vs. Contracted rates. Increase quoting velocity, world wide coverage, increased transparency!","ButtonText":"Get started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":12,"SectionItemType":20,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":56,"Page":2,"MiniTitle":null,"Title":"SCHEDULE","SubTitle":"Flight schedule and planner","Content":"The All-Forward solution provides an innovative “know where it’s going and when it’s coming back” platform for cargo shipping and beyond. Its visionary technology combines years of industry experience with the latest technology to provide the most comprehensive system. Ship safe, plan smart","ButtonText":"Get started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":12,"SectionItemType":23,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":52,"Page":2,"MiniTitle":null,"Title":"BOOK","SubTitle":"Start Upstream with Booking Management","Content":"Enhance your booking process with All-Forward’s web solution. It’s easy to handle, available around the clock, and provides high data quality for your bookings. Start your booking request with one click and our tool will guide you through the process in just few steps: from a quick spot/contract quotation program, through the routing of your load and into a management section, to manage all your bookings in one place.","ButtonText":"Get started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":12,"SectionItemType":21,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":54,"Page":2,"MiniTitle":null,"Title":"TRACK","SubTitle":"Tracking cargo in real time.","Content":"Easily track your shipment and cargo delivered with our tracking tool. Our system grants you instant access to our platform, so you can streamline your shipping process and tracking on the run. With one application for all shipments, you can view more information about your cargo from anywhere!","ButtonText":"Get started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":12,"SectionItemType":2,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1}],"BlueCardsSectionItems":[{"Id":141,"Page":2,"MiniTitle":null,"Title":"Keep tabs on your air freight from the control tower","SubTitle":"Visibility","Content":"Have a complete view of your supply chain, from start to finish. Get complete control over your air freight services, wherever the destination and whatever the timescale, or take a step back, relax and let us plan and control your air freight shipment according to an industry-recognized standard.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":35,"SectionItemType":42,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":142,"Page":2,"MiniTitle":null,"Title":"Unlock your potential in the global market","SubTitle":"Reliable partner","Content":"As the global market continues to expand, so does the need for logistics solutions. To keep up with customer demands and remain competitive in today’s business environment, you need an efficient supply chain that can deliver on-time shipments. You can rely on our commercial air freight services, to get the results you're looking for.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":35,"SectionItemType":43,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":143,"Page":2,"MiniTitle":null,"Title":"A worry-free way to transport goods.","SubTitle":"service","Content":"Your cargo should always be a worry-free process, from the moment it leaves your warehouse, through to dispatch and arrival at its destination. All-Forward’s Full digital visibility and exceptional service gives you just that.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":35,"SectionItemType":44,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":144,"Page":2,"MiniTitle":null,"Title":"Integrate into the global marketplace","SubTitle":"GLOBAL NETWORK connectivity","Content":"Expanding your business isn't just about reaching new customers — it's also about getting goods from one place to another. All-Forward offers air cargo services with spread connectivity worldwide, so you can get to virtually any destination on the planet in a relatively short time.","ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":35,"SectionItemType":45,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1}],"MapHeader":{"Id":57,"Page":2,"MiniTitle":null,"Title":"GLOBAL EXPERTISE","SubTitle":"All-Forward Global Network","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":13,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"ReportingItems":[{"Id":159,"Page":2,"MiniTitle":null,"Title":"MONITORING","SubTitle":"The future of tracking and monitoring","Content":"All-Forward's Platform gives you and your team end-to-end visibility and control anywhere in the world. Track your air freight for total inventory control. Know where cargo is at all times. Search for POs or SKUs on the water and sell what’s still in transit.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":40,"SectionItemType":46,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1}],"FreightItems":[{"Id":166,"Page":2,"MiniTitle":null,"Title":"FREIGHT ANY TIME","SubTitle":"Get instant freight rates","Content":"Get instant freight rates from all major carriers and NVOCC's with All-Forward. We provide you with instant quotes, allowing you to compare prices and ship faster. No hidden costs - just total transparency and the best customer care in the industry.","ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":45,"SectionItemType":47,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1}],"BrandsHeader":{"Id":58,"Page":2,"MiniTitle":null,"Title":"TRUST US","SubTitle":"Join Thousands Of Leading Brands On All-Forward","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"BrandsItems":[{"Id":59,"Page":2,"MiniTitle":null,"Title":"DeliveryShip","SubTitle":null,"Content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit adipiscing elit.","ButtonText":"view","ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":24,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":60,"Page":2,"MiniTitle":null,"Title":"Ship Tour","SubTitle":null,"Content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit adipiscing elit.","ButtonText":"view","ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":25,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":61,"Page":2,"MiniTitle":null,"Title":"Courier Express services","SubTitle":null,"Content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit adipiscing elit.","ButtonText":"view","ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":26,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":62,"Page":2,"MiniTitle":null,"Title":"Shipping company","SubTitle":null,"Content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit adipiscing elit.","ButtonText":"view","ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":27,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":63,"Page":2,"MiniTitle":null,"Title":"Shipping company","SubTitle":null,"Content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit adipiscing elit.","ButtonText":"view","ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":27,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":64,"Page":2,"MiniTitle":null,"Title":"Shipping company","SubTitle":null,"Content":"Lorem ipsum dolor sit amet, consectetur adipiscing elit adipiscing elit.","ButtonText":"view","ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":14,"SectionItemType":27,"Order":6,"OnboardingWizardForwarders":null,"LanguageId":1}],"JoinUsHeader":{"Id":262,"Page":7,"MiniTitle":null,"Title":"Join The Digital Logistics Network","SubTitle":null,"Content":null,"ButtonText":"Get Started","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":9,"SectionItemType":0,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},"JoinUsItems":[{"Id":263,"Page":7,"MiniTitle":null,"Title":"Join as Freight Forwarder","SubTitle":null,"Content":"Find 6000+ forwarders to handle your shipments for FREE - No credit card required.","ButtonText":"Start For Free","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":9,"SectionItemType":28,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":264,"Page":7,"MiniTitle":null,"Title":"Join as Importer/Exporter","SubTitle":null,"Content":"Creating an account is fast, easy and secure. Then book your shipment to get your order on its way in minutes!","ButtonText":"Start For Free","ButtonLink":"https://app.all-forward.com/Account/Signup","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":9,"SectionItemType":29,"Order":2,"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}]}]};
$scope.selectedOrderTabIndex = 0;
$scope.selectOrderTab = index => {
$scope.selectedOrderTabIndex = index
};
$scope.assets = {
SupplyChainItems: {
[sectionItemType.Bookings]: Q.resolveUrl("~/Content/images/commercial/plane-trip.svg"),
[sectionItemType.CatchIssues]: Q.resolveUrl("~/Content/images/commercial/plane-trip-take-off-check.svg"),
[sectionItemType.SeeWhereAirFreight]: Q.resolveUrl("~/Content/images/commercial/network-search.svg"),
},
JoinUsItems: {
[sectionItemType.Forwarder]: Q.resolveUrl("~/Content/images/commercial/left.png"),
[sectionItemType.Importer]: Q.resolveUrl("~/Content/images/commercial/sea-transport-ship-cargo.png"),
},
ReportingImage: {
[sectionItemType.ReportingSection]: Q.resolveUrl("~/Content/images/commercial/quotes.png"),
},
FreightImage: {
[sectionItemType.FreightSection]: Q.resolveUrl("~/Content/images/commercial/FreightSectionImage.png"),
},
}
});
</script>
<div ng-controller="AirFreightController">
<header class="ocean-freight-hero air-hero-bg">
<img class="hide_desktop" src="Content/images/commercial/AirFreightHeroBanner.jpg" alt="cargo-airplane-takeoff" />
<div class="ocean-freight-triangle"></div>
<div class="ocean-container">
<div class="ocean-freight-hero-content">
<div class="reporting-content ocean-hero-container">
<div class="info-section-container p-zero">
<div class="info-container ocean-container">
<div class="title-container">
<h1 class="info-title ocean-freight-hero-info-content reporting-title uppercase hero-h1-break-line">
AIR FREIGHT
</h1>
<p class="title-small reporting-small-title uppercase">
AIR FREIGHT
</p>
</div>
<h2 class="info-sub-title">
The skies are no longer the limit for reliable shipments
</h2>
<p class="info-content ocean-freight-hero-para">
Full digital visibility, exceptional service from origin to destination and a product designed to deliver fast, flexible and more dependable air freight for your cargo. All-Forward takes you from order to takeoff with the world’s fastest digital air freight network, with full visibility and exceptional service from origin to destination.
</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn btn-white">
Get Started
</a>
</div>
</div>
<button class="hero-scroll-down" ng-click="scrollTo('.second-section', 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>
</div>
</header>
<main class="ocean-container">
<section class="second-section">
<p class="second-section-top-para">
As digital technologies reshape industries, we're taking a human touch to the sky.
</p>
<div class="advertise-container">
<div class="advert">
<img lazyload lazysrc="{{assets.SupplyChainItems[30]}}" alt="view" />
<h3>Improve your performance</h3>
<p>
Our fully integrated systems and processes, data-driven insights and innovative technological solutions help you find the unexpected in real time, so your just-in-time supply chain stays on time.
</p>
</div>
<div class="advert">
<img lazyload lazysrc="{{assets.SupplyChainItems[31]}}" alt="view" />
<h3>Logistics streamlined</h3>
<p>
All-Forward Platform provides real-time visibility of your entire supply chain, right down to the SKU. With total digitization your documents and goods, you can track everything, anywhere, anytime.
</p>
</div>
<div class="advert">
<img lazyload lazysrc="{{assets.SupplyChainItems[32]}}" alt="view" />
<h3>Turning data into value</h3>
<p>
Book air freight cargo online in three clicks with full cost transparency. All-Forward lets you compare costs across modes, determine landed costs down to the SKU, and pull analytics in just few clicks.
</p>
</div>
</div>
</section>
<section>
<header class="titels-section stroke-ocean">
<p class="text uppercase hide_mobile">TRACK & MANAGE</p>
<h3 class="title uppercase">TRACK & MANAGE</h3>
<h3 class="sub-title">Manage Your Supply Chain End to End</h3>
</header>
<div class="order-btns-container">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" ng-repeat="item in AirFreightContent.TrackAndManageItems" class="nav-link" ng-class="::{active: selectedOrderTabIndex == $index}">
<button class="order-btn" data-toggle="pill" data-target="#strip-{{$index}}" aria-controls="strip-{{$index}}" role="tab" aria-selected="{{::selectedOrderTabIndex == $index}}" ng-click="selectOrderTab($index)">
{{item.Title}}
</button>
<div class="flex_center" ng-if="!$last">
<img class="order-btns-container-dots" ng-show="$index > selectedOrderTabIndex || $index < selectedOrderTabIndex - 1" src="Content/images/commercial/whiteDots.png" alt="dots" />
<img class="order-btns-container-dots" ng-show="selectedOrderTabIndex == $index" src="Content/images/commercial/firstDots.png" alt="blue dots" />
<img class="order-btns-container-dots" ng-show="selectedOrderTabIndex == $index + 1" src="Content/images/commercial/right-blue-dots.svg" alt="right blue dots" />
</div>
</li>
</ul>
</div>
<div class="tab-content">
<div class="info-section-container tab-pane fade" id="strip-0" role="tabpanel" ng-class="{active: 0 == 0, in: 0 == 0}">
<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">Quick Quotes Spot Tool</h3>
<p class="info-content">
The All-Forward Quick Quotes Spot Tool gives you real-time access to spot rates as well as available capacities from multiple airlines. Direct carrier integration makes rate procurement faster and simpler. Save money based on live data. Benchmark Spot vs. Contracted rates. Increase quoting velocity, world wide coverage, increased transparency!
</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get started
</a>
</div>
<div>
<div class="card-container card-border">
<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="info-section-container tab-pane fade" id="strip-1" role="tabpanel" ng-class="{active: 1 == 0, in: 1 == 0}">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">SCHEDULE</h3>
<p class="title-small uppercase hide_mobile">SCHEDULE</p>
</div>
<h3 class="info-sub-title">Flight schedule and planner</h3>
<p class="info-content">
The All-Forward solution provides an innovative “know where it’s going and when it’s coming back” platform for cargo shipping and beyond. Its visionary technology combines years of industry experience with the latest technology to provide the most comprehensive system. Ship safe, plan smart
</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get started
</a>
</div>
<div>
<div class="card-container card-border">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/SCHEDULE.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
<div class="info-section-container tab-pane fade" id="strip-2" role="tabpanel" ng-class="{active: 2 == 0, in: 2 == 0}">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">BOOK</h3>
<p class="title-small uppercase hide_mobile">BOOK</p>
</div>
<h3 class="info-sub-title">Start Upstream with Booking Management</h3>
<p class="info-content">
Enhance your booking process with All-Forward’s web solution. It’s easy to handle, available around the clock, and provides high data quality for your bookings. Start your booking request with one click and our tool will guide you through the process in just few steps: from a quick spot/contract quotation program, through the routing of your load and into a management section, to manage all your bookings in one place.
</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get started
</a>
</div>
<div>
<div class="card-container card-border">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/Quotes.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
<div class="info-section-container tab-pane fade" id="strip-3" role="tabpanel" ng-class="{active: 3 == 0, in: 3 == 0}">
<div class="info-container">
<div class="title-container">
<h3 class="info-title uppercase">TRACK</h3>
<p class="title-small uppercase hide_mobile">TRACK</p>
</div>
<h3 class="info-sub-title">Tracking cargo in real time.</h3>
<p class="info-content">
Easily track your shipment and cargo delivered with our tracking tool. Our system grants you instant access to our platform, so you can streamline your shipping process and tracking on the run. With one application for all shipments, you can view more information about your cargo from anywhere!
</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn">
Get started
</a>
</div>
<div>
<div class="card-container card-border">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/TrackTrace.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</div>
</section>
<section class="big-cards-container">
<article class="horizontal-card">
<div class="horizontal-card-content">
<span class="big-cards-mini-title uppercase">Visibility</span>
<h3 class="big-cards-title">Keep tabs on your air freight from the control tower</h3>
<p class="big-cards-text">
Have a complete view of your supply chain, from start to finish. Get complete control over your air freight services, wherever the destination and whatever the timescale, or take a step back, relax and let us plan and control your air freight shipment according to an industry-recognized standard.
</p>
</div>
<video class="horizontal-card-vid" loop muted autoplay playsinline>
<source src="https://www.all-forward.com/Content/videos/AirFreightBlueBox1.mp4" type="video/mp4" />
</video>
</article>
<div class="vertical-cards-container">
<article class="vertical-card">
<div class="vertical-card-content">
<span class="big-cards-mini-title uppercase">Reliable partner</span>
<h3 class="big-cards-title">Unlock your potential in the global market</h3>
<p class="big-cards-text">
As the global market continues to expand, so does the need for logistics solutions. To keep up with customer demands and remain competitive in today’s business environment, you need an efficient supply chain that can deliver on-time shipments. You can rely on our commercial air freight services, to get the results you're looking for.
</p>
<video class="blue-boxes-vertical-video" loop muted onmouseover="this.play()" autoplay playsinline>
<source src="https://www.all-forward.com/Content/videos/AirFreightBlueBox2.mp4" type="video/mp4" />
</video>
</div>
</article>
<article class="vertical-card">
<div class="vertical-card-content">
<span class="big-cards-mini-title uppercase">service</span>
<h3 class="big-cards-title">A worry-free way to transport goods.</h3>
<p class="big-cards-text">
Your cargo should always be a worry-free process, from the moment it leaves your warehouse, through to dispatch and arrival at its destination. All-Forward’s Full digital visibility and exceptional service gives you just that.
</p>
<video class="blue-boxes-vertical-video" loop muted onmouseover="this.play()" autoplay playsinline>
<source src="https://www.all-forward.com/Content/videos/AirFreightBlueBox3.mp4" type="video/mp4" />
</video>
</div>
</article>
</div>
<article class="horizontal-card">
<video class="horizontal-card-vid" loop muted autoplay playsinline>
<source src="https://www.all-forward.com/Content/videos/AirFreightBlueBox4.mp4" type="video/mp4" />
</video>
<div class="horizontal-card-content horizontal-card-content-reverse">
<span class="big-cards-mini-title uppercase">GLOBAL NETWORK connectivity</span>
<h3 class="big-cards-title">
Integrate into the global marketplace
</h3>
<p class="big-cards-text">
Expanding your business isn't just about reaching new customers — it's also about getting goods from one place to another. All-Forward offers air cargo services with spread connectivity worldwide, so you can get to virtually any destination on the planet in a relatively short time.
</p>
</div>
</article>
</section>
<section>
<header class="titels-section stroke-ocean">
<p class="text uppercase hide_mobile">GLOBAL EXPERTISE</p>
<h3 class="title uppercase">GLOBAL EXPERTISE</h3>
<h3 class="sub-title">All-Forward Global Network</h3>
</header>
<div class="ocean-world-map-container">
<div class="time-zone-img-container">
<lottie-player src="/Content/animations/MapDots.json" background="transparent" speed="1" loop autoplay></lottie-player>
</div>
<div class="time-zone-container">
<div class="time-zone-card">
<span class="time-zone-card-number">6,000+</span>
<span class="time-zone-card-text uppercase">Companies+</span>
</div>
<div class="time-zone-card">
<span class="time-zone-card-number">150+</span>
<span class="time-zone-card-text uppercase">Countries</span>
</div>
<div class="time-zone-card">
<span class="time-zone-card-number">30,000+</span>
<span class="time-zone-card-text uppercase">Offers</span>
</div>
</div>
</div>
</section>
</main>
<section class="reporting-container">
<img lazyload lazysrc="/Content/images/commercial/reporting-bg.png" alt="" />
<div class="reporting-triangle"></div>
<div class="reporting-content home-container">
<div class="info-section-container info-section-oceanfreight">
<div class="info-container">
<div class="title-container">
<h3 class="info-title reporting-title uppercase">
MONITORING
</h3>
<p class="title-small reporting-small-title uppercase hide_mobile">
MONITORING
</p>
</div>
<h3 class="info-sub-title reporting-info-sub-title">
The future of tracking and monitoring
</h3>
<p class="info-content reporting-info-para">
All-Forward's Platform gives you and your team end-to-end visibility and control anywhere in the world. Track your air freight for total inventory control. Know where cargo is at all times. Search for POs or SKUs on the water and sell what’s still in transit.
</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="base-btn primary-btn reporting-btn">
Get Started
</a>
</div>
<div class="card-container transperent-bg">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/TrackTrace.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</section>
<div class="ocean-container">
<section class="info-section-container freight">
<div class="info-container info-freight">
<div class="title-container title-ocean">
<p class="title-small-ocean uppercase hide_mobile">
FREIGHT ANY TIME
</p>
<h3 class="title title-freight uppercase">
FREIGHT ANY TIME
</h3>
</div>
<h3 class="info-sub-title">
Get instant freight rates
</h3>
<p class="content-freight">
Get instant freight rates from all major carriers and NVOCC's with All-Forward. We provide you with instant quotes, allowing you to compare prices and ship faster. No hidden costs - just total transparency and the best customer care in the industry.
</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-freight">
<video autoplay loop muted playsinline>
<source src="https://www.all-forward.com/Content/videos/NewShipment.mp4" type="video/mp4" />
</video>
</div>
</section>
<section id="join-all-forward" class="join">
<h3>Join The Digital Logistics Network</h3>
<div class="join-cards-container">
<div class="join-card"
ng-class="{ blue: 28 == 28,
green: 28 == 29 }"
>
<img src="Content/images/commercial/container.png"
alt="container" />
<h4>Join as Freight Forwarder</h4>
<p>Find 6000+ forwarders to handle your shipments for FREE - No credit card required.</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="join-btn">
Start For Free
</a>
</div>
<div class="join-card"
ng-class="{ blue: 29 == 28,
green: 29 == 29 }"
>
<img src="Content/images/commercial/sea-transport-ship-cargo.png"
alt="sea-transport-ship-cargo" />
<h4>Join as Importer/Exporter</h4>
<p>Creating an account is fast, easy and secure. Then book your shipment to get your order on its way in minutes!</p>
<a href="https://app.all-forward.com/Account/Signup" data-onboarding-wizard="" class="join-btn">
Start For Free
</a>
</div>
</div>
</section>
</div>
</div>
</div>
<footer>
<div class="home-container">
<div class="top-container">
<div class="footer-stroke">
<div class="footer-stroke-title">
<span class="hide_desktop uppercase">The Power Of Many</span>
<span class="hide_mobile uppercase">Sign Up</span>
<h3 class="uppercase">Sign Up</h3>
</div>
<h4>Sign Up for All-Forward Platform</h4>
<p>
Our goal is to provide a worldwide network of freight forwarders. We call it “The power of many”.
</p>
</div>
<div class="email-notif-container">
<p>
Get instant rates based on thousands of freight forwarders on our network & the All-Forward technology. We provide the ultimate solution for booking and management of your shipments.
</p>
<form class="input-container" ng-submit="signupToNewsletter()">
<label>
Email
<input required class="commercial-input footer-input" type="email" ng-model="newsLetterEmail" placeholder="Type your email" />
</label>
<button type="submit" class="base-btn primary-btn">Sign Up</button>
</form>
<p>
I agree to the
<a href="EULA.html" target="_blank">Terms of Service</a>
and
<a href="Privacy.html" target="_blank">Privacy Policy</a>
</p>
</div>
</div>
<div class="bot-container">
<a href="index.html">
<img src="Content/images/commercial/FooterLogo.svg" alt="All-Forward-logo" />
</a>
<div class="footer-lists-container">
<div class="footer-list" ng-repeat="navItem in navItems">
<h4 class="uppercase">{{navItem.Header.Title}}</h4>
<ul>
<li ng-repeat="item in navItem.Items">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html">
{{item.Title}}
</a>
</li>
</ul>
<div ng-if="!$last" class="dot mt-dot"></div>
</div>
</div>
</div>
<div class="footer-socials">
<div class="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">
<span>Copyright ©</span>
<span>2023</span>
<span>All-Forward, Inc. <a href="EULA.html" target="_blank">Terms of Use</a> / <a href="Privacy.html" target="_blank">Privacy Policy</a></span>
</div>
<img class="footer-logo-mobile-bottom" src="Content/images/commercial/FooterLogo.svg" alt="All-Forward-logo" />
</div>
</div>
</footer>
<button ng-click="scrollToTop()" class="footer-arrow-up" aria-label="Scroll to top">
<img src="Content/images/commercial/arrow-up%201.svg" alt="arrow-up">
</button>
<style>#auth-modal .modal-dialog {
max-width: 1050px;
width: initial;
height: 100vh;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
#auth-modal .modal-body {
display: flex;
padding: 0;
margin: 0;
}
#auth-modal .modal-content {
border-radius: 16px;
box-shadow: none;
max-height: 90vh;
overflow: hidden;
}
.auth-image-container {
width: 453px;
position: relative;
overflow: hidden;
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
}
.auto-image-gradient {
position: absolute;
top: 0;
bottom: 0;
left: -115px;
right: 0;
background: linear-gradient(90deg, rgba(4, 78, 172, 0.8) 7.29%, rgba(87, 184, 156, 0.2) 58.85%);
}
.auth-logo {
position: absolute;
left: 40px;
top: 40px;
max-width: 150px;
z-index: 1;
}
.auth-image {
position: absolute;
right: 0;
max-width: initial;
}
.auth-body-container {
flex: 1;
display: flex;
flex-direction: column;
}
.auth-header {
height: 90px;
display: flex;
align-items: center;
border-bottom: 1px solid #E6E6E6;
padding: 0 24px 0 30px;
}
.auth-header .icon_btn {
margin-left: auto;
padding: 6px;
}
.auth-header-title {
font-weight: 600;
font-size: 20px;
}
.auth-content-container {
flex: 1;
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
margin: 0 auto;
padding: 52px 120px 200px;
}
.auth-content-container p {
margin: 20px 0 40px;
font-weight: 600;
font-size: 20px;
line-height: 32px;
}
.auth-content-container .base-btn {
width: 100%;
}
.auth-content-container .btn-transparent {
margin-top: 24px;
}
.auth-content-container .btn-transparent:not(:hover) {
color: var(--blue-dark);
}
@media screen and (min-width: 786px) and (max-width: 1280px) {
.auth-content-container {
padding: 52px 60px 100px;
}
.auth-image-container {
width: 320px;
}
.auth-image {
position: absolute;
right: 0;
max-width: initial;
right: -90px;
}
}
@media screen and (max-width: 786px) {
#auth-modal .modal-content {
border-radius: 0;
height: 100%;
width: 100%;
max-height: initial;
}
.auth-image-container {
display: none;
}
.auth-content-container {
padding: 52px 16px;
}
}
</style>
<div id="auth-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="auth-modal" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="auth-image-container">
<img class="auth-image" src="Content/images/commercial/OceanFreightLaptop.jpg" alt="ship-filled-with-containers" />
<img class="auth-logo" src="Content/images/commercial/logo-white-slogen.svg" alt="all-forward" />