{"id":987615308,"date":"2025-12-16T08:59:12","date_gmt":"2025-12-16T08:59:12","guid":{"rendered":"https:\/\/teamcdg.com\/home\/"},"modified":"2026-04-09T15:32:05","modified_gmt":"2026-04-09T15:32:05","slug":"home","status":"publish","type":"page","link":"https:\/\/teamcdg.com\/en\/","title":{"rendered":"Home Team International"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; module_class=&#8221;video-particle-section&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/02\/amerique-latine.jpg&#8221; background_enable_video_mp4=&#8221;off&#8221; background_video_width=&#8221;100%&#8221; background_video_height=&#8221;100%&#8221; positioning=&#8221;none&#8221; z_index=&#8221;1&#8243; custom_padding=&#8221;120px||120px||true|false&#8221; custom_padding_tablet=&#8221;153px||153px||true|false&#8221; custom_padding_phone=&#8221;50px||50px||true|false&#8221; locked=&#8221;off&#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.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#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;Team International: Your Expert in International Transport and Logistics&#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_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;1200px&#8221; custom_margin=&#8221;||0px||false|false&#8221; custom_padding=&#8221;||0px|0px|false|false&#8221; custom_padding_tablet=&#8221;|||0px|false|false&#8221; custom_padding_phone=&#8221;|0px||0px|false|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; text_one_font_size_tablet=&#8221;45px&#8221; text_one_font_size_phone=&#8221;38px&#8221; text_one_font_size_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#FFFFFF&#8221; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.8em&#8221; custom_margin=&#8221;0px|||0px|false|false&#8221; custom_margin_tablet=&#8221;0px||18px||false|false&#8221; custom_margin_phone=&#8221;0px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; hover_enabled=&#8221;0&#8243; text_font_size_tablet=&#8221;17px&#8221; text_font_size_phone=&#8221;16px&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; custom_css_free_form=&#8221;selector p{||  color:#FFFFFF !important;||}&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><b>Team INTERNATIONAL<\/b><span style=\"font-weight: 400;\">, a family-owned company specializing in <\/span><b>international transport<\/b><span style=\"font-weight: 400;\"> and <\/span><b>global logistics<\/b><span style=\"font-weight: 400;\">, has been assisting professionals with their <\/span><b>import-export<\/b><span style=\"font-weight: 400;\"> operations worldwide for over 40 years.<\/span><\/p>\n<p>&nbsp;<\/p>\n<p>[\/et_pb_text][\/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; custom_padding_tablet=&#8221;29px|50px|15px|50px|false|true&#8221; custom_padding_phone=&#8221;29px|18px|15px|18px|false|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; border_radii=&#8221;on|4px|4px|4px|4px&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Request a Quote&#8221; heading_tag=&#8221;h2&#8243; 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; inline_multi_align_tablet=&#8221;center&#8221; inline_multi_align_phone=&#8221;left&#8221; inline_multi_align_last_edited=&#8221;on|phone&#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; max_width=&#8221;100%&#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; custom_padding_tablet=&#8221;0px||0px||true|false&#8221; custom_padding_phone=&#8221;|0px||0px|true|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; 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;][\/dnxte_multi_heading][wpforms_selector form_id=&#8221;987615331&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][\/wpforms_selector][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_padding=&#8221;||60px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;95%&#8221; width_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||||false|false&#8221; custom_padding_tablet=&#8221;0px||||false|false&#8221; custom_padding_phone=&#8221;0px||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Our Sectors of Activity: Multi-Industry Expertise&#8221; heading_tag=&#8221;h2&#8243; 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;36px&#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;||0px||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; 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;][\/dnxte_multi_heading][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_3,1_3,1_3&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; custom_padding=&#8221;||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;off|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/7.png&#8221; alt=&#8221;Event Equipment Transport &#8221; title_text=&#8221;Event Equipment Transport &#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Montserrat|600|||||||&#8221; header_3_font=&#8221;Montserrat|600|||||||&#8221; header_3_text_align=&#8221;center&#8221; custom_padding=&#8221;15px|15px|15px|15px|true|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h3>Event Equipment &amp; Sports Gear<\/h3>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;off|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/white-glove-art-services-1.jpg&#8221; title_text=&#8221;white-glove-art-services (1)&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_3_font=&#8221;Montserrat|600|||||||&#8221; header_3_text_align=&#8221;center&#8221; custom_padding=&#8221;15px|15px|15px|15px|true|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h3>Luxury &amp; Artworks<\/h3>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;off|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/4.png&#8221; alt=&#8221;Finished Vehicle Transport&#8221; title_text=&#8221;Finished Vehicle Transport&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_3_font=&#8221;Montserrat|600|||||||&#8221; header_3_text_align=&#8221;center&#8221; custom_padding=&#8221;15px|15px|15px|15px|true|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h3>Finished Vehicles<\/h3>\n<h3>(New &amp; Used)<\/h3>\n<p>&nbsp;<\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_3,1_3,1_3&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; custom_padding=&#8221;||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;off|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/3.png&#8221; alt=&#8221;Aerospace Transport&#8221; title_text=&#8221;Aerospace Transport&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_3_font=&#8221;Montserrat|600|||||||&#8221; header_3_text_align=&#8221;center&#8221; custom_padding=&#8221;15px|15px|15px|15px|true|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h3>High Technology<\/h3>\n<h3>&amp; Aerospace<\/h3>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;off|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/6.png&#8221; alt=&#8221;Textile Transport&#8221; title_text=&#8221;Textile Transport&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_3_font=&#8221;Montserrat|600|||||||&#8221; header_3_text_align=&#8221;center&#8221; custom_padding=&#8221;15px|15px|15px|15px|true|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h3>Textile<\/h3>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;off|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/1.png&#8221; alt=&#8221;Pharmaceutical Transport&#8221; title_text=&#8221;Pharmaceutical Transport&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_3_font=&#8221;Montserrat|600|||||||&#8221; header_3_text_align=&#8221;center&#8221; custom_padding=&#8221;15px|15px|15px|15px|true|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h3>Pharmaceutical<\/h3>\n<p>[\/et_pb_text][\/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; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;60px||60px||false|false&#8221; custom_padding_tablet=&#8221;60px||60px||false|false&#8221; custom_padding_phone=&#8221;10px||60px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;95%&#8221; width_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||||false|false&#8221; custom_padding_tablet=&#8221;0px||||false|false&#8221; custom_padding_phone=&#8221;0px||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;There are solutions for international transport in multiple modes&#8221; heading_tag=&#8221;h2&#8243; 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;||0px||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; 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;1.2em&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;16px&#8221; text_line_height=&#8221;1.8em&#8221; custom_margin=&#8221;0px||18px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;30px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;|11px||11px|false|true&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Our expertise covers all <\/span><a href=\"https:\/\/teamcdg.com\/fr\/fret-maritime\/\"><span style=\"font-weight: 400;\">modes of <\/span><b>freight transport<\/b><span style=\"font-weight: 400;\">: sea<\/span><\/a><span style=\"font-weight: 400;\">, air, road, and multimodal, combined with comprehensive <\/span><b>logistics<\/b><span style=\"font-weight: 400;\"> and <\/span><b>customs services<\/b><span style=\"font-weight: 400;\">.<\/span> <\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_4,1_4,1_4,1_4&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; custom_padding=&#8221;||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; link_option_url=&#8221;https:\/\/teamcdg.com\/en\/ocean-freight\/&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Untitled-design.png&#8221; alt=&#8221;sea freight&#8221; title_text=&#8221;sea freight&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][dnxte_multi_heading text_one=&#8221;Sea freight&#8221; heading_tag=&#8221;span&#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|600|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;20px&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;0px||10px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px|11px|0px|11px|true|true&#8221; link_option_url=&#8221;https:\/\/teamcdg.com\/fret-maritime\/&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;20px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; link_option_url=&#8221;https:\/\/teamcdg.com\/en\/air-freight\/&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/2.jpg&#8221; title_text=&#8221;2&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][dnxte_multi_heading text_one=&#8221;Air freight&#8221; heading_tag=&#8221;span&#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|600|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;20px&#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;||24px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;0px||10px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px|11px|0px|11px|true|true&#8221; link_option_url=&#8221;https:\/\/teamcdg.com\/fret-aerien\/&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;20px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/5.png&#8221; alt=&#8221;Road Freight&#8221; title_text=&#8221;Road Freight&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][dnxte_multi_heading text_one=&#8221;Road freight&#8221; heading_tag=&#8221;span&#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|600|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;20px&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;0px||10px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px|11px|0px|11px|true|true&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;20px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#FFFFFF&#8221; custom_padding=&#8221;|0px||0px|false|true&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/2.png&#8221; alt=&#8221;Multimodal Freight&#8221; title_text=&#8221;Multimodal Freight&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][dnxte_multi_heading text_one=&#8221;Multimodal freight&#8221; heading_tag=&#8221;span&#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|600|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;20px&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;0px||10px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px|11px|0px|11px|true|true&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;20px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][\/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; background_color=&#8221;#FFFFFF&#8221; custom_padding=&#8221;60px||60px||true|false&#8221; custom_padding_tablet=&#8221;60px||60px||true|false&#8221; custom_padding_phone=&#8221;10px||10px||true|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;95%&#8221; width_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||||false|false&#8221; custom_padding_tablet=&#8221;0px||||false|false&#8221; custom_padding_phone=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Why choose Team INTERNATIONAL?&#8221; heading_tag=&#8221;h2&#8243; 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;||0px||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; 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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;17px&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Responsiveness, reliability, and personalized support characterize our approach, making Team INTERNATIONAL the preferred partner for the pharmaceutical, luxury, agri-food, automotive, and technology sectors for their <\/span><b>international<\/b><span style=\"font-weight: 400;\"> flows.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_4,1_4,1_4,1_4&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; custom_margin=&#8221;0px||0px||false|false&#8221; custom_margin_tablet=&#8221;0px||80px||false|false&#8221; custom_margin_phone=&#8221;0px||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|tablet&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;22px|21px|22px|21px|true|true&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-15px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/handshake-1-1.png&#8221; title_text=&#8221;handshake (1) (1)&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; height=&#8221;64px&#8221; custom_margin=&#8221;0px||23px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font_size=&#8221;22px&#8221; header_3_font=&#8221;Sora|700|||||||&#8221; header_3_text_align=&#8221;center&#8221; header_3_text_color=&#8221;#2b3e4b&#8221; header_3_font_size=&#8221;28px&#8221; header_3_line_height=&#8221;1.4em&#8221; header_5_font=&#8221;Montserrat|700|||||||&#8221; header_5_text_align=&#8221;center&#8221; header_5_text_color=&#8221;#000000&#8243; header_5_font_size=&#8221;19px&#8221; header_5_line_height=&#8221;1.3em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><strong data-renderer-mark=\"true\">A Family Business with International Expertise<\/strong><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#222222&#8243; text_font_size=&#8221;15px&#8221; text_line_height=&#8221;1.6em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||17px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>We combine strong family values with recognized expertise in international transport and logistics. Our priority: to offer reliable, fast, and personalized solutions for every shipment, anywhere in the world. <\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;22px|21px|22px|21px|true|true&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-15px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/handshake-1-2.png&#8221; title_text=&#8221;handshake (1) (2)&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; height=&#8221;64px&#8221; custom_margin=&#8221;0px||23px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font_size=&#8221;22px&#8221; header_3_font=&#8221;Sora|700|||||||&#8221; header_3_text_align=&#8221;center&#8221; header_3_text_color=&#8221;#2b3e4b&#8221; header_3_line_height=&#8221;1.4em&#8221; header_5_font=&#8221;Montserrat|700|||||||&#8221; header_5_text_align=&#8221;center&#8221; header_5_text_color=&#8221;#000000&#8243; header_5_font_size=&#8221;19px&#8221; header_5_line_height=&#8221;1.3em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><strong data-renderer-mark=\"true\">A Responsive and Human-Scale Team<\/strong><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#222222&#8243; text_font_size=&#8221;15px&#8221; text_line_height=&#8221;1.6em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||17px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>Our agile organization allows us to make quick decisions and provide personalized follow-up for each case. At TEAM INTERNATIONAL, every client benefits from a dedicated contact person and direct support. <\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;22px|21px|22px|21px|true|true&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-15px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/handshake-1-3.png&#8221; title_text=&#8221;handshake (1) (3)&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; height=&#8221;64px&#8221; custom_margin=&#8221;0px||23px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font_size=&#8221;22px&#8221; header_3_font=&#8221;Sora|700|||||||&#8221; header_3_text_align=&#8221;center&#8221; header_3_text_color=&#8221;#2b3e4b&#8221; header_3_font_size=&#8221;28px&#8221; header_3_line_height=&#8221;1.4em&#8221; header_5_font=&#8221;Montserrat|700|||||||&#8221; header_5_text_align=&#8221;center&#8221; header_5_text_color=&#8221;#000000&#8243; header_5_font_size=&#8221;19px&#8221; header_5_line_height=&#8221;1.3em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; header_3_font_size_tablet=&#8221;28px&#8221; header_3_font_size_phone=&#8221;28px&#8221; header_3_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><strong data-renderer-mark=\"true\">A Certified Global Network<\/strong><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#222222&#8243; text_font_size=&#8221;15px&#8221; text_line_height=&#8221;1.6em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||17px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>Thanks to our international network of partners, we organize your transport to all destinations, guaranteeing compliance, security, and efficiency.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;22px|21px|22px|21px|true|true&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-15px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/handshake-1-4.png&#8221; title_text=&#8221;handshake (1) (4)&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; height=&#8221;64px&#8221; custom_margin=&#8221;0px||23px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font_size=&#8221;22px&#8221; header_3_font=&#8221;Sora|700|||||||&#8221; header_3_text_align=&#8221;center&#8221; header_3_text_color=&#8221;#2b3e4b&#8221; header_5_font=&#8221;Montserrat|700|||||||&#8221; header_5_text_align=&#8221;center&#8221; header_5_text_color=&#8221;#000000&#8243; header_5_font_size=&#8221;19px&#8221; header_5_line_height=&#8221;1.3em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><strong data-renderer-mark=\"true\">Solutions Adapted to Each Sector<\/strong><\/p>\n<p>[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#222222&#8243; text_font_size=&#8221;15px&#8221; text_line_height=&#8221;1.6em&#8221; text_orientation=&#8221;center&#8221; custom_margin=&#8221;0px||17px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>Our specialists understand the specific logistical requirements of each industry: pharmaceutical, luxury, industrial, agri-food, or sensitive products. We adapt each solution to the constraints of your activity. <\/span><\/p>\n<p>[\/et_pb_text][\/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.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding=&#8221;60px||60px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_2,1_2&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/Groupe-Team-3-1.jpg&#8221; title_text=&#8221;Groupe Team (3) (1)&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;right&#8221; custom_css_main_element=&#8221;margin:auto;&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;A Family Business with an International Scope&#8221; heading_tag=&#8221;h2&#8243; inline_multi_align=&#8221;left&#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;||0px||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; 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;1.3em&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.8em&#8221; custom_margin=&#8221;0px||18px||false|false&#8221; custom_margin_tablet=&#8221;0px||18px||false|false&#8221; custom_margin_phone=&#8221;0px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; text_font_size_tablet=&#8221;18px&#8221; text_font_size_phone=&#8221;17px&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Team INTERNATIONAL combines the values of a <\/span><b>family business<\/b><span style=\"font-weight: 400;\"> (responsiveness, proximity, commitment) with the expertise and network of a certified <\/span><b>international player<\/b><span style=\"font-weight: 400;\">. Our human-scale structure allows for quick decision-making and personalized follow-up for each case, while <\/span><b>our IATA expertise <\/b><span style=\"font-weight: 400;\">and our membership in international networks such as WCA, JCtrans, and GLA<\/span> <span style=\"font-weight: 400;\">give us access to the best global solutions.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This dual dimension translates concretely into <\/span><b><i>dedicated contacts<\/i><\/b><span style=\"font-weight: 400;\"> who understand your sectoral constraints and a network of reliable partners across all continents. Each client benefits from tailor-made support, from the feasibility study to the <\/span><b>final delivery<\/b><span style=\"font-weight: 400;\">, with total transparency on costs, deadlines, and terms.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Furthermore, our <\/span><b>family roots<\/b><span style=\"font-weight: 400;\"> guarantee relational stability and a culture of excellence passed down since our inception. This continuity is reflected in our proven processes, our in-depth knowledge of international regulations, and our ability to anticipate developments in the <\/span><b>international freight<\/b><span style=\"font-weight: 400;\"> market.<\/span><\/p>\n<p>[\/et_pb_text][\/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; disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; custom_padding_tablet=&#8221;0px||0px||true|false&#8221; custom_padding_phone=&#8221;10px||0px||false|false&#8221; disabled=&#8221;on&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_2,1_2&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;1&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221; max_width=&#8221;100%&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;51px|35px|51px|35px|true|true&#8221; custom_padding_tablet=&#8221;51px|35px|51px|35px|true|true&#8221; custom_padding_phone=&#8221;26px|19px|26px|19px|true|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Expertise Sectorielle et Solutions Adapt\u00e9es \u00e0 Vos Produits&#8221; heading_tag=&#8221;h2&#8243; inline_multi_align=&#8221;left&#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;||0px||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; text_one_font_size_tablet=&#8221;39px&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.8em&#8221; custom_margin=&#8221;14px||15px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;46px||30px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">On the other hand, Team INTERNATIONAL masters the logistical specificities of each sector. For the <\/span><b>pharmaceutical industry<\/b><span style=\"font-weight: 400;\">, we guarantee the cold chain and compliance with sterility standards. The <\/span><b>luxury and art sectors<\/b><span style=\"font-weight: 400;\"> benefit from our white-glove service, custom packaging, and enhanced ad valorem insurance.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The <\/span><b>agri-food sector<\/b><span style=\"font-weight: 400;\"> benefits from our multi-zone temperature-controlled solutions, special glass bottle protection, and our regulatory health expertise. <\/span><b>High-tech and aerospace industries<\/b><span style=\"font-weight: 400;\"> rely on our reinforced bracing protocols, anti-vibration protection, and sensitive component management.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">That being said, our experience also covers <\/span><b>finished vehicles<\/b><span style=\"font-weight: 400;\"> (professional lashing, ATA carnet <\/span><b>especially for seasonal shipments<\/b><span style=\"font-weight: 400;\">), <\/span><b>dangerous goods<\/b><span style=\"font-weight: 400;\"> (ADR\/IMDG\/IATA certification), <\/span><b>oversized freight<\/b><span style=\"font-weight: 400;\"> (technical studies, exceptional convoys), and <\/span><b>events<\/b><span style=\"font-weight: 400;\"> (temporary ATA carnet, coordinated logistics). This sectoral versatility makes <\/span><a href=\"https:\/\/teamcdg.com\/fr\/\"><b>Team INTERNATIONAL <\/b><span style=\"font-weight: 400;\">a unique partner<\/span><\/a><span style=\"font-weight: 400;\"> capable of simultaneously managing highly diversified flows.<\/span><\/p>\n<p>[\/et_pb_text][dnxte_button button_text=&#8221;Nous contacter&#8221; button_link=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijk4NzYxMDkwOCJ9fQ==@&#8221; dnxt_button_alignment=&#8221;left&#8221; btn_show_hide=&#8221;off&#8221; dnxt_hover_bg=&#8221;dnxt-hover-shutter-out-horizontal&#8221; dnxt_shutter_out_bg_color=&#8221;#e63c28&#8243; dnxt_hover_bg_color=&#8221;#55668f&#8221; disabled_on=&#8221;off|off|off&#8221; _builder_version=&#8221;4.27.6&#8243; _dynamic_attributes=&#8221;button_link&#8221; _module_preset=&#8221;default&#8221; btn_fonts_font=&#8221;Source Sans Pro|600||on|||||&#8221; btn_fonts_text_color=&#8221;#ffffff&#8221; btn_fonts_font_size=&#8221;18px&#8221; custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;7px|22px|7px|22px|true|true&#8221; border_radii_btn_border=&#8221;on|4px|4px|4px|4px&#8221; border_width_all_btn_border=&#8221;0px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/dnxte_button][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/30725-1.jpg&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_divider color=&#8221;RGBA(255,255,255,0)&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding_tablet=&#8221;190px||190px||false|false&#8221; custom_padding_phone=&#8221;180px||180px||true|false&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_divider][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; disabled=&#8221;on&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_2,1_2&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; custom_css_main_element=&#8221;margin:Auto;&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_image src=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/11\/pexels-samuel-wolfl-628277-1427541.jpg&#8221; title_text=&#8221;pexels-samuel-wolfl-628277-1427541&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; module_alignment=&#8221;right&#8221; custom_css_main_element=&#8221;-webkit-mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  mask-image: linear-gradient(45deg,#000 25%,rgba(0,0,0,.2) 50%,#000 75%);||  -webkit-mask-size: 800%;||  mask-size: 800%;||  -webkit-mask-position: 0;||  mask-position: 0;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; global_colors_info=&#8221;{}&#8221; custom_css_main_element_last_edited=&#8221;off|desktop&#8221; custom_css_main_element__hover_enabled=&#8221;on|hover&#8221; custom_css_main_element__hover=&#8221;||transition: mask-position 2s ease,-webkit-mask-position 2s ease;||  -webkit-mask-position: 120%;||  mask-position: 120%;||  opacity: 1;&#8221;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;right&#8221; custom_css_main_element=&#8221;margin:auto;&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Transparent Process &#038; End-to-End Support&#8221; heading_tag=&#8221;span&#8221; inline_multi_align=&#8221;left&#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.4&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|600|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;28px&#8221; text_one_line_height=&#8221;0.8em&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;0px||-9px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;20px&#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; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.8em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;46px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p>Our methodology is designed to provide clarity and control at every stage of your shipment. From initial consultation to final delivery, we manage each step with precision, transparency, and accountability. <\/p>\n<p><span style=\"color: #000000;\"><strong>Our process is structured around four key pillars:<\/strong><\/span><\/p>\n<p>[\/et_pb_text][et_pb_blurb title=&#8221;Upstream consulting to plan routes, timelines, and compliance requirements&#8221; use_icon=&#8221;on&#8221; font_icon=&#8221;&#xe052;||divi||400&#8243; icon_color=&#8221;#e63c28&#8243; icon_placement=&#8221;left&#8221; image_icon_width=&#8221;17px&#8221; content_max_width=&#8221;100%&#8221; _builder_version=&#8221;4.27.4&#8243; header_font=&#8221;Source Sans Pro||||||||&#8221; header_text_color=&#8221;#222222&#8243; header_font_size=&#8221;16px&#8221; header_line_height=&#8221;1.1em&#8221; image_icon_custom_margin=&#8221;2px||||false|false&#8221; custom_margin=&#8221;||10px||false|false&#8221; custom_margin_tablet=&#8221;-16px||||false|false&#8221; custom_margin_phone=&#8221;0px|||0px|false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; header_line_height_tablet=&#8221;&#8221; header_line_height_phone=&#8221;1.4em&#8221; header_line_height_last_edited=&#8221;on|phone&#8221; custom_css_blurb_title=&#8221;margin-left: -15px&#8221; image_max_width=&#8221;17px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][et_pb_blurb title=&#8221;Optimized organization including multimodal booking, documentation, customs coordination, Incoterms-based deliveries, and insurance&#8221; use_icon=&#8221;on&#8221; font_icon=&#8221;&#xe052;||divi||400&#8243; icon_color=&#8221;#e63c28&#8243; icon_placement=&#8221;left&#8221; image_icon_width=&#8221;17px&#8221; content_max_width=&#8221;100%&#8221; _builder_version=&#8221;4.27.4&#8243; header_font=&#8221;Source Sans Pro||||||||&#8221; header_text_color=&#8221;#222222&#8243; header_font_size=&#8221;16px&#8221; header_line_height=&#8221;1.4em&#8221; image_icon_custom_margin=&#8221;6px||||false|false&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;-16px||||false|false&#8221; custom_margin_phone=&#8221;0px|||0px|false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; header_line_height_tablet=&#8221;&#8221; header_line_height_phone=&#8221;1.4em&#8221; header_line_height_last_edited=&#8221;on|phone&#8221; custom_css_blurb_title=&#8221;margin-left: -15px&#8221; image_max_width=&#8221;17px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][et_pb_blurb title=&#8221;Real-time monitoring through online tracking at every stage of transit&#8221; use_icon=&#8221;on&#8221; font_icon=&#8221;&#xe052;||divi||400&#8243; icon_color=&#8221;#e63c28&#8243; icon_placement=&#8221;left&#8221; image_icon_width=&#8221;17px&#8221; content_max_width=&#8221;100%&#8221; _builder_version=&#8221;4.27.4&#8243; header_font=&#8221;Source Sans Pro||||||||&#8221; header_text_color=&#8221;#222222&#8243; header_font_size=&#8221;16px&#8221; header_line_height=&#8221;1.7em&#8221; image_icon_custom_margin=&#8221;6px||||false|false&#8221; custom_margin=&#8221;0px||10px||false|false&#8221; custom_margin_tablet=&#8221;-16px||||false|false&#8221; custom_margin_phone=&#8221;0px|||0px|false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; header_line_height_tablet=&#8221;&#8221; header_line_height_phone=&#8221;1.4em&#8221; header_line_height_last_edited=&#8221;on|phone&#8221; custom_css_blurb_title=&#8221;margin-left: -15px&#8221; image_max_width=&#8221;17px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; make_equal=&#8221;on&#8221; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; specialty=&#8221;on&#8221; custom_css_main_1=&#8221;margin:auto;&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_enable_color=&#8221;off&#8221; background_enable_image=&#8221;off&#8221; background_position=&#8221;top_center&#8221; inner_width=&#8221;95%&#8221; inner_max_width=&#8221;92%&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221;][dnxte_multi_heading text_one=&#8221;Transparent process and support from start to finish&#8221; heading_tag=&#8221;h2&#8243; inline_multi_align=&#8221;left&#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;||0px||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; 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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#000000&#8243; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.6em&#8221; custom_margin=&#8221;0px||26px||false|false&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Our methodology is based on four pillars: upstream consulting, optimized organization, real-time monitoring, and <\/span><b>transparent reporting<\/b><span style=\"font-weight: 400;\">. <\/span><a href=\"https:\/\/teamcdg.com\/fr\/contact\/\"><span style=\"font-weight: 400;\">From the first contact, our experts analyze your needs<\/span><\/a><span style=\"font-weight: 400;\">, identify regulatory constraints, and propose the most economically efficient <\/span><b>transport-logistics<\/b><span style=\"font-weight: 400;\"> solution.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The organization phase includes <\/span><b>multimodal booking<\/b><span style=\"font-weight: 400;\">, comprehensive document preparation (AWB, Bill of Lading, customs declarations, DGD if necessary), coordination of collections and deliveries according to Incoterms, and insurance setup. Our <\/span><b>online tracking<\/b><span style=\"font-weight: 400;\"> system allows real-time monitoring of each transit stage.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As an indication, our clients systematically receive: booking confirmation, tracking numbers, proactive alerts in case of events, and proof of delivery. This <\/span><b>operational transparency<\/b><span style=\"font-weight: 400;\"> is accompanied by the permanent availability of your contacts to answer any questions or manage any emergencies.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; specialty_columns=&#8221;2&#8243; _builder_version=&#8221;4.16&#8243; custom_padding=&#8221;|||&#8221; global_colors_info=&#8221;{}&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_row_inner column_structure=&#8221;1_2,1_2&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column_inner type=&#8221;1_2&#8243; saved_specialty_column_type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_blurb title=&#8221;Upstream Consulting&#8221; image_icon_background_color=&#8221;RGBA(255,255,255,0)&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project-6-1-1.png&#8221; image_icon_width=&#8221;63px&#8221; icon_alignment=&#8221;left&#8221; content_max_width=&#8221;100%&#8221; content_max_width_tablet=&#8221;100%&#8221; content_max_width_phone=&#8221;100%&#8221; content_max_width_last_edited=&#8221;on|tablet&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_level=&#8221;h3&#8243; header_font=&#8221;Manrope|700|||||||&#8221; header_text_align=&#8221;left&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_line_height=&#8221;1.2em&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_align=&#8221;left&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; body_line_height=&#8221;1.6em&#8221; background_color=&#8221;#FFFFFF&#8221; image_icon_custom_margin=&#8221;0px|-2px|0px|1px|false|false&#8221; image_icon_custom_padding=&#8221;0px|0px|0px|0px|true|true&#8221; width_tablet=&#8221;100%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width_tablet=&#8221;100%&#8221; max_width_phone=&#8221;100%&#8221; max_width_last_edited=&#8221;on|desktop&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||45px||false|false&#8221; custom_margin_phone=&#8221;0px||30px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;21px|14px|21px|14px|true|true&#8221; custom_padding_tablet=&#8221;16px|15px|16px|15px|true|true&#8221; custom_padding_phone=&#8221;10px|20px|10px|20px|true|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; custom_css_main_element=&#8221;display:block;&#8221; custom_css_blurb_title=&#8221;margin-bottom:-5px;&#8221; custom_css_blurb_content=&#8221;margin:0px;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>Our experts study your logistics flows to define the most suitable routes, deadlines, and regulatory requirements.<\/span><\/p>\n<p>[\/et_pb_blurb][et_pb_blurb title=&#8221;Real-time Tracking&#8221; image_icon_background_color=&#8221;RGBA(255,255,255,0)&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project-6-1-3.png&#8221; image_icon_width=&#8221;63px&#8221; icon_alignment=&#8221;left&#8221; content_max_width=&#8221;100%&#8221; content_max_width_tablet=&#8221;100%&#8221; content_max_width_phone=&#8221;100%&#8221; content_max_width_last_edited=&#8221;on|tablet&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_level=&#8221;h3&#8243; header_font=&#8221;Manrope|700|||||||&#8221; header_text_align=&#8221;left&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_line_height=&#8221;1.2em&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_align=&#8221;left&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; body_line_height=&#8221;1.6em&#8221; background_color=&#8221;#FFFFFF&#8221; image_icon_custom_margin=&#8221;0px|-2px|0px|1px|false|false&#8221; image_icon_custom_padding=&#8221;0px|0px|0px|0px|true|true&#8221; width_tablet=&#8221;100%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width_tablet=&#8221;100%&#8221; max_width_phone=&#8221;100%&#8221; max_width_last_edited=&#8221;on|desktop&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||45px||false|false&#8221; custom_margin_phone=&#8221;0px||30px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;21px|14px|21px|14px|true|true&#8221; custom_padding_tablet=&#8221;16px|15px|16px|15px|true|true&#8221; custom_padding_phone=&#8221;10px|20px|10px|20px|true|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; custom_css_main_element=&#8221;display:block;&#8221; custom_css_blurb_title=&#8221;margin-bottom:-5px;&#8221; custom_css_blurb_content=&#8221;margin:0px;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>Thanks to our tracking system, you can monitor the progress of your shipments at every stage of transport.<\/span><\/p>\n<p>[\/et_pb_blurb][\/et_pb_column_inner][et_pb_column_inner type=&#8221;1_2&#8243; saved_specialty_column_type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_blurb title=&#8221;Optimized Logistics Organization&#8221; image_icon_background_color=&#8221;RGBA(255,255,255,0)&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project-6-1-2.png&#8221; image_icon_width=&#8221;63px&#8221; icon_alignment=&#8221;left&#8221; content_max_width=&#8221;100%&#8221; content_max_width_tablet=&#8221;100%&#8221; content_max_width_phone=&#8221;100%&#8221; content_max_width_last_edited=&#8221;on|tablet&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_level=&#8221;h3&#8243; header_font=&#8221;Manrope|700|||||||&#8221; header_text_align=&#8221;left&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_line_height=&#8221;1.2em&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_align=&#8221;left&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; body_line_height=&#8221;1.6em&#8221; background_color=&#8221;#FFFFFF&#8221; image_icon_custom_margin=&#8221;0px|-2px|0px|1px|false|false&#8221; image_icon_custom_padding=&#8221;0px|0px|0px|0px|true|true&#8221; width_tablet=&#8221;100%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width_tablet=&#8221;100%&#8221; max_width_phone=&#8221;100%&#8221; max_width_last_edited=&#8221;on|desktop&#8221; custom_margin=&#8221;32px||||false|false&#8221; custom_margin_tablet=&#8221;0px||45px||false|false&#8221; custom_margin_phone=&#8221;0px||30px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;21px|14px|21px|14px|true|true&#8221; custom_padding_tablet=&#8221;16px|15px|16px|15px|true|true&#8221; custom_padding_phone=&#8221;10px|20px|10px|20px|true|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; custom_css_main_element=&#8221;display:block;&#8221; custom_css_blurb_title=&#8221;margin-bottom:-5px;&#8221; custom_css_blurb_content=&#8221;margin:0px;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>We handle transport booking, documentation, customs formalities, and operational coordination.<\/span><\/p>\n<p>[\/et_pb_blurb][et_pb_blurb title=&#8221;Reporting and Support&#8221; image_icon_background_color=&#8221;RGBA(255,255,255,0)&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project-6-1-4.png&#8221; image_icon_width=&#8221;63px&#8221; icon_alignment=&#8221;left&#8221; content_max_width=&#8221;100%&#8221; content_max_width_tablet=&#8221;100%&#8221; content_max_width_phone=&#8221;100%&#8221; content_max_width_last_edited=&#8221;on|tablet&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_level=&#8221;h3&#8243; header_font=&#8221;Manrope|700|||||||&#8221; header_text_align=&#8221;left&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_line_height=&#8221;1.2em&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_align=&#8221;left&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; body_line_height=&#8221;1.6em&#8221; background_color=&#8221;#FFFFFF&#8221; image_icon_custom_margin=&#8221;0px|-2px|0px|1px|false|false&#8221; image_icon_custom_padding=&#8221;0px|0px|0px|0px|true|true&#8221; width_tablet=&#8221;100%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width_tablet=&#8221;100%&#8221; max_width_phone=&#8221;100%&#8221; max_width_last_edited=&#8221;on|desktop&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;0px||45px||false|false&#8221; custom_margin_phone=&#8221;0px||30px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;21px|14px|21px|14px|true|true&#8221; custom_padding_tablet=&#8221;16px|15px|16px|15px|true|true&#8221; custom_padding_phone=&#8221;10px|20px|10px|20px|true|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; animation=&#8221;off&#8221; custom_css_main_element=&#8221;display:block;&#8221; custom_css_blurb_title=&#8221;margin-bottom:-5px;&#8221; custom_css_blurb_content=&#8221;margin:0px;&#8221; border_radii=&#8221;on|20px|20px|20px|20px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span>You receive booking confirmations, tracking numbers, and alerts in case of events. Our team remains available at all times. <\/span><\/p>\n<p>[\/et_pb_blurb][\/et_pb_column_inner][\/et_pb_row_inner][\/et_pb_column][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;69px||69px||true|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||||false|false&#8221; custom_padding_tablet=&#8221;0px||||false|false&#8221; custom_padding_phone=&#8221;0px||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Logistics &#038; Customs Services&#8221; heading_tag=&#8221;h2&#8243; 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;||0px||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; 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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.8em&#8221; max_width=&#8221;1100px&#8221; module_alignment=&#8221;center&#8221; custom_margin=&#8221;0px||18px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;10px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Logistics and customs services cover comprehensive import-export expertise, including <\/span><b>customs formalities<\/b><span style=\"font-weight: 400;\">, import\/export customs clearance, <\/span><b>international ATA carnet<\/b><span style=\"font-weight: 400;\">, and temporary admission carnet. They also offer management of <\/span><b>EUR 1 \/ ATR<\/b><span style=\"font-weight: 400;\"> documents, <\/span><b>EORI<\/b><span style=\"font-weight: 400;\"> number creation, release for free circulation, and suspensive regimes.<\/span> <\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Furthermore, <\/span><b>advanced logistics services<\/b><span style=\"font-weight: 400;\"> include secure storage and cross-docking solutions via our partner platforms in \u00cele-de-France, custom packaging with reinforced protection, as well as hazardous materials labeling according to <\/span><b>DGR\/UN standards<\/b><span style=\"font-weight: 400;\">. The preparation of declarations for these sensitive goods, temperature-controlled management within required ranges, in coordination with our specialized partners, and 24\/7 real-time tracking ensure optimal control.<\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Additionally, <\/span><b>premium services<\/b><span style=\"font-weight: 400;\"> offer ad valorem transport insurance and white-glove handling of artworks. They include crate opening, debris removal, and tailor-made transport for <\/span><b>special projects<\/b><span style=\"font-weight: 400;\">. Floor delivery, installation, and container lashing and securing are also provided.<\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">These integrated services guarantee <\/span><b>regulatory compliance<\/b><span style=\"font-weight: 400;\">, complete traceability, and the security of your international flows, from the point of collection to final delivery, regardless of <\/span><b>the destination continent<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; module_alignment=&#8221;center&#8221; custom_margin=&#8221;|auto||78px||&#8221; custom_padding=&#8221;|20px|0px|20px|false|true&#8221; custom_padding_tablet=&#8221;|20px|0px|20px|false|true&#8221; custom_padding_phone=&#8221;|10px|0px|10px|false|true&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.16&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_coverflowslider_parent dnxte_coverflow_autoplay_delay=&#8221;1000&#8243; dnxte_coverflow_loop=&#8221;on&#8221; dnxte_coverflow_centered_slides=&#8221;on&#8221; dnxte_coverflow_mousewheel_enable=&#8221;off&#8221; dnxte_coverflow_speed=&#8221;300&#8243; dnxte_coverflow_spacebetween=&#8221;18&#8243; dnxte_coverflow_pagination_bullets=&#8221;off&#8221; dnxte_coverflow_arrow_color=&#8221;#FFFFFF&#8221; dnxte_coverflow_arrow_background_color=&#8221;#e63c28&#8243; dnxte_coverflow_dots_color=&#8221;#000000&#8243; dnxte_coverflow_dots_active_color=&#8221;#e63c28&#8243; dnxte_coverflow_arrow_size=&#8221;55&#8243; dnxte_coverflow_arrow_position=&#8221;outer&#8221; dnxte_coverflow_arrow_padding=&#8221;20px||26px||false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_enable_color=&#8221;off&#8221; border_radii=&#8221;on|8px|8px|8px|8px&#8221; border_radii_content_border=&#8221;on|10px|10px|10px|10px&#8221; border_color_all_arrow_border=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221; custom_css_image_last_edited=&#8221;on|phone&#8221; custom_css_image_phone=&#8221;width:500px !important;&#8221;][dnxte_coverflowslider_child coverflowslider_layouts=&#8221;below-image&#8221; coverflowslider_text=&#8221;Removal, packing and handling&#8221; coverflowslider_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/1907-1-1.jpg&#8221; coverflowslider_text_padding=&#8221;15px|20px||20px|false|true&#8221; coverflowslider_content_padding=&#8221;||20px|20px|false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|700|||||||&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_letter_spacing=&#8221;0px&#8221; content_font=&#8221;Source Sans Pro||||||||&#8221; content_text_color=&#8221;#000000&#8243; content_font_size=&#8221;16px&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; background_enable_color=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; border_color_all=&#8221;RGBA(255,255,255,0)&#8221; border_width_bottom=&#8221;8px&#8221; border_color_bottom=&#8221;#e63c28&#8243; global_colors_info=&#8221;{}&#8221; background__hover_enabled=&#8221;off|desktop&#8221; header_text_color__hover_enabled=&#8221;off|hover&#8221; header_text_color__hover=&#8221;#FFFFFF&#8221; content_text_color__hover_enabled=&#8221;off|desktop&#8221; content_text_color__hover=&#8221;rgba(94,94,94,0.97)&#8221;][\/dnxte_coverflowslider_child][dnxte_coverflowslider_child coverflowslider_layouts=&#8221;below-image&#8221; coverflowslider_text=&#8221;International Transportation&#8221; coverflowslider_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/13740428-1-1.jpg&#8221; coverflowslider_text_padding=&#8221;15px|20px||20px|false|true&#8221; coverflowslider_content_padding=&#8221;||20px|20px|false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|700|||||||&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_letter_spacing=&#8221;0px&#8221; content_font=&#8221;Source Sans Pro||||||||&#8221; content_text_color=&#8221;#000000&#8243; content_font_size=&#8221;16px&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; background_enable_color=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; border_color_all=&#8221;RGBA(255,255,255,0)&#8221; border_width_bottom=&#8221;8px&#8221; border_color_bottom=&#8221;#e63c28&#8243; global_colors_info=&#8221;{}&#8221; background__hover_enabled=&#8221;off|desktop&#8221; header_text_color__hover_enabled=&#8221;off|hover&#8221; header_text_color__hover=&#8221;#FFFFFF&#8221; content_text_color__hover_enabled=&#8221;off|desktop&#8221; content_text_color__hover=&#8221;rgba(94,94,94,0.97)&#8221;][\/dnxte_coverflowslider_child][dnxte_coverflowslider_child coverflowslider_layouts=&#8221;below-image&#8221; coverflowslider_text=&#8221;Administrative and customs management&#8221; coverflowslider_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/126432-1-1.jpg&#8221; coverflowslider_text_padding=&#8221;15px|20px||20px|false|true&#8221; coverflowslider_content_padding=&#8221;||20px|20px|false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|700|||||||&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_letter_spacing=&#8221;0px&#8221; content_font=&#8221;Source Sans Pro||||||||&#8221; content_text_color=&#8221;#000000&#8243; content_font_size=&#8221;16px&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; background_enable_color=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; border_color_all=&#8221;RGBA(255,255,255,0)&#8221; border_width_bottom=&#8221;8px&#8221; border_color_bottom=&#8221;#e63c28&#8243; global_colors_info=&#8221;{}&#8221; background__hover_enabled=&#8221;off|desktop&#8221; header_text_color__hover_enabled=&#8221;off|hover&#8221; header_text_color__hover=&#8221;#FFFFFF&#8221; content_text_color__hover_enabled=&#8221;off|desktop&#8221; content_text_color__hover=&#8221;rgba(94,94,94,0.97)&#8221;][\/dnxte_coverflowslider_child][dnxte_coverflowslider_child coverflowslider_layouts=&#8221;below-image&#8221; coverflowslider_text=&#8221;Services at destination&#8221; coverflowslider_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/2149347150-1-1.jpg&#8221; coverflowslider_text_padding=&#8221;15px|20px||20px|false|true&#8221; coverflowslider_content_padding=&#8221;||20px|20px|false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|700|||||||&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_letter_spacing=&#8221;0px&#8221; content_font=&#8221;Source Sans Pro||||||||&#8221; content_text_color=&#8221;#000000&#8243; content_font_size=&#8221;16px&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; background_enable_color=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; border_color_all=&#8221;RGBA(255,255,255,0)&#8221; border_width_bottom=&#8221;8px&#8221; border_color_bottom=&#8221;#e63c28&#8243; global_colors_info=&#8221;{}&#8221; background__hover_enabled=&#8221;off|desktop&#8221; header_text_color__hover_enabled=&#8221;off|hover&#8221; header_text_color__hover=&#8221;#FFFFFF&#8221; content_text_color__hover_enabled=&#8221;off|desktop&#8221; content_text_color__hover=&#8221;rgba(94,94,94,0.97)&#8221;][\/dnxte_coverflowslider_child][dnxte_coverflowslider_child coverflowslider_layouts=&#8221;below-image&#8221; coverflowslider_text=&#8221;ATA Carnet Management&#8221; coverflowslider_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/7681-1-1.jpg&#8221; coverflowslider_text_padding=&#8221;15px|20px||20px|false|true&#8221; coverflowslider_content_padding=&#8221;||20px|20px|false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|700|||||||&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_letter_spacing=&#8221;0px&#8221; content_font=&#8221;Source Sans Pro||||||||&#8221; content_text_color=&#8221;#000000&#8243; content_font_size=&#8221;16px&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; background_enable_color=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; border_color_all=&#8221;RGBA(255,255,255,0)&#8221; border_width_bottom=&#8221;8px&#8221; border_color_bottom=&#8221;#e63c28&#8243; global_colors_info=&#8221;{}&#8221; background__hover_enabled=&#8221;off|desktop&#8221; header_text_color__hover_enabled=&#8221;off|hover&#8221; header_text_color__hover=&#8221;#FFFFFF&#8221; content_text_color__hover_enabled=&#8221;off|desktop&#8221; content_text_color__hover=&#8221;rgba(94,94,94,0.97)&#8221;][\/dnxte_coverflowslider_child][dnxte_coverflowslider_child coverflowslider_layouts=&#8221;below-image&#8221; coverflowslider_text=&#8221;Warehousing and storage&#8221; coverflowslider_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/83415-1-1.jpg&#8221; coverflowslider_text_padding=&#8221;15px|20px||20px|false|true&#8221; coverflowslider_content_padding=&#8221;||20px|20px|false|false&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Montserrat|700|||||||&#8221; header_text_color=&#8221;#000000&#8243; header_font_size=&#8221;20px&#8221; header_letter_spacing=&#8221;0px&#8221; content_font=&#8221;Source Sans Pro||||||||&#8221; content_text_color=&#8221;#000000&#8243; content_font_size=&#8221;16px&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; background_enable_color=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; border_color_all=&#8221;RGBA(255,255,255,0)&#8221; border_width_bottom=&#8221;8px&#8221; border_color_bottom=&#8221;#e63c28&#8243; global_colors_info=&#8221;{}&#8221; background__hover_enabled=&#8221;off|desktop&#8221; header_text_color__hover_enabled=&#8221;off|hover&#8221; header_text_color__hover=&#8221;#FFFFFF&#8221; content_text_color__hover_enabled=&#8221;off|desktop&#8221; content_text_color__hover=&#8221;rgba(94,94,94,0.97)&#8221;][\/dnxte_coverflowslider_child][\/dnxte_coverflowslider_parent][\/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; background_color=&#8221;rgba(142,142,142,0.07)&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;0px||||false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row 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.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; custom_padding=&#8221;|||47px|false|false&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; custom_css_main_element=&#8221;margin:Auto;&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_code _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_orientation=&#8221;center&#8221; width=&#8221;78%&#8221; module_alignment=&#8221;center&#8221; global_colors_info=&#8221;{}&#8221;]<div class=\"map_wrapper\" id=\"map_wrapper_987613015\">\n<div class=\"map_box\" style=\"max-width:2000px\">\n<div class=\"map_aspect_ratio\" style=\"padding-top:56%\" data-padding-top=\"56%\" data-padding-top-mobile=\"0%\">\n<div class=\"map_container\">\n<div class=\"map_render map_loading\" id=\"map_987613015\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>[\/et_pb_code][dnxte_multi_heading text_one=&#8221;Complete geographical coverage across 5 continents&#8221; heading_tag=&#8221;span&#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.2em&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;30px||-35px||false|false&#8221; custom_margin_phone=&#8221;26px||-9px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;20px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;17px&#8221; text_line_height=&#8221;1.8em&#8221; custom_margin=&#8221;0px||18px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;25px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Team INTERNATIONAL operates across all major international trade corridors thanks to its network of certified partners and strategic alliances. Our geographical expertise primarily covers the <\/span><b>Middle East<\/b><span style=\"font-weight: 400;\"> (Qatar, United Arab Emirates, Saudi Arabia), <\/span><b>Asia<\/b><span style=\"font-weight: 400;\"> (mainly China), <\/span><a href=\"https:\/\/teamcdg.com\/fr\/amerique-du-nord\/\"><span style=\"font-weight: 400;\">North <\/span><b>America<\/b><span style=\"font-weight: 400;\"> (United States, Canada)<\/span><\/a><span style=\"font-weight: 400;\">, <\/span><b>Europe<\/b><span style=\"font-weight: 400;\"> (including post-Brexit United Kingdom), and the <\/span><b>French Overseas Departments and Territories (DOM-TOM)<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Each geographical zone benefits from in-depth knowledge of <\/span><b>local customs regulations<\/b><span style=\"font-weight: 400;\">, average transit times, specific documentary constraints, and commercial cultural particularities. This territorial expertise allows us to optimize routings, anticipate administrative blockages, and propose the <\/span><b>best customs solutions<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Our flows to the <\/span><b>Persian Gulf<\/b><span style=\"font-weight: 400;\"> include particular expertise in temporarily imported luxury vehicles (during the summer period), while our <\/span><b>China-Europe<\/b><span style=\"font-weight: 400;\"> operations benefit from regular consolidations and guaranteed bookings. <\/span><b>Transatlantic<\/b><span style=\"font-weight: 400;\"> flows benefit from our mastery of FDA, TSA, and US\/Canadian customs regulations.<\/span><\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; use_background_color_gradient=&#8221;on&#8221; background_color_gradient_stops=&#8221;rgba(0,0,0,0.49) 100%|#ffffff 100%&#8221; background_color_gradient_overlays_image=&#8221;on&#8221; background_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/715-2-1.jpg&#8221; parallax=&#8221;on&#8221; parallax_method=&#8221;off&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row 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.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;0px||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; custom_css_main_element=&#8221;margin:auto;&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221; Local logistics solutions and strategic partnerships&#8221; heading_tag=&#8221;h2&#8243; 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;center&#8221; text_one_text_color=&#8221;#FFFFFF&#8221; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.2em&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;0px||-9px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; text_one_font_size_tablet=&#8221;39px&#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;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_text_color=&#8221;#FFFFFF&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.8em&#8221; text_orientation=&#8221;center&#8221; max_width=&#8221;1100px&#8221; module_alignment=&#8221;center&#8221; custom_margin=&#8221;16px||18px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;25px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_css_free_form=&#8221;selector p{||  color:#FFFFFF;||}&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Our organizational model relies on local partners selected according to strict criteria of reliability, responsiveness, and compliance. These alliances allow us to offer efficient <\/span><b>final delivery<\/b><span style=\"font-weight: 400;\"> services, secure temporary storage, and effective management of local customs formalities.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For high-volume destinations, we have established <\/span><b>negotiated price lists<\/b><span style=\"font-weight: 400;\"> ensuring optimal competitiveness on transport prices. This commercial structuring is complemented by continuous regulatory monitoring: customs tariff changes, <\/span><b>documentary modifications<\/b><span style=\"font-weight: 400;\">, new health or security constraints.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Our ability to simultaneously manage <\/span><b>B2B<\/b><span style=\"font-weight: 400;\"> (manufacturers, wholesalers) and B2C (individuals) flows constitutes a differentiating advantage. This dual expertise facilitates <\/span><b>the management of complex projects<\/b><span style=\"font-weight: 400;\"> involving multiple types of final recipients or requiring differentiated logistics services depending on the markets.<\/span><\/p>\n<p>[\/et_pb_text][dnxte_button button_text=&#8221;CONTACT US&#8221; dnxt_button_alignment=&#8221;center&#8221; btn_show_hide=&#8221;off&#8221; dnxt_hover_bg=&#8221;dnxt-hover-shutter-out-horizontal&#8221; dnxt_shutter_out_bg_color=&#8221;#e63c28&#8243; dnxt_hover_bg_color=&#8221;#55668f&#8221; disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; btn_fonts_font=&#8221;Source Sans Pro|600||on|||||&#8221; btn_fonts_text_color=&#8221;#ffffff&#8221; btn_fonts_font_size=&#8221;18px&#8221; custom_margin=&#8221;13px||||false|false&#8221; custom_padding=&#8221;7px|22px|7px|22px|true|true&#8221; border_radii_btn_border=&#8221;on|4px|4px|4px|4px&#8221; border_width_all_btn_border=&#8221;0px&#8221; disabled=&#8221;on&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][\/dnxte_button][\/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.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;68px||68px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;30px||30px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; max_width=&#8221;1300px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; custom_css_main_element=&#8221;margin:Auto;&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;They trust us&#8221; heading_tag=&#8221;h2&#8243; 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;center&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.2em&#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;||0px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;21px||-9px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; text_one_font_size_tablet=&#8221;39px&#8221; text_one_font_size_phone=&#8221;25px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.2em&#8221; text_one_line_height_phone=&#8221;1.2em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.8em&#8221; text_orientation=&#8221;center&#8221; max_width=&#8221;900px&#8221; module_alignment=&#8221;center&#8221; custom_margin=&#8221;0px||18px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;12px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Team INTERNATIONAL daily supports leading companies in their respective sectors. Our clients particularly appreciate our <\/span><b><i>operational responsiveness<\/i><\/b><span style=\"font-weight: 400;\">, our sharp regulatory expertise, and our ability to simultaneously manage complex flows to multiple destinations.<\/span><\/p>\n<p>[\/et_pb_text][et_pb_code _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;]<pre class=\"ti-widget\"><template id=\"trustindex-google-widget-html\"><div class=\" ti-widget  ti-goog ti-review-text-mode-readmore ti-content-align-center\" data-no-translation=\"true\" data-time-locale=\"il y a %d %s|aujourd'hui|jour|jours|semaine|semaines|mois|mois|ann\u00e9e|ans\" data-plugin-version=\"13.2.8\" data-layout-id=\"36\" data-layout-category=\"slider\" data-set-id=\"light-background\" data-pid=\"\" data-language=\"fr\" data-close-locale=\"Fermer\" data-review-target-width=\"300\" data-css-version=\"2\" data-reply-by-locale=\"R\u00e9ponse du propri\u00e9taire\" data-only-rating-locale=\"Cet utilisateur a uniquement laiss\u00e9 une \u00e9valuation.\" data-pager-autoplay-timeout=\"6\"> <div class=\"ti-widget-container ti-col-3\"> <div class=\"ti-reviews-container\"> <div class=\"ti-controls\"> <div class=\"ti-next\" aria-label=\"Avis suivante\" role=\"button\" tabindex=\"0\"><\/div> <div class=\"ti-prev\" aria-label=\"Avis pr\u00e9c\u00e9dent\" role=\"button\" tabindex=\"0\"><\/div> <\/div> <div class=\"ti-reviews-container-wrapper\">  <div data-empty=\"0\" data-time=\"1759276800\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocKb0sXYCiWXd8kBpo71-SBsBUi0teSTQ9TLu6SviZHZl1A-sQ=w64-h64-c-rp-mo-br100\" alt=\"sonia azar profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> sonia azar <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Un service fluide, r\u00e9actif et attentif du d\u00e9but \u00e0 la fin. Suivi impeccable.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1758153600\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocI6YmV2HuvfLThDsivVOeh98oH-hocKUPWcGzRVyFttjAIm-g=w64-h64-c-rp-mo-br100\" alt=\"Serge Jung profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Serge Jung <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Bonne r\u00e9activit\u00e9 et coordination de l\"\u00e9quipe<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1750723200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocIuR7VJFmseyl4Uq8EVq8oSor87F9pHD7cgwpRbv6-cacs5Yw=w64-h64-c-rp-mo-br100\" alt=\"EXPRESS FRANCE EXPORT profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> EXPRESS FRANCE EXPORT <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Nous travaillons avec TEAM International depuis un certain temps et nous sommes pleinement satisfaits de la qualit\u00e9 de leur service. Leur \u00e9quipe est professionnelle, disponible et toujours \u00e0 l\u2019\u00e9coute. Nous appr\u00e9cions particuli\u00e8rement le contact humain, la r\u00e9activit\u00e9 et le s\u00e9rieux dans le traitement de nos dossiers. Gr\u00e2ce \u00e0 eux, nos op\u00e9rations logistiques se d\u00e9roulent dans les meilleures conditions. Une collaboration fluide et efficace que nous recommandons vivement.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1750204800\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjUhIRx-GvnkAcyecKc0mPXQLyJ_5sSkksWfCyGjYf6cH7TPTMY=w64-h64-c-rp-mo-br100\" alt=\"France Culture et Patrimoine profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> France Culture et Patrimoine <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Tr\u00e8s bon contact (attach\u00e9e commerciale) , \u00e9quipe r\u00e9active et tr\u00e8s professionnelle :)\nExcellente exp\u00e9rience.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1750204800\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocJic169mIHVqPXTQajVs70zMkx0e2N0Ynkcy0D5s33T3haEwD5q=w64-h64-c-rp-mo-br100\" alt=\"mad djemai profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> mad djemai <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Team International service top, un grand merci pour Sarah , toujours disponible.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1708214400\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocL3ifjk6FcgYW9axQVPZFx6zNqbFwQt8h706xQIXJA3eG_rQg=w64-h64-c-rp-mo-br100\" alt=\"2camjdh profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> 2camjdh <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Je recommande vivement TEAM pour tout vos transports internationaux.\nJ'ai effectu\u00e9 une importation compliqu\u00e9e depuis le japon avec leurs services.\nJe ne peux que louer leur disponibilit\u00e9 et leur professionnalisme.\nTOP service !<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1612915200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <trustindex-image class=\"ti-platform-icon\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocLvgOu6Jr1HaOpEM4Ni89bZpj164X1DrUAFdhfkDjRgyyolLA=w64-h64-c-rp-mo-br100\" alt=\"Philip Twomey profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Philip Twomey <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex v\u00e9rifie que la source originale de l'avis est Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Excellent service de transport de la part d\u2019une \u00e9quipe sympathique.  Gros coli arriv\u00e9 en bon \u00e9tat en 7j, porte \u00e0 porte, \u00e0 6000 km de distance.  Bon prix !  Merci.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Cacher\" data-open-text=\"Lire la suite\"><\/span> <\/div> <\/div>  <\/div> <div class=\"ti-controls-line\"> <div class=\"dot\"><\/div> <\/div> <\/div>    <div class=\"ti-verified-by ti-verified-by-row\" data-style=\"1\"> <div class=\"ti-inner\"> Certifi\u00e9 par: Trustindex <span class=\"ti-info-icon\"><\/span> <div class=\"ti-disclaimer\">Le badge v\u00e9rifi\u00e9 de Trustindex est le symbole universel de confiance. Seules les meilleures entreprises peuvent obtenir le badge v\u00e9rifi\u00e9, avec une note sup\u00e9rieure \u00e0 4.5, bas\u00e9e sur les avis des clients au cours des derniers 12 mois. <a href=\"https:\/\/www.trustindex.io\/?a=sys&amp;c=wp-verified-badge&amp;url=\/the-trustindex-verified-badge\/\" target=\"_blank\">En savoir plus<\/a><\/div> <\/div> <\/div>  <\/div> <\/div> <\/template><\/pre><div data-src=\"https:\/\/cdn.trustindex.io\/loader.js?wp-widget\" data-template-id=\"trustindex-google-widget-html\" data-css-url=\"https:\/\/teamcdg.com\/wp-content\/uploads\/trustindex-google-widget.css?1775049499\"><\/div>[\/et_pb_code][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Source Sans Pro||||||||&#8221; text_font_size=&#8221;18px&#8221; text_line_height=&#8221;1.8em&#8221; text_orientation=&#8221;center&#8221; max_width=&#8221;900px&#8221; module_alignment=&#8221;center&#8221; custom_margin=&#8221;0px||18px||false|false&#8221; custom_margin_tablet=&#8221;46px||18px||false|false&#8221; custom_margin_phone=&#8221;12px||18px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">The quality of our service is reflected in the loyalty of our client portfolio and the <\/span><b>regular recommendations<\/b><span style=\"font-weight: 400;\"> we receive. This client recognition is our best advertisement and daily motivates our teams.<\/span><\/p>\n<p>[\/et_pb_text][\/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; disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; custom_padding_tablet=&#8221;68px||68px||true|false&#8221; custom_padding_phone=&#8221;0px||0px||true|false&#8221; disabled=&#8221;on&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_5,1_5,1_5,1_5,1_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;1&#8243; make_equal=&#8221;on&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; module_class=&#8221;two-col-mob&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221; max_width=&#8221;100%&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;0px||0px||true|false&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; custom_css_free_form=&#8221;\/* 2 Columns Mobile *\/||@media all and (max-width: 767px) {||    html .et-db .two-col-mob .et_pb_column {||        width:47.25% !important;||    }||    ||html .et-db .two-col-mob .et_pb_column:nth-last-child(-n+2) {||        margin-bottom:0;||    }||    html .et-db .two-col-mob .et_pb_column:not(:nth-child(2n)) {||            margin-right:5.5% !important;||    }||}&#8221; border_width_top=&#8221;2px&#8221; border_color_top=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_5&#8243; _builder_version=&#8221;4.27.4&#8243; _dynamic_attributes=&#8221;link_option_url&#8221; _module_preset=&#8221;default&#8221; background_color=&#8221;#55668F&#8221; custom_padding=&#8221;20px|20px|20px|20px|true|true&#8221; link_option_url=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijk4NzYxMDQ5MSJ9fQ==@&#8221; border_width_right=&#8221;1px&#8221; border_color_right=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-10px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221; background__hover_enabled=&#8221;on|hover&#8221; background_color__hover=&#8221;#e63c28&#8243; background_enable_color__hover=&#8221;on&#8221;][et_pb_blurb title=&#8221;Why Choose Us&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project1-1.png&#8221; image_icon_width=&#8221;60px&#8221; module_class=&#8221;pulse-image&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Source Sans Pro|600|||||||&#8221; header_text_align=&#8221;center&#8221; header_text_color=&#8221;#FFFFFF&#8221; header_font_size=&#8221;23px&#8221; header_line_height=&#8221;1.3em&#8221; image_icon_custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;10%||10%||true|false&#8221; header_font_size_tablet=&#8221;23px&#8221; header_font_size_phone=&#8221;20px&#8221; header_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][\/et_pb_column][et_pb_column type=&#8221;1_5&#8243; _builder_version=&#8221;4.27.4&#8243; _dynamic_attributes=&#8221;link_option_url&#8221; _module_preset=&#8221;default&#8221; background_color=&#8221;#55668F&#8221; custom_padding=&#8221;20px|20px|20px|20px|true|true&#8221; link_option_url=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijk4NzYxMDUwMiJ9fQ==@&#8221; border_width_right=&#8221;1px&#8221; border_color_right=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; background_color__hover=&#8221;#e63c28&#8243; background__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-10px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221; background_enable_color__hover=&#8221;on&#8221;][et_pb_blurb title=&#8221;Transport Solutions&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project2-1.png&#8221; image_icon_width=&#8221;60px&#8221; module_class=&#8221;pulse-image&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Source Sans Pro|600|||||||&#8221; header_text_align=&#8221;center&#8221; header_text_color=&#8221;#FFFFFF&#8221; header_font_size=&#8221;23px&#8221; header_line_height=&#8221;1.3em&#8221; image_icon_custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;10%||10%||true|false&#8221; header_font_size_tablet=&#8221;23px&#8221; header_font_size_phone=&#8221;20px&#8221; header_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][\/et_pb_column][et_pb_column type=&#8221;1_5&#8243; _builder_version=&#8221;4.27.4&#8243; _dynamic_attributes=&#8221;link_option_url&#8221; _module_preset=&#8221;default&#8221; background_color=&#8221;#55668F&#8221; custom_padding=&#8221;20px|20px|20px|20px|true|true&#8221; link_option_url=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijk4NzYxMDUwNyJ9fQ==@&#8221; border_width_right=&#8221;1px&#8221; border_color_right=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; background_color__hover=&#8221;#e63c28&#8243; background__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-10px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221; background_enable_color__hover=&#8221;on&#8221;][et_pb_blurb title=&#8221;Logistics &#038; Customs Services&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project3-2.png&#8221; image_icon_width=&#8221;60px&#8221; module_class=&#8221;pulse-image&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Source Sans Pro|600|||||||&#8221; header_text_align=&#8221;center&#8221; header_text_color=&#8221;#FFFFFF&#8221; header_font_size=&#8221;23px&#8221; header_line_height=&#8221;1.3em&#8221; image_icon_custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;10%||10%||true|false&#8221; header_font_size_tablet=&#8221;23px&#8221; header_font_size_phone=&#8221;20px&#8221; header_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][\/et_pb_column][et_pb_column type=&#8221;1_5&#8243; _builder_version=&#8221;4.27.4&#8243; _dynamic_attributes=&#8221;link_option_url&#8221; _module_preset=&#8221;default&#8221; background_color=&#8221;#55668F&#8221; custom_padding=&#8221;20px|20px|20px|20px|true|true&#8221; link_option_url=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijk4NzYxMDUxNSJ9fQ==@&#8221; border_width_right=&#8221;1px&#8221; border_color_right=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; background_color__hover=&#8221;#e63c28&#8243; background__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-10px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221; background_enable_color__hover=&#8221;on&#8221;][et_pb_blurb title=&#8221;Industry Expertise&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project4-4.png&#8221; image_icon_width=&#8221;60px&#8221; module_class=&#8221;pulse-image&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Source Sans Pro|600|||||||&#8221; header_text_align=&#8221;center&#8221; header_text_color=&#8221;#FFFFFF&#8221; header_font_size=&#8221;23px&#8221; header_line_height=&#8221;1.3em&#8221; image_icon_custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;10%||10%||true|false&#8221; header_font_size_tablet=&#8221;23px&#8221; header_font_size_phone=&#8221;20px&#8221; header_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][\/et_pb_column][et_pb_column type=&#8221;1_5&#8243; _builder_version=&#8221;4.27.4&#8243; _dynamic_attributes=&#8221;link_option_url&#8221; _module_preset=&#8221;default&#8221; background_color=&#8221;#55668F&#8221; custom_padding=&#8221;20px|20px|20px|20px|true|true&#8221; link_option_url=&#8221;@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6Ijk4NzYxMDUyNiJ9fQ==@&#8221; border_width_right=&#8221;1px&#8221; border_color_right=&#8221;#FFFFFF&#8221; global_colors_info=&#8221;{}&#8221; transform_styles__hover_enabled=&#8221;on|hover&#8221; background_color__hover=&#8221;#e63c28&#8243; background__hover_enabled=&#8221;on|hover&#8221; transform_scale__hover_enabled=&#8221;on|hover&#8221; transform_translate__hover=&#8221;0px|-10px&#8221; transform_translate__hover_enabled=&#8221;on|desktop&#8221; transform_rotate__hover_enabled=&#8221;on|desktop&#8221; transform_skew__hover_enabled=&#8221;on|desktop&#8221; transform_origin__hover_enabled=&#8221;on|desktop&#8221; background_enable_color__hover=&#8221;on&#8221;][et_pb_blurb title=&#8221;Global Presence&#8221; image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/New-Project4-1-1.png&#8221; image_icon_width=&#8221;60px&#8221; module_class=&#8221;pulse-image&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; header_font=&#8221;Source Sans Pro|600|||||||&#8221; header_text_align=&#8221;center&#8221; header_text_color=&#8221;#FFFFFF&#8221; header_font_size=&#8221;23px&#8221; header_line_height=&#8221;1.3em&#8221; image_icon_custom_margin=&#8221;||||false|false&#8221; custom_padding=&#8221;10%||10%||true|false&#8221; header_font_size_tablet=&#8221;23px&#8221; header_font_size_phone=&#8221;20px&#8221; header_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;][\/et_pb_blurb][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(142,142,142,0.07)&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||25px||false|false&#8221; custom_margin_tablet=&#8221;||50px||false|false&#8221; custom_margin_phone=&#8221;||0px||false|false&#8221; custom_margin_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;0px||0px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; animation_style=&#8221;slide&#8221; animation_direction=&#8221;bottom&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Questions&#8221; heading_tag=&#8221;h2&#8243; inline_multi_align=&#8221;center&#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;center&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.3em&#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;55px&#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; custom_margin=&#8221;||-35px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;||-30px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;||8px|||&#8221; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;25px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_one_line_height_tablet=&#8221;1.3em&#8221; text_one_line_height_phone=&#8221;1.3em&#8221; text_one_line_height_last_edited=&#8221;on|desktop&#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;][\/dnxte_multi_heading][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_2,1_2&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; max_width=&#8221;1300px&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion_item title=&#8221;What are the average transport times depending on the chosen modes?&#8221; open=&#8221;on&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;#FFFFFF&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Transit times vary depending on destination and <\/span><a href=\"https:\/\/teamcdg.com\/fr\/fret-aerien\/\"><span style=\"font-weight: 400;\">mode: <\/span><b>express air 2-5 days<\/b><\/a><span style=\"font-weight: 400;\">, standard air 5-10 days, FCL sea 20-45 days depending on destination, <\/span><b>LCL sea 25-50 days<\/b><span style=\"font-weight: 400;\">, road Europe 3-7 days. These durations are indicative and include customs formalities and <\/span><b>final deliveries<\/b><span style=\"font-weight: 400;\">. We systematically provide precise estimates during quotation.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;How are international transport rates calculated?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;#FFFFFF&#8221; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221; open=&#8221;off&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">The calculation integrates several parameters: weight and volume (taxed at the highest in air freight), <\/span><b>distance and destination<\/b><span style=\"font-weight: 400;\">, mode of transport, chosen Incoterm, additional services (insurance, temperature control, white glove), customs formalities, and potential urgency. We provide <\/span><b>detailed, transparent quotes<\/b><span style=\"font-weight: 400;\"> including all fees to avoid any surprises.<\/span><\/p>\n<p>[\/et_pb_accordion_item][\/et_pb_accordion][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion_item title=&#8221;What insurance covers goods in transit?&#8221; open=&#8221;on&#8221; open_toggle_text_color=&#8221;#000000&#8243; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">We offer ad valorem transport insurance covering the declared value of goods against all risks of loss, theft, breakage, or damage during <\/span><b>international transit<\/b><span style=\"font-weight: 400;\">. The premium is calculated based on the value, nature of the products, and destination. This optional but highly recommended coverage fully protects your <\/span><b>investment<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;How do you handle dangerous goods and regulated products?&#8221; open_toggle_text_color=&#8221;#000000&#8243; closed_toggle_background_color=&#8221;#e63c28&#8243; icon_color=&#8221;#FFFFFF&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; body_font=&#8221;Source Sans Pro||||||||&#8221; body_text_color=&#8221;#000000&#8243; body_font_size=&#8221;16px&#8221; global_colors_info=&#8221;{}&#8221; toggle_text_color=&#8221;#FFFFFF&#8221; toggle_font=&#8221;Montserrat|700|||||||&#8221; toggle_line_height=&#8221;1.4em&#8221; open=&#8221;off&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Our expertise in dangerous goods (<\/span><b>ADR\/IMDG\/IATA<\/b><span style=\"font-weight: 400;\">) allows us to manage classification, packaging, and labeling in coordination with our partners and carriers. We handle classification, <\/span><b>approved packaging<\/b><span style=\"font-weight: 400;\">, compliant UN labeling, DGD declarations, and coordination with shipping\/airline companies. The provision of <\/span><b>MSDS sheets<\/b><span style=\"font-weight: 400;\"> is mandatory for validation.<\/span><\/p>\n<p>[\/et_pb_accordion_item][\/et_pb_accordion][\/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\">Team International: Your Expert in International Transport and Logistics<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>Team INTERNATIONAL, a family-owned company specializing in international transport and global logistics, has been assisting professionals with their import-export operations worldwide for over 40 years. &nbsp;<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\"><h2 class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Request a Quote<\/span><\/span><\/h2><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module wpforms_selector wpforms_selector_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<style id=\"wpforms-css-vars-987615331\">\n\t\t\t\t#wpforms-987615331 {\n\t\t\t\t--wpforms-field-border-color: rgba(0, 0, 0, 0.25);\n--wpforms-field-border-color-spare: rgba(0, 0, 0, 0.25);\n--wpforms-field-text-color: rgba(0, 0, 0, 0.7);\n--wpforms-label-color: rgba(0, 0, 0, 0.85);\n--wpforms-label-sublabel-color: rgba(0, 0, 0, 0.55);\n--wpforms-button-background-color: #e63c28;\n--wpforms-container-padding: 0px;\n--wpforms-container-border-width: 1px;\n--wpforms-container-border-radius: 3px;\n--wpforms-background-color: rgba(0, 0, 0, 0);\n--wpforms-field-size-input-height: 43px;\n--wpforms-field-size-input-spacing: 15px;\n--wpforms-field-size-font-size: 16px;\n--wpforms-field-size-line-height: 19px;\n--wpforms-field-size-padding-h: 14px;\n--wpforms-field-size-checkbox-size: 16px;\n--wpforms-field-size-sublabel-spacing: 5px;\n--wpforms-field-size-icon-size: 1;\n--wpforms-label-size-font-size: 16px;\n--wpforms-label-size-line-height: 19px;\n--wpforms-label-size-sublabel-font-size: 14px;\n--wpforms-label-size-sublabel-line-height: 17px;\n--wpforms-button-size-font-size: 17px;\n--wpforms-button-size-height: 41px;\n--wpforms-button-size-padding-h: 15px;\n--wpforms-button-size-margin-top: 10px;\n--wpforms-container-shadow-size-box-shadow: none;\n\t\t\t}\n\t\t\t<\/style><style id=\"wpforms-css-vars-987615331-custom-css\">\n\t\t\t\t#wpforms-987615331 {\n\t\t\t\t\tlabel {font-family: 'Montserrat' !important;}\n\t\t\t\t}\n\t\t\t<\/style><div class=\"wpforms-container wpforms-container-full wpforms-render-modern\" id=\"wpforms-987615331\"><form id=\"wpforms-form-987615331\" class=\"wpforms-validate wpforms-form wpforms-ajax-form\" data-formid=\"987615331\" method=\"post\" enctype=\"multipart\/form-data\" action=\"\/en\/wp-json\/wp\/v2\/pages\/987615308\" data-token=\"a086d08cc018fcaebd7e45c8d60d416f\" data-token-time=\"1775858165\"><noscript class=\"wpforms-error-noscript\">Please enable JavaScript in your browser to complete this form.<\/noscript><div id=\"wpforms-error-noscript\" style=\"display: none;\">Please enable JavaScript in your browser to complete this form.<\/div><div class=\"wpforms-field-container\"><div id=\"wpforms-987615331-field_4-container\" class=\"wpforms-field wpforms-field-text\" data-field-id=\"4\"><label class=\"wpforms-field-label\" for=\"wpforms-987615331-field_4\">COMPANY <span class=\"wpforms-required-label\" aria-hidden=\"true\">*<\/span><\/label><input type=\"text\" id=\"wpforms-987615331-field_4\" class=\"wpforms-field-large wpforms-field-required\" name=\"wpforms[fields][4]\" aria-errormessage=\"wpforms-987615331-field_4-error\" required><\/div><div id=\"wpforms-987615331-field_5-container\" class=\"wpforms-field wpforms-field-text\" data-field-id=\"5\"><label class=\"wpforms-field-label\" for=\"wpforms-987615331-field_5\">PHONE NUMBER <span class=\"wpforms-required-label\" aria-hidden=\"true\">*<\/span><\/label><input type=\"text\" id=\"wpforms-987615331-field_5\" class=\"wpforms-field-large wpforms-field-required wpforms-masked-input\" data-rule-inputmask-incomplete=\"1\" data-inputmask-mask=\"9999999999\" name=\"wpforms[fields][5]\" aria-errormessage=\"wpforms-987615331-field_5-error\" required><\/div><div id=\"wpforms-987615331-field_2-container\" class=\"wpforms-field wpforms-field-email\" data-field-id=\"2\"><label class=\"wpforms-field-label\" for=\"wpforms-987615331-field_2\">EMAIL <span class=\"wpforms-required-label\" aria-hidden=\"true\">*<\/span><\/label><input type=\"email\" id=\"wpforms-987615331-field_2\" class=\"wpforms-field-large wpforms-field-required\" name=\"wpforms[fields][2]\" spellcheck=\"false\" aria-errormessage=\"wpforms-987615331-field_2-error\" required><\/div>\t\t<div id=\"wpforms-987615331-field_1-container\"\n\t\t\tclass=\"wpforms-field wpforms-field-text\"\n\t\t\tdata-field-type=\"text\"\n\t\t\tdata-field-id=\"1\"\n\t\t\t>\n\t\t\t<label class=\"wpforms-field-label\" for=\"wpforms-987615331-field_1\" >MESSAGE EMAIL PHONE<\/label>\n\t\t\t<input type=\"text\" id=\"wpforms-987615331-field_1\" class=\"wpforms-field-medium\" name=\"wpforms[fields][1]\" >\n\t\t<\/div>\n\t\t<div id=\"wpforms-987615331-field_6-container\" class=\"wpforms-field wpforms-field-text\" data-field-id=\"6\"><label class=\"wpforms-field-label\" for=\"wpforms-987615331-field_6\">MESSAGE<\/label><input type=\"text\" id=\"wpforms-987615331-field_6\" class=\"wpforms-field-large\" name=\"wpforms[fields][6]\" aria-errormessage=\"wpforms-987615331-field_6-error\" ><\/div><script>\n\t\t\t\t( function() {\n\t\t\t\t\tconst style = document.createElement( 'style' );\n\t\t\t\t\tstyle.appendChild( document.createTextNode( '#wpforms-987615331-field_1-container { position: absolute !important; overflow: hidden !important; display: inline !important; height: 1px !important; width: 1px !important; z-index: -1000 !important; padding: 0 !important; } #wpforms-987615331-field_1-container input { visibility: hidden; } #wpforms-conversational-form-page #wpforms-987615331-field_1-container label { counter-increment: none; }' ) );\n\t\t\t\t\tdocument.head.appendChild( style );\n\t\t\t\t\tdocument.currentScript?.remove();\n\t\t\t\t} )();\n\t\t\t<\/script><\/div><!-- .wpforms-field-container --><div class=\"wpforms-submit-container\" ><input type=\"hidden\" name=\"wpforms[id]\" value=\"987615331\"><input type=\"hidden\" name=\"page_title\" value=\"\"><input type=\"hidden\" name=\"page_url\" value=\"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615308\"><input type=\"hidden\" name=\"url_referer\" value=\"\"><button type=\"submit\" name=\"wpforms[submit]\" id=\"wpforms-submit-987615331\" class=\"wpforms-submit\" data-alt-text=\"Sending...\" data-submit-text=\"SEND\" aria-live=\"assertive\" value=\"wpforms-submit\">SEND<\/button><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/teamcdg.com\/wp-content\/plugins\/wpforms-lite\/assets\/images\/submit-spin.svg\" class=\"wpforms-submit-spinner\" style=\"display: none;\" width=\"26\" height=\"26\" alt=\"Loading\"><\/div><\/form><\/div>  <!-- .wpforms-container -->\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_2\">\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\"><h2 class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Our Sectors of Activity: Multi-Industry Expertise<\/span><\/span><\/h2><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>Event Equipment &amp; Sports GearLuxury &amp; ArtworksFinished Vehicles (New &amp; Used) &nbsp;High Technology &amp; AerospaceTextilePharmaceutical<div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_3\">\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 \"><span class=\"dnxt-gradient-text-color-1\">&#8221;There<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><\/p>\n","protected":false},"author":1,"featured_media":987616833,"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-987615308","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Team International | Freight Forwarding &amp; Logistics Solutions<\/title>\n<meta name=\"description\" content=\"Team International is your trusted freight forwarding partner. We offer air, ocean and express freight solutions worldwide. Request a quote today.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/teamcdg.com\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Team International | Freight Forwarding &amp; Logistics Solutions\" \/>\n<meta property=\"og:description\" content=\"Team International is your trusted freight forwarding partner. We offer air, ocean and express freight solutions worldwide. Request a quote today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/teamcdg.com\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-09T15:32:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/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=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"name\":\"Team International | Freight Forwarding & Logistics Solutions\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"datePublished\":\"2025-12-16T08:59:12+00:00\",\"dateModified\":\"2026-04-09T15:32:05+00:00\",\"description\":\"Team International is your trusted freight forwarding partner. We offer air, ocean and express freight solutions worldwide. Request a quote today.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#primaryimage\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"contentUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"width\":793,\"height\":288,\"caption\":\"Transitaire Team International\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home Team International\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"name\":\"Team International\",\"description\":\"Team CDG\",\"publisher\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#organization\"},\"alternateName\":\"Team CDG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#organization\",\"name\":\"Team International\",\"alternateName\":\"Team CDG\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"contentUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"width\":793,\"height\":288,\"caption\":\"Team International\"},\"image\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Team International | Freight Forwarding & Logistics Solutions","description":"Team International is your trusted freight forwarding partner. We offer air, ocean and express freight solutions worldwide. Request a quote today.","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:\/\/teamcdg.com\/en\/","og_locale":"en_US","og_type":"article","og_title":"Team International | Freight Forwarding & Logistics Solutions","og_description":"Team International is your trusted freight forwarding partner. We offer air, ocean and express freight solutions worldwide. Request a quote today.","og_url":"https:\/\/teamcdg.com\/en\/","og_site_name":"Team International CDG","article_modified_time":"2026-04-09T15:32:05+00:00","og_image":[{"width":793,"height":288,"url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/teamcdg.com\/en\/","url":"https:\/\/teamcdg.com\/en\/","name":"Team International | Freight Forwarding & Logistics Solutions","isPartOf":{"@id":"https:\/\/teamcdg.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/teamcdg.com\/en\/#primaryimage"},"image":{"@id":"https:\/\/teamcdg.com\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","datePublished":"2025-12-16T08:59:12+00:00","dateModified":"2026-04-09T15:32:05+00:00","description":"Team International is your trusted freight forwarding partner. We offer air, ocean and express freight solutions worldwide. Request a quote today.","breadcrumb":{"@id":"https:\/\/teamcdg.com\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/teamcdg.com\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/teamcdg.com\/en\/#primaryimage","url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","contentUrl":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","width":793,"height":288,"caption":"Transitaire Team International"},{"@type":"BreadcrumbList","@id":"https:\/\/teamcdg.com\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"Home Team International"}]},{"@type":"WebSite","@id":"https:\/\/teamcdg.com\/en\/#website","url":"https:\/\/teamcdg.com\/en\/","name":"Team International","description":"Team CDG","publisher":{"@id":"https:\/\/teamcdg.com\/en\/#organization"},"alternateName":"Team CDG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/teamcdg.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/teamcdg.com\/en\/#organization","name":"Team International","alternateName":"Team CDG","url":"https:\/\/teamcdg.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/teamcdg.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","contentUrl":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","width":793,"height":288,"caption":"Team International"},"image":{"@id":"https:\/\/teamcdg.com\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615308","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/comments?post=987615308"}],"version-history":[{"count":39,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615308\/revisions"}],"predecessor-version":[{"id":987616926,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615308\/revisions\/987616926"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media\/987616833"}],"wp:attachment":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987615308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}