{"id":987615442,"date":"2026-01-19T08:56:19","date_gmt":"2026-01-19T08:56:19","guid":{"rendered":"https:\/\/preprod2.teamcdg.com\/lebanon\/"},"modified":"2026-05-04T13:53:38","modified_gmt":"2026-05-04T13:53:38","slug":"lebanon","status":"publish","type":"page","link":"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/","title":{"rendered":"Lebanon"},"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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/liban-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; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; global_colors_info=&#8221;{}&#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++) {      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;Import Export Lebanon &#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||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; custom_margin=&#8221;||36px||false|false&#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;][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_5_987615442_1\" class=\"bit-form AI5 _frm-bg-b5\">\n      \n          <form novalidate id=\"form-bitforms_5_987615442_1\" class=\"AG5 AH5 _frm-b5\"  method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"X8bNK1+3UvZyFLoQ769MDca\/J9GGkS4GMDMmW0K4L7c=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"MCUNH14NwH5XdQv2qCjwtgmIWPU8LoiUrUGzsqIC+k4=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_5\">\n                  <div class=\"btcd-fld-itm b5-2 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-2-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-2-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-2-lbl bf-lbl \"\n        for=\"b5-2-1\">\n        \n        \n        COMPANY\n        \n              <span \n        \n        class=\"AE5 AF5 b5-2-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-2-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-2-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <input\n        \n        id=\"b5-2-1\"\n        \n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 g5 h5 i5 j5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-2-fld bf-fld \"\n        type=\"text\"\n        required\n        \n        \n        \n        \n        \n        autocomplete='name'\n        \n        name='text-b5-2'\n        \n        \n      \/>\n      \n      \n    <\/div>\n    \n        \n            <div class='K5 L5 M5 b5-2-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-2-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-2-err-msg bf-err-msg  J5 b5-2-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-6 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-6-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-6-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-6-lbl bf-lbl \"\n        for=\"b5-6-1\">\n        \n        \n        PHONE NUMBER\n        \n              <span \n        \n        class=\"AE5 AF5 b5-6-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-6-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-6-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <input\n        \n        id=\"b5-6-1\"\n        \n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 g5 h5 i5 j5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-6-fld bf-fld \"\n        type=\"text\"\n        required\n        \n        \n        \n        \n        \n        \n        \n        name='text-5-6'\n        \n        \n      \/>\n      \n      \n    <\/div>\n    \n        \n            <div class='K5 L5 M5 b5-6-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-6-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-6-err-msg bf-err-msg  J5 b5-6-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-5 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-5-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-5-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-5-lbl bf-lbl \"\n        for=\"b5-5-1\">\n        \n        \n        EMAIL\n        \n              <span \n        \n        class=\"AE5 AF5 b5-5-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-5-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-5-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <input\n        \n        id=\"b5-5-1\"\n        \n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 g5 h5 i5 j5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-5-fld bf-fld \"\n        type=\"email\"\n        required\n        \n        \n        \n        \n        \n        autocomplete='email'\n        \n        name='email-b5-5'\n        \n        \n      \/>\n      \n      \n    <\/div>\n    \n        \n            <div class='K5 L5 M5 b5-5-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-5-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-5-err-msg bf-err-msg  J5 b5-5-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-3 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-3-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-3-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-3-lbl bf-lbl \"\n        for=\"b5-3-1\">\n        \n        \n        MESSAGE\n        \n              <span \n        \n        class=\"AE5 AF5 b5-3-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-3-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-3-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <textarea\n        \n        id=\"b5-3-1\"\n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 h5 i5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AP5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-3-fld bf-fld \"\n        required\n        \n        \n        \n        \n        name='textarea-b5-3'\n      ><\/textarea>\n      \n      \n    <\/div>\n        \n            <div class='K5 L5 M5 b5-3-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-3-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-3-err-msg bf-err-msg  J5 b5-3-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-1 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-1-fld-wrp bf-fld-wrp \"\n    >\n      \n      <div \n        \n        class=\"b5-1-inp-wrp bf-inp-wrp \"\n      > \n              <div \n        \n        class=\"D5 b5-1-inp-fld-wrp bf-inp-fld-wrp \"\n      >\n        <button\n          \n          class=\"A5 B5 C5 D5 E5 F5 G5 H5 AJ5 AK5 AL5 AM5 AN5 AO5 Aj5 Ak5 Al5 b5-1-btn bf-btn  \"\n          type=\"submit\"\n          name='button-b5-1'\n          \n        >\n          \n          SEND\n          \n          <span class=\"bf-spinner d-none\"><\/span>\n        <\/button>\n      <\/div>\n        \n        \n      <\/div>\n    <\/div>\n<\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_5_987615442_1'><\/div>\n                      <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A5 D5 G5 AV5 AW5 AX5 msg-container-6 deactive scroll\">\n              <div data-contentid=\"bitforms_5_987615442_1\" data-msgid=\"6\" role=\"button\" class=\"A5 D5 G5 H5 AU5 msg-background-6 msg-backdrop\">\n                <div class=\"bf-msg-content H5 P5 T5 U5 AY5 Ap5 msg-content-6\">\n                  <button data-contentid=\"bitforms_5_987615442_1\" data-msgid=\"6\" class=\"C5 K5 N5 AQ5 AR5 AS5 Am5 An5 Ao5 close-6 bf-msg-close\" type=\"button\">\n                    <svg class=\"AT5 close-icn-6\" viewBox=\"0 0 30 30\">\n                      <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n                      <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n                    <\/svg>\n                  <\/button>\n                  <div class=\"msg-content\"><\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n      <\/div>    <script id=\"bit-form-bf-globals-bitforms_5_987615442_1\">      if(!window.bf_globals) { \n        window.bf_globals = {} \n      } if(!window.bf_globals.bitforms_5_987615442_1) { \n        window.bf_globals.bitforms_5_987615442_1 = {} \n      }\n      if(document.getElementById('bitforms_5_987615442_1')) {\n        window.bf_globals.bitforms_5_987615442_1 = { \n          ...window.bf_globals.bitforms_5_987615442_1, \n          ...{\"ajaxURL\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/wp-admin\\\/admin-ajax.php\",\"nonce\":\"de417b73c6\",\"version\":\"2.20.6\",\"layout\":{\"lg\":[{\"w\":60,\"h\":78,\"x\":0,\"y\":0,\"i\":\"b5-2\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":78,\"i\":\"b5-6\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":156,\"i\":\"b5-5\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":99,\"x\":0,\"y\":234,\"i\":\"b5-3\",\"minW\":9,\"moved\":false,\"static\":false},{\"w\":60,\"h\":64,\"x\":0,\"y\":333,\"i\":\"b5-1\",\"moved\":false,\"static\":false}],\"md\":[{\"w\":60,\"h\":78,\"x\":0,\"y\":0,\"i\":\"b5-2\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":78,\"i\":\"b5-6\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":156,\"i\":\"b5-5\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":99,\"x\":0,\"y\":234,\"i\":\"b5-3\",\"minW\":9,\"moved\":false,\"static\":false},{\"w\":60,\"h\":64,\"x\":0,\"y\":333,\"i\":\"b5-1\",\"moved\":false,\"static\":false}],\"sm\":[{\"w\":60,\"h\":78,\"x\":0,\"y\":0,\"i\":\"b5-2\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":78,\"i\":\"b5-6\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":156,\"i\":\"b5-5\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":99,\"x\":0,\"y\":234,\"i\":\"b5-3\",\"minW\":9,\"moved\":false,\"static\":false},{\"w\":60,\"h\":64,\"x\":0,\"y\":333,\"i\":\"b5-1\",\"moved\":false,\"static\":false}]},\"nestedLayout\":{},\"fields\":{\"b5-1\":{\"typ\":\"button\",\"btnSiz\":\"md\",\"btnTyp\":\"submit\",\"txt\":\"SEND\",\"icn\":{\"pos\":\"\",\"url\":\"\"},\"valid\":{},\"customClasses\":{},\"customAttributes\":{},\"fulW\":true,\"fieldName\":\"button-b5-1\"},\"b5-2\":{\"typ\":\"text\",\"lbl\":\"COMPANY\",\"phHide\":false,\"valid\":{\"req\":true,\"reqPos\":\"after\",\"reqShow\":true},\"err\":{\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"text-b5-2\",\"acHide\":true,\"ac\":\"name\"},\"b5-3\":{\"typ\":\"textarea\",\"lbl\":\"MESSAGE\",\"phHide\":false,\"valid\":{\"req\":true,\"reqPos\":\"after\",\"reqShow\":true},\"err\":{\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true,\"custom\":true,\"msg\":\"<p style=\\\"margin:0\\\">Message can not be empty.<\\\/p>\"}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"textarea-b5-3\"},\"b5-5\":{\"typ\":\"email\",\"lbl\":\"EMAIL\",\"phHide\":false,\"pattern\":\"^[^$_bf_$s@]+@[^$_bf_$s@]+$_bf_$.[^$_bf_$s@]+$\",\"valid\":{\"req\":true,\"reqPos\":\"after\",\"reqShow\":true},\"err\":{\"invalid\":{\"dflt\":\"<p style=\\\"margin:0\\\">Veuillez saisir une adresse e-mail valide<\\\/p>\",\"show\":true},\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true,\"custom\":true,\"msg\":\"<p style=\\\"margin:0\\\">Please enter your email.<\\\/p>\"}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"email-b5-5\",\"acHide\":true,\"ac\":\"email\"},\"b5-6\":{\"typ\":\"text\",\"lbl\":\"PHONE NUMBER\",\"phHide\":true,\"valid\":{\"req\":true,\"reqShow\":true,\"reqPos\":\"after\"},\"err\":{\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"text-5-6\"}},\"buttons\":\"\",\"fieldsKey\":{\"b5-1\":\"b5-1\",\"b5-2\":\"b5-2\",\"b5-3\":\"b5-3\",\"b5-5\":\"b5-5\",\"b5-6\":\"b5-6\"},\"file\":false,\"configs\":{\"bf_separator\":\"__bf__\"},\"formId\":5,\"appID\":\"bitforms_5\",\"GCLID\":false,\"assetUrl\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/wp-content\\\/plugins\\\/bit-form\\\/assets\",\"onfieldCondition\":false,\"smartTags\":{\"_bf_current_time\":\"2026-05-20 14:01:56\",\"_bf_admin_email\":\"web@localmarketinggeeks.com\",\"_bf_date_default\":\"May 20, 2026\",\"_bf_date.m\\\/d\\\/y\":\"05\\\/20\\\/26\",\"_bf_date.d\\\/m\\\/y\":\"20\\\/05\\\/26\",\"_bf_date.y\\\/m\\\/d\":\"26\\\/05\\\/20\",\"_bf_date.Y-m-d\":\"2026-05-20\",\"_bf_date.d-M, Y\":\"20-May, 2026\",\"_bf_time\":\"2:01 pm\",\"_bf_weekday\":\"Wednesday\",\"_bf_http_referer_url\":\"\",\"_bf_ip_address\":\"216.73.216.15\",\"_bf_browser_name\":\"Bot\",\"_bf_operating_system\":\"\",\"_bf_random_digit\":\"6a0dbed48ee38\",\"_bf_user_id\":\"0\",\"_bf_user_first_name\":\" \",\"_bf_user_last_name\":\" \",\"_bf_user_display_name\":\" \",\"_bf_user_nice_name\":\" \",\"_bf_user_login_name\":\" \",\"_bf_user_email\":\" \",\"_bf_user_url\":\" \",\"_bf_current_user_role\":\" \",\"_bf_author_id\":\" \",\"_bf_author_display\":\" \",\"_bf_author_email\":\" \",\"_bf_site_title\":\"Team International CDG\",\"_bf_site_description\":\"Team CDG\",\"_bf_site_url\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/\",\"_bf_wp_local_codes\":\"en-US\",\"_bf_separator\":\"__bf__\",\"_bf_post_id\":\"\",\"_bf_post_name\":\"\",\"_bf_post_title\":\"\",\"_bf_post_date\":\"\",\"_bf_post_modified_date\":\"\",\"_bf_post_url\":\"\",\"_bf_is_user_logged_in\":\"logged_out\",\"_bf_entry_id\":\"\",\"_bf_back_view\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/wp-json\\\/wp\\\/v2\\\/pages\\\/987615442\\\/\"},\"paymentCallbackUrl\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/wp-json\\\/bitform\\\/v1\\\/payments\\\/razorpay\",\"gRecaptchaSiteKey\":null,\"gRecaptchaVersion\":null,\"turnstileSiteKey\":null,\"hCaptchaSiteKey\":null}\n        };\n      }<\/script>[\/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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/Introduction.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615236&#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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/Solutions-Transport.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615252&#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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/Processus.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615256&#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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/Atouts.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615260&#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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/Secteurs.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615264&#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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/Geographie.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615267&#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:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2026\/03\/FAQ.png&#8221; dsm_content_type=&#8221;library&#8221; dsm_content_library_layout=&#8221;987615270&#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\">Import Export Lebanon <\/span><\/span><\/h1><\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div><div id=\"bitforms_5_987615442_2\" class=\"bit-form AI5 _frm-bg-b5\">\n      \n          <form novalidate id=\"form-bitforms_5_987615442_2\" class=\"AG5 AH5 _frm-b5\"  method='post'>\n              <input type=\"text\" class=\"d-none\" name=\"csrf\" value=\"ShyDO2NgUIpkUiYtrIYdHTyZEuXKFAbx2EkPeVDhIMw=\">\n              <input type=\"text\" class=\"d-none\" name=\"t_identity\" value=\"gR6bcBRVVJO8U7rC0xSgNM1O0RzjEhGlLCTZF4pvFV0=\">\n              \n              <input type=\"text\" class=\"d-none\" name=\"bitforms_id\" value=\"bitforms_5\">\n                  <div class=\"btcd-fld-itm b5-2 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-2-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-2-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-2-lbl bf-lbl \"\n        for=\"b5-2-2\">\n        \n        \n        COMPANY\n        \n              <span \n        \n        class=\"AE5 AF5 b5-2-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-2-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-2-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <input\n        \n        id=\"b5-2-2\"\n        \n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 g5 h5 i5 j5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-2-fld bf-fld \"\n        type=\"text\"\n        required\n        \n        \n        \n        \n        \n        autocomplete='name'\n        \n        name='text-b5-2'\n        \n        \n      \/>\n      \n      \n    <\/div>\n    \n        \n            <div class='K5 L5 M5 b5-2-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-2-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-2-err-msg bf-err-msg  J5 b5-2-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-6 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-6-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-6-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-6-lbl bf-lbl \"\n        for=\"b5-6-2\">\n        \n        \n        PHONE NUMBER\n        \n              <span \n        \n        class=\"AE5 AF5 b5-6-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-6-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-6-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <input\n        \n        id=\"b5-6-2\"\n        \n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 g5 h5 i5 j5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-6-fld bf-fld \"\n        type=\"text\"\n        required\n        \n        \n        \n        \n        \n        \n        \n        name='text-5-6'\n        \n        \n      \/>\n      \n      \n    <\/div>\n    \n        \n            <div class='K5 L5 M5 b5-6-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-6-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-6-err-msg bf-err-msg  J5 b5-6-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-5 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-5-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-5-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-5-lbl bf-lbl \"\n        for=\"b5-5-2\">\n        \n        \n        EMAIL\n        \n              <span \n        \n        class=\"AE5 AF5 b5-5-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-5-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-5-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <input\n        \n        id=\"b5-5-2\"\n        \n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 g5 h5 i5 j5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-5-fld bf-fld \"\n        type=\"email\"\n        required\n        \n        \n        \n        \n        \n        autocomplete='email'\n        \n        name='email-b5-5'\n        \n        \n      \/>\n      \n      \n    <\/div>\n    \n        \n            <div class='K5 L5 M5 b5-5-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-5-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-5-err-msg bf-err-msg  J5 b5-5-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-3 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-3-fld-wrp bf-fld-wrp \"\n    >\n            <div \n        \n        class=\"H5 z5 AD5 b5-3-lbl-wrp bf-lbl-wrp \" \n      >\n              <label \n         \n        class=\"A5 D5 H5 z5 AA5 AB5 AC5 b5-3-lbl bf-lbl \"\n        for=\"b5-3-2\">\n        \n        \n        MESSAGE\n        \n              <span \n        \n        class=\"AE5 AF5 b5-3-req-smbl bf-req-smbl \" \n      >\n        *\n      <\/span>\n      <\/label>\n        \n      <\/div>\n      <div \n        \n        class=\"b5-3-inp-wrp bf-inp-wrp \"\n      > \n            <div \n      \n      class=\"P5 y5 b5-3-inp-fld-wrp bf-inp-fld-wrp \"\n    >\n      <textarea\n        \n        id=\"b5-3-2\"\n        class=\"B5 E5 F5 a5 b5 c5 d5 e5 f5 h5 i5 k5 l5 m5 n5 o5 p5 q5 r5 s5 t5 u5 v5 w5 x5 AP5 AZ5 Aa5 Ab5 Ac5 Ad5 Ae5 Af5 Ag5 Ah5 Ai5 b5-3-fld bf-fld \"\n        required\n        \n        \n        \n        \n        name='textarea-b5-3'\n      ><\/textarea>\n      \n      \n    <\/div>\n        \n            <div class='K5 L5 M5 b5-3-err-wrp bf-err-wrp' style=\"opacity: 0 !important; height: 0px !important;\">\n    <div class='I5 b5-3-err-inner bf-err-inner'>\n      \n        \n        <div   class=\"A5 D5 Q5 R5 S5 T5 U5 V5 W5 X5 Y5 Z5 b5-3-err-msg bf-err-msg  J5 b5-3-err-txt bf-err-txt \" style='display: none !important;'><\/div>\n        \n      \n      <\/div>\n    <\/div>\n      <\/div>\n    <\/div>\n<\/div><div class=\"btcd-fld-itm b5-1 \">\n        <div \n      \n      class=\"J5 N5 O5 P5 b5-1-fld-wrp bf-fld-wrp \"\n    >\n      \n      <div \n        \n        class=\"b5-1-inp-wrp bf-inp-wrp \"\n      > \n              <div \n        \n        class=\"D5 b5-1-inp-fld-wrp bf-inp-fld-wrp \"\n      >\n        <button\n          \n          class=\"A5 B5 C5 D5 E5 F5 G5 H5 AJ5 AK5 AL5 AM5 AN5 AO5 Aj5 Ak5 Al5 b5-1-btn bf-btn  \"\n          type=\"submit\"\n          name='button-b5-1'\n          \n        >\n          \n          SEND\n          \n          <span class=\"bf-spinner d-none\"><\/span>\n        <\/button>\n      <\/div>\n        \n        \n      <\/div>\n    <\/div>\n<\/div>\n          <\/form>\n          \n          <div id='bf-form-msg-wrp-bitforms_5_987615442_2'><\/div>\n                      <div role=\"dialog\" aria-hidden=\"true\" data-modal-backdrop=\"true\" class=\"A5 D5 G5 AV5 AW5 AX5 msg-container-6 deactive scroll\">\n              <div data-contentid=\"bitforms_5_987615442_2\" data-msgid=\"6\" role=\"button\" class=\"A5 D5 G5 H5 AU5 msg-background-6 msg-backdrop\">\n                <div class=\"bf-msg-content H5 P5 T5 U5 AY5 Ap5 msg-content-6\">\n                  <button data-contentid=\"bitforms_5_987615442_2\" data-msgid=\"6\" class=\"C5 K5 N5 AQ5 AR5 AS5 Am5 An5 Ao5 close-6 bf-msg-close\" type=\"button\">\n                    <svg class=\"AT5 close-icn-6\" viewBox=\"0 0 30 30\">\n                      <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"4\" y1=\"3.88\" x2=\"26\" y2=\"26.12\"><\/line>\n                      <line fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" x1=\"26\" y1=\"3.88\" x2=\"4\" y2=\"26.12\"><\/line>\n                    <\/svg>\n                  <\/button>\n                  <div class=\"msg-content\"><\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n      <\/div>    <script id=\"bit-form-bf-globals-bitforms_5_987615442_2\">      if(!window.bf_globals) { \n        window.bf_globals = {} \n      } if(!window.bf_globals.bitforms_5_987615442_2) { \n        window.bf_globals.bitforms_5_987615442_2 = {} \n      }\n      if(document.getElementById('bitforms_5_987615442_2')) {\n        window.bf_globals.bitforms_5_987615442_2 = { \n          ...window.bf_globals.bitforms_5_987615442_2, \n          ...{\"ajaxURL\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/wp-admin\\\/admin-ajax.php\",\"nonce\":\"de417b73c6\",\"version\":\"2.20.6\",\"layout\":{\"lg\":[{\"w\":60,\"h\":78,\"x\":0,\"y\":0,\"i\":\"b5-2\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":78,\"i\":\"b5-6\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":156,\"i\":\"b5-5\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":99,\"x\":0,\"y\":234,\"i\":\"b5-3\",\"minW\":9,\"moved\":false,\"static\":false},{\"w\":60,\"h\":64,\"x\":0,\"y\":333,\"i\":\"b5-1\",\"moved\":false,\"static\":false}],\"md\":[{\"w\":60,\"h\":78,\"x\":0,\"y\":0,\"i\":\"b5-2\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":78,\"i\":\"b5-6\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":156,\"i\":\"b5-5\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":99,\"x\":0,\"y\":234,\"i\":\"b5-3\",\"minW\":9,\"moved\":false,\"static\":false},{\"w\":60,\"h\":64,\"x\":0,\"y\":333,\"i\":\"b5-1\",\"moved\":false,\"static\":false}],\"sm\":[{\"w\":60,\"h\":78,\"x\":0,\"y\":0,\"i\":\"b5-2\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":78,\"i\":\"b5-6\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":78,\"x\":0,\"y\":156,\"i\":\"b5-5\",\"moved\":false,\"static\":false},{\"w\":60,\"h\":99,\"x\":0,\"y\":234,\"i\":\"b5-3\",\"minW\":9,\"moved\":false,\"static\":false},{\"w\":60,\"h\":64,\"x\":0,\"y\":333,\"i\":\"b5-1\",\"moved\":false,\"static\":false}]},\"nestedLayout\":{},\"fields\":{\"b5-1\":{\"typ\":\"button\",\"btnSiz\":\"md\",\"btnTyp\":\"submit\",\"txt\":\"SEND\",\"icn\":{\"pos\":\"\",\"url\":\"\"},\"valid\":{},\"customClasses\":{},\"customAttributes\":{},\"fulW\":true,\"fieldName\":\"button-b5-1\"},\"b5-2\":{\"typ\":\"text\",\"lbl\":\"COMPANY\",\"phHide\":false,\"valid\":{\"req\":true,\"reqPos\":\"after\",\"reqShow\":true},\"err\":{\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"text-b5-2\",\"acHide\":true,\"ac\":\"name\"},\"b5-3\":{\"typ\":\"textarea\",\"lbl\":\"MESSAGE\",\"phHide\":false,\"valid\":{\"req\":true,\"reqPos\":\"after\",\"reqShow\":true},\"err\":{\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true,\"custom\":true,\"msg\":\"<p style=\\\"margin:0\\\">Message can not be empty.<\\\/p>\"}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"textarea-b5-3\"},\"b5-5\":{\"typ\":\"email\",\"lbl\":\"EMAIL\",\"phHide\":false,\"pattern\":\"^[^$_bf_$s@]+@[^$_bf_$s@]+$_bf_$.[^$_bf_$s@]+$\",\"valid\":{\"req\":true,\"reqPos\":\"after\",\"reqShow\":true},\"err\":{\"invalid\":{\"dflt\":\"<p style=\\\"margin:0\\\">Veuillez saisir une adresse e-mail valide<\\\/p>\",\"show\":true},\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true,\"custom\":true,\"msg\":\"<p style=\\\"margin:0\\\">Please enter your email.<\\\/p>\"}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"email-b5-5\",\"acHide\":true,\"ac\":\"email\"},\"b5-6\":{\"typ\":\"text\",\"lbl\":\"PHONE NUMBER\",\"phHide\":true,\"valid\":{\"req\":true,\"reqShow\":true,\"reqPos\":\"after\"},\"err\":{\"req\":{\"dflt\":\"<p style=\\\"margin:0\\\">Ce champ est obligatoire<\\\/p>\",\"show\":true}},\"customClasses\":{},\"customAttributes\":{},\"fieldName\":\"text-5-6\"}},\"buttons\":\"\",\"fieldsKey\":{\"b5-1\":\"b5-1\",\"b5-2\":\"b5-2\",\"b5-3\":\"b5-3\",\"b5-5\":\"b5-5\",\"b5-6\":\"b5-6\"},\"file\":false,\"configs\":{\"bf_separator\":\"__bf__\"},\"formId\":5,\"appID\":\"bitforms_5\",\"GCLID\":false,\"assetUrl\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/wp-content\\\/plugins\\\/bit-form\\\/assets\",\"onfieldCondition\":false,\"smartTags\":{\"_bf_current_time\":\"2026-05-20 14:01:58\",\"_bf_admin_email\":\"web@localmarketinggeeks.com\",\"_bf_date_default\":\"May 20, 2026\",\"_bf_date.m\\\/d\\\/y\":\"05\\\/20\\\/26\",\"_bf_date.d\\\/m\\\/y\":\"20\\\/05\\\/26\",\"_bf_date.y\\\/m\\\/d\":\"26\\\/05\\\/20\",\"_bf_date.Y-m-d\":\"2026-05-20\",\"_bf_date.d-M, Y\":\"20-May, 2026\",\"_bf_time\":\"2:01 pm\",\"_bf_weekday\":\"Wednesday\",\"_bf_http_referer_url\":\"\",\"_bf_ip_address\":\"216.73.216.15\",\"_bf_browser_name\":\"Bot\",\"_bf_operating_system\":\"\",\"_bf_random_digit\":\"6a0dbed6156b9\",\"_bf_user_id\":\"0\",\"_bf_user_first_name\":\" \",\"_bf_user_last_name\":\" \",\"_bf_user_display_name\":\" \",\"_bf_user_nice_name\":\" \",\"_bf_user_login_name\":\" \",\"_bf_user_email\":\" \",\"_bf_user_url\":\" \",\"_bf_current_user_role\":\" \",\"_bf_author_id\":\" \",\"_bf_author_display\":\" \",\"_bf_author_email\":\" \",\"_bf_site_title\":\"Team International CDG\",\"_bf_site_description\":\"Team CDG\",\"_bf_site_url\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/\",\"_bf_wp_local_codes\":\"en-US\",\"_bf_separator\":\"__bf__\",\"_bf_post_id\":\"\",\"_bf_post_name\":\"\",\"_bf_post_title\":\"\",\"_bf_post_date\":\"\",\"_bf_post_modified_date\":\"\",\"_bf_post_url\":\"\",\"_bf_is_user_logged_in\":\"logged_out\",\"_bf_entry_id\":\"\",\"_bf_back_view\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/wp-json\\\/wp\\\/v2\\\/pages\\\/987615442\\\/\"},\"paymentCallbackUrl\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/wp-json\\\/bitform\\\/v1\\\/payments\\\/razorpay\",\"gRecaptchaSiteKey\":null,\"gRecaptchaVersion\":null,\"turnstileSiteKey\":null,\"hCaptchaSiteKey\":null}\n        };\n      }<\/script><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<div class=\"dsm-advanced-tab-item-wrapper dsm_advanced_tabs_child_5\">\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-987615442","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Freight Forwarding to Lebanon | Team International<\/title>\n<meta name=\"description\" content=\"Team International offers tailored freight solutions to Lebanon. Air freight, ocean freight and express delivery to Beirut and beyond.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Freight Forwarding to Lebanon | Team International\" \/>\n<meta property=\"og:description\" content=\"Team International offers tailored freight solutions to Lebanon. Air freight, ocean freight and express delivery to Beirut and beyond.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/\" \/>\n<meta property=\"og:site_name\" content=\"Team International CDG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-04T13:53:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/preprod2.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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/lebanon\\\/\",\"url\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/lebanon\\\/\",\"name\":\"Freight Forwarding to Lebanon | Team International\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/#website\"},\"datePublished\":\"2026-01-19T08:56:19+00:00\",\"dateModified\":\"2026-05-04T13:53:38+00:00\",\"description\":\"Team International offers tailored freight solutions to Lebanon. Air freight, ocean freight and express delivery to Beirut and beyond.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/lebanon\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/lebanon\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/lebanon\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Lebanon\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/\",\"name\":\"Team International\",\"description\":\"Team CDG\",\"publisher\":{\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/#organization\"},\"alternateName\":\"Team CDG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/#organization\",\"name\":\"Team International\",\"alternateName\":\"Team CDG\",\"url\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"contentUrl\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-team-2-1.png\",\"width\":793,\"height\":288,\"caption\":\"Team International\"},\"image\":{\"@id\":\"https:\\\/\\\/preprod2.teamcdg.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Freight Forwarding to Lebanon | Team International","description":"Team International offers tailored freight solutions to Lebanon. Air freight, ocean freight and express delivery to Beirut and beyond.","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:\/\/preprod2.teamcdg.com\/en\/lebanon\/","og_locale":"en_US","og_type":"article","og_title":"Freight Forwarding to Lebanon | Team International","og_description":"Team International offers tailored freight solutions to Lebanon. Air freight, ocean freight and express delivery to Beirut and beyond.","og_url":"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/","og_site_name":"Team International CDG","article_modified_time":"2026-05-04T13:53:38+00:00","og_image":[{"width":793,"height":288,"url":"https:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/","url":"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/","name":"Freight Forwarding to Lebanon | Team International","isPartOf":{"@id":"https:\/\/preprod2.teamcdg.com\/en\/#website"},"datePublished":"2026-01-19T08:56:19+00:00","dateModified":"2026-05-04T13:53:38+00:00","description":"Team International offers tailored freight solutions to Lebanon. Air freight, ocean freight and express delivery to Beirut and beyond.","breadcrumb":{"@id":"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/preprod2.teamcdg.com\/en\/lebanon\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/preprod2.teamcdg.com\/en\/lebanon\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/preprod2.teamcdg.com\/en\/"},{"@type":"ListItem","position":2,"name":"Lebanon"}]},{"@type":"WebSite","@id":"https:\/\/preprod2.teamcdg.com\/en\/#website","url":"https:\/\/preprod2.teamcdg.com\/en\/","name":"Team International","description":"Team CDG","publisher":{"@id":"https:\/\/preprod2.teamcdg.com\/en\/#organization"},"alternateName":"Team CDG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/preprod2.teamcdg.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/preprod2.teamcdg.com\/en\/#organization","name":"Team International","alternateName":"Team CDG","url":"https:\/\/preprod2.teamcdg.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/preprod2.teamcdg.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","contentUrl":"https:\/\/preprod2.teamcdg.com\/wp-content\/uploads\/2025\/12\/logo-team-2-1.png","width":793,"height":288,"caption":"Team International"},"image":{"@id":"https:\/\/preprod2.teamcdg.com\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615442","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/comments?post=987615442"}],"version-history":[{"count":3,"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615442\/revisions"}],"predecessor-version":[{"id":987617348,"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/pages\/987615442\/revisions\/987617348"}],"wp:attachment":[{"href":"https:\/\/preprod2.teamcdg.com\/en\/wp-json\/wp\/v2\/media?parent=987615442"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}