{"id":987614854,"date":"2026-01-16T11:46:04","date_gmt":"2026-01-16T11:46:04","guid":{"rendered":"https:\/\/teamcdg.com\/ocean-freight\/"},"modified":"2026-05-29T11:01:30","modified_gmt":"2026-05-29T11:01:30","slug":"ocean-freight","status":"publish","type":"page","link":"https:\/\/teamcdg.com\/en\/ocean-freight\/","title":{"rendered":"Ocean Freight"},"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\/03\/fret-maritime-banner.jpg&#8221; background_enable_video_mp4=&#8221;off&#8221; positioning=&#8221;none&#8221; z_index=&#8221;1&#8243; custom_padding=&#8221;60px||60px||true|false&#8221; custom_padding_tablet=&#8221;153px||153px||true|false&#8221; custom_padding_phone=&#8221;50px||50px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;3_5,2_5&#8243; use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;2&#8243; make_equal=&#8221;on&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;95%&#8221; max_width=&#8221;92%&#8221; module_alignment=&#8221;center&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;|0px|0px|0px|false|true&#8221; animation_direction=&#8221;left&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;3_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; custom_css_main_element=&#8221;margin:auto;&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_code disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.27.4&#8243; _module_preset=&#8221;default&#8221; disabled=&#8221;on&#8221; global_colors_info=&#8221;{}&#8221;]<canvas id=\"particles-canvas\"><\/canvas><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->document.addEventListener(\"DOMContentLoaded\", function() {<!-- [et_pb_line_break_holder] -->  const canvas = document.getElementById(\"particles-canvas\");<!-- [et_pb_line_break_holder] -->  if (!canvas) return;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  const ctx = canvas.getContext(\"2d\");<!-- [et_pb_line_break_holder] -->  let particles = [];<!-- [et_pb_line_break_holder] -->  const particleCount = 80;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Ensure proper canvas sizing<!-- [et_pb_line_break_holder] -->  function resizeCanvas() {<!-- [et_pb_line_break_holder] -->    const section = document.querySelector(\".video-particle-section\");<!-- [et_pb_line_break_holder] -->    canvas.width = section.offsetWidth;<!-- [et_pb_line_break_holder] -->    canvas.height = section.offsetHeight;<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] -->  resizeCanvas();<!-- [et_pb_line_break_holder] -->  window.addEventListener(\"resize\", resizeCanvas);<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Particle class<!-- [et_pb_line_break_holder] -->  class Particle {<!-- [et_pb_line_break_holder] -->    constructor() {<!-- [et_pb_line_break_holder] -->      this.x = Math.random() * canvas.width;<!-- [et_pb_line_break_holder] -->      this.y = Math.random() * canvas.height;<!-- [et_pb_line_break_holder] -->      this.size = Math.random() * 3 + 1;<!-- [et_pb_line_break_holder] -->      this.speedX = Math.random() * 0.8 - 0.4;<!-- [et_pb_line_break_holder] -->      this.speedY = Math.random() * 0.8 - 0.4;<!-- [et_pb_line_break_holder] -->      this.color = \"rgba(255,255,255,0.8)\";<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->    update() {<!-- [et_pb_line_break_holder] -->      this.x += this.speedX;<!-- [et_pb_line_break_holder] -->      this.y += this.speedY;<!-- [et_pb_line_break_holder] -->      if (this.x < 0 || this.x > canvas.width) this.speedX *= -1;<!-- [et_pb_line_break_holder] -->      if (this.y < 0 || this.y > canvas.height) this.speedY *= -1;<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->    draw() {<!-- [et_pb_line_break_holder] -->      ctx.beginPath();<!-- [et_pb_line_break_holder] -->      ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);<!-- [et_pb_line_break_holder] -->      ctx.fillStyle = this.color;<!-- [et_pb_line_break_holder] -->      ctx.fill();<!-- [et_pb_line_break_holder] -->    }<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  \/\/ Initialize particles<!-- [et_pb_line_break_holder] -->  function initParticles() {<!-- [et_pb_line_break_holder] -->    particles = [];<!-- [et_pb_line_break_holder] -->    for (let i = 0; i < particleCount; i++) {      particles.push(new Particle());    }  }  \/\/ Animate particles  function animate() {    ctx.clearRect(0, 0, canvas.width, canvas.height);    particles.forEach(p => {<!-- [et_pb_line_break_holder] -->      p.update();<!-- [et_pb_line_break_holder] -->      p.draw();<!-- [et_pb_line_break_holder] -->    });<!-- [et_pb_line_break_holder] -->    requestAnimationFrame(animate);<!-- [et_pb_line_break_holder] -->  }<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->  initParticles();<!-- [et_pb_line_break_holder] -->  animate();<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --><\/script><!-- [et_pb_line_break_holder] -->[\/et_pb_code][dnxte_multi_heading text_one=&#8221;Ocean Freight&#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_padding=&#8221;|||80px|false|false&#8221; custom_padding_tablet=&#8221;|||80px|false|false&#8221; custom_padding_phone=&#8221;|30px|36px|30px|false|true&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; hover_enabled=&#8221;0&#8243; text_one_font_size_tablet=&#8221;55px&#8221; text_one_font_size_phone=&#8221;30px&#8221; text_one_font_size_last_edited=&#8221;on|phone&#8221; text_two_font_size_tablet=&#8221;55px&#8221; text_two_font_size_phone=&#8221;30px&#8221; text_two_font_size_last_edited=&#8221;on|phone&#8221; text_three_font_size_tablet=&#8221;55px&#8221; text_three_font_size_phone=&#8221;30px&#8221; text_three_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;][\/dnxte_multi_heading][\/et_pb_column][et_pb_column type=&#8221;2_5&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;rgba(255,255,255,0.66)&#8221; custom_padding=&#8221;29px|50px|15px|50px|false|true&#8221; border_radii=&#8221;on|4px|4px|4px|4px&#8221; global_colors_info=&#8221;{}&#8221;][dnxte_multi_heading text_one=&#8221;Contact Us&#8221; heading_tag=&#8221;p&#8221; inline_multi_align=&#8221;center&#8221; text_one_margin=&#8221;||-1px||false|false&#8221; text_one_padding=&#8221;||0px||false|false&#8221; text_two_padding=&#8221;||0px||false|false&#8221; text_three_padding=&#8221;||0px||false|false&#8221; text_one_reveal_effect=&#8221;on&#8221; text_one_reveal_color_before=&#8221;#55668F&#8221; text_two_reveal_effect=&#8221;on&#8221; text_two_reveal_color_before=&#8221;#55668F&#8221; text_three_reveal_effect=&#8221;on&#8221; text_three_reveal_color_before=&#8221;#55668F&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; text_one_font=&#8221;Montserrat|700|||||||&#8221; text_one_text_align=&#8221;left&#8221; text_one_text_color=&#8221;#000000&#8243; text_one_font_size=&#8221;34px&#8221; text_one_line_height=&#8221;1.4em&#8221; text_two_font=&#8221;Montserrat|700|||||||&#8221; text_two_text_align=&#8221;center&#8221; text_two_text_color=&#8221;#FFFFFF&#8221; text_two_font_size=&#8221;0px&#8221; text_three_font=&#8221;Montserrat|700|||||||&#8221; text_three_text_color=&#8221;#FFFFFF&#8221; text_three_font_size=&#8221;55px&#8221; text_three_line_height=&#8221;0.8em&#8221; custom_margin=&#8221;||-11px||false|false&#8221; custom_margin_tablet=&#8221;||-35px||false|false&#8221; custom_margin_phone=&#8221;||-14px||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;0px||0px||true|false&#8221; 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_6_987614854_1\" class=\"b6-bit-form AI6 _frm-bg-b6 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_6_987614854_1\" class=\"AG6 AH6 _frm-b6 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"\/+Y9uOeA\/21fADByEB1HViFJu7IDGEnKARCb07huvNw=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"9F7EUzDVh5JKz+V0M3Xu0xrwntoleSax8wrmqkTG7PI=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_6\">\n                  <div class=\"btcd-fld-itm b6-2 \"><div class=\"bf-text-field J6 N6 O6 P6  b6-2-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-2-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-2-1-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-2-lbl b6-lbl bf-lbl bf-label \" for=\"b6-2-1\">\n          \n          \n          COMPANY\n          \n          <span class=\"AE6 AF6  b6-2-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-2-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-2-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b6-2-1\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 g6 h6 i6 j6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-2-fld b6-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b6-2-err-txt\" autocomplete='name' name='text-b6-2' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K6 L6 M6  b6-2-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-2-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-2-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-2-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-2-err-txt b6-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 b6-8 \"><div class=\"bf-text-field J6 N6 O6 P6  b6-8-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-8-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-8-1-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-8-lbl b6-lbl bf-lbl bf-label \" for=\"b6-8-1\">\n          \n          \n          PHONE\n          \n          <span class=\"AE6 AF6  b6-8-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-8-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-8-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b6-8-1\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 g6 h6 i6 j6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-8-fld b6-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b6-8-err-txt\" name='text-4-8' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K6 L6 M6  b6-8-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-8-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-8-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-8-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-8-err-txt b6-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 b6-7 \"><div class=\"bf-email-field J6 N6 O6 P6  b6-7-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-7-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-7-1-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-7-lbl b6-lbl bf-lbl bf-label \" for=\"b6-7-1\">\n          \n          \n          EMAIL\n          \n          <span class=\"AE6 AF6  b6-7-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-7-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-7-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b6-7-1\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 g6 h6 i6 j6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-7-fld b6-fld bf-fld bf-field \" type=\"email\" required aria-required=\"true\" aria-describedby=\"b6-7-err-txt\" autocomplete='email' name='email-b6-7' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K6 L6 M6  b6-7-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-7-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-7-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-7-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-7-err-txt b6-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 b6-3 \"><div class=\"bf-textarea-field J6 N6 O6 P6  b6-3-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-3-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-3-1-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-3-lbl b6-lbl bf-lbl bf-label \" for=\"b6-3-1\">\n          \n          \n          MESSAGE\n          \n          <span class=\"AE6 AF6  b6-3-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-3-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-3-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n      <textarea id=\"b6-3-1\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 h6 i6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AP6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-3-fld b6-fld bf-fld bf-field \" required aria-required=\"true\" aria-describedby=\"b6-3-err-txt\" name='textarea-b6-3'><\/textarea>\n      \n      \n    <\/div>\n          \n          <div class=\"K6 L6 M6  b6-3-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-3-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-3-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-3-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-3-err-txt b6-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 b6-1 \"><div class=\"bf-button-field J6 N6 O6 P6  b6-1-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        \n        <div class=\"b6-1-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"D6  b6-1-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <button class=\"A6 B6 C6 D6 E6 F6 G6 H6 AJ6 AK6 AL6 AM6 AN6 AO6 Aj6 Ak6 Al6  b6-1-btn b6-btn bf-btn bf-button  \" type=\"submit\" name='button-b6-1' aria-describedby=\"b6-1-err-txt\">\n          \n          SEND\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_6_987614854_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=\"A6 D6 G6 AV6 AW6 AX6 msg-container-7 deactive scroll\">\n\t              <div data-contentid=\"bitforms_6_987614854_1\" data-msgid=\"7\" role=\"button\" class=\"A6 D6 G6 H6 AU6 msg-background-7 msg-backdrop\">\n\t                <div class=\"bf-msg-content H6 P6 T6 U6 AY6 Ap6 msg-content-7\">\n\t                  <button data-contentid=\"bitforms_6_987614854_1\" data-msgid=\"7\" class=\"C6 K6 N6 AQ6 AR6 AS6 Am6 An6 Ao6 close-7 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AT6 close-icn-7\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div>[\/et_pb_code][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; custom_padding_last_edited=&#8221;on|phone&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||50px||false|false&#8221; custom_padding_tablet=&#8221;0px||0px||true|false&#8221; custom_padding_phone=&#8221;0px||0px||true|false&#8221; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_row use_custom_gutter=&#8221;on&#8221; gutter_width=&#8221;1&#8243; make_equal=&#8221;on&#8221; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221; max_width=&#8221;100%&#8221; module_alignment=&#8221;center&#8221; custom_padding=&#8221;0px|0px|0px|0px|false|false&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.27.5&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][dsm_advanced_tabs dsm_tabs_horizontal_alignment=&#8221;center&#8221; dsm_tabs_gap=&#8221;0px&#8221; dsm_tabs_bg_color=&#8221;#55668f&#8221; dsm_tabs_active_bg_color=&#8221;#808080&#8243; dsm_tabs_text_color=&#8221;#FFFFFF&#8221; dsm_tabs_active_text_color=&#8221;#FFFFFF&#8221; dsm_tabs_wrapper_width=&#8221;100%&#8221; dsm_tabs_wrapper_padding=&#8221;||||false|false&#8221; dsm_tabs_wrapper_alignment=&#8221;center&#8221; module_class=&#8221;mobile-tabs-carousel&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro|&#8211;et_global_body_font_weight|||||||&#8221; tab_title_line_height=&#8221;2.3em&#8221; content_title_text_color=&#8221;#000000&#8243; image_icon_custom_margin=&#8221;||||false|false&#8221; image_icon_custom_padding=&#8221;10px||10px||true|false&#8221; 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;987612250&#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;Our Solutions&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Solutions-Transport.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612256&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Process&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Processus.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612265&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Strengths&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Atouts.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612275&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Sectors&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Secteurs.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612284&#8243; dsm_tabs_image_width=&#8221;52px&#8221; dsm_content_image_icon_alignment=&#8221;center&#8221; _builder_version=&#8221;4.27.6&#8243; _module_preset=&#8221;default&#8221; tab_title_font=&#8221;Source Sans Pro||||||||&#8221; tab_title_font_size=&#8221;23px&#8221; background_enable_color=&#8221;off&#8221; global_colors_info=&#8221;{}&#8221; parentOrderClass=&#8221;dsm_advanced_tabs_0&#8243;][\/dsm_advanced_tabs_child][dsm_advanced_tabs_child module_class=&#8221;equal-tabs&#8221; dsm_title=&#8221;Geographic&#8221; dsm_use_icon_image=&#8221;on&#8221; dsm_image=&#8221;https:\/\/teamcdg.com\/wp-content\/uploads\/2026\/03\/Geographie.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987612291&#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;987612299&#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\">Ocean Freight<\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"et_pb_module dnxte_multi_heading dnxte_multi_heading_1\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"wrapper\"><p class='header-level '><span class=\"dnxt-text-one reveal-effect masker wow\"><span class=\"dnxt-gradient-text-color-1\">Contact Us<\/span><\/span><\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div id=\"bitforms_6_987614854_2\" class=\"b6-bit-form AI6 _frm-bg-b6 bit-form bf-form-wrapper\">\n      \n          <form novalidate id=\"form-bitforms_6_987614854_2\" class=\"AG6 AH6 _frm-b6 bf-form\" method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"b4j57o8scW+PH4ATp8I8jbnGF8qx6Oz7My2WdM1uN4I=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"VOgyJz4Am7N8fI3a23ZHTMTg+TE5u7Bjh8\/dR7tup2c=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_6\">\n                  <div class=\"btcd-fld-itm b6-2 \"><div class=\"bf-text-field J6 N6 O6 P6  b6-2-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-2-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-2-2-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-2-lbl b6-lbl bf-lbl bf-label \" for=\"b6-2-2\">\n          \n          \n          COMPANY\n          \n          <span class=\"AE6 AF6  b6-2-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-2-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-2-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b6-2-2\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 g6 h6 i6 j6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-2-fld b6-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b6-2-err-txt\" autocomplete='name' name='text-b6-2' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K6 L6 M6  b6-2-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-2-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-2-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-2-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-2-err-txt b6-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 b6-8 \"><div class=\"bf-text-field J6 N6 O6 P6  b6-8-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-8-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-8-2-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-8-lbl b6-lbl bf-lbl bf-label \" for=\"b6-8-2\">\n          \n          \n          PHONE\n          \n          <span class=\"AE6 AF6  b6-8-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-8-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-8-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b6-8-2\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 g6 h6 i6 j6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-8-fld b6-fld bf-fld bf-field \" type=\"text\" required aria-required=\"true\" aria-describedby=\"b6-8-err-txt\" name='text-4-8' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K6 L6 M6  b6-8-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-8-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-8-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-8-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-8-err-txt b6-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 b6-7 \"><div class=\"bf-email-field J6 N6 O6 P6  b6-7-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-7-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-7-2-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-7-lbl b6-lbl bf-lbl bf-label \" for=\"b6-7-2\">\n          \n          \n          EMAIL\n          \n          <span class=\"AE6 AF6  b6-7-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-7-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-7-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <input id=\"b6-7-2\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 g6 h6 i6 j6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-7-fld b6-fld bf-fld bf-field \" type=\"email\" required aria-required=\"true\" aria-describedby=\"b6-7-err-txt\" autocomplete='email' name='email-b6-7' \/>\n        \n        \n      <\/div>\n      \n          \n          <div class=\"K6 L6 M6  b6-7-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-7-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-7-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-7-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-7-err-txt b6-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 b6-3 \"><div class=\"bf-textarea-field J6 N6 O6 P6  b6-3-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        <div class=\"H6 z6 AD6  b6-3-lbl-wrp b6-lbl-wrp bf-lbl-wrp bf-label-wrapper \"><label id=\"b6-3-2-lbl\" class=\"A6 D6 H6 z6 AA6 AB6 AC6  b6-3-lbl b6-lbl bf-lbl bf-label \" for=\"b6-3-2\">\n          \n          \n          MESSAGE\n          \n          <span class=\"AE6 AF6  b6-3-req-smbl b6-req-smbl bf-req-smbl bf-asterisk-symbol \" aria-hidden=\"true\">*<\/span>\n        <\/label><\/div>\n        <div class=\"b6-3-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"P6 y6  b6-3-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n      <textarea id=\"b6-3-2\" class=\"B6 E6 F6 a6 b6 c6 d6 e6 f6 h6 i6 k6 l6 m6 n6 o6 p6 q6 r6 s6 t6 u6 v6 w6 x6 AP6 AZ6 Aa6 Ab6 Ac6 Ad6 Ae6 Af6 Ag6 Ah6 Ai6  b6-3-fld b6-fld bf-fld bf-field \" required aria-required=\"true\" aria-describedby=\"b6-3-err-txt\" name='textarea-b6-3'><\/textarea>\n      \n      \n    <\/div>\n          \n          <div class=\"K6 L6 M6  b6-3-err-wrp b6-err-wrp bf-err-wrp bf-error-wrapper\" role=\"alert\" aria-live=\"assertive\" style=\"opacity: 0 !important;height: 0px !important\">\n        <div class=\"I6  b6-3-err-inner b6-err-inner bf-err-inner bf-error-inner\">\n          \n          \n          <div id=\"b6-3-err-txt\" class=\"A6 D6 Q6 R6 S6 T6 U6 V6 W6 X6 Y6 Z6  b6-3-err-msg b6-err-msg bf-err-msg bf-error-messages-container  J6  b6-3-err-txt b6-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 b6-1 \"><div class=\"bf-button-field J6 N6 O6 P6  b6-1-fld-wrp b6-fld-wrp bf-fld-wrp bf-field-wrapper \">\n        \n        <div class=\"b6-1-inp-wrp b6-inp-wrp bf-inp-wrp bf-input-wrapper \">\n          <div class=\"D6  b6-1-inp-fld-wrp b6-inp-fld-wrp bf-inp-fld-wrp bf-input-field-wrapper \">\n        <button class=\"A6 B6 C6 D6 E6 F6 G6 H6 AJ6 AK6 AL6 AM6 AN6 AO6 Aj6 Ak6 Al6  b6-1-btn b6-btn bf-btn bf-button  \" type=\"submit\" name='button-b6-1' aria-describedby=\"b6-1-err-txt\">\n          \n          SEND\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_6_987614854_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=\"A6 D6 G6 AV6 AW6 AX6 msg-container-7 deactive scroll\">\n\t              <div data-contentid=\"bitforms_6_987614854_2\" data-msgid=\"7\" role=\"button\" class=\"A6 D6 G6 H6 AU6 msg-background-7 msg-backdrop\">\n\t                <div class=\"bf-msg-content H6 P6 T6 U6 AY6 Ap6 msg-content-7\">\n\t                  <button data-contentid=\"bitforms_6_987614854_2\" data-msgid=\"7\" class=\"C6 K6 N6 AQ6 AR6 AS6 Am6 An6 Ao6 close-7 bf-msg-close\" type=\"button\">\n\t                        <svg class=\"AT6 close-icn-7\" viewBox=\"0 0 30 30\">\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n\t                        <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n\t                        <\/svg>\n\t                  <\/button>\n\t                  <div class=\"msg-content\"><\/div>\n\t                <\/div>\n\t              <\/div>\n\t            <\/div>\n      <\/div><div class=\"et_pb_with_border et_pb_module dsm_advanced_tabs dsm_advanced_tabs_0 mobile-tabs-carousel\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"dsm-advanced-tabs-container\" data-trigger=\"click\" data-animation=\"none\" data-inner_animation=\"none\" data-deep_link=\"off\" data-image_lightbox=\"off\" data-auto_scroll_mobile=\"off\" data-anchor_link=\"off\">\n\t\t\t\t    <div class=\"dsm-advanced-tabs-wrapper\" role=\"tablist\"><\/div>\n\t\t\t\t <div class=\"dsm-advanced-tabs-content-wrapper\">\n\t\t\t\t    \n\t\t\t\t <\/div>\n\t\t     <\/div>\n\t\t    \n\t\t\t\t<\/div>\n\t\t\t<\/div><div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_0\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_1\">\n\t\t\t\t<\/div>\n\t\t\t<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_2\">\n\t\t\t\t<\/div>\n\t\t\t<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-987614854","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Team INTERNATIONAL sea freight: international transport<\/title>\n<meta name=\"description\" content=\"Team INTERNATIONAL sea freight solutions: international container transport, FCL\/LCL, customs clearance. 24\/7 traceability, worldwide delivery.\" \/>\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\/ocean-freight\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Team INTERNATIONAL sea freight: international transport\" \/>\n<meta property=\"og:description\" content=\"Team INTERNATIONAL sea freight solutions: international container transport, FCL\/LCL, customs clearance. 24\/7 traceability, worldwide delivery.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/teamcdg.com\/en\/ocean-freight\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-29T11:01:30+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=\"17 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/ocean-freight\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/ocean-freight\\\/\",\"name\":\"Team INTERNATIONAL sea freight: international transport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\"},\"datePublished\":\"2026-01-16T11:46:04+00:00\",\"dateModified\":\"2026-05-29T11:01:30+00:00\",\"description\":\"Team INTERNATIONAL sea freight solutions: international container transport, FCL\\\/LCL, customs clearance. 24\\\/7 traceability, worldwide delivery.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/ocean-freight\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/teamcdg.com\\\/en\\\/ocean-freight\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/ocean-freight\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ocean Freight\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"name\":\"Team International\",\"description\":\"Team CDG\",\"publisher\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#organization\"},\"alternateName\":\"Team CDG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#organization\",\"name\":\"Team International\",\"alternateName\":\"Team CDG\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"contentUrl\":\"https:\\\/\\\/teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"width\":793,\"height\":288,\"caption\":\"Team International\"},\"image\":{\"@id\":\"https:\\\/\\\/teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Team INTERNATIONAL sea freight: international transport","description":"Team INTERNATIONAL sea freight solutions: international container transport, FCL\/LCL, customs clearance. 24\/7 traceability, worldwide delivery.","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\/ocean-freight\/","og_locale":"en_US","og_type":"article","og_title":"Team INTERNATIONAL sea freight: international transport","og_description":"Team INTERNATIONAL sea freight solutions: international container transport, FCL\/LCL, customs clearance. 24\/7 traceability, worldwide delivery.","og_url":"https:\/\/teamcdg.com\/en\/ocean-freight\/","og_site_name":"Team International CDG","article_modified_time":"2026-05-29T11:01:30+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":"17 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/teamcdg.com\/en\/ocean-freight\/","url":"https:\/\/teamcdg.com\/en\/ocean-freight\/","name":"Team INTERNATIONAL sea freight: international transport","isPartOf":{"@id":"https:\/\/teamcdg.com\/en\/#website"},"datePublished":"2026-01-16T11:46:04+00:00","dateModified":"2026-05-29T11:01:30+00:00","description":"Team INTERNATIONAL sea freight solutions: international container transport, FCL\/LCL, customs clearance. 24\/7 traceability, worldwide delivery.","breadcrumb":{"@id":"https:\/\/teamcdg.com\/en\/ocean-freight\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/teamcdg.com\/en\/ocean-freight\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/teamcdg.com\/en\/ocean-freight\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"Ocean Freight"}]},{"@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\/987614854","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=987614854"}],"version-history":[{"count":8,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987614854\/revisions"}],"predecessor-version":[{"id":987617678,"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987614854\/revisions\/987617678"}],"wp:attachment":[{"href":"https:\/\/teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987614854"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}