-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPARCEL+POST EXPO 2022.html
3454 lines (3393 loc) · 175 KB
/
PARCEL+POST EXPO 2022.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>
<!-- saved from url=(0055)https://www.parcelandpostexpo.com/de/exhibitor-list.php -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Google Tag Manager -->
<script async="" src="./PARCEL+POST EXPO 2022_files/gtm.js.download"></script><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-TTGKL8D');</script>
<!-- End Google Tag Manager -->
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>PARCEL+POST EXPO 2022</title>
<meta name="google-site-verification" content="QhT0g_lfbc-xit3hNe7Shftha0yvA2GZXqM7Jxfk40c"> <!-- DO NOT REMOVE -->
<meta content="PARCEL+POST EXPO IS THE LEADING GLOBAL EVENT FOR THE WORLD’S PARCEL DELIVERY, E-COMMERCE LOGISTICS AND POSTAL INDUSTRIES." name="description">
<meta content="PARCEL+POST EXPO 2022 PARCEL DELIVERY LOGISTICS" name="keywords">
<!-- Favicons -->
<link href="./PARCEL+POST EXPO 2022_files/footer-logo-2.png" rel="icon">
<link href="https://www.parcelandpostexpo.com/assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="./PARCEL+POST EXPO 2022_files/css" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="./PARCEL+POST EXPO 2022_files/bootstrap.min.css" rel="stylesheet">
<link href="./PARCEL+POST EXPO 2022_files/venobox.css" rel="stylesheet">
<link href="./PARCEL+POST EXPO 2022_files/font-awesome.min.css" rel="stylesheet">
<link href="./PARCEL+POST EXPO 2022_files/owl.carousel.min.css" rel="stylesheet">
<link href="./PARCEL+POST EXPO 2022_files/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./PARCEL+POST EXPO 2022_files/spinner.css">
<!-- Template Main CSS File -->
<link href="./PARCEL+POST EXPO 2022_files/style.css" rel="stylesheet">
<link id="freshworks-frame" rel="stylesheet" href="./PARCEL+POST EXPO 2022_files/frame.d7ae132c.css"></head>
<body data-aos-easing="ease" data-aos-duration="1000" data-aos-delay="0"><button type="button" id="mobile-nav-toggle"><i class="fa fa-bars"></i></button>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<div class="row mb-2">
<nav id="nav-menu-container">
<ul class="nav-menu sf-js-enabled sf-arrows" style="touch-action: pan-y;">
<li class="menu-active"><a href="https://www.parcelandpostexpo.com/de/index.php">Startseite</a></li>
<!-- <li><a href="#about">About</a></li> -->
<li><a href="https://www.parcelandpostexpo.com/de/index.php#floorplan">Messeplan</a></li>
<li class="nav-item">
<a class="dropdown-toggle" href="https://www.parcelandpostexpo.com/de/exhibitor-list.php#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Besuchen </a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/register.php">Registrieren</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/exhibitor-list.php">Ausstellerliste</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/show-news.php">Neue Produkte Auf Der Messe</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php#conference">Konferenz</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php#award">Awards</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php#venue">Event Venue</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/travel-hotels.php">Anreise</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php#contact">Kontakt</a>
<br>
</div>
</li>
<li class="nav-item">
<a class="dropdown-toggle" href="https://www.parcelandpostexpo.com/de/exhibitor-list.php#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Ausstellen </a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/show-layout.php">Messeplan</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php?p=1#booth">Buchen Sie einen Booth </a>
<br>
<!-- <a class="dropdown-item" href="index.php#booth">Rates</a>
<br> -->
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/exhibitor-list.php">Ausstellerliste</a>
<br>
<!-- <a class="dropdown-item" href="index.php#booth">Rates</a>
<br> -->
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php?p=2#marketing">Event Marketing</a>
<br>
<a class="dropdown-item" href="https://secure.ukimediaevents.com/exhib-world/manual/login.php?event=4953" target="_blank">Ausstellerhandbuch</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/build-information.php">Stand Build Information</a>
<br>
</div>
</li>
<li class="nav-item">
<a class="dropdown-toggle" href="https://www.parcelandpostexpo.com/de/exhibitor-list.php" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Konferenz </a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/index.php#conference">Konferenz</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/conference-program.php">Konferenzprogramm</a>
<br>
<a class="dropdown-item" href="https://secure.ukimediaevents.com/secure_payments/registration/5327/" target="_blank">Book a Conference Pass</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/speaker-list.php">Rednerliste</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/speaker-interviews.php">Speaker Interviews</a>
<br>
<a class="dropdown-item" href="https://www.parcelandpostexpo.com/de/UPU-forum.php">UPU World Leaders Forum 2022</a>
</div>
</li>
<!-- <li><a href="travel-hotels.php">Anreise</a></li> -->
<!-- <li><a href="index.php#contact">Kontakt</a></li> -->
<li class="google-diary"><a href="https://www.parcelandpostexpo.com/de/show-news.php">Neue Produkte Auf Der Messe</a></li>
<li class="buy-tickets"><a href="https://www.parcelandpostexpo.com/de/register.php" target="_blank">Registrieren</a></li>
<li class="google-diary-del">
<!-- <a href="https://secure.ukimediaevents.com/secure_payments/registration/5327/" style="">Conference Pass</a> -->
<a href="https://www.parcelandpostexpo.com/de/index.php#conference">Konferenz</a>
</li>
<li><a href="http://www.parcelandpostexpo.com/en/exhibitor-list.php"><img style="width:25px;" src="./PARCEL+POST EXPO 2022_files/gb.svg" alt=""></a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
<div class="row text-center">
<div class="col-lg-6 d-sm-none d-md-block">
<div id="logo">
<a href="https://www.parcelandpostexpo.com/de/index.php" class="scrollto"><img src="./PARCEL+POST EXPO 2022_files/footer-logo-2.png" alt="" title=""></a>
<img src="./PARCEL+POST EXPO 2022_files/UPU_logo_white_v2.png" alt="" title="">
</div>
</div>
<div class="col-lg-6 d-sm-none d-md-block">
<div id="dates">
<h3 style="margin-bottom: 0px;">
<a id="googleDates" href="https://www.parcelandpostexpo.com/de/index.php#save">18., 19., 20. Oktober 2022</a> <br> Messe Frankfurt, Frankfurt, Deutschland</h3>
<p>Montag Oktober 17 - <strong>UPU WORLD LEADERS FORUM 2022</strong></p>
</div>
</div>
<div class="col-lg-6 d-none d-sm-block d-md-none">
<div id="logo">
<a href="https://www.parcelandpostexpo.com/de/index.php" class="scrollto"><img src="./PARCEL+POST EXPO 2022_files/footer-logo-2.png" style="width:65%;" alt="" title=""></a>
<img src="./PARCEL+POST EXPO 2022_files/UPU_logo_white_v2.png" alt="" title="">
</div>
</div>
<div class="col-lg-6 d-none d-sm-block d-md-none">
<div id="dates">
<p style="margin-bottom: 0px;">
<a id="googleDates" href="https://www.parcelandpostexpo.com/de/index.php#save">18., 19., 20. Oktober 2022</a> <br> Messe Frankfurt, Frankfurt, Deutschland
</p>
<p>Montag Oktober 17 - <strong>UPU WORLD LEADERS FORUM 2022</strong></p>
</div>
</div>
</div>
</div>
</header><!-- End Header -->
<main id="main">
<div class="spinner-border" style="margin-top: 10%; margin-left: 50%; display: none;"></div>
<section id="exhiblist">
<div class="container aos-init aos-animate" data-aos="fade-up">
<div class="section-header">
<h2>Ausstellerliste</h2>
</div>
<div class="card">
<div class="card-body">
<form onsubmit="return false">
<div class="row">
<div class="col-md-4">
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-fw fa-globe"></i>
</span>
<select class="form-control" name="country_filter" id="country">
<option value="0" selected="">View all Countries</option>
<option value="ARMENIA">Armenia</option>
<option value="AUSTRALIA">Australia</option>
<option value="AUSTRIA">Austria</option>
<option value="BELGIUM">Belgium</option>
<option value="CANADA">Canada</option>
<option value="CHINA">China</option>
<option value="DENMARK">Denmark</option>
<option value="EGYPT">Egypt</option>
<option value="ESTONIA">Estonia</option>
<option value="FINLAND">Finland</option>
<option value="FRANCE">France</option>
<option value="GERMANY">Germany</option>
<option value="INDIA">India</option>
<option value="IRELAND">Ireland</option>
<option value="ISRAEL">Israel</option>
<option value="ITALY">Italy</option>
<option value="JAPAN">Japan</option>
<option value="KOREA">Republic of Korea</option>
<option value="LITHUANIA">Lithuania</option>
<option value="LUXEMBOURG">Luxembourg</option>
<option value="MALAYSIA">Malaysia</option>
<option value="NETHERLANDS">Netherlands</option>
<option value="NIGERIA">Nigeria</option>
<option value="POLAND">Poland</option>
<option value="PORTUGAL">Portugal</option>
<option value="ROMANIA">Romania</option>
<option value="SAUDI ARABIA">Saudi Arabia</option>
<option value="SLOVENIA">Slovenia</option>
<option value="SOUTH AFRICA">South Africa</option>
<option value="SPAIN">Spain</option>
<option value="SWEDEN">Sweden</option>
<option value="SWITZERLAND">Switzerland</option>
<option value="TAIWAN">Taiwan</option>
<option value="TURKEY">Türkiye</option>
<option value="UK">UK</option>
<option value="UKRAINE">Ukraine</option>
<option value="UNITED ARAB EMIRATES">United Arab Emirates</option>
<option value="USA">USA</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-fw fa-sort"></i>
</span>
<select class="form-control" name="sort_filter" id="sort">
<option value="company_name" selected="">Sort by Company Name</option>
<option value="stand_number">Sort by Booth Number</option>
<option value="country">Sort by Country</option>
</select>
</div>
</div>
<div class="col-md-4">
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-fw fa-search"></i>
</span>
<input class="form-control" name="search_filter" id="search" placeholder="Search...">
</div>
</div>
</div>
</form>
</div>
</div>
<p id="messages" style="display: none"></p>
<div id="sortable" class="row">
<div class="col-md-4 exhibitor-column" data-company="3DTIM Elektronik A.S." data-stand="2021" data-country="TURKEY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88315-1663056214.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>3DTIM Elektronik A.S.</strong></h4>
TURKEY<br> <strong>Booth: 2021</strong>
<br>
<a href="http://www.beevision.ai/" target="_blank">beevision.ai</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Addax Motors" data-stand="3056" data-country="BELGIUM" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/Belgium.png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>Addax Motors</strong></h4>
BELGIUM<br> <strong>Booth: 3056</strong>
<br>
<a href="https://www.addaxmotors.com/" target="_blank">addaxmotors.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Agora 24/7" data-stand="2064" data-country="DENMARK" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/Denmark.png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>Agora 24/7</strong></h4>
DENMARK<br> <strong>Booth: 2064</strong>
<br>
<a href="https://www.agora-networks.com/" target="_blank">agora-networks.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Aidea Co., Ltd. " data-stand="3104" data-country="JAPAN" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88703-1660903107.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Aidea Co., Ltd. </strong></h4>
JAPAN<br> <strong>Booth: 3104</strong>
<br>
<a href="https://aidea.net/" target="_blank">aidea.net</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Amazon Web Services EMEA SARL" data-stand="5055" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-92393-1662463188.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Amazon Web Services EMEA SARL</strong></h4>
GERMANY<br> <strong>Booth: 5055</strong>
<br>
<a href="https://aws.amazon.com/" target="_blank">aws.amazon.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="AmbaFlex Spiral Conveyor Solutions bv" data-stand="2055" data-country="NETHERLANDS" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88391-1662474480.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>AmbaFlex Spiral Conveyor Solutions bv</strong></h4>
NETHERLANDS<br> <strong>Booth: 2055</strong>
<br>
<a href="http://www.ambaflex.com/" target="_blank">ambaflex.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Ambi Robotics" data-stand="5052" data-country="USA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-92711-1660233043.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Ambi Robotics</strong></h4>
USA<br> <strong>Booth: 5052</strong>
<br>
<a href="https://www.ambirobotics.com/" target="_blank">ambirobotics.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="ANYPACK" data-stand="5016" data-country="CHINA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-93201-1661148028.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>ANYPACK</strong></h4>
CHINA<br> <strong>Booth: 5016</strong>
<br>
<a href="https://www.anypackmachinery.com/" target="_blank">anypackmachinery.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="ARCADEZIGN YJ" data-stand="3020" data-country="" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>ARCADEZIGN YJ</strong></h4>
<br> <strong>Booth: 3020</strong>
<br>
<a href="https://./" target="_blank">.</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="ARKA Industrial Automation" data-stand="2040" data-country="ROMANIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-89983-1660216746.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>ARKA Industrial Automation</strong></h4>
ROMANIA<br> <strong>Booth: 2040</strong>
<br>
<a href="https://www.arkarabot.com/" target="_blank">arkarabot.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Atos Postal Solutions" data-stand="4080" data-country="USA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-92485-1659078011.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Atos Postal Solutions</strong></h4>
USA<br> <strong>Booth: 4080</strong>
<br>
<a href="https://atos.net/postal" target="_blank">atos.net/postal</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Auctane" data-stand="4066" data-country="USA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-87949-1661290805.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Auctane</strong></h4>
USA<br> <strong>Booth: 4066</strong>
<br>
<a href="https://auctane.com/" target="_blank">auctane.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Auxivo AG" data-stand="4074" data-country="SWITZERLAND" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95551-1663231804.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Auxivo AG</strong></h4>
SWITZERLAND<br> <strong>Booth: 4074</strong>
<br>
<a href="https://http//www.auxivo.com/" target="_blank">http://www.auxivo.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Avery Dennison" data-stand="5050" data-country="UK" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-93229-1659545120.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Avery Dennison</strong></h4>
UK<br> <strong>Booth: 5050</strong>
<br>
<a href="https://printers.averydennison.com/en/home/industry-solutions.html" target="_blank">printers.averydennison.com/en/home/industry-solutions.html</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="BagPro / Lug Europa " data-stand="1048" data-country="FRANCE" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-89331-1662114485.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>BagPro / Lug Europa </strong></h4>
FRANCE<br> <strong>Booth: 1048</strong>
<br>
<a href="https://www.bagpro.de/" target="_blank">bagpro.de </a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="BeCode" data-stand="5002" data-country="UNITED ARAB EMIRATES" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95779-1664028036.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>BeCode</strong></h4>
UNITED ARAB EMIRATES<br> <strong>Booth: 5002</strong>
<br>
<a href="https://www.becode.com/" target="_blank">becode.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="BeCode" data-stand="5002" data-country="" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>BeCode</strong></h4>
<br> <strong>Booth: 5002</strong>
<br>
<a href="https://www.dropox.me%20/%20www.becode.com" target="_blank">dropox.me / www.becode.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Berrmak" data-stand="4036" data-country="TURKEY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88369-1658840156.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Berrmak</strong></h4>
TURKEY<br> <strong>Booth: 4036</strong>
<br>
<a href="https://berrmak.com/" target="_blank">berrmak.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Bettermile" data-stand="2050" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95797-1664875221.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Bettermile</strong></h4>
GERMANY<br> <strong>Booth: 2050</strong>
<br>
<a href="https://www.bettermile.com/" target="_blank">bettermile.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Beumer Group A/S" data-stand="3068" data-country="DENMARK" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88341-1660555112.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Beumer Group A/S</strong></h4>
DENMARK<br> <strong>Booth: 3068</strong>
<br>
<a href="https://www.beumergroup.com/i/courier-express-parcel/" target="_blank">beumergroup.com/i/courier-express-parcel</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="BIXOLON CO., LTD." data-stand="3020" data-country="KOREA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95153-1660888045.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>BIXOLON CO., LTD.</strong></h4>
KOREA<br> <strong>Booth: 3020</strong>
<br>
<a href="https://www.bixolon.com/" target="_blank">WWW.BIXOLON.COM</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Bizerba SE & Co. KG" data-stand="2060" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-84401-1659944797.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Bizerba SE & Co. KG</strong></h4>
GERMANY<br> <strong>Booth: 2060</strong>
<br>
<a href="https://www.bizerba.com/" target="_blank">bizerba.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Bloq.it" data-stand="2049" data-country="PORTUGAL" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-94965-1660056584.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Bloq.it</strong></h4>
PORTUGAL<br> <strong>Booth: 2049</strong>
<br>
<a href="https://www.bloq.it/" target="_blank">bloq.it</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Bluebird Inc" data-stand="2024" data-country="KOREA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88677-1662421950.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Bluebird Inc</strong></h4>
KOREA<br> <strong>Booth: 2024</strong>
<br>
<a href="https://www.bluebirdcorp.com/" target="_blank">bluebirdcorp.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="BlueCrest" data-stand="3044" data-country="USA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88383-1658739992.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>BlueCrest</strong></h4>
USA<br> <strong>Booth: 3044</strong>
<br>
<a href="https://www.bluecrestinc.com/" target="_blank">bluecrestinc.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Boldgates Resources Sdn. Bhd" data-stand="3024" data-country="MALAYSIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-87497-1658732463.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Boldgates Resources Sdn. Bhd</strong></h4>
MALAYSIA<br> <strong>Booth: 3024</strong>
<br>
<a href="https://www.boldgates.com/" target="_blank">boldgates.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="BOWE INTRALOGISTICS" data-stand="2022" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88333-1663849722.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>BOWE INTRALOGISTICS</strong></h4>
GERMANY<br> <strong>Booth: 2022</strong>
<br>
<a href="https://www.bowe.com/" target="_blank">bowe.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Budde Systems GmbH" data-stand="2054" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-91925-1660723239.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Budde Systems GmbH</strong></h4>
GERMANY<br> <strong>Booth: 2054</strong>
<br>
<a href="https://www.budde-systems.de/" target="_blank">budde-systems.de</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="C Solution SRL" data-stand="5034" data-country="ROMANIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-93233-1663758470.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>C Solution SRL</strong></h4>
ROMANIA<br> <strong>Booth: 5034</strong>
<br>
<a href="https://c-solution.biz/" target="_blank">c-solution.biz</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Canovate Elektronik Endüstri ve Tic. A.Ş." data-stand="4033" data-country="TURKEY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-94717-1661773964.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Canovate Elektronik Endüstri ve Tic. A.Ş.</strong></h4>
TURKEY<br> <strong>Booth: 4033</strong>
<br>
<a href="https://www.canovate.com/" target="_blank">canovate.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Cargo Cycling" data-stand="2094" data-country="" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>Cargo Cycling</strong></h4>
<br> <strong>Booth: 2094</strong>
<br>
<a href="https://www.parcelandpostexpo.com/de/exhibitor-list.php" target="_blank"><br></a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Cheetah Group" data-stand="4053" data-country="ISRAEL" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95113-1661758442.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Cheetah Group</strong></h4>
ISRAEL<br> <strong>Booth: 4053</strong>
<br>
<a href="https://www.chitadelivery.co.il/" target="_blank">chitadelivery.co.il</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="CiPiO" data-stand="1070" data-country="NETHERLANDS" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95311-1661890067.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>CiPiO</strong></h4>
NETHERLANDS<br> <strong>Booth: 1070</strong>
<br>
<a href="https://www.cipiobox.nl/" target="_blank">cipiobox.nl</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="ClearQuote Technologies Limited" data-stand="4082f" data-country="UK" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95063-1662522078.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>ClearQuote Technologies Limited</strong></h4>
UK<br> <strong>Booth: 4082f</strong>
<br>
<a href="https://www.clearquote.io/" target="_blank">clearquote.io</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="CMC Industries" data-stand="2034" data-country="ITALY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88393-1661150326.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>CMC Industries</strong></h4>
ITALY<br> <strong>Booth: 2034</strong>
<br>
<a href="https://www.cmcindustries.com/" target="_blank">cmcindustries.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Cognex Germany, Inc." data-stand="2036" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88969-1661956023.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Cognex Germany, Inc.</strong></h4>
GERMANY<br> <strong>Booth: 2036</strong>
<br>
<a href="https://www.cognex.com/" target="_blank">cognex.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Countercheck GmbH" data-stand="5028" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-93243-1663680800.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Countercheck GmbH</strong></h4>
GERMANY<br> <strong>Booth: 5028</strong>
<br>
<a href="https://www.countercheck.com/" target="_blank">countercheck.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Courier Manager Software" data-stand="4062" data-country="ROMANIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88415-1659688682.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Courier Manager Software</strong></h4>
ROMANIA<br> <strong>Booth: 4062</strong>
<br>
<a href="https://www.couriermanager.com/" target="_blank">couriermanager.com </a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Custom Spa" data-stand="1044" data-country="ITALY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-94913-1663146480.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Custom Spa</strong></h4>
ITALY<br> <strong>Booth: 1044</strong>
<br>
<a href="https://www.custom.biz/" target="_blank">custom.biz</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Customs Clearance Ltd" data-stand="4053" data-country="UK" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-91165-1664554328.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Customs Clearance Ltd</strong></h4>
UK<br> <strong>Booth: 4053</strong>
<br>
<a href="https://www.ccllhr.com/" target="_blank">ccllhr.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Damon Group" data-stand="3084" data-country="CHINA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-93195-1658912274.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Damon Group</strong></h4>
CHINA<br> <strong>Booth: 3084</strong>
<br>
<a href="https://www.damon-group.com/" target="_blank">damon-group.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Deister Electronic GmbH" data-stand="1064" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-94735-1659383620.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Deister Electronic GmbH</strong></h4>
GERMANY<br> <strong>Booth: 1064</strong>
<br>
<a href="https://www.deister.com/" target="_blank">deister.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Direct4.me " data-stand="2074" data-country="SLOVENIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88955-1659615376.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Direct4.me </strong></h4>
SLOVENIA<br> <strong>Booth: 2074</strong>
<br>
<a href="https://www.direct4.me/" target="_blank">direct4.me</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Directed Technologies " data-stand="5012" data-country="AUSTRALIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95493-1663021226.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Directed Technologies </strong></h4>
AUSTRALIA<br> <strong>Booth: 5012</strong>
<br>
<a href="https://www.directed.com.au/" target="_blank">directed.com.au</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="DispatchTrack" data-stand="2080" data-country="USA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-94915-1660552841.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>DispatchTrack</strong></h4>
USA<br> <strong>Booth: 2080</strong>
<br>
<a href="https://dispatchtrack.com/" target="_blank">dispatchtrack.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="EAE Solutions" data-stand="2044" data-country="NETHERLANDS" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88715-1662026056.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>EAE Solutions</strong></h4>
NETHERLANDS<br> <strong>Booth: 2044</strong>
<br>
<a href="https://www.eaesolutions.com/" target="_blank">eaesolutions.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Ehrhardt + Partner Group" data-stand="4060" data-country="" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>Ehrhardt + Partner Group</strong></h4>
<br> <strong>Booth: 4060</strong>
<br>
<a href="https://www.parcelandpostexpo.com/de/exhibitor-list.php" target="_blank"><br></a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Electronics and Telecommunications Research Institute (ETRI)" data-stand="3020" data-country="KOREA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88335-1660271285.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Electronics and Telecommunications Research Institute (ETRI)</strong></h4>
KOREA<br> <strong>Booth: 3020</strong>
<br>
<a href="https://www.etri.re.kr/" target="_blank">etri.re.kr</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Equinox Material Handling Equipment BV" data-stand="4046" data-country="NETHERLANDS" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88385-1659431314.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Equinox Material Handling Equipment BV</strong></h4>
NETHERLANDS<br> <strong>Booth: 4046</strong>
<br>
<a href="https://www.equinoxmhe.com/" target="_blank">equinoxmhe.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Erwin Renz Metallwarenfabrik GmbH & Co KG" data-stand="2082" data-country="GERMANY" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-86477-1659513186.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Erwin Renz Metallwarenfabrik GmbH & Co KG</strong></h4>
GERMANY<br> <strong>Booth: 2082</strong>
<br>
<a href="https://www.renzgroup.com/" target="_blank">renzgroup.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Escher Group" data-stand="4022" data-country="IRELAND" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88367-1661516590.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Escher Group</strong></h4>
IRELAND<br> <strong>Booth: 4022</strong>
<br>
<a href="https://www.eschergroup.com/" target="_blank">eschergroup.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="Eurora Solutions" data-stand="5026" data-country="ESTONIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/Estonia.png" style="margin-left: 15px">
</span>
<h4 style="margin-top: 0"><strong>Eurora Solutions</strong></h4>
ESTONIA<br> <strong>Booth: 5026</strong>
<br>
<a href="https://www.eurora.com/" target="_blank">eurora.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="EuroSort BV" data-stand="3002" data-country="NETHERLANDS" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88409-1659361719.jpg" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>EuroSort BV</strong></h4>
NETHERLANDS<br> <strong>Booth: 3002</strong>
<br>
<a href="http://www.eurosort.com/" target="_blank">eurosort.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="Falcon Autotech Pvt. Ltd." data-stand="4106" data-country="INDIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95459-1662697589.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>Falcon Autotech Pvt. Ltd.</strong></h4>
INDIA<br> <strong>Booth: 4106</strong>
<br>
<a href="https://www.falconautoonline.com/" target="_blank">falconautoonline.com</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="FarEye" data-stand="3038" data-country="UK" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88963-1662980417.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>FarEye</strong></h4>
UK<br> <strong>Booth: 3038</strong>
<br>
<a href="https://www.fareye.com/" target="_blank">fareye.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="FernhaySolutions LLC" data-stand="2020" data-country="USA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95495-1662991639.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>FernhaySolutions LLC</strong></h4>
USA<br> <strong>Booth: 2020</strong>
<br>
<a href="https://www.fernhay.com/" target="_blank">fernhay.com</a>
</div>
</div>
</div>
<div class="col-md-4 exhibitor-column" data-company="FHD Ukraine" data-stand="5010" data-country="UKRAINE" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-95565-1663787799.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>FHD Ukraine</strong></h4>
UKRAINE<br> <strong>Booth: 5010</strong>
<br>
<a href="https://www.fhd.com.ua/" target="_blank">fhd.com.ua</a>
</div>
</div>
</div>
<div class="clearfix"></div> <div class="col-md-4 exhibitor-column" data-company="FHM Conveyors and Motion06 Engineering GmbH" data-stand="4006" data-country="AUSTRIA" data-categories="">
<div class="card">
<div class="card-body">
<span class="pull-right text-right">
<img src="./PARCEL+POST EXPO 2022_files/PX22EX-88387-1660897262.png" style="margin-left: 15px; max-width: 85px; max-height: 85px;">
</span>
<h4 style="margin-top: 0"><strong>FHM Conveyors and Motion06 Engineering GmbH</strong></h4>
AUSTRIA<br> <strong>Booth: 4006</strong>
<br>
<a href="https://fmhconveyors.co.uk%2C%20https//www.motion06.at" target="_blank">fmhconveyors.co.uk, https://www.motion06.at</a>
</div>
</div>
</div>