{"id":987617851,"date":"2026-07-06T11:03:08","date_gmt":"2026-07-06T11:03:08","guid":{"rendered":"https:\/\/teamcdg.com\/?page_id=987617851"},"modified":"2026-07-06T11:03:53","modified_gmt":"2026-07-06T11:03:53","slug":"transport-produits-pharmaceutiques","status":"publish","type":"page","link":"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/","title":{"rendered":"Transport Produits Pharmaceutiques"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; disabled_on=&#8221;off|off|off&#8221; module_class=&#8221;video-particle-section&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; background_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/07\/Transport-et-Logistique-de-Produits-Pharmaceutiques.jpg&#8221; background_enable_video_mp4=&#8221;off&#8221; positioning=&#8221;none&#8221; z_index=&#8221;1&#8243; custom_padding=&#8221;50px||50px||true|false&#8221; custom_padding_tablet=&#8221;153px||153px||true|false&#8221; custom_padding_phone=&#8221;50px||50px||true|false&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; alt=&#8221;Transport et Logistique de Produits Pharmaceutiques&#8221; title_text=&#8221;Transport et Logistique de Produits Pharmaceutiques&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; module_alignment=&#8221;center&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;|0px|0px|0px|false|true&#8221; animation_direction=&#8221;left&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#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; theme_builder_area=&#8221;post_content&#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; theme_builder_area=&#8221;post_content&#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++) {<!-- [et_pb_line_break_holder] -->      particles.push(new Particle());<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Animate particles<!-- [et_pb_line_break_holder] -->  function animate() {<!-- [et_pb_line_break_holder] -->    ctx.clearRect(0, 0, canvas.width, canvas.height);<!-- [et_pb_line_break_holder] -->    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;Transport produits pharmaceutiques&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700||on|||||&#8221; text_one_text_color=&#8221;#FFFFFF&#8221; text_one_font_size=&#8221;52px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;55px&#8221; text_two_line_height=&#8221;1.4em&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;1.4em&#8221; width=&#8221;100%&#8221; max_width=&#8221;1000px&#8221; custom_margin=&#8221;||36px||false|false&#8221; custom_padding=&#8221;|||80px|false|false&#8221; custom_padding_tablet=&#8221;|||80px|false|false&#8221; custom_padding_phone=&#8221;|30px||30px|false|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; hover_enabled=&#8221;0&#8243; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;38px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_two_font_size_tablet=&#8221;55px&#8221; text_two_font_size_phone=&#8221;30px&#8221; text_two_font_size_last_edited=&#8221;on|phone&#8221; text_three_font_size_tablet=&#8221;55px&#8221; text_three_font_size_phone=&#8221;30px&#8221; text_three_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(255,255,255,0.66)&#8221; custom_padding=&#8221;29px|50px|15px|50px|false|true&#8221; border_radii=&#8221;on|4px|4px|4px|4px&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221;][dnxte_multi_heading text_one=&#8221;Nous contacter&#8221; heading_tag=&#8221;p&#8221; inline_multi_align=&#8221;center&#8221; text_one_margin=&#8221;||-1px||false|false&#8221; text_one_padding=&#8221;||0px||false|false&#8221; text_two_padding=&#8221;||0px||false|false&#8221; text_three_padding=&#8221;||0px||false|false&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_align=&#8221;center&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;0px&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;0.8em&#8221; custom_margin=&#8221;||-11px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;||-14px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; 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; theme_builder_area=&#8221;post_content&#8221;][\/dnxte_multi_heading][et_pb_code _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;||30px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221;]<div id=\"bitforms_4_987617851_1\" class=\"b4-bit-form AI4 _frm-bg-b4 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_4_987617851_1\" class=\"AG4 AH4 _frm-b4 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"IbQREi0lM3Qp7wkG1LVtl6acFcxMvX35HFHgpiBF3C4=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"EfGnIIPTUFXjFoDvML60CQBDqH9xILpztki6RyZ7zDM=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_4\">\n                  <div class=\"btcd-fld-itm b4-2 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-2-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-2-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-2-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-2-lbl b4-lbl bf-lbl bf-label \" for=\"b4-2-1\">\n          \n          \n          SOCI\u00c9T\u00c9\n          \n          <span class=\"AE4 AF4  b4-2-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-2-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-2-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-2-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-2-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-2-err-txt\" autocomplete='name' name='text-b4-2' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-2-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-2-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-2-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-2-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-2-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-8 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-8-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-8-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-8-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-8-lbl b4-lbl bf-lbl bf-label \" for=\"b4-8-1\">\n          \n          \n          T\u00c9L\u00c9PHONE\n          \n          <span class=\"AE4 AF4  b4-8-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-8-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-8-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-8-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-8-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-8-err-txt\" name='text-4-8' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-8-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-8-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-8-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-8-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-8-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-7 \"><div class=\"bf-email-field J4 N4 O4 P4  b4-7-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-7-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-7-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-7-lbl b4-lbl bf-lbl bf-label \" for=\"b4-7-1\">\n          \n          \n          EMAIL\n          \n          <span class=\"AE4 AF4  b4-7-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-7-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-7-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-7-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-7-fld b4-fld bf-fld bf-field \" type=\"email\" required aria-required=\"true\" aria-describedby=\"b4-7-err-txt\" autocomplete='email' name='email-b4-7' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-7-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-7-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-7-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-7-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-7-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-3 \"><div class=\"bf-textarea-field J4 N4 O4 P4  b4-3-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-3-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-3-1-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-3-lbl b4-lbl bf-lbl bf-label \" for=\"b4-3-1\">\n          \n          \n          MESSAGE\n          \n          <span class=\"AE4 AF4  b4-3-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-3-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-3-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n      <textarea id=\"b4-3-1\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 h4 i4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AP4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-3-fld b4-fld bf-fld bf-field \" required aria-required=\"true\" aria-describedby=\"b4-3-err-txt\" name='textarea-b4-3'><\/textarea>\n      \n      \n    <\/div>\n          \n          <div class=\"K4 L4 M4  b4-3-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-3-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-3-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-3-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-3-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-9 \"><div class=\"H4 J4 O4 P4 AQ4  b4-9-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"b4-9-recaptcha-wrp\">\n          <div class=\"g-recaptcha\" data-theme=\"light\" data-size=\"normal\" data-sitekey=\"6LdKQWEtAAAAACQUYNuEmr-mSvOUDHgAGPnL5WQY\">\n          <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-1 \"><div class=\"bf-button-field J4 N4 O4 P4  b4-1-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper banner_form\">\n        \n        <div class=\"b4-1-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"D4  b4-1-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <button class=\"A4 B4 C4 D4 E4 F4 G4 H4 AJ4 AK4 AL4 AM4 AN4 AO4 Ak4 Al4 Am4  b4-1-btn b4-btn bf-btn bf-button  \" type=\"submit\" name='button-b4-1' aria-describedby=\"b4-1-err-txt\">\n          \n          ENVOYER\n          \n          <span class=\"bf-spinner d-none\" aria-hidden=\"true\"><\/span>\n        <\/button>\n      <\/div>\n          \n          \n        <\/div>\n      <\/div><\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_4_987617851_1'><\/div>\n          <!-- \n            Live Region for Screen Reader Announcements (Accessibility)\n          -->\n          <div class=\"bf-live-region\" role=\"status\" aria-live=\"polite\" style=\"position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;white-space: nowrap;border: 0\"><\/div>\n          <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A4 D4 G4 AW4 AX4 AY4 msg-container-5 deactive scroll\">\n\t              <div data-contentid=\"bitforms_4_987617851_1\" data-msgid=\"5\" role=\"button\" class=\"A4 D4 G4 H4 AV4 msg-background-5 msg-backdrop\">\n\t                <div class=\"bf-msg-content H4 P4 T4 U4 AZ4 Aq4 msg-content-5\">\n\t                  <button data-contentid=\"bitforms_4_987617851_1\" data-msgid=\"5\" class=\"C4 K4 N4 AR4 AS4 AT4 An4 Ao4 Ap4 close-5 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AU4 close-icn-5\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div>[\/et_pb_code][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.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; theme_builder_area=&#8221;post_content&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;0px||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#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; theme_builder_area=&#8221;post_content&#8221;][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.4em&#8221; custom_margin=&#8221;0px||||false|false&#8221; custom_margin_tablet=&#8221;50px||||false|false&#8221; custom_margin_phone=&#8221;50px||||false|false&#8221; custom_margin_last_edited=&#8221;on|tablet&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">Ces derni\u00e8res ann\u00e9es, le <\/span><b>commerce international<\/b><span style=\"font-weight: 400;\"> des produits de sant\u00e9 est soumis \u00e0 des normes de s\u00e9curit\u00e9 extr\u00eamement rigoureuses. L&#8217;<\/span><b>exp\u00e9dition<\/b><span style=\"font-weight: 400;\"> de produits sensibles, tels que les m\u00e9dicaments ou les vaccins, requiert une pr\u00e9cision sans faille afin de prot\u00e9ger la sant\u00e9 publique. En effet, toute variation de temp\u00e9rature risque d&#8217;alt\u00e9rer une <\/span><b>marchandise<\/b><span style=\"font-weight: 400;\"> essentielle, entra\u00eenant par la m\u00eame occasion des pr\u00e9judices financiers majeurs.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Pour ma\u00eetriser ces d\u00e9fis logistiques, l&#8217;accompagnement d&#8217;un sp\u00e9cialiste s&#8217;av\u00e8re indispensable. C&#8217;est dans cette optique que <\/span><b>Team International<\/b><span style=\"font-weight: 400;\"> d\u00e9ploie son expertise pour prot\u00e9ger l&#8217;int\u00e9gralit\u00e9 de votre supply chain. Malgr\u00e9 la s\u00e9v\u00e9rit\u00e9 des protocoles sanitaires, nous assurons la pr\u00e9servation et la st\u00e9rilit\u00e9 de vos produits m\u00e9dicaux lors de leur acheminement depuis la <\/span><b>France<\/b><span style=\"font-weight: 400;\"> vers vos march\u00e9s mondiaux.<\/span><\/p>\n<h2><b>Les enjeux vitaux du transport pharmaceutique<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Cette acc\u00e9l\u00e9ration des flux de <\/span><b>transport<\/b><span style=\"font-weight: 400;\"> ne doit, en aucun cas, compromettre la <\/span><b>qualit\u00e9<\/b><span style=\"font-weight: 400;\"> des soins. C&#8217;est pourquoi notre <\/span><b>soci\u00e9t\u00e9<\/b><span style=\"font-weight: 400;\"> s&#8217;impose un respect rigoureux des Bonnes Pratiques de Distribution (GDP) lors de chaque exp\u00e9dition.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Les particularit\u00e9s logistiques des <\/span><b>produits pharmaceutiques<\/b><span style=\"font-weight: 400;\"> imposent des standards uniques. Durant tout le <\/span><b>transit<\/b><span style=\"font-weight: 400;\">, le maintien d&#8217;une temp\u00e9rature dirig\u00e9e stricte est une obligation absolue. Pour pr\u00e9server l&#8217;int\u00e9grit\u00e9 et la st\u00e9rilit\u00e9 des colis, nous appliquons \u00e9galement des consignes de manutention sp\u00e9cifiques, telles que le fret non empilable.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Ces mesures de pr\u00e9caution sont essentielles pour prot\u00e9ger les conditionnements fragiles. Par exemple, le transport de <\/span><b>r\u00e9actifs de laboratoire<\/b><span style=\"font-weight: 400;\"> exige une d\u00e9licatesse totale. Nos agents re\u00e7oivent une formation sp\u00e9cialis\u00e9e pour garantir l&#8217;application stricte de ces protocoles.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Sur le plan administratif, le passage en <\/span><b>douane<\/b><span style=\"font-weight: 400;\"> constitue un jalon d\u00e9terminant. <\/span><a href=\"https:\/\/teamcdg.com\/entreprise\/\"><span style=\"font-weight: 400;\">L&#8217;\u00e9quipe de <\/span><b>Team International<\/b><\/a><span style=\"font-weight: 400;\"> s\u00e9curise vos flux en anticipant le contr\u00f4le de chaque <\/span><b>document<\/b><span style=\"font-weight: 400;\"> requis (attestations sanitaires, certificats d&#8217;origine) par les autorit\u00e9s de chaque <\/span><b>pays<\/b><span style=\"font-weight: 400;\">.<\/span> <span style=\"font-weight: 400;\">Nous facilitons aussi vos d\u00e9marches d&#8217;<\/span><b>import export<\/b><span style=\"font-weight: 400;\"> via la gestion de votre num\u00e9ro <\/span><b>EORI<\/b><span style=\"font-weight: 400;\">. Cette expertise permet d&#8217;optimiser le <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> de traitement aux fronti\u00e8res.<\/span><\/p>\n<h2><b>Nos solutions logistiques d\u00e9di\u00e9es au secteur de la sant\u00e9<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Pour r\u00e9pondre aux urgences sanitaires, nous d\u00e9ployons des <\/span><b>services<\/b><span style=\"font-weight: 400;\"> multimodaux sur mesure. Le <\/span><a href=\"https:\/\/teamcdg.com\/fret-aerien\/\"><b>fret a\u00e9rien<\/b><\/a><span style=\"font-weight: 400;\"> demeure la solution id\u00e9ale pour vos <\/span><b>vaccins<\/b><span style=\"font-weight: 400;\"> et <\/span><b>m\u00e9dicaments<\/b><span style=\"font-weight: 400;\"> critiques. Ce mode de transport assure un <\/span><b>d\u00e9lai<\/b><span style=\"font-weight: 400;\"> de livraison extr\u00eamement rapide.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">M\u00eame si le <\/span><b>prix<\/b><span style=\"font-weight: 400;\"> est plus cons\u00e9quent, la s\u00e9curit\u00e9 des patients reste notre priorit\u00e9 absolue. En revanche, pour vos \u00e9quipements moins pressants, le <\/span><a href=\"https:\/\/teamcdg.com\/fret-maritime\/\"><b>fret maritime<\/b><span style=\"font-weight: 400;\"> en conteneur Reefer<\/span><\/a><span style=\"font-weight: 400;\"> offre une alternative \u00e9conomique performante.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">D\u00e8s <\/span><a href=\"https:\/\/teamcdg.com\/contact\/\"><span style=\"font-weight: 400;\">la premi\u00e8re prise de contact<\/span><\/a><span style=\"font-weight: 400;\">, nous int\u00e9grons vos contraintes sp\u00e9cifiques. Nous adaptons nos \u00e9quipements \u00e0 la fragilit\u00e9 de votre <\/span><b>produit<\/b><span style=\"font-weight: 400;\"> avec des solutions d\u00e9di\u00e9es :<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Suivi rigoureux de la temp\u00e9rature pour vos <\/span><b>produits biologiques<\/b><span style=\"font-weight: 400;\"> ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Protection de vos <\/span><b>dispositifs m\u00e9dicaux<\/b><span style=\"font-weight: 400;\"> par la r\u00e8gle du non empilable ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Organisation de <\/span><a href=\"https:\/\/teamcdg.com\/fret-express\/\"><b>vols cargo<\/b><span style=\"font-weight: 400;\"> express<\/span><\/a><span style=\"font-weight: 400;\"> pour les imp\u00e9ratifs de <\/span><b>sant\u00e9<\/b><span style=\"font-weight: 400;\"> publique ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Expertise documentaire pour un <\/span><b>d\u00e9douanement<\/b><span style=\"font-weight: 400;\"> sans accroc.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Chaque prestation vise \u00e0 favoriser la <\/span><b>croissance<\/b><span style=\"font-weight: 400;\"> de votre <\/span><b>entreprise<\/b><span style=\"font-weight: 400;\">. Gr\u00e2ce \u00e0 un interlocuteur unique, nous garantissons une <\/span><b>communication<\/b><span style=\"font-weight: 400;\"> fluide et une <\/span><b>confiance<\/b><span style=\"font-weight: 400;\"> durable. Notre r\u00e9activit\u00e9 imm\u00e9diate face aux changements de planning est le pilier de notre <\/span><b>organisation<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<h2><b>Le processus op\u00e9rationnel pour la logistique des produits de sant\u00e9<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Sachez qu&#8217;une <\/span><b>exp\u00e9dition<\/b><span style=\"font-weight: 400;\"> pharmaceutique r\u00e9ussie exige une pr\u00e9paration minutieuse. <\/span><b>Notons qu&#8217;on<\/b><span style=\"font-weight: 400;\"> commence toujours par analyser la fiche de donn\u00e9es de s\u00e9curit\u00e9 (MSDS) si votre envoi comporte des \u00e9l\u00e9ments chimiques. <\/span><b>Rappelons que<\/b><span style=\"font-weight: 400;\"> cette validation garantit le respect de la <\/span><b>r\u00e9glementation<\/b><span style=\"font-weight: 400;\"> DGR pour les mati\u00e8res dangereuses.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">En effet, nous v\u00e9rifions \u00e9galement les codes douaniers pour optimiser vos \u00e9ventuels <\/span><b>droits de douane<\/b><span style=\"font-weight: 400;\">. En plus, notre <\/span><b>\u00e9quipe<\/b><span style=\"font-weight: 400;\"> s&#8217;assure que les emballages utilis\u00e9s sont homologu\u00e9s pour le transport m\u00e9dical international. Il est important de souligner que la phase d&#8217;enl\u00e8vement est particuli\u00e8rement critique.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Notez que nous mobilisons des v\u00e9hicules pr\u00e9-r\u00e9frig\u00e9r\u00e9s avant m\u00eame d&#8217;arriver sur votre site de <\/span><b>production<\/b><span style=\"font-weight: 400;\">. De surcro\u00eet, le chargement s&#8217;effectue sous haute surveillance pour respecter la consigne du fret non empilable.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Bien que les cadences soient intenses, nos manutentionnaires prennent le <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> n\u00e9cessaire pour s\u00e9curiser les palettes. Il est \u00e0 noter que l&#8217;\u00e9mission de la lettre de transport a\u00e9rien (LTA) valide formellement cette prise en charge coordonn\u00e9e.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">En effet, l&#8217;acheminement se d\u00e9roule ensuite sous un contr\u00f4le permanent. <\/span><b>Il est important de noter<\/b><span style=\"font-weight: 400;\"> que nous coordonnons l&#8217;arriv\u00e9e du <\/span><b>fret<\/b><span style=\"font-weight: 400;\"> avec nos agents <\/span><b>locaux<\/b><span style=\"font-weight: 400;\"> pour \u00e9viter toute rupture de la cha\u00eene du froid sur le tarmac. \u00c0 titre d&#8217;exemple, le transfert vers les zones de <\/span><b>stockage<\/b><span style=\"font-weight: 400;\"> sous temp\u00e9rature dirig\u00e9e est imm\u00e9diat d\u00e8s l&#8217;atterrissage.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Ainsi, le <\/span><b>processus<\/b><span style=\"font-weight: 400;\"> de livraison finale vers les h\u00f4pitaux ou les distributeurs s&#8217;effectue avec une fluidit\u00e9 remarquable. Cette ma\u00eetrise op\u00e9rationnelle compl\u00e8te s\u00e9curise durablement votre <\/span><b>investissement<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<h2><b>Atouts strat\u00e9giques : Tra\u00e7abilit\u00e9, assurance et respect du produit<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Dans le secteur m\u00e9dical, la <\/span><b>visibilit\u00e9<\/b><span style=\"font-weight: 400;\"> s&#8217;est impos\u00e9e comme un standard incontournable. C&#8217;est pourquoi nous int\u00e9grons des <\/span><b>capteurs embarqu\u00e9s<\/b><span style=\"font-weight: 400;\"> \u00e0 toutes nos exp\u00e9ditions critiques. Ces dispositifs de haute technologie assurent un suivi pr\u00e9cis des chocs, de l&#8217;humidit\u00e9 et de la temp\u00e9rature durant l&#8217;int\u00e9gralit\u00e9 du transit.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Cette approche vous garantit une <\/span><b>tra\u00e7abilit\u00e9 24\/7<\/b><span style=\"font-weight: 400;\"> accessible depuis notre plateforme s\u00e9curis\u00e9e. Gr\u00e2ce \u00e0 une telle transparence, il devient ais\u00e9 de justifier du respect des conditions de conservation aupr\u00e8s des autorit\u00e9s de <\/span><b>sant\u00e9<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Compte tenu de la <\/span><b>valeur<\/b><span style=\"font-weight: 400;\"> souvent tr\u00e8s \u00e9lev\u00e9e des cargaisons de m\u00e9dicaments, nous incluons d&#8217;office une <\/span><b>assurance ad valorem<\/b><span style=\"font-weight: 400;\">. Cette solution sur mesure est con\u00e7ue pour pr\u00e9munir votre capital contre les al\u00e9as li\u00e9s au <\/span><b>commerce international<\/b><span style=\"font-weight: 400;\">.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Bien que nos protocoles de <\/span><b>s\u00e9curit\u00e9<\/b><span style=\"font-weight: 400;\"> soient drastiques, l&#8217;al\u00e9a du transport existe toujours. De plus, cette protection financi\u00e8re rassure vos actionnaires et vos propres <\/span><b>partenaires commerciaux<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Il est important de noter que notre <\/span><b>soci\u00e9t\u00e9<\/b><span style=\"font-weight: 400;\"> s&#8217;engage \u00e9galement en faveur de la <\/span><b>durabilit\u00e9<\/b><span style=\"font-weight: 400;\">. En effet, le secteur de la <\/span><b>logistique<\/b><span style=\"font-weight: 400;\"> doit r\u00e9duire son impact sur le climat mondial. Ainsi, nous mettons \u00e0 votre disposition des outils de mesure pr\u00e9cis pour vos flux de <\/span><b>marchandise<\/b><span style=\"font-weight: 400;\">. Nos engagements strat\u00e9giques s&#8217;articulent ainsi :<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">le suivi thermique continu garantissant l&#8217;int\u00e9grit\u00e9 absolue de vos <\/span><b>compl\u00e9ments alimentaires<\/b><span style=\"font-weight: 400;\"> ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">la fourniture d&#8217;un <\/span><b>CO\u2082 report<\/b><span style=\"font-weight: 400;\"> d\u00e9taill\u00e9 pour quantifier l&#8217;empreinte de vos <\/span><b>\u00e9changes<\/b><span style=\"font-weight: 400;\"> ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">la mise en place d&#8217;une assurance ad valorem pour s\u00e9curiser la <\/span><b>valeur<\/b><span style=\"font-weight: 400;\"> de votre exp\u00e9dition.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Cette synergie entre innovation technologique, protection et engagement environnemental constitue notre valeur ajout\u00e9e. Il s&#8217;av\u00e8re que nos partenaires privil\u00e9gient cette vision globale de la <\/span><b>supply chain<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">En r\u00e9alit\u00e9, les experts de <\/span><b>Team International<\/b><span style=\"font-weight: 400;\"> vont bien au-del\u00e0 de la prestation de transport classique. En harmonisant <\/span><a href=\"https:\/\/teamcdg.com\/services\/\"><span style=\"font-weight: 400;\">notre <\/span><b>qualit\u00e9<\/b><span style=\"font-weight: 400;\"> de service<\/span><\/a><span style=\"font-weight: 400;\"> avec vos imp\u00e9ratifs de <\/span><b>production<\/b><span style=\"font-weight: 400;\">, nous nous int\u00e9grons comme une composante essentielle de votre strat\u00e9gie d&#8217;excellence.<\/span><\/p>\n<h2><b>Les types de produits m\u00e9dicaux et les destinations desservies<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Notre savoir-faire englobe une vaste gamme de <\/span><b>produits<\/b><span style=\"font-weight: 400;\"> m\u00e9dicaux. Au quotidien, nous assurons l&#8217;acheminement de <\/span><b>m\u00e9dicaments<\/b><span style=\"font-weight: 400;\">, de <\/span><b>vaccins<\/b><span style=\"font-weight: 400;\">, ainsi que de <\/span><b>dispositifs m\u00e9dicaux<\/b><span style=\"font-weight: 400;\"> sophistiqu\u00e9s. Par ailleurs, nous pilotons le transit de <\/span><b>r\u00e9actifs de laboratoire<\/b><span style=\"font-weight: 400;\"> et de <\/span><b>produits biologiques<\/b><span style=\"font-weight: 400;\"> particuli\u00e8rement sensibles.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Le secteur des <\/span><b>compl\u00e9ments alimentaires<\/b><span style=\"font-weight: 400;\"> profite \u00e9galement de notre expertise logistique. Pour chaque cat\u00e9gorie, nous garantissons un maintien thermique sp\u00e9cifique afin de pr\u00e9server la <\/span><b>qualit\u00e9<\/b><span style=\"font-weight: 400;\"> des principes actifs.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Gr\u00e2ce \u00e0 notre maillage international, nous connectons la <\/span><b>France<\/b><span style=\"font-weight: 400;\"> aux p\u00f4les de <\/span><b>consommation<\/b><span style=\"font-weight: 400;\"> majeurs. Nous soutenons l&#8217;expansion des laboratoires vers l&#8217;Am\u00e9rique du Nord, le <\/span><b>Moyen-Orient<\/b><span style=\"font-weight: 400;\"> et l&#8217;<\/span><b>Asie<\/b><span style=\"font-weight: 400;\">. Concernant le continent africain, nous intervenons uniquement en rendu port ou a\u00e9roport, \u00e0 l&#8217;exception de l&#8217;Afrique du Sud.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">M\u00eame face aux contraintes d&#8217;<\/span><b>infrastructure<\/b><span style=\"font-weight: 400;\"> locales, nos \u00e9quipes certifi\u00e9es s\u00e9curisent chaque <\/span><b>livraison<\/b><span style=\"font-weight: 400;\">. Notre ma\u00eetrise de la <\/span><b>haute technologie<\/b><span style=\"font-weight: 400;\"> m\u00e9dicale compl\u00e8te nos comp\u00e9tences. En outre, nous accompagnons le secteur a\u00e9ronautique pour le transport de moteurs d&#8217;avion, de pi\u00e8ces d&#8217;avion et d&#8217;\u00e9quipements associ\u00e9s avec les m\u00eames standards de rigueur que pour nos autres prestations, permettant par exemple le transport de scanners IRM avec une pr\u00e9cision totale.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Cette approche &#8220;gants blancs&#8221; pour les \u00e9quipements lourds et fragiles fait toute la <\/span><b>diff\u00e9rence<\/b><span style=\"font-weight: 400;\">. Nous nous affirmons ainsi comme un partenaire cl\u00e9 de la <\/span><b>sant\u00e9<\/b><span style=\"font-weight: 400;\"> mondiale, offrant un <\/span><b>soutien<\/b><span style=\"font-weight: 400;\"> logistique irr\u00e9prochable.<\/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.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; theme_builder_area=&#8221;post_content&#8221;][et_pb_row _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_margin=&#8221;||10px||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||||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#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; theme_builder_area=&#8221;post_content&#8221;][et_pb_text _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; header_2_font=&#8221;Montserrat|700|||||||&#8221; header_2_text_align=&#8221;center&#8221; header_2_text_color=&#8221;#000000&#8243; header_2_font_size=&#8221;34px&#8221; header_2_line_height=&#8221;1.2em&#8221; hover_enabled=&#8221;0&#8243; header_2_font_size_tablet=&#8221;34px&#8221; header_2_font_size_phone=&#8221;30px&#8221; header_2_font_size_last_edited=&#8221;on|phone&#8221; header_2_line_height_tablet=&#8221;1.2em&#8221; header_2_line_height_phone=&#8221;1.2em&#8221; header_2_line_height_last_edited=&#8221;on|phone&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<h2><strong>FAQ : Transport de produits pharmaceutiques<br \/>\n<\/strong><\/h2>\n<p>[\/et_pb_text][\/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.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;90%&#8221; width_tablet=&#8221;90%&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#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; theme_builder_area=&#8221;post_content&#8221;][et_pb_accordion _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_accordion_item title=&#8221;Quelles sont les exigences pour le transport de vaccins ? &#8221; open=&#8221;on&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#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; hover_enabled=&#8221;0&#8243; border_width_all=&#8221;0px&#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; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">La logistique des <\/span><b>vaccins<\/b><span style=\"font-weight: 400;\"> repose sur le maintien imp\u00e9ratif d&#8217;une cha\u00eene du froid ininterrompue. Pour y parvenir, nous mobilisons des technologies de pointe telles que des conteneurs frigorifiques innovants et des emballages isothermes certifi\u00e9s. Par ailleurs, nos <\/span><b>capteurs embarqu\u00e9s<\/b><span style=\"font-weight: 400;\"> assurent un suivi thermique rigoureux durant tout le <\/span><b>transit<\/b><span style=\"font-weight: 400;\">, confirmant l&#8217;efficacit\u00e9 du produit d\u00e8s sa r\u00e9ception.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Comment garantissez-vous l&#8217;int\u00e9grit\u00e9 des dispositifs m\u00e9dicaux ? &#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#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; hover_enabled=&#8221;0&#8243; border_width_all=&#8221;0px&#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; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">Notons que nous appliquons la r\u00e8gle stricte du fret non empilable pour toutes les exp\u00e9ditions de <\/span><b>dispositifs m\u00e9dicaux<\/b><span style=\"font-weight: 400;\">. En effet, cette consigne emp\u00eache l&#8217;\u00e9crasement des cartons et pr\u00e9serve la st\u00e9rilit\u00e9 des emballages primaires. En plus, nous veillons \u00e0 ce que les manipulations logistiques soient effectu\u00e9es avec une pr\u00e9caution extr\u00eame par nos \u00e9quipes sp\u00e9cialis\u00e9es.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;G\u00e9rez-vous les formalit\u00e9s douani\u00e8res pour les r\u00e9actifs de laboratoire ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#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; hover_enabled=&#8221;0&#8243; border_width_all=&#8221;0px&#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; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">Absolument, notre <\/span><b>\u00e9quipe<\/b><span style=\"font-weight: 400;\"> ma\u00eetrise parfaitement la nomenclature douani\u00e8re des produits chimiques et biologiques. <\/span><b>Rappelons que<\/b><span style=\"font-weight: 400;\"> nous v\u00e9rifions vos fiches MSDS et nous pr\u00e9parons les d\u00e9clarations requises pour les marchandises class\u00e9es dangereuses. En effet, cette expertise \u00e9vite tout blocage en <\/span><b>douane<\/b><span style=\"font-weight: 400;\"> pour vos <\/span><b>r\u00e9actifs de laboratoire<\/b><span style=\"font-weight: 400;\">.<\/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; theme_builder_area=&#8221;post_content&#8221;][et_pb_accordion _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_accordion_item title=&#8221;Qu&#8217;est-ce que l&#8217;assurance ad valorem et pourquoi la recommandez-vous ?&#8221; open=&#8221;on&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#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; hover_enabled=&#8221;0&#8243; border_width_all=&#8221;0px&#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; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">Notez bien que l&#8217;<\/span><b>assurance ad valorem<\/b><span style=\"font-weight: 400;\"> est con\u00e7ue pour couvrir la <\/span><b>valeur<\/b><span style=\"font-weight: 400;\"> marchande effective de votre <\/span><b>marchandise<\/b><span style=\"font-weight: 400;\">, se distinguant ainsi d&#8217;un d\u00e9dommagement forfaitaire bas\u00e9 sur le poids. \u00c9tant donn\u00e9 que les produits de sant\u00e9 constituent fr\u00e9quemment un capital de grande importance, cette protection financi\u00e8re devient un outil de s\u00e9curit\u00e9 crucial pour pr\u00e9server les ressources de votre <\/span><b>entreprise<\/b><span style=\"font-weight: 400;\"> face aux risques inh\u00e9rents au transport.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Proposez-vous un suivi environnemental pour nos exp\u00e9ditions m\u00e9dicales ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#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; hover_enabled=&#8221;0&#8243; border_width_all=&#8221;0px&#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; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">La <\/span><b>durabilit\u00e9<\/b><span style=\"font-weight: 400;\"> constitue d\u00e9sormais une priorit\u00e9 majeure de nos activit\u00e9s. C&#8217;est pourquoi un <\/span><b>CO\u2082 report<\/b><span style=\"font-weight: 400;\"> accompagne syst\u00e9matiquement chaque flux logistique international. Ce relev\u00e9 technique vous aide \u00e0 mesurer pr\u00e9cis\u00e9ment votre empreinte carbone et \u00e0 satisfaire aux engagements RSE de votre laboratoire.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Quels types de temp\u00e9ratures pouvez-vous maintenir pendant le transport ?&#8221; open_toggle_text_color=&#8221;#000000&#8243; open_toggle_background_color=&#8221;rgba(0,0,0,0.03)&#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; hover_enabled=&#8221;0&#8243; border_width_all=&#8221;0px&#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; theme_builder_area=&#8221;post_content&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<p><span style=\"font-weight: 400;\">Sachez que nous g\u00e9rons l&#8217;ensemble des plages thermiques requises par l&#8217;industrie de la sant\u00e9. Bien que le voyage soit <\/span><b>lointain<\/b><span style=\"font-weight: 400;\">, nous maintenons des temp\u00e9ratures dirig\u00e9es pr\u00e9cises, du froid n\u00e9gatif (surgel\u00e9) jusqu&#8217;au froid positif strict (+2\u00b0C \u00e0 +8\u00b0C) ou \u00e0 la temp\u00e9rature ambiante contr\u00f4l\u00e9e (+15\u00b0C \u00e0 +25\u00b0C). Aussi, nos installations de <\/span><b>stockage<\/b><span style=\"font-weight: 400;\"> reproduisent ces m\u00eames conditions certifi\u00e9es.<\/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\">Transport produits pharmaceutiques<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_1\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><p class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Nous contacter<\/span><\/span><\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div id=\"bitforms_4_987617851_2\" class=\"b4-bit-form AI4 _frm-bg-b4 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_4_987617851_2\" class=\"AG4 AH4 _frm-b4 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"ahsFpZW8+fA8pN\/lrsE7ZQ6oQza5VcddZvYZQiOk2X8=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"Q7N3fctTr08E5QeAlX3vqvV0sDN0R3zNiQPoKD7XL9E=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_4\">\n                  <div class=\"btcd-fld-itm b4-2 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-2-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-2-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-2-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-2-lbl b4-lbl bf-lbl bf-label \" for=\"b4-2-2\">\n          \n          \n          SOCI\u00c9T\u00c9\n          \n          <span class=\"AE4 AF4  b4-2-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-2-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-2-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-2-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-2-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-2-err-txt\" autocomplete='name' name='text-b4-2' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-2-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-2-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-2-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-2-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-2-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-8 \"><div class=\"bf-text-field J4 N4 O4 P4  b4-8-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-8-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-8-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-8-lbl b4-lbl bf-lbl bf-label \" for=\"b4-8-2\">\n          \n          \n          T\u00c9L\u00c9PHONE\n          \n          <span class=\"AE4 AF4  b4-8-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-8-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-8-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-8-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-8-fld b4-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b4-8-err-txt\" name='text-4-8' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-8-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-8-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-8-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-8-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-8-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-7 \"><div class=\"bf-email-field J4 N4 O4 P4  b4-7-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-7-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-7-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-7-lbl b4-lbl bf-lbl bf-label \" for=\"b4-7-2\">\n          \n          \n          EMAIL\n          \n          <span class=\"AE4 AF4  b4-7-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-7-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-7-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b4-7-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 g4 h4 i4 j4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-7-fld b4-fld bf-fld bf-field \" type=\"email\" required aria-required=\"true\" aria-describedby=\"b4-7-err-txt\" autocomplete='email' name='email-b4-7' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K4 L4 M4  b4-7-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-7-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-7-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-7-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-7-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-3 \"><div class=\"bf-textarea-field J4 N4 O4 P4  b4-3-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H4 z4 AD4  b4-3-lbl-wrp b4-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b4-3-2-lbl\" class=\"A4 D4 H4 z4 AA4 AB4 AC4  b4-3-lbl b4-lbl bf-lbl bf-label \" for=\"b4-3-2\">\n          \n          \n          MESSAGE\n          \n          <span class=\"AE4 AF4  b4-3-req-smbl b4-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b4-3-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P4 y4  b4-3-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n      <textarea id=\"b4-3-2\" class=\"B4 E4 F4 a4 b4 c4 d4 e4 f4 h4 i4 k4 l4 m4 n4 o4 p4 q4 r4 s4 t4 u4 v4 w4 x4 AP4 Aa4 Ab4 Ac4 Ad4 Ae4 Af4 Ag4 Ah4 Ai4 Aj4  b4-3-fld b4-fld bf-fld bf-field \" required aria-required=\"true\" aria-describedby=\"b4-3-err-txt\" name='textarea-b4-3'><\/textarea>\n      \n      \n    <\/div>\n          \n          <div class=\"K4 L4 M4  b4-3-err-wrp b4-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I4  b4-3-err-inner b4-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b4-3-err-txt\" class=\"A4 D4 Q4 R4 S4 T4 U4 V4 W4 X4 Y4 Z4  b4-3-err-msg b4-err-msg bf-err-msg bf-error-messages-container  J4  b4-3-err-txt b4-err-txt bf-err-txt bf-error-text  \">\n            \n          <\/div>\n          \n          \n        <\/div>\n      <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-9 \"><div class=\"H4 J4 O4 P4 AQ4  b4-9-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"b4-9-recaptcha-wrp\">\n          <div class=\"g-recaptcha\" data-theme=\"light\" data-size=\"normal\" data-sitekey=\"6LdKQWEtAAAAACQUYNuEmr-mSvOUDHgAGPnL5WQY\">\n          <\/div>\n        <\/div>\n      <\/div><\/div><div class=\"btcd-fld-itm b4-1 \"><div class=\"bf-button-field J4 N4 O4 P4  b4-1-fld-wrp b4-fld-wrp bf-fld-wrp bf-field-wrapper banner_form\">\n        \n        <div class=\"b4-1-inp-wrp b4-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"D4  b4-1-inp-fld-wrp b4-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <button class=\"A4 B4 C4 D4 E4 F4 G4 H4 AJ4 AK4 AL4 AM4 AN4 AO4 Ak4 Al4 Am4  b4-1-btn b4-btn bf-btn bf-button  \" type=\"submit\" name='button-b4-1' aria-describedby=\"b4-1-err-txt\">\n          \n          ENVOYER\n          \n          <span class=\"bf-spinner d-none\" aria-hidden=\"true\"><\/span>\n        <\/button>\n      <\/div>\n          \n          \n        <\/div>\n      <\/div><\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_4_987617851_2'><\/div>\n          <!-- \n            Live Region for Screen Reader Announcements (Accessibility)\n          -->\n          <div class=\"bf-live-region\" role=\"status\" aria-live=\"polite\" style=\"position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;white-space: nowrap;border: 0\"><\/div>\n          <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A4 D4 G4 AW4 AX4 AY4 msg-container-5 deactive scroll\">\n\t              <div data-contentid=\"bitforms_4_987617851_2\" data-msgid=\"5\" role=\"button\" class=\"A4 D4 G4 H4 AV4 msg-background-5 msg-backdrop\">\n\t                <div class=\"bf-msg-content H4 P4 T4 U4 AZ4 Aq4 msg-content-5\">\n\t                  <button data-contentid=\"bitforms_4_987617851_2\" data-msgid=\"5\" class=\"C4 K4 N4 AR4 AS4 AT4 An4 Ao4 Ap4 close-5 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AU4 close-icn-5\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div>Ces derni\u00e8res ann\u00e9es, le commerce international des produits de sant\u00e9 est soumis \u00e0 des normes de s\u00e9curit\u00e9 extr\u00eamement rigoureuses. L&#8217;exp\u00e9dition de produits sensibles, tels que les m\u00e9dicaments ou les vaccins, requiert une pr\u00e9cision sans faille afin de prot\u00e9ger la sant\u00e9 publique. En effet, toute variation de temp\u00e9rature risque d&#8217;alt\u00e9rer une marchandise essentielle, entra\u00eenant par la m\u00eame occasion des pr\u00e9judices financiers majeurs. Pour ma\u00eetriser ces d\u00e9fis logistiques, l&#8217;accompagnement d&#8217;un sp\u00e9cialiste s&#8217;av\u00e8re indispensable. C&#8217;est dans cette optique que Team International d\u00e9ploie son expertise pour prot\u00e9ger l&#8217;int\u00e9gralit\u00e9 de votre supply chain. Malgr\u00e9 la s\u00e9v\u00e9rit\u00e9 des protocoles sanitaires, nous assurons la pr\u00e9servation et la st\u00e9rilit\u00e9 de vos produits m\u00e9dicaux lors de [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-987617851","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Logistique Pharmaceutique : Expert Team International<\/title>\n<meta name=\"description\" content=\"Team International optimise votre transport de produits pharmaceutiques. S\u00e9curit\u00e9, cha\u00eene du froid et douane garanties pour vos flux m\u00e9dicaux.\" \/>\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\/transport-produits-pharmaceutiques\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Logistique Pharmaceutique : Expert Team International\" \/>\n<meta property=\"og:description\" content=\"Team International optimise votre transport de produits pharmaceutiques. S\u00e9curit\u00e9, cha\u00eene du froid et douane garanties pour vos flux m\u00e9dicaux.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-06T11:03:53+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=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-produits-pharmaceutiques\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-produits-pharmaceutiques\\\/\",\"name\":\"Logistique Pharmaceutique : Expert Team International\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\"},\"datePublished\":\"2026-07-06T11:03:08+00:00\",\"dateModified\":\"2026-07-06T11:03:53+00:00\",\"description\":\"Team International optimise votre transport de produits pharmaceutiques. S\u00e9curit\u00e9, cha\u00eene du froid et douane garanties pour vos flux m\u00e9dicaux.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-produits-pharmaceutiques\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-produits-pharmaceutiques\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-produits-pharmaceutiques\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Transport Produits Pharmaceutiques\"}]},{\"@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":"Logistique Pharmaceutique : Expert Team International","description":"Team International optimise votre transport de produits pharmaceutiques. S\u00e9curit\u00e9, cha\u00eene du froid et douane garanties pour vos flux m\u00e9dicaux.","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\/transport-produits-pharmaceutiques\/","og_locale":"en_US","og_type":"article","og_title":"Logistique Pharmaceutique : Expert Team International","og_description":"Team International optimise votre transport de produits pharmaceutiques. S\u00e9curit\u00e9, cha\u00eene du froid et douane garanties pour vos flux m\u00e9dicaux.","og_url":"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/","og_site_name":"Team International CDG","article_modified_time":"2026-07-06T11:03:53+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":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/","url":"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/","name":"Logistique Pharmaceutique : Expert Team International","isPartOf":{"@id":"https:\/\/teamcdg.com\/en\/#website"},"datePublished":"2026-07-06T11:03:08+00:00","dateModified":"2026-07-06T11:03:53+00:00","description":"Team International optimise votre transport de produits pharmaceutiques. S\u00e9curit\u00e9, cha\u00eene du froid et douane garanties pour vos flux m\u00e9dicaux.","breadcrumb":{"@id":"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/teamcdg.com\/en\/transport-produits-pharmaceutiques\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"Transport Produits Pharmaceutiques"}]},{"@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\/987617851","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/comments?post=987617851"}],"version-history":[{"count":7,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617851\/revisions"}],"predecessor-version":[{"id":987617862,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617851\/revisions\/987617862"}],"wp:attachment":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987617851"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}