{"id":987617646,"date":"2026-01-19T07:11:47","date_gmt":"2026-01-19T07:11:47","guid":{"rendered":"https:\/\/preprod.teamcdg.com\/express-delivery\/"},"modified":"2026-05-19T12:35:02","modified_gmt":"2026-05-19T12:35:02","slug":"express-delivery","status":"publish","type":"page","link":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/","title":{"rendered":"Express delivery"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; disabled_on=&#8221;off|off|off&#8221; module_class=&#8221;video-particle-section&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/02\/fret-express-1.jpg&#8221; background_enable_video_mp4=&#8221;off&#8221; positioning=&#8221;none&#8221; z_index=&#8221;1&#8243; custom_padding=&#8221;60px||60px||true|false&#8221; custom_padding_tablet=&#8221;153px||153px||true|false&#8221; custom_padding_phone=&#8221;50px||50px||true|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; module_alignment=&#8221;center&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;|0px|0px|0px|false|true&#8221; animation_direction=&#8221;left&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; custom_css_main_element=&#8221;margin:auto;&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_code disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; disabled=&#8221;on&#8221; global_colors_info=&#8221;{}&#8221;]<canvas id=\"particles-canvas\"><\/canvas><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->document.addEventListener(\"DOMContentLoaded\", function() {<!-- [et_pb_line_break_holder] -->  const canvas = document.getElementById(\"particles-canvas\");<!-- [et_pb_line_break_holder] -->  if (!canvas) return;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  const ctx = canvas.getContext(\"2d\");<!-- [et_pb_line_break_holder] -->  let particles = [];<!-- [et_pb_line_break_holder] -->  const particleCount = 80;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Ensure proper canvas sizing<!-- [et_pb_line_break_holder] -->  function resizeCanvas() {<!-- [et_pb_line_break_holder] -->    const section = document.querySelector(\".video-particle-section\");<!-- [et_pb_line_break_holder] -->    canvas.width = section.offsetWidth;<!-- [et_pb_line_break_holder] -->    canvas.height = section.offsetHeight;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  resizeCanvas();<!-- [et_pb_line_break_holder] -->  window.addEventListener(\"resize\", resizeCanvas);<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Particle class<!-- [et_pb_line_break_holder] -->  class Particle {<!-- [et_pb_line_break_holder] -->    constructor() {<!-- [et_pb_line_break_holder] -->      this.x = Math.random() * canvas.width;<!-- [et_pb_line_break_holder] -->      this.y = Math.random() * canvas.height;<!-- [et_pb_line_break_holder] -->      this.size = Math.random() * 3 + 1;<!-- [et_pb_line_break_holder] -->      this.speedX = Math.random() * 0.8 - 0.4;<!-- [et_pb_line_break_holder] -->      this.speedY = Math.random() * 0.8 - 0.4;<!-- [et_pb_line_break_holder] -->      this.color = \"rgba(255,255,255,0.8)\";<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->    update() {<!-- [et_pb_line_break_holder] -->      this.x += this.speedX;<!-- [et_pb_line_break_holder] -->      this.y += this.speedY;<!-- [et_pb_line_break_holder] -->      if (this.x < 0 || this.x > canvas.width) this.speedX *= -1;<!-- [et_pb_line_break_holder] -->      if (this.y < 0 || this.y > canvas.height) this.speedY *= -1;<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->    draw() {<!-- [et_pb_line_break_holder] -->      ctx.beginPath();<!-- [et_pb_line_break_holder] -->      ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);<!-- [et_pb_line_break_holder] -->      ctx.fillStyle = this.color;<!-- [et_pb_line_break_holder] -->      ctx.fill();<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Initialize particles<!-- [et_pb_line_break_holder] -->  function initParticles() {<!-- [et_pb_line_break_holder] -->    particles = [];<!-- [et_pb_line_break_holder] -->    for (let i = 0; i < particleCount; i++) {      particles.push(new Particle());    }  }  \/\/ Animate particles  function animate() {    ctx.clearRect(0, 0, canvas.width, canvas.height);    particles.forEach(p => {<!-- [et_pb_line_break_holder] -->      p.update();<!-- [et_pb_line_break_holder] -->      p.draw();<!-- [et_pb_line_break_holder] -->    });<!-- [et_pb_line_break_holder] -->    requestAnimationFrame(animate);<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  initParticles();<!-- [et_pb_line_break_holder] -->  animate();<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --><\/script><!-- [et_pb_line_break_holder] -->[\/et_pb_code][dnxte_multi_heading text_one=&#8221;Fret Express INTERNATIONAL&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700||on|||||&#8221; text_one_text_color=&#8221;#FFFFFF&#8221; text_one_font_size=&#8221;52px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;55px&#8221; text_two_line_height=&#8221;1.4em&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;1.4em&#8221; width=&#8221;100%&#8221; max_width=&#8221;1000px&#8221; custom_margin=&#8221;||18px|||&#8221; custom_padding=&#8221;|||80px|false|false&#8221; custom_padding_tablet=&#8221;|||80px|false|false&#8221; custom_padding_phone=&#8221;|30px||30px|false|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; hover_enabled=&#8221;0&#8243; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;30px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_two_font_size_tablet=&#8221;55px&#8221; text_two_font_size_phone=&#8221;30px&#8221; text_two_font_size_last_edited=&#8221;on|phone&#8221; text_three_font_size_tablet=&#8221;55px&#8221; text_three_font_size_phone=&#8221;30px&#8221; text_three_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(255,255,255,0.66)&#8221; custom_padding=&#8221;29px|50px|15px|50px|false|true&#8221; border_radii=&#8221;on|4px|4px|4px|4px&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Contact Us&#8221; heading_tag=&#8221;p&#8221; inline_multi_align=&#8221;center&#8221; text_one_margin=&#8221;||-1px||false|false&#8221; text_one_padding=&#8221;||0px||false|false&#8221; text_two_padding=&#8221;||0px||false|false&#8221; text_three_padding=&#8221;||0px||false|false&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_align=&#8221;center&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;0px&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;0.8em&#8221; custom_margin=&#8221;||-11px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;||-14px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; hover_enabled=&#8221;0&#8243; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;30px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;0.8em&#8221; text_one_line_height_phone=&#8221;1.1em&#8221; text_one_line_height_last_edited=&#8221;on|phone&#8221; text_two_font_size_tablet=&#8221;55px&#8221; text_two_font_size_phone=&#8221;30px&#8221; text_two_font_size_last_edited=&#8221;on|phone&#8221; text_three_font_size_tablet=&#8221;55px&#8221; text_three_font_size_phone=&#8221;30px&#8221; text_three_font_size_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;][\/dnxte_multi_heading][et_pb_code _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;||30px||false|false&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;]<div id=\"bitforms_4_987617646_1\" class=\"bit-form AI4 _frm-bg-b4\">\n      \n          <form novalidate id=\"form-bitforms_4_987617646_1\" class=\"AG4 AH4 _frm-b4\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"cLJTVyLglFjuLdFvB1KYy9jnaSYbtmADs2Obh1vSjp4=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"usqNyS90GZxs66x4GkWNClvxvuxa57H9GSNpcoW1B3Y=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_4\">\n                  <div class=\"btcd-fld-itm b4-2 \"><div class=\"J4 N4 O4 P4 b4-2-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-2-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-2-lbl bf-lbl \" for=\"b4-2-1\">SOCI\u00c9T\u00c9<span class=\"AE4 AF4 b4-2-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-2-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-2-inp-fld-wrp bf-inp-fld-wrp \">\n      <input id=\"b4-2-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-2-fld bf-fld \" type=\"text\" required autocomplete='name' name='text-b4-2' \/>\n      \n      \n    <\/div>\n    \n    \n    <div class=\"K4 L4 M4 b4-2-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-2-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-2-err-msg bf-err-msg  J4 b4-2-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-8 \"><div class=\"J4 N4 O4 P4 b4-8-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-8-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-8-lbl bf-lbl \" for=\"b4-8-1\">T\u00c9L\u00c9PHONE<span class=\"AE4 AF4 b4-8-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-8-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-8-inp-fld-wrp bf-inp-fld-wrp \">\n      <input id=\"b4-8-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-8-fld bf-fld \" type=\"text\" required name='text-4-8' \/>\n      \n      \n    <\/div>\n    \n    \n    <div class=\"K4 L4 M4 b4-8-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-8-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-8-err-msg bf-err-msg  J4 b4-8-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-7 \"><div class=\"J4 N4 O4 P4 b4-7-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-7-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-7-lbl bf-lbl \" for=\"b4-7-1\">EMAIL<span class=\"AE4 AF4 b4-7-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-7-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-7-inp-fld-wrp bf-inp-fld-wrp \">\n      <input id=\"b4-7-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-7-fld bf-fld \" type=\"email\" required autocomplete='email' name='email-b4-7' \/>\n      \n      \n    <\/div>\n    \n    \n    <div class=\"K4 L4 M4 b4-7-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-7-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-7-err-msg bf-err-msg  J4 b4-7-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-3 \"><div class=\"J4 N4 O4 P4 b4-3-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-3-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-3-lbl bf-lbl \" for=\"b4-3-1\">MESSAGE<span class=\"AE4 AF4 b4-3-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-3-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-3-inp-fld-wrp bf-inp-fld-wrp \">\n      <textarea id=\"b4-3-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 h4 i4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AP4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-3-fld bf-fld \" required name='textarea-b4-3'><\/textarea>\n      \n      \n    <\/div>\n    \n    <div class=\"K4 L4 M4 b4-3-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-3-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-3-err-msg bf-err-msg  J4 b4-3-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-1 \"><div class=\"J4 N4 O4 P4 b4-1-fld-wrp bf-fld-wrp \">\n  \n  <div class=\"b4-1-inp-wrp bf-inp-wrp \">\n    <div class=\"D4 b4-1-inp-fld-wrp bf-inp-fld-wrp \">\n        <button class=\"A4 B4 C4 D4 E4 F4 G4 H4 AJ4 AK4 AL4 AM4 AN4 AO4 Aj4 Ak4 Al4 b4-1-btn bf-btn  \" type=\"submit\" name='button-b4-1'>\n          \n          ENVOYER\n          \n          <span class=\"bf-spinner d-none\"><\/span>\n        <\/button>\n      <\/div>\n    \n    \n  <\/div>\n<\/div><\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_4_987617646_1'><\/div>\n          <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A4 D4 G4 AV4 AW4 AX4 msg-container-5 deactive scroll\">\n\t              <div data-contentid=\"bitforms_4_987617646_1\" data-msgid=\"5\" role=\"button\" class=\"A4 D4 G4 H4 AU4 msg-background-5 msg-backdrop\">\n\t                <div class=\"bf-msg-content H4 P4 T4 U4 AY4 Ap4 msg-content-5\">\n\t                  <button data-contentid=\"bitforms_4_987617646_1\" data-msgid=\"5\" class=\"C4 K4 N4 AQ4 AR4 AS4 Am4 An4 Ao4 close-5 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AT4 close-icn-5\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div>[\/et_pb_code][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||50px||false|false&#8221; custom_padding_tablet=&#8221;0px||0px||true|false&#8221; custom_padding_phone=&#8221;0px||0px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;1&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_padding=&#8221;0px|0px|0px|0px|false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dsm_advanced_tabs dsm_tabs_horizontal_alignment=&#8221;center&#8221; dsm_tabs_gap=&#8221;0px&#8221; dsm_tabs_bg_color=&#8221;#55668f&#8221; dsm_tabs_active_bg_color=&#8221;#808080&#8243; dsm_tabs_text_color=&#8221;#FFFFFF&#8221; dsm_tabs_active_text_color=&#8221;#FFFFFF&#8221; dsm_tabs_wrapper_width=&#8221;100%&#8221; dsm_tabs_wrapper_padding=&#8221;||||false|false&#8221; dsm_tabs_wrapper_alignment=&#8221;center&#8221; module_class=&#8221;mobile-tabs-carousel&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro|&#8211;et_global_body_font_weight|||||||&#8221; tab_title_line_height=&#8221;2.3em&#8221; content_title_text_color=&#8221;#000000&#8243; image_icon_custom_margin=&#8221;||||false|false&#8221; image_icon_custom_padding=&#8221;10px||10px||true|false&#8221; hover_enabled=&#8221;0&#8243; tab_title_font_size_tablet=&#8221;&#8221; tab_title_font_size_phone=&#8221;14px&#8221; tab_title_font_size_last_edited=&#8221;on|phone&#8221; tab_subtitle_font_size_tablet=&#8221;&#8221; tab_subtitle_font_size_phone=&#8221;14px&#8221; tab_subtitle_font_size_last_edited=&#8221;on|phone&#8221; content_title_font_size_tablet=&#8221;&#8221; content_title_font_size_phone=&#8221;24px&#8221; content_title_font_size_last_edited=&#8221;on|phone&#8221; tab_content_text_font_size_tablet=&#8221;&#8221; tab_content_text_font_size_phone=&#8221;14px&#8221; tab_content_text_font_size_last_edited=&#8221;on|phone&#8221; custom_css_free_form=&#8221;\/* Desktop &#8211; Equal width tabs *\/||.dsm-tabs{||display:flex;||}||||.dsm-tab{||flex:1;||text-align:center;||}||||@media (max-width:767px){||||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper{||display:flex !important;||flex-wrap:nowrap !important;||overflow-x:auto !important;||justify-content:flex-start !important;||margin-left:0 !important;||padding-left:0 !important;||}||||\/* hide scrollbar *\/||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper::-webkit-scrollbar{||display:none;||}||||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper .dsm-tab{||flex:0 0 50% !important;||margin:0 !important;||}||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper{||padding-bottom:12px !important;||}||  .mobile-tabs-carousel .dsm-advanced-tabs-wrapper{||touch-action: pan-x;||}||}&#8221; border_width_all_dsm_tabs_border=&#8221;1px&#8221; border_color_all_dsm_tabs_border=&#8221;#FFFFFF&#8221; border_width_all_dsm_content_border=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Introduction&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/Introduction.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612172&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243; sticky_enabled=&#8221;0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Our Solutions&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/Solutions-Transport.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612181&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Process&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/Processus.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612191&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Strengths&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/Atouts.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612203&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Sectors&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/Secteurs.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612211&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Geographic&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/Geographie.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612218&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;FAQ&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2026\/03\/FAQ.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612227&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][\/dsm_advanced_tabs][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><h1 class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Fret Express INTERNATIONAL<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_1\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><p class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Contact Us<\/span><\/span><\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div id=\"bitforms_4_987617646_2\" class=\"bit-form AI4 _frm-bg-b4\">\n      \n          <form novalidate id=\"form-bitforms_4_987617646_2\" class=\"AG4 AH4 _frm-b4\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"llaqrx4X2guEh1rPjvw3HR5bFkBzMqVwnEJqtY1gSh0=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"kB4pZ7g90ij1GriOW6mNy163pO6IdAO4FFb8Uvoqv78=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_4\">\n                  <div class=\"btcd-fld-itm b4-2 \"><div class=\"J4 N4 O4 P4 b4-2-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-2-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-2-lbl bf-lbl \" for=\"b4-2-2\">SOCI\u00c9T\u00c9<span class=\"AE4 AF4 b4-2-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-2-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-2-inp-fld-wrp bf-inp-fld-wrp \">\n      <input id=\"b4-2-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-2-fld bf-fld \" type=\"text\" required autocomplete='name' name='text-b4-2' \/>\n      \n      \n    <\/div>\n    \n    \n    <div class=\"K4 L4 M4 b4-2-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-2-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-2-err-msg bf-err-msg  J4 b4-2-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-8 \"><div class=\"J4 N4 O4 P4 b4-8-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-8-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-8-lbl bf-lbl \" for=\"b4-8-2\">T\u00c9L\u00c9PHONE<span class=\"AE4 AF4 b4-8-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-8-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-8-inp-fld-wrp bf-inp-fld-wrp \">\n      <input id=\"b4-8-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-8-fld bf-fld \" type=\"text\" required name='text-4-8' \/>\n      \n      \n    <\/div>\n    \n    \n    <div class=\"K4 L4 M4 b4-8-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-8-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-8-err-msg bf-err-msg  J4 b4-8-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-7 \"><div class=\"J4 N4 O4 P4 b4-7-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-7-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-7-lbl bf-lbl \" for=\"b4-7-2\">EMAIL<span class=\"AE4 AF4 b4-7-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-7-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-7-inp-fld-wrp bf-inp-fld-wrp \">\n      <input id=\"b4-7-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-7-fld bf-fld \" type=\"email\" required autocomplete='email' name='email-b4-7' \/>\n      \n      \n    <\/div>\n    \n    \n    <div class=\"K4 L4 M4 b4-7-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-7-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-7-err-msg bf-err-msg  J4 b4-7-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-3 \"><div class=\"J4 N4 O4 P4 b4-3-fld-wrp bf-fld-wrp \">\n  <div class=\"H4 z4 AD4 b4-3-lbl-wrp bf-lbl-wrp \"><label class=\"A4 D4 H4 z4 AA4 AB4 AC4 b4-3-lbl bf-lbl \" for=\"b4-3-2\">MESSAGE<span class=\"AE4 AF4 b4-3-req-smbl bf-req-smbl \">*<\/span><\/label><\/div>\n  <div class=\"b4-3-inp-wrp bf-inp-wrp \">\n    <div class=\"P4 y4 b4-3-inp-fld-wrp bf-inp-fld-wrp \">\n      <textarea id=\"b4-3-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 h4 i4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AP4 AZ4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 b4-3-fld bf-fld \" required name='textarea-b4-3'><\/textarea>\n      \n      \n    <\/div>\n    \n    <div class=\"K4 L4 M4 b4-3-err-wrp bf-err-wrp\" style=\"opacity: 0 !important;height: 0px !important\">\n  <div class=\"I4 b4-3-err-inner bf-err-inner\">\n    \n      \n      <div class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4 b4-3-err-msg bf-err-msg  J4 b4-3-err-txt bf-err-txt \"><\/div>\n      \n    \n  <\/div>\n<\/div>\n  <\/div>\n<\/div><\/div><div class=\"btcd-fld-itm b4-1 \"><div class=\"J4 N4 O4 P4 b4-1-fld-wrp bf-fld-wrp \">\n  \n  <div class=\"b4-1-inp-wrp bf-inp-wrp \">\n    <div class=\"D4 b4-1-inp-fld-wrp bf-inp-fld-wrp \">\n        <button class=\"A4 B4 C4 D4 E4 F4 G4 H4 AJ4 AK4 AL4 AM4 AN4 AO4 Aj4 Ak4 Al4 b4-1-btn bf-btn  \" type=\"submit\" name='button-b4-1'>\n          \n          ENVOYER\n          \n          <span class=\"bf-spinner d-none\"><\/span>\n        <\/button>\n      <\/div>\n    \n    \n  <\/div>\n<\/div><\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_4_987617646_2'><\/div>\n          <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A4 D4 G4 AV4 AW4 AX4 msg-container-5 deactive scroll\">\n\t              <div data-contentid=\"bitforms_4_987617646_2\" data-msgid=\"5\" role=\"button\" class=\"A4 D4 G4 H4 AU4 msg-background-5 msg-backdrop\">\n\t                <div class=\"bf-msg-content H4 P4 T4 U4 AY4 Ap4 msg-content-5\">\n\t                  <button data-contentid=\"bitforms_4_987617646_2\" data-msgid=\"5\" class=\"C4 K4 N4 AQ4 AR4 AS4 Am4 An4 Ao4 close-5 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AT4 close-icn-5\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div><div class=\"et_pb_with_border et_pb_module dsm_advanced_tabs dsm_advanced_tabs_0 mobile-tabs-carousel\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"dsm-advanced-tabs-container\" data-trigger=\"click\" data-animation=\"none\" data-inner_animation=\"none\" data-deep_link=\"off\" data-image_lightbox=\"off\" data-auto_scroll_mobile=\"off\" data-anchor_link=\"off\">\n\t\t\t\t    <div class=\"dsm-advanced-tabs-wrapper\" role=\"tablist\"><\/div>\n\t\t\t\t <div class=\"dsm-advanced-tabs-content-wrapper\">\n\t\t\t\t    \n\t\t\t\t <\/div>\n\t\t     <\/div>\n\t\t    \n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_0\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_1\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_2\">\n\t\t\t\t<\/div>\n\t\t\t<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-987617646","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Express delivery avec Team International - Fret maritime, a\u00e9rien, routier<\/title>\n<meta name=\"description\" content=\"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier. Transitaire international.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier\" \/>\n<meta property=\"og:description\" content=\"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier. Transitaire international.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-19T12:35:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"793\" \/>\n\t<meta property=\"og:image:height\" content=\"288\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/express-delivery\\\/\",\"url\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/express-delivery\\\/\",\"name\":\"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/#website\"},\"datePublished\":\"2026-01-19T07:11:47+00:00\",\"dateModified\":\"2026-05-19T12:35:02+00:00\",\"description\":\"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier. Transitaire international.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/express-delivery\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/express-delivery\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/express-delivery\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Express delivery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/#website\",\"url\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/\",\"name\":\"Team International\",\"description\":\"Team CDG\",\"publisher\":{\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/#organization\"},\"alternateName\":\"Team CDG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/#organization\",\"name\":\"Team International\",\"alternateName\":\"Team CDG\",\"url\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/preprod.teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"contentUrl\":\"https:\\\/\\\/preprod.teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"width\":793,\"height\":288,\"caption\":\"Team International\"},\"image\":{\"@id\":\"https:\\\/\\\/preprod.teamcdg.com\\\/gb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier","description":"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier. Transitaire international.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/","og_locale":"en_GB","og_type":"article","og_title":"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier","og_description":"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier. Transitaire international.","og_url":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/","og_site_name":"Team International CDG","article_modified_time":"2026-05-19T12:35:02+00:00","og_image":[{"width":793,"height":288,"url":"https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/","url":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/","name":"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier","isPartOf":{"@id":"https:\/\/preprod.teamcdg.com\/gb\/#website"},"datePublished":"2026-01-19T07:11:47+00:00","dateModified":"2026-05-19T12:35:02+00:00","description":"Express delivery avec Team International - Fret maritime, a\u00e9rien, routier. Transitaire international.","breadcrumb":{"@id":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/preprod.teamcdg.com\/gb\/express-delivery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/preprod.teamcdg.com\/gb\/"},{"@type":"ListItem","position":2,"name":"Express delivery"}]},{"@type":"WebSite","@id":"https:\/\/preprod.teamcdg.com\/gb\/#website","url":"https:\/\/preprod.teamcdg.com\/gb\/","name":"Team International","description":"Team CDG","publisher":{"@id":"https:\/\/preprod.teamcdg.com\/gb\/#organization"},"alternateName":"Team CDG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/preprod.teamcdg.com\/gb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/preprod.teamcdg.com\/gb\/#organization","name":"Team International","alternateName":"Team CDG","url":"https:\/\/preprod.teamcdg.com\/gb\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/preprod.teamcdg.com\/gb\/#\/schema\/logo\/image\/","url":"https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","contentUrl":"https:\/\/preprod.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","width":793,"height":288,"caption":"Team International"},"image":{"@id":"https:\/\/preprod.teamcdg.com\/gb\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/pages\/987617646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/comments?post=987617646"}],"version-history":[{"count":3,"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/pages\/987617646\/revisions"}],"predecessor-version":[{"id":987617650,"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/pages\/987617646\/revisions\/987617650"}],"wp:attachment":[{"href":"https:\/\/preprod.teamcdg.com\/gb\/wp-json\/wp\/v2\/media?parent=987617646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}