{"id":987611937,"date":"2026-03-09T05:52:42","date_gmt":"2026-03-09T05:52:42","guid":{"rendered":"https:\/\/teamcdg.com\/?page_id=987611937"},"modified":"2026-06-12T09:36:10","modified_gmt":"2026-06-12T09:36:10","slug":"entreprise","status":"publish","type":"page","link":"https:\/\/teamcdg.com\/en\/entreprise\/","title":{"rendered":"\u00c0 propos de nous"},"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\/2025\/12\/16043-1.jpg&#8221; background_enable_video_mp4=&#8221;off&#8221; positioning=&#8221;none&#8221; z_index=&#8221;1&#8243; custom_padding=&#8221;100px||100px||true|false&#8221; custom_padding_tablet=&#8221;153px||153px||true|false&#8221; custom_padding_phone=&#8221;20px||50px||false|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221; width_tablet=&#8221;100%&#8221; width_phone=&#8221;90%&#8221; width_last_edited=&#8221;on|phone&#8221; max_width=&#8221;1300px&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;|0px|0px|0px|false|true&#8221; animation_direction=&#8221;left&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][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;\u00c0 propos de nous&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700|||||||&#8221; text_one_text_color=&#8221;#FFFFFF&#8221; text_one_font_size=&#8221;52px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;55px&#8221; text_two_line_height=&#8221;1.4em&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;1.4em&#8221; width=&#8221;100%&#8221; max_width=&#8221;1000px&#8221; custom_margin=&#8221;40px||||false|false&#8221; custom_padding=&#8221;|||20px|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;28px&#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_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; custom_padding_tablet=&#8221;0px||0px||true|false&#8221; custom_padding_phone=&#8221;0px||0px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;1&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_padding=&#8221;0px|0px|0px|0px|false|false&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dsm_advanced_tabs dsm_show_arrow=&#8221;on&#8221; dsm_tabs_horizontal_alignment=&#8221;center&#8221; dsm_tabs_gap=&#8221;0px&#8221; dsm_tabs_bg_color=&#8221;#55668f&#8221; dsm_tabs_active_bg_color=&#8221;#808080&#8243; dsm_tabs_text_color=&#8221;#FFFFFF&#8221; dsm_tabs_active_text_color=&#8221;#FFFFFF&#8221; dsm_tabs_wrapper_width=&#8221;100%&#8221; dsm_tabs_wrapper_padding=&#8221;||||false|false&#8221; dsm_tabs_wrapper_alignment=&#8221;center&#8221; module_class=&#8221;mobile-tabs-carousel&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro|&#8211;et_global_body_font_weight|||||||&#8221; tab_title_line_height=&#8221;1.4em&#8221; content_title_text_color=&#8221;#000000&#8243; content_title_line_height=&#8221;1.4em&#8221; image_icon_custom_margin=&#8221;||||false|false&#8221; image_icon_custom_padding=&#8221;10px||10px||true|false&#8221; tab_title_font_size_tablet=&#8221;&#8221; tab_title_font_size_phone=&#8221;14px&#8221; tab_title_font_size_last_edited=&#8221;on|phone&#8221; tab_subtitle_font_size_tablet=&#8221;&#8221; tab_subtitle_font_size_phone=&#8221;14px&#8221; tab_subtitle_font_size_last_edited=&#8221;on|phone&#8221; content_title_font_size_tablet=&#8221;&#8221; content_title_font_size_phone=&#8221;24px&#8221; content_title_font_size_last_edited=&#8221;on|phone&#8221; tab_content_text_font_size_tablet=&#8221;&#8221; tab_content_text_font_size_phone=&#8221;14px&#8221; tab_content_text_font_size_last_edited=&#8221;on|phone&#8221; custom_css_free_form=&#8221;\/* Desktop &#8211; Equal width tabs *\/||.dsm-tabs{||display:flex;||}||||.dsm-tab{||flex:1;||text-align:center;||}||||@media (max-width:767px){||||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper{||display:flex !important;||flex-wrap:nowrap !important;||overflow-x:auto !important;||justify-content:flex-start !important;||margin-left:0 !important;||padding-left:0 !important;||}||||\/* hide scrollbar *\/||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper::-webkit-scrollbar{||display:none;||}||||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper .dsm-tab{||flex:0 0 50% !important;||margin:0 !important;||}||.mobile-tabs-carousel .dsm-advanced-tabs-wrapper{||padding-bottom:12px !important;||}||  .mobile-tabs-carousel .dsm-advanced-tabs-wrapper{||touch-action: pan-x;||}||}&#8221; border_width_all_dsm_tabs_border=&#8221;1px&#8221; border_color_all_dsm_tabs_border=&#8221;#FFFFFF&#8221; border_width_all_dsm_content_border=&#8221;0px&#8221; global_colors_info=&#8221;{}&#8221;][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Introduction&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Introduction.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987611945&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243; sticky_enabled=&#8221;0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Notre Histoire&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Histoire.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987611950&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Une \u00e9quipe engag\u00e9e&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Equipe.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987611955&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Domaine d&#8217;Expertise&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Expertises.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987611959&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Notre fonctionnement &#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Fonctionnement.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987611964&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;FAQ&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/FAQ.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987611970&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][\/dsm_advanced_tabs][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><h1 class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">\u00c0 propos de nous<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_with_border et_pb_module dsm_advanced_tabs dsm_advanced_tabs_0 mobile-tabs-carousel\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"dsm-advanced-tabs-container\" data-trigger=\"click\" data-animation=\"none\" data-inner_animation=\"none\" data-deep_link=\"off\" data-image_lightbox=\"off\" data-auto_scroll_mobile=\"off\" data-anchor_link=\"off\">\n\t\t\t\t    <div class=\"dsm-advanced-tabs-wrapper\" role=\"tablist\"><\/div>\n\t\t\t\t <div class=\"dsm-advanced-tabs-content-wrapper\">\n\t\t\t\t    \n\t\t\t\t <\/div>\n\t\t     <\/div>\n\t\t    \n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_0\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_1\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_2\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_3\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_4\">\n\t\t\t\t<\/div>\n\t\t\t<\/p>\n","protected":false},"author":2,"featured_media":20,"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-987611937","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u00c0 propos de Team International Transitaire international<\/title>\n<meta name=\"description\" content=\"D\u00e9couvrez Team International, transitaire international sp\u00e9cialis\u00e9 dans le transport et la logistique mondiale.\" \/>\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\/entreprise\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u00c0 propos de Team International Transitaire international\" \/>\n<meta property=\"og:description\" content=\"D\u00e9couvrez Team International, transitaire international sp\u00e9cialis\u00e9 dans le transport et la logistique mondiale.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/teamcdg.com\/en\/entreprise\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-12T09:36:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/11\/logo-team.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\\\/entreprise\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/\",\"name\":\"\u00c0 propos de Team International Transitaire international\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/logo-team.png\",\"datePublished\":\"2026-03-09T05:52:42+00:00\",\"dateModified\":\"2026-06-12T09:36:10+00:00\",\"description\":\"D\u00e9couvrez Team International, transitaire international sp\u00e9cialis\u00e9 dans le transport et la logistique mondiale.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/#primaryimage\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/logo-team.png\",\"contentUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/logo-team.png\",\"width\":793,\"height\":288,\"caption\":\"\u00c0 propos de Team International Transitaire international\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/entreprise\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u00c0 propos de nous\"}]},{\"@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":"\u00c0 propos de Team International Transitaire international","description":"D\u00e9couvrez Team International, transitaire international sp\u00e9cialis\u00e9 dans le transport et la logistique mondiale.","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\/entreprise\/","og_locale":"en_US","og_type":"article","og_title":"\u00c0 propos de Team International Transitaire international","og_description":"D\u00e9couvrez Team International, transitaire international sp\u00e9cialis\u00e9 dans le transport et la logistique mondiale.","og_url":"https:\/\/teamcdg.com\/en\/entreprise\/","og_site_name":"Team International CDG","article_modified_time":"2026-06-12T09:36:10+00:00","og_image":[{"width":793,"height":288,"url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/11\/logo-team.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\/entreprise\/","url":"https:\/\/teamcdg.com\/en\/entreprise\/","name":"\u00c0 propos de Team International Transitaire international","isPartOf":{"@id":"https:\/\/teamcdg.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/teamcdg.com\/en\/entreprise\/#primaryimage"},"image":{"@id":"https:\/\/teamcdg.com\/en\/entreprise\/#primaryimage"},"thumbnailUrl":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/11\/logo-team.png","datePublished":"2026-03-09T05:52:42+00:00","dateModified":"2026-06-12T09:36:10+00:00","description":"D\u00e9couvrez Team International, transitaire international sp\u00e9cialis\u00e9 dans le transport et la logistique mondiale.","breadcrumb":{"@id":"https:\/\/teamcdg.com\/en\/entreprise\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/teamcdg.com\/en\/entreprise\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/teamcdg.com\/en\/entreprise\/#primaryimage","url":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/11\/logo-team.png","contentUrl":"https:\/\/teamcdg.com\/wp-content\/uploads\/2025\/11\/logo-team.png","width":793,"height":288,"caption":"\u00c0 propos de Team International Transitaire international"},{"@type":"BreadcrumbList","@id":"https:\/\/teamcdg.com\/en\/entreprise\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"\u00c0 propos de nous"}]},{"@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\/987611937","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=987611937"}],"version-history":[{"count":3,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987611937\/revisions"}],"predecessor-version":[{"id":987617763,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987611937\/revisions\/987617763"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media\/20"}],"wp:attachment":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987611937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}