{"id":987617876,"date":"2026-07-06T11:33:44","date_gmt":"2026-07-06T11:33:44","guid":{"rendered":"https:\/\/teamcdg.com\/?page_id=987617876"},"modified":"2026-07-06T11:44:05","modified_gmt":"2026-07-06T11:44:05","slug":"transport-oeuvres-dart","status":"publish","type":"page","link":"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/","title":{"rendered":"Transport Oeuvres d\u2019Art"},"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-Oeuvres-dArt.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; alt=&#8221;Transport Oeuvres d\u2019Art<br \/>\n&#8221; title_text=&#8221;Transport Oeuvres d\u2019Art&#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;][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++) {<!-- [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 Oeuvres d\u2019Art&#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; 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;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(255,255,255,0.66)&#8221; custom_padding=&#8221;29px|50px|15px|50px|false|true&#8221; border_radii=&#8221;on|4px|4px|4px|4px&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;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;][\/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;]<div id=\"bitforms_4_987617876_1\" class=\"b4-bit-form AI4 _frm-bg-b4 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_4_987617876_1\" class=\"AG4 AH4 _frm-b4 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"VaaPZDk2Xyvd7F6+UWfV3XwJtVkzad3D7dzXijrEBTo=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"NdNy3T1hGeto+QU4bucRrRS7QXUcyIY570KiO5r3n28=\">\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_987617876_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_987617876_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_987617876_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;][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;][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;][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; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p><span style=\"font-weight: 400;\">Le <\/span><b>march\u00e9<\/b><span style=\"font-weight: 400;\"> de l&#8217;art impose aujourd&#8217;hui des standards de rigueur sans pr\u00e9c\u00e9dent pour chaque <\/span><b>exp\u00e9dition<\/b><span style=\"font-weight: 400;\"> internationale. Notez que le transfert de pi\u00e8ces d&#8217;exception, qu&#8217;il s&#8217;agisse de sculptures ou de toiles de ma\u00eetres, requiert une expertise de pointe. Alors que l&#8217;<\/span><b>\u00e9conomie<\/b><span style=\"font-weight: 400;\"> cr\u00e9ative conna\u00eet un essor remarquable, les institutions mus\u00e9ales et les galeries doivent naviguer au sein d&#8217;une <\/span><b>r\u00e9glementation<\/b><span style=\"font-weight: 400;\"> douani\u00e8re de plus en plus complexe.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">C&#8217;est dans ce contexte exigeant que <\/span><a href=\"https:\/\/teamcdg.com\/\"><span style=\"font-weight: 400;\">l&#8217;\u00e9quipe de <\/span><b>Team International<\/b><\/a><span style=\"font-weight: 400;\"> se positionne comme votre <\/span><b>partenaire<\/b><span style=\"font-weight: 400;\"> de confiance. Nous veillons \u00e0 ce que nous veillons \u00e0 la <\/span><b>s\u00e9curit\u00e9<\/b><span style=\"font-weight: 400;\"> absolue de vos biens en orchestrant des d\u00e9placements d&#8217;une pr\u00e9cision chirurgicale. De fait, notre <\/span><b>soci\u00e9t\u00e9<\/b><span style=\"font-weight: 400;\"> met en \u0153uvre un savoir-faire logistique de <\/span><b>porte \u00e0 porte<\/b><span style=\"font-weight: 400;\">. Notre objectif est de garantir que chaque <\/span><b>\u0153uvre<\/b><span style=\"font-weight: 400;\"> soit transport\u00e9e dans un cocon protecteur partout dans le <\/span><b>monde<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<h2><b>La croissance \u00e9conomique mondiale et l&#8217;import export d&#8217;\u0153uvres d&#8217;art<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Il est essentiel de comprendre que l&#8217;<\/span><b>import export<\/b><span style=\"font-weight: 400;\"> d&#8217;\u0153uvres d&#8217;art \u00e9volue en corr\u00e9lation \u00e9troite avec la <\/span><b>croissance \u00e9conomique<\/b><span style=\"font-weight: 400;\"> des principaux p\u00f4les mondiaux. Des nations telles que la <\/span><b>France<\/b><span style=\"font-weight: 400;\">, l&#8217;<\/span><b>Allemagne<\/b><span style=\"font-weight: 400;\"> ou le <\/span><b>Royaume Uni<\/b><span style=\"font-weight: 400;\"> s&#8217;affirment comme les piliers historiques de ce <\/span><b>commerce international<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Chaque <\/span><b>ann\u00e9e<\/b><span style=\"font-weight: 400;\">, les institutions et les collectionneurs injectent des <\/span><b>millions<\/b><span style=\"font-weight: 400;\">, voire des <\/span><b>milliards<\/b><span style=\"font-weight: 400;\"> de <\/span><b>usd<\/b><span style=\"font-weight: 400;\"> pour valoriser leurs fonds. Ce dynamisme impacte directement le <\/span><b>pib<\/b><span style=\"font-weight: 400;\"> et les <\/span><b>revenu<\/b><span style=\"font-weight: 400;\"> des entit\u00e9s culturelles, tant publiques que priv\u00e9es. Ainsi, le <\/span><b>secteur<\/b><span style=\"font-weight: 400;\"> de l&#8217;art devient un moteur de cr\u00e9ation d&#8217;<\/span><b>emploi<\/b><span style=\"font-weight: 400;\"> et un vecteur de prestige pour chaque <\/span><b>nation<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Notre expertise logistique se concentre strat\u00e9giquement sur des corridors \u00e0 haute valeur ajout\u00e9e. Team International d\u00e9ploie un savoir-faire sp\u00e9cifique pour s\u00e9curiser vos flux vers l&#8217;<\/span><b>Afrique du Sud<\/b><span style=\"font-weight: 400;\">, les <\/span><b>USA<\/b><span style=\"font-weight: 400;\">, l&#8217;<\/span><b>Asie<\/b><span style=\"font-weight: 400;\"> et le <\/span><b>Moyen-Orient<\/b><span style=\"font-weight: 400;\">. Il convient de pr\u00e9ciser que notre couverture sur le continent africain est exclusivement limit\u00e9e \u00e0 l&#8217;Afrique du Sud, afin de garantir un niveau de service irr\u00e9prochable sur nos march\u00e9s cibles.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Ceci dit, ce dynamisme s&#8217;accompagne de <\/span><b>d\u00e9fis commerciaux<\/b><span style=\"font-weight: 400;\"> majeurs. Notez que la <\/span><b>coop\u00e9ration<\/b><span style=\"font-weight: 400;\"> entre les nations est vitale pour fluidifier chaque <\/span><b>\u00e9tape<\/b><span style=\"font-weight: 400;\"> du transport. Il faut dire que le <\/span><b>manque<\/b><span style=\"font-weight: 400;\"> d&#8217;infrastructures dans certaines zones recul\u00e9es peut repr\u00e9senter une <\/span><b>barri\u00e8re<\/b><span style=\"font-weight: 400;\"> \u00e0 la livraison.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">De ce fait, notre <\/span><b>entreprise import export<\/b><span style=\"font-weight: 400;\"> pallie ces lacunes en mobilisant des r\u00e9seaux d&#8217;agents <\/span><b>locaux<\/b><span style=\"font-weight: 400;\"> ultra-qualifi\u00e9s. Cette ma\u00eetrise du terrain garantit un <\/span><b>acc\u00e8s<\/b><span style=\"font-weight: 400;\"> privil\u00e9gi\u00e9 aux expositions du monde entier, facilitant l&#8217;<\/span><b>exportation<\/b><span style=\"font-weight: 400;\"> vers l&#8217;<\/span><b>Asie du Sud<\/b><span style=\"font-weight: 400;\">, la <\/span><b>Chine<\/b><span style=\"font-weight: 400;\"> ou les pays du Golfe <\/span><b>arabe<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<h2><b>Le processus de s\u00e9curisation : Gants blancs et emballage sur mesure<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">La pr\u00e9servation de l&#8217;int\u00e9grit\u00e9 de votre <\/span><b>marchandise<\/b><span style=\"font-weight: 400;\"> demeure notre pr\u00e9occupation centrale. Il est important de souligner que <\/span><a href=\"https:\/\/teamcdg.com\/services\/\"><span style=\"font-weight: 400;\">notre <\/span><b>service <\/b><span style=\"font-weight: 400;\">sp\u00e9cialis\u00e9<\/span><\/a><span style=\"font-weight: 400;\"> assure une manutention dite \u00ab gants blancs \u00bb pour l&#8217;int\u00e9gralit\u00e9 des \u0153uvres confi\u00e9es. En effet, la <\/span><b>valeur<\/b><span style=\"font-weight: 400;\"> d&#8217;une sculpture ou d&#8217;un tableau peut \u00eatre irr\u00e9m\u00e9diablement compromise par la plus petite imperfection.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Bien que les <\/span><b>d\u00e9lais<\/b><span style=\"font-weight: 400;\"> de transport soient souvent serr\u00e9s, notre <\/span><b>\u00e9quipe<\/b><span style=\"font-weight: 400;\"> consacre syst\u00e9matiquement le <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> requis pour agir avec une extr\u00eame d\u00e9licatesse. Pour \u00e9carter tout <\/span><b>risque<\/b><span style=\"font-weight: 400;\"> li\u00e9 aux frottements, nos experts emploient exclusivement des protections techniques d\u00e9di\u00e9es.<\/span>\u00a0<\/p>\n<p><span style=\"font-weight: 400;\">Notre savoir-faire repose par ailleurs sur la conception de solutions de conditionnement individualis\u00e9es. Nous \u00e9laborons des caisses de haute protection, capitonn\u00e9es et conformes aux exigences sanitaires internationales. De plus, ces unit\u00e9s de transport int\u00e8grent des syst\u00e8mes de r\u00e9gulation hygrom\u00e9trique et thermique pour une conservation optimale.<\/span><span style=\"font-weight: 400;\">\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Cette pr\u00e9caution est indispensable lorsque votre <\/span><b>fret<\/b><span style=\"font-weight: 400;\"> transite vers des r\u00e9gions au climat contrast\u00e9, comme les <\/span><b>\u00c9mirats<\/b><span style=\"font-weight: 400;\"> ou l&#8217;<\/span><b>Oc\u00e9an Indien<\/b><span style=\"font-weight: 400;\">. En plus, chaque caisse est \u00e9quip\u00e9e d&#8217;un syst\u00e8me anti-vibration brevet\u00e9 pour absorber les chocs inh\u00e9rents au transport terrestre ou a\u00e9rien.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Le scellage de ces \u00e9crins fait l&#8217;objet d&#8217;une proc\u00e9dure tr\u00e8s encadr\u00e9e pour garantir une <\/span><b>s\u00e9curit\u00e9<\/b><span style=\"font-weight: 400;\"> totale. Il est essentiel de noter qu&#8217;un \u00e9tiquetage sp\u00e9cifique, mentionnant la grande fragilit\u00e9 du contenu, est appos\u00e9 de mani\u00e8re visible. Ainsi, les agents a\u00e9roportuaires ou portuaires identifient imm\u00e9diatement la nature d\u00e9licate du chargement.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">En outre, le scellage s\u00e9curis\u00e9 emp\u00eache toute ouverture intempestive ou malveillante pendant le transit. Cette approche chirurgicale r\u00e9duit drastiquement tout <\/span><b>probl\u00e8me<\/b><span style=\"font-weight: 400;\"> potentiel et garantit une <\/span><b>qualit\u00e9<\/b><span style=\"font-weight: 400;\"> de prestation d&#8217;un <\/span><b>niveau<\/b><span style=\"font-weight: 400;\"> exceptionnel.<\/span><\/p>\n<h2><b>D\u00e9douanement, carnets ATA et gestion des droits de douane<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Le franchissement des fronti\u00e8res et le passage en <\/span><b>douane<\/b><span style=\"font-weight: 400;\"> constituent fr\u00e9quemment la phase la plus d\u00e9licate pour les mus\u00e9es et les galeries. Il faut savoir que chaque <\/span><b>\u00e9tat<\/b><span style=\"font-weight: 400;\"> impose une <\/span><b>r\u00e9glementation<\/b><span style=\"font-weight: 400;\"> sp\u00e9cifique, des <\/span><b>taxes<\/b><span style=\"font-weight: 400;\"> propres et des exigences culturelles particuli\u00e8res.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Gr\u00e2ce \u00e0 <\/span><a href=\"https:\/\/teamcdg.com\/transitaire\/\"><span style=\"font-weight: 400;\">notre expertise de <\/span><b>transitaire certifi\u00e9<\/b><\/a><span style=\"font-weight: 400;\">, nous simplifions ces proc\u00e9dures administratives complexes. Nous prenons notamment en charge l&#8217;obtention de votre num\u00e9ro EORI et la supervision des r\u00e9gimes suspensifs ad\u00e9quats.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Par ailleurs, nous \u00e9tudions les <\/span><b>accords<\/b><span style=\"font-weight: 400;\"> en vigueur pour optimiser vos <\/span><b>pr\u00e9f\u00e9rences tarifaires<\/b><span style=\"font-weight: 400;\">, minimisant ainsi le <\/span><b>prix<\/b> <b>total<\/b><span style=\"font-weight: 400;\"> et pr\u00e9servant votre <\/span><b>budget<\/b><span style=\"font-weight: 400;\">. Pour vos projets \u00e9ph\u00e9m\u00e8res, la gestion int\u00e9grale du carnet ATA offre un levier logistique majeur.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">V\u00e9ritable passeport pour vos pi\u00e8ces de collection, ce <\/span><b>document<\/b><span style=\"font-weight: 400;\"> douanier international garantit une <\/span><b>exemption<\/b><span style=\"font-weight: 400;\"> provisoire des <\/span><b>droits de douane<\/b><span style=\"font-weight: 400;\"> ainsi que des taxes locales lors de chaque passage de fronti\u00e8re.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Bien que les formalit\u00e9s aupr\u00e8s de la Chambre de Commerce puissent sembler laborieuses, notre \u00e9quipe s&#8217;en occupe totalement pour vous. Cette prise en charge simplifie grandement les <\/span><b>\u00e9changes<\/b><span style=\"font-weight: 400;\">, particuli\u00e8rement lors d&#8217;itin\u00e9raires internationaux complexes touchant plusieurs pays.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Une <\/span><b>communication<\/b><span style=\"font-weight: 400;\"> limpide et une pr\u00e9cision sans faille sont imp\u00e9ratives dans l&#8217;\u00e9laboration du dossier. Les certificats d&#8217;authenticit\u00e9, factures proforma et licences d&#8217;<\/span><b>exportation<\/b><span style=\"font-weight: 400;\"> doivent \u00eatre exemplaires, car la moindre inexactitude sur une <\/span><b>donn\u00e9e<\/b><span style=\"font-weight: 400;\"> peut paralyser le transit de la <\/span><b>marchandise<\/b><span style=\"font-weight: 400;\"> de fa\u00e7on durable.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">C&#8217;est pourquoi nous soumettons chaque <\/span><b>chiffre<\/b><span style=\"font-weight: 400;\"> et chaque d\u00e9tail \u00e0 une v\u00e9rification rigoureuse avant tout d\u00e9p\u00f4t officiel. Gr\u00e2ce \u00e0 cette rigueur, cette <\/span><b>\u00e9tape<\/b><span style=\"font-weight: 400;\"> potentiellement stressante devient un <\/span><b>processus<\/b><span style=\"font-weight: 400;\"> fluide, serein et parfaitement sous contr\u00f4le.<\/span><\/p>\n<h2><b>Assurance ad valorem, tra\u00e7abilit\u00e9 et durabilit\u00e9 de votre logistique<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">La protection du patrimoine culturel <\/span><b>mondial<\/b><span style=\"font-weight: 400;\"> exige une s\u00e9r\u00e9nit\u00e9 absolue lors de ses d\u00e9placements. C&#8217;est pourquoi nous pr\u00e9conisons syst\u00e9matiquement l&#8217;adh\u00e9sion \u00e0 une assurance de transport AD VALOREM.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Cette couverture sp\u00e9cifique est con\u00e7ue pour garantir la <\/span><b>valeur<\/b><span style=\"font-weight: 400;\"> r\u00e9elle d\u00e9clar\u00e9e de vos \u0153uvres face \u00e0 l&#8217;int\u00e9gralit\u00e9 des risques de transport. Qu&#8217;il s&#8217;agisse d&#8217;une simple erreur de manipulation ou d&#8217;un incident maritime majeur, votre <\/span><b>investissement<\/b><span style=\"font-weight: 400;\"> financier demeure totalement pr\u00e9serv\u00e9.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Par ailleurs, la surveillance en <\/span><b>temps<\/b><span style=\"font-weight: 400;\"> r\u00e9el r\u00e9pond d\u00e9sormais \u00e0 une exigence fondamentale de notre client\u00e8le. Gr\u00e2ce \u00e0 l&#8217;int\u00e9gration de capteurs de haute technologie dans nos caisses, nous fournissons un <\/span><b>suivi<\/b><span style=\"font-weight: 400;\"> en ligne extr\u00eamement d\u00e9taill\u00e9.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Notre entreprise propose un <\/span><b>suivi<\/b><span style=\"font-weight: 400;\"> en ligne d&#8217;une pr\u00e9cision chirurgicale pour vos objets pr\u00e9cieux. Vous profitez ainsi d&#8217;une tra\u00e7abilit\u00e9 totale pour superviser votre <\/span><b>exp\u00e9dition<\/b><span style=\"font-weight: 400;\">, du <\/span><b>site<\/b><span style=\"font-weight: 400;\"> de prise en charge jusqu&#8217;\u00e0 la <\/span><b>destination<\/b><span style=\"font-weight: 400;\"> finale. Cette visibilit\u00e9 constante constitue un gage de s\u00e9r\u00e9nit\u00e9 majeur pour les acheteurs priv\u00e9s comme pour les conservateurs de mus\u00e9es.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Aussi, le <\/span><b>secteur<\/b><span style=\"font-weight: 400;\"> artistique int\u00e8gre d\u00e9sormais des enjeux \u00e9cologiques forts. C&#8217;est pourquoi nous avons plac\u00e9 la <\/span><b>durabilit\u00e9<\/b><span style=\"font-weight: 400;\"> au c\u0153ur de nos solutions logistiques. Outre l&#8217;usage d&#8217;emballages intelligents, nous d\u00e9ployons les mesures suivantes :<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">l&#8217;analyse de l&#8217;empreinte carbone via un rapport CO\u2082 disponible sur demande ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">le calcul d&#8217;itin\u00e9raires de <\/span><b>livraison<\/b><span style=\"font-weight: 400;\"> optimis\u00e9s pour r\u00e9duire la consommation d&#8217;\u00e9nergie ;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">la collaboration avec des <\/span><b>partenaires commerciaux<\/b><span style=\"font-weight: 400;\"> reconnus pour leur \u00e9thique <\/span><b>\u00e9quitable<\/b><span style=\"font-weight: 400;\">.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Cette approche \u00e9coresponsable r\u00e9pond aux attentes des <\/span><b>chercheurs<\/b><span style=\"font-weight: 400;\"> de solutions vertes. Cette <\/span><b>tendance<\/b><span style=\"font-weight: 400;\"> croissante sur le <\/span><b>march\u00e9<\/b><span style=\"font-weight: 400;\"> permet \u00e0 Team International de valoriser l&#8217;engagement RSE de chaque client.<\/span><\/p>\n<h2><b>Nos corridors mondiaux : de l&#8217;Europe vers l&#8217;Asie et l&#8217;Afrique<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Au cours des dix derni\u00e8res ann\u00e9es, la g\u00e9ographie de l&#8217;art contemporain a connu une expansion majeure. Si les \u00e9changes entre l&#8217;Europe et les Am\u00e9riques dominent toujours en termes de <\/span><b>volume<\/b><span style=\"font-weight: 400;\">, l&#8217;attractivit\u00e9 de nouveaux march\u00e9s capte d\u00e9sormais une <\/span><b>quantit\u00e9<\/b><span style=\"font-weight: 400;\"> d&#8217;\u0153uvres sans cesse plus importante.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Des pays comme le <\/span><b>Japon<\/b><span style=\"font-weight: 400;\">, la <\/span><b>Chine<\/b><span style=\"font-weight: 400;\"> ou la <\/span><b>Malaisie<\/b><span style=\"font-weight: 400;\"> sont aujourd&#8217;hui au c\u0153ur d&#8217;une demande institutionnelle sans pr\u00e9c\u00e9dent.<\/span> <span style=\"font-weight: 400;\">R\u00e9ussir l&#8217;<\/span><b>exportation<\/b><span style=\"font-weight: 400;\"> vers ces destinations n\u00e9cessite de surmonter de nombreuses <\/span><b>barri\u00e8res<\/b><span style=\"font-weight: 400;\">, qu&#8217;elles soient douani\u00e8res, culturelles ou linguistiques.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Pour y r\u00e9pondre, <\/span><b>Team International<\/b><span style=\"font-weight: 400;\"> s&#8217;appuie sur un r\u00e9seau de partenaires fiables afin d&#8217;assurer une <\/span><b>livraison<\/b><span style=\"font-weight: 400;\"> en toute s\u00e9r\u00e9nit\u00e9 sur l&#8217;ensemble du territoire <\/span><b>asiatique<\/b><span style=\"font-weight: 400;\">.<\/span><span style=\"font-weight: 400;\"> En plu<\/span><span style=\"font-weight: 400;\">s, la cr\u00e9ation actuelle int\u00e8gre fr\u00e9quemment des mat\u00e9riaux organiques ou des th\u00e9matiques locales complexes.\u00a0<\/span>\u00a0<\/p>\n<p><span style=\"font-weight: 400;\">L&#8217;exp\u00e9dition de cr\u00e9ations int\u00e9grant des \u00e9l\u00e9ments de l&#8217;<\/span><b>agriculture<\/b><span style=\"font-weight: 400;\"> (<\/span><b>th\u00e9<\/b><span style=\"font-weight: 400;\">, <\/span><b>caf\u00e9<\/b><span style=\"font-weight: 400;\">, <\/span><b>bois<\/b><span style=\"font-weight: 400;\"> ou <\/span><b>noix de coco<\/b><span style=\"font-weight: 400;\">) n\u00e9cessite des certificats phytosanitaires stricts. Que les \u0153uvres utilisent ces ressources naturelles ou des composants industriels (<\/span><b>p\u00e9trole raffin\u00e9<\/b><span style=\"font-weight: 400;\">, <\/span><b>carbone activ\u00e9<\/b><span style=\"font-weight: 400;\">), nous ma\u00eetrisons parfaitement le cadre l\u00e9gal sp\u00e9cifique \u00e0 chaque mat\u00e9riau.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Notre <\/span><b>entreprise<\/b><span style=\"font-weight: 400;\"> fait preuve d&#8217;un <\/span><b>niveau<\/b><span style=\"font-weight: 400;\"> de comp\u00e9tence exceptionnel, qu&#8217;il s&#8217;agisse de livrer une installation dans la capitale <\/span><b>sri lankaise<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">La <\/span><b>coop\u00e9ration<\/b><span style=\"font-weight: 400;\"> logistique est primordiale pour les <\/span><b>exportations intra africaines<\/b><span style=\"font-weight: 400;\"> et les \u00e9changes r\u00e9gionaux. Nous assurons une r\u00e9activit\u00e9 totale pour les transferts directs de la <\/span><b>France vers le Sri<\/b><span style=\"font-weight: 400;\"> Lanka, ou entre le <\/span><b>Sri Lanka<\/b><span style=\"font-weight: 400;\"> et les autres pays de l&#8217;<\/span><b>Oc\u00e9an Indien<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Gr\u00e2ce \u00e0 notre expertise dans <\/span><a href=\"https:\/\/teamcdg.com\/fret-maritime\/\"><span style=\"font-weight: 400;\">les flux de fret maritime et a\u00e9rien<\/span><\/a><span style=\"font-weight: 400;\">, nous prot\u00e9geons les \u0153uvres des rigueurs des climats tropicaux. Notre <\/span><b>organisation<\/b><span style=\"font-weight: 400;\"> vous garantit un acc\u00e8s s\u00e9curis\u00e9 \u00e0 ces zones culturelles dynamiques, renfor\u00e7ant ainsi la <\/span><b>relation<\/b><span style=\"font-weight: 400;\"> diplomatique entre ces nations.<\/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;][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;][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;][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; 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;]<\/p>\n<h2><strong>FAQ : Logistique et Transport d&#8217;\u0152uvres d&#8217;Art<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;][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;Comment garantissez-vous la s\u00e9curit\u00e9 physique d&#8217;une peinture ancienne ?&#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; 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;]<\/p>\n<p><span style=\"font-weight: 400;\">Pour la manipulation de vos pi\u00e8ces, notre \u00e9quipe observe rigoureusement le protocole \u00ab Gants blancs \u00bb. Notez que chaque \u0153uvre profite d&#8217;un conditionnement personnalis\u00e9, s&#8217;appuyant fr\u00e9quemment sur des caisses de protection renforc\u00e9es. Celles-ci int\u00e8grent un suivi constant de l&#8217;hygrom\u00e9trie et de la temp\u00e9rature, ainsi qu&#8217;un dispositif de pointe contre les vibrations. Par cons\u00e9quent, la couche picturale demeure parfaitement pr\u00e9serv\u00e9e des impacts et des al\u00e9as m\u00e9t\u00e9orologiques.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Qu&#8217;est-ce que l&#8217;assurance ad valorem et est-elle obligatoire ? &#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; 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;]<\/p>\n<p><span style=\"font-weight: 400;\">Le fait est que l&#8217;assurance AD VALOREM couvre vos \u0153uvres \u00e0 hauteur de leur valeur financi\u00e8re r\u00e9elle et d\u00e9clar\u00e9e en cas de dommage, perte ou vol pendant le transport. Il faut dire que bien qu&#8217;elle ne soit pas l\u00e9galement obligatoire, elle est tr\u00e8s fortement recommand\u00e9e (voire indispensable) pour s\u00e9curiser votre <\/span><b>investissement<\/b><span style=\"font-weight: 400;\"> lors de tout <\/span><b>commerce<\/b><span style=\"font-weight: 400;\"> d&#8217;art.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Quel est l&#8217;avantage du carnet ATA pour une galerie d&#8217;art ?&#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; 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;]<\/p>\n<p><span style=\"font-weight: 400;\">Il est \u00e0 noter que le carnet ATA est un document douanier international qui agit comme un passeport pour vos marchandises. Il permet d&#8217;importer temporairement des \u0153uvres pour une foire ou une exposition sans avoir \u00e0 payer les <\/span><b>droits de douane<\/b><span style=\"font-weight: 400;\"> ni les taxes locales. En plus, notre \u00e9quipe peut se charger des d\u00e9marches d&#8217;obtention aupr\u00e8s de la CCI pour vous faciliter la vie.<\/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;Comment g\u00e9rez-vous les variations climatiques lors du fret a\u00e9rien ?&#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; 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;]<\/p>\n<p><span style=\"font-weight: 400;\">Nous concevons des caisses climatis\u00e9es ou isothermes sp\u00e9cialement adapt\u00e9es au transport a\u00e9ronautique. Nous veillons \u00e0 ce que nous pouvons y int\u00e9grer des capteurs embarqu\u00e9s qui enregistrent et transmettent les donn\u00e9es environnementales tout au long du vol. De surcro\u00eet, cela garantit que les exigences de conservation de vos \u0153uvres sont respect\u00e9es \u00e0 la lettre.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Proposez-vous un suivi pr\u00e9cis lors des exp\u00e9ditions vers l&#8217;Asie ou l&#8217;Afrique ? &#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; 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;]<\/p>\n<p><span style=\"font-weight: 400;\">Tout \u00e0 fait. Nous avons instaur\u00e9 un dispositif de <\/span><b>suivi<\/b><span style=\"font-weight: 400;\"> en temps r\u00e9el qui vous offre la possibilit\u00e9 de situer vos pi\u00e8ces \u00e0 chaque instant. Ce protocole de tra\u00e7abilit\u00e9 est op\u00e9rationnel pour l&#8217;ensemble de nos destinations mondiales, que vos marchandises transitent par voie maritime vers l&#8217;<\/span><b>Afrique du Sud<\/b><span style=\"font-weight: 400;\">, ou qu&#8217;elles soient achemin\u00e9es par les airs vers le <\/span><b>march\u00e9<\/b><span style=\"font-weight: 400;\"> asiatique.<\/span><\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Fournissez-vous des informations sur l&#8217;impact \u00e9cologique de ces transports ? &#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; 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;]<\/p>\n<p><span style=\"font-weight: 400;\">Notre engagement en faveur de la <\/span><b>durabilit\u00e9<\/b><span style=\"font-weight: 400;\"> est total. Pour vous accompagner, nous mettons \u00e0 votre disposition des rapports d\u00e9taill\u00e9s sur les \u00e9missions de CO\u2082 et autres polluants, permettant une analyse pr\u00e9cise de l&#8217;empreinte environnementale de vos flux logistiques internationaux. Ces informations rigoureuses peuvent ainsi \u00eatre directement int\u00e9gr\u00e9es au bilan RSE de votre institution culturelle.<\/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 Oeuvres d\u2019Art<\/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_987617876_2\" class=\"b4-bit-form AI4 _frm-bg-b4 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_4_987617876_2\" class=\"AG4 AH4 _frm-b4 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"xZnDvBLe\/sS+MTbGZ0UpoKxVDEDKvDUFJHFRDsDLSgk=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"e13Xrl\/WFRANRglf9Xg2aVmcL5NjoY+zeecVCs+zcdo=\">\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_987617876_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_987617876_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_987617876_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>Le march\u00e9 de l&#8217;art impose aujourd&#8217;hui des standards de rigueur sans pr\u00e9c\u00e9dent pour chaque exp\u00e9dition internationale. Notez que le transfert de pi\u00e8ces d&#8217;exception, qu&#8217;il s&#8217;agisse de sculptures ou de toiles de ma\u00eetres, requiert une expertise de pointe. Alors que l&#8217;\u00e9conomie cr\u00e9ative conna\u00eet un essor remarquable, les institutions mus\u00e9ales et les galeries doivent naviguer au sein d&#8217;une r\u00e9glementation douani\u00e8re de plus en plus complexe. C&#8217;est dans ce contexte exigeant que l&#8217;\u00e9quipe de Team International se positionne comme votre partenaire de confiance. Nous veillons \u00e0 ce que nous veillons \u00e0 la s\u00e9curit\u00e9 absolue de vos biens en orchestrant des d\u00e9placements d&#8217;une pr\u00e9cision chirurgicale. De fait, notre soci\u00e9t\u00e9 met en \u0153uvre un savoir-faire logistique [&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-987617876","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>Transport \u0152uvres Art : Expert Team International<\/title>\n<meta name=\"description\" content=\"Team International s\u00e9curise le transport de vos \u0153uvres d&#039;art. Emballage sur mesure, gants blancs et suivi proactif pour vos galeries et mus\u00e9es en 2026.\" \/>\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-oeuvres-dart\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Transport \u0152uvres Art : Expert Team International\" \/>\n<meta property=\"og:description\" content=\"Team International s\u00e9curise le transport de vos \u0153uvres d&#039;art. Emballage sur mesure, gants blancs et suivi proactif pour vos galeries et mus\u00e9es en 2026.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-06T11:44: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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-oeuvres-dart\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-oeuvres-dart\\\/\",\"name\":\"Transport \u0152uvres Art : Expert Team International\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\"},\"datePublished\":\"2026-07-06T11:33:44+00:00\",\"dateModified\":\"2026-07-06T11:44:05+00:00\",\"description\":\"Team International s\u00e9curise le transport de vos \u0153uvres d'art. Emballage sur mesure, gants blancs et suivi proactif pour vos galeries et mus\u00e9es en 2026.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-oeuvres-dart\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-oeuvres-dart\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/transport-oeuvres-dart\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Transport Oeuvres d\u2019Art\"}]},{\"@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":"Transport \u0152uvres Art : Expert Team International","description":"Team International s\u00e9curise le transport de vos \u0153uvres d'art. Emballage sur mesure, gants blancs et suivi proactif pour vos galeries et mus\u00e9es en 2026.","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-oeuvres-dart\/","og_locale":"en_US","og_type":"article","og_title":"Transport \u0152uvres Art : Expert Team International","og_description":"Team International s\u00e9curise le transport de vos \u0153uvres d'art. Emballage sur mesure, gants blancs et suivi proactif pour vos galeries et mus\u00e9es en 2026.","og_url":"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/","og_site_name":"Team International CDG","article_modified_time":"2026-07-06T11:44: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":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/","url":"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/","name":"Transport \u0152uvres Art : Expert Team International","isPartOf":{"@id":"https:\/\/teamcdg.com\/en\/#website"},"datePublished":"2026-07-06T11:33:44+00:00","dateModified":"2026-07-06T11:44:05+00:00","description":"Team International s\u00e9curise le transport de vos \u0153uvres d'art. Emballage sur mesure, gants blancs et suivi proactif pour vos galeries et mus\u00e9es en 2026.","breadcrumb":{"@id":"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/teamcdg.com\/en\/transport-oeuvres-dart\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"Transport Oeuvres d\u2019Art"}]},{"@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\/987617876","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=987617876"}],"version-history":[{"count":8,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617876\/revisions"}],"predecessor-version":[{"id":987617888,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987617876\/revisions\/987617888"}],"wp:attachment":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987617876"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}