{"id":1075,"date":"2024-04-13T19:47:00","date_gmt":"2024-04-13T19:47:00","guid":{"rendered":"https:\/\/transportinghighway.com\/acasa\/"},"modified":"2026-01-12T15:52:16","modified_gmt":"2026-01-12T15:52:16","slug":"acasa","status":"publish","type":"page","link":"https:\/\/transportinghighway.com\/ro\/","title":{"rendered":"Acas\u0103"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1075\" class=\"elementor elementor-1075 elementor-878\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7b12c61 e-con-full e-flex e-con e-parent\" data-id=\"7b12c61\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-cac9fab e-con-full e-flex e-con e-child\" data-id=\"cac9fab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8d68bda elementor-widget elementor-widget-heading\" data-id=\"8d68bda\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><br>Organiz\u0103m transportul ma\u0219inii dumneavoastr\u0103 eficient, rapid \u0219i u\u0219or<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-18751a3 e-flex e-con-boxed e-con e-parent\" data-id=\"18751a3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b9edb00 elementor-widget elementor-widget-html\" data-id=\"b9edb00\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\/\/Location\n  let jobDetails = {};\n  let autocompleteFrom;\n  let autocompleteTo;\n\n  const options = {\n    types: ['locality', 'postal_town', 'administrative_area_level_3'],\n    componentRestrictions: {\n      country: 'NL',\n    },\n    fields: ['geometry.location', 'address_components'],\n  };\n\n  function initAutoComplete() {\n    autocompleteFrom = new google.maps.places.Autocomplete(\n      document.getElementById('city-from'),\n      options\n    );\n    autocompleteTo = new google.maps.places.Autocomplete(\n      document.getElementById('city-to'),\n      options\n    );\n    autocompleteFrom.addListener('place_changed', onPlaceChanged);\n    autocompleteTo.addListener('place_changed', onPlaceChanged);\n  }\n\n  function onPlaceChanged() {\n    jobDetails = {\n      LatitudeFrom: autocompleteFrom.getPlace()?.geometry?.location.lat(),\n      LongitudeFrom: autocompleteFrom.getPlace()?.geometry?.location.lng(),\n      CountryFromCode: document.getElementById('country-from').value,\n      CityFrom: autocompleteFrom.getPlace()?.address_components[0]?.long_name,\n      LatitudeTo: autocompleteTo.getPlace()?.geometry?.location.lat(),\n      LongitudeTo: autocompleteTo.getPlace()?.geometry?.location.lng(),\n      CountryToCode: document.getElementById('country-to').value,\n      CityTo: autocompleteTo.getPlace()?.address_components[0]?.long_name,\n    };\n  }\n\n  document.addEventListener('change', function (event) {\n    if (event.target.id === 'country-from') {\n      autocompleteFrom.setComponentRestrictions({\n        country: event.target.value,\n      });\n      document.getElementById('city-from').value = '';\n    }\n    if (event.target.id === 'country-to') {\n      autocompleteTo.setComponentRestrictions({\n        country: event.target.value,\n      });\n      document.getElementById('city-to').value = '';\n    }\n  });\n\n  const onClickAddVehicles = () => {\n    if (!jobDetails.LatitudeFrom || !jobDetails.LatitudeTo) {\n      alert('Vul a.u.b. de locatiegegevens in');\n    } else {\n      document.getElementById('location-div').style.display = 'none';\n      document.getElementById('vehicles-div').style.display = 'block';\n    }\n  };\n\n  \/\/ Vehicles\n\n  function onClickBack() {\n    document.getElementById('location-div').style.display = 'block';\n    document.getElementById('vehicles-div').style.display = 'none';\n  }\n\n  function changeVehiclesInput() {\n    const vehicles = [];\n\n    const vehicleItems = document.querySelectorAll('.vehicle-item');\n    vehicleItems.forEach((item) => {\n      const vehicleType = item.querySelector('.vehicle-type').innerText;\n      const electric = item.querySelector('.vehicle-item__electric') !== null;\n      const nonRunner = item.querySelector('.vehicle-item__bug') !== null;\n      const amount = parseInt(vehicleType.split('x')[0].trim(), 10);\n      const type = item\n        .querySelector('.vehicle-type')\n        .getAttribute('data-vehicle-type');\n      const vehicle = {\n        Type: type,\n        Electric: electric,\n        NonRunner: nonRunner,\n        Amount: amount,\n      };\n      vehicles.push(vehicle);\n      console.log('vehicles', vehicles);\n    });\n\n    jobDetails.Vehicles = vehicles;\n    document.getElementById('job-details').value = JSON.stringify(jobDetails);\n  }\n\n  function deleteRow(button) {\n    var row = button.closest('tr');\n    row.parentNode.removeChild(row);\n    changeVehiclesInput();\n  }\n\n  function addVehicle() {\n    const vehicleType =\n      document.getElementById('vehicles').selectedOptions[0].text;\n    const vehicleTypeValue =\n      document.getElementById('vehicles').selectedOptions[0].value;\n    const electricHybrid = document.getElementById('electric-hybrid').checked;\n    const nonRunner = document.getElementById('non-runner').checked;\n    const amountOfCars = document.getElementById('amount-of-cars').value;\n\n    const vehicleList = document.querySelector(\n      '.calculator-vehicles__vehicle-list'\n    );\n    const vehicleDiv = document.createElement('div');\n    vehicleDiv.classList.add('vehicle-item');\n\n    const vehicleTypeDiv = document.createElement('div');\n    vehicleTypeDiv.classList.add('vehicle-type');\n    vehicleTypeDiv.innerText = amountOfCars + 'x ' + vehicleType;\n    vehicleTypeDiv.setAttribute('data-vehicle-type', vehicleTypeValue);\n\n    const electricStatusDiv = document.createElement('div');\n    electricStatusDiv.innerHTML = electricHybrid\n      ? '<div class=\"vehicle-item__electric\"><\/div>'\n      : '';\n\n    const nonRunnerStatusDiv = document.createElement('div');\n    nonRunnerStatusDiv.classList.add('non-runner-status');\n    nonRunnerStatusDiv.innerHTML = nonRunner\n      ? '<div class=\"vehicle-item__bug\"><\/div>'\n      : '';\n\n    const deleteButton = document.createElement('button');\n    deleteButton.classList.add('delete-button');\n    deleteButton.onclick = function () {\n      vehicleDiv.remove();\n      changeVehiclesInput();\n    };\n\n    vehicleDiv.appendChild(vehicleTypeDiv);\n    vehicleDiv.appendChild(electricStatusDiv);\n    vehicleDiv.appendChild(nonRunnerStatusDiv);\n    vehicleDiv.appendChild(deleteButton);\n\n    vehicleList.appendChild(vehicleDiv);\n    changeVehiclesInput();\n  }\n\n  function submitForm() {\n    const vehicleItems = document.querySelectorAll('.vehicle-item');\n    if (vehicleItems.length === 0) {\n      alert('Please add at least one vehicle');\n    } else {\n      document.getElementById('form-vehicles').submit();\n    }\n  }\n\n  document.addEventListener('DOMContentLoaded', function () {\n    document.getElementById('city-from').value = '';\n    document.getElementById('city-to').value = '';\n    document.getElementById('country-from').value = 'NL';\n    document.getElementById('country-to').value = 'NL';\n  });\n<\/script><script\n  src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyCeGBrRUYK8pO4gsVa7JAuGhcNNFMlgUO4&libraries=places&loading=async&callback=initAutoComplete\"\n  async\n  defer\n><\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b589c62 e-flex e-con-boxed e-con e-parent\" data-id=\"b589c62\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-87fbd0a e-flex e-con-boxed e-con e-child\" data-id=\"87fbd0a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-c859157 e-con-full e-flex e-con e-child\" data-id=\"c859157\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-31dd4de elementor-widget elementor-widget-heading\" data-id=\"31dd4de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Calcula\u021bi-v\u0103 pre\u021bul total f\u0103r\u0103 obliga\u021bii<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f575ed4 elementor-widget elementor-widget-html\" data-id=\"f575ed4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"layout-container\">\n  <div class=\"calculator-page\">\n    <div id=\"location-div\">\n      <div class=\"calculator-wizard\">\n        <div class=\"calculator-wizard__step calculator-wizard__step--active\">\n  Loca\u021bie\n          <div class=\"calculator-wizard__step__icon\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__line-container\">\n          <div class=\"calculator-wizard__line-container__line\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__step\">\n  Ad\u0103uga\u021bi vehicule\n          <div class=\"calculator-wizard__step__circle\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__line-container\">\n          <div class=\"calculator-wizard__line-container__line\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__step\">\n  Calculul\n          <div class=\"calculator-wizard__step__circle\"><\/div>\n        <\/div>\n      <\/div>\n      <div class=\"calculator-location\">\n        <div class=\"calculator-location__block\">\n          <span>De la<\/span>\n          <select class=\"calculator-location__block__input\" id=\"country-from\" name=\"country-from\">\n            <option value=\"BE\">Belgia<\/option>\n            <option value=\"BG\">Bulgaria<\/option>\n            <option value=\"DK\">Danemarca<\/option>\n            <option value=\"DE\">Germania<\/option>\n            <option value=\"EE\">Estonia<\/option>\n            <option value=\"FR\">Fran\u021ba<\/option>\n            <option value=\"HU\">Ungaria<\/option>\n            <option value=\"IT\">Italia<\/option>\n            <option value=\"HR\">Croa\u021bia<\/option>\n            <option value=\"LV\">Letonia<\/option>\n            <option value=\"LT\">Lituania<\/option>\n            <option value=\"LU\">Luxemburg<\/option>\n            <option value=\"NL\" selected>Olanda<\/option>\n            <option value=\"AT\">Austria<\/option>\n            <option value=\"PL\">Polonia<\/option>\n            <option value=\"PT\">Portugalia<\/option>\n            <option value=\"RO\">Rom\u00e2nia<\/option>\n            <option value=\"SI\">Slovenia<\/option>\n            <option value=\"SK\">Slovacia<\/option>\n            <option value=\"CZ\">Republica Ceh\u0103<\/option>\n            <option value=\"ES\">Spania<\/option>\n            <option value=\"SE\">Suedia<\/option>\n            <option value=\"CH\">Elve\u021bia<\/option>\n          <\/select>\n\n          <input id=\"city-from\" name=\"city-from\" placeholder=\"Ora\u0219\" type=\"text\" class=\"calculator-location__block__input\" required=\"\">\n        <\/div>\n        <div class=\"calculator-location__block\">\n          <span>La<\/span>\n          <select class=\"calculator-location__block__input\" id=\"country-to\" name=\"country-to\">\n            <option value=\"BE\">Belgia<\/option>\n            <option value=\"BG\">Bulgaria<\/option>\n            <option value=\"DK\">Danemarca<\/option>\n            <option value=\"DE\">Germania<\/option>\n            <option value=\"EE\">Estonia<\/option>\n            <option value=\"FR\">Fran\u021ba<\/option>\n            <option value=\"HU\">Ungaria<\/option>\n            <option value=\"IT\">Italia<\/option>\n            <option value=\"HR\">Croa\u021bia<\/option>\n            <option value=\"LV\">Letonia<\/option>\n            <option value=\"LT\">Lituania<\/option>\n            <option value=\"LU\">Luxemburg<\/option>\n            <option value=\"NL\" selected>Olanda<\/option>\n            <option value=\"AT\">Austria<\/option>\n            <option value=\"PL\">Polonia<\/option>\n            <option value=\"PT\">Portugalia<\/option>\n            <option value=\"RO\">Rom\u00e2nia<\/option>\n            <option value=\"SI\">Slovenia<\/option>\n            <option value=\"SK\">Slovacia<\/option>\n            <option value=\"CZ\">Republica Ceh\u0103<\/option>\n            <option value=\"ES\">Spania<\/option>\n            <option value=\"SE\">Suedia<\/option>\n            <option value=\"CH\">Elve\u021bia<\/option>\n          <\/select>\n          <input id=\"city-to\" name=\"city-to\" placeholder=\"Ora\u0219\" type=\"text\" class=\"calculator-location__block__input\" required=\"\">\n        <\/div>\n        <button class=\"calculator-button calculator-button--primary calculator-button--icon\" id=\"calculate-button\" type=\"button\" onclick=\"onClickAddVehicles()\">\n  Ad\u0103uga\u021bi vehicule\n          <div class=\"button-arrow-right\"><\/div>\n        <\/button>\n      <\/div>\n    <\/div>\n    <div id=\"vehicles-div\" style=\"display: none\">\n      <div class=\"calculator-wizard\">\n        <div class=\"calculator-wizard__step calculator-wizard__step--visited\">\n  Loca\u021bie\n          <div class=\"calculator-wizard__step__circle calculator-wizard__step__circle--visited\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__line-container\">\n          <div class=\"calculator-wizard__line-container__line\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__step calculator-wizard__step--active\">\n  Ad\u0103uga\u021bi vehicule\n          <div class=\"calculator-wizard__step__icon\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__line-container\">\n          <div class=\"calculator-wizard__line-container__line\"><\/div>\n        <\/div>\n        <div class=\"calculator-wizard__step\">\n  Calculul\n          <div class=\"calculator-wizard__step__circle\"><\/div>\n        <\/div>\n      <\/div>\n      <form id=\"form-vehicles\" action=\"\/registreren\" method=\"post\">\n        <div class=\"calculator-vehicles\">\n          <div class=\"calculator-vehicles__selection\">\n            <div class=\"calculator-vehicles__selection__block-container\">\n              <div class=\"calculator-vehicles__selection__block-container__block calculator-vehicles__selection__block-container__block--vertical\">\n                <div class=\"calculator-vehicles__selection__block-container__block__input-container\">\n                  <label for=\"vehicles\">Selecta\u021bi un tip de vehicul<\/label>\n                  <select class=\"calculator-vehicles__selection__block-container__block__input-container__input\" id=\"vehicles\" name=\"vehicles\">\n                    <option value=\"Standard\" selected>Standard<\/option>\n                    <option value=\"Suv\">Suv<\/option>\n                    <option value=\"VanSmall\">Autobuz (max. L1H1)<\/option>\n                    <option value=\"VanLarge\">Autobuz (max. L3H3)<\/option>\n                  <\/select>\n                <\/div>\n                <div class=\"calculator-vehicles__selection__block-container__block__input-container\">\n                  <label for=\"amount-of-cars\">Cantitate<\/label>\n                  <input type=\"number\" class=\"calculator-location__block__input\" id=\"amount-of-cars\" name=\"amount-of-cars\" min=\"1\" value=\"1\">\n                <\/div>\n              <\/div>\n              <div class=\"calculator-vehicles__selection__block-container__block\">\n                <div class=\"calculator-vehicles__selection__block-container__block__input-container\">\n                  <label for=\"electric-hybrid\">Electric \/ hibrid<\/label>\n                  <label class=\"switch\">\n                    <input type=\"checkbox\" id=\"electric-hybrid\" name=\"electric-hybrid\">\n                    <span class=\"slider round\"><\/span>\n                  <\/label>\n                <\/div>\n                <div class=\"calculator-vehicles__selection__block-container__block__input-container\">\n                  <label for=\"non-runner\">Nu conduce\u021bi<\/label>\n                  <label class=\"switch\">\n                    <input type=\"checkbox\" id=\"non-runner\" name=\"non-runner\">\n                    <span class=\"slider round\"><\/span>\n                  <\/label>\n                <\/div>\n              <\/div>\n              <button class=\"calculator-button calculator-button--small calculator-button--primary\" id=\"add-vehicle-button\" type=\"button\" onclick=\"addVehicle()\">\n  Ad\u0103uga\u021bi un vehicul\n              <\/button>\n            <\/div>\n            <div class=\"calculator-vehicles__vehicle-list\">\n              <input type=\"hidden\" name=\"job-details\" id=\"job-details\">\n            <\/div>\n          <\/div>\n          <div class=\"calculator-vehicles__actions\">\n            <button class=\"calculator-button calculator-button--icon\" id=\"back-button\" type=\"button\" onclick=\"onClickBack()\">\n              <div class=\"button-arrow-left\"><\/div>\n  \u00cenapoi\n            <\/button>\n            <button class=\"calculator-button calculator-button--primary calculator-button--icon\" id=\"calculate-price-button\" type=\"button\" onclick=\"submitForm()\">\n  Calcula\u021bi pre\u021bul\n              <div class=\"button-arrow-right\"><\/div>\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/form>\n    <\/div>\n  <\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-232cea0 e-flex e-con-boxed e-con e-parent\" data-id=\"232cea0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-ea99f92 e-flex e-con-boxed e-con e-child\" data-id=\"ea99f92\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-9fc088a e-grid e-con-boxed e-con e-child\" data-id=\"9fc088a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6e075ce e-con-full e-flex e-con e-child\" data-id=\"6e075ce\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0834d7b elementor-widget-tablet__width-inherit elementor-widget elementor-widget-counter\" data-id=\"0834d7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<p class=\"elementor-counter-title\">VEHICULE LIVRATE<\/p>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">+<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"10112\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"><\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8ea0abd elementor-widget elementor-widget-text-editor\" data-id=\"8ea0abd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"color: #000000;\">Vehicule transportate lunar \u00een \u00eentreaga Europ\u0103.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b747e98 e-con-full e-flex e-con e-child\" data-id=\"b747e98\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b4ba428 elementor-widget elementor-widget-counter\" data-id=\"b4ba428\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">EFICIEN\u021a\u0102<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"4.8\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">  zile<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9287252 elementor-widget elementor-widget-text-editor\" data-id=\"9287252\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"p1\">Termen mediu de livrare intern, 8,9 zile transfrontalier.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61e3b68 e-con-full e-flex e-con e-child\" data-id=\"61e3b68\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-856d90e elementor-widget elementor-widget-counter\" data-id=\"856d90e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">SATISFAC\u021aIA CLIEN\u021aILOR<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"96\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2b2b5f9 elementor-widget-tablet__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"2b2b5f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"color: #000000; font-kerning: none;\">Rata de satisfac\u021bie a clien\u021bilor pe baza feedback-ului clien\u021bilor.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f86c009 e-con-full e-flex e-con e-child\" data-id=\"f86c009\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6f9a39d e-flex e-con-boxed e-con e-parent\" data-id=\"6f9a39d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b6e0388 elementor-widget elementor-widget-spacer\" data-id=\"b6e0388\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1902ae2e e-flex e-con-boxed e-con e-parent\" data-id=\"1902ae2e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4aaf7f6a e-con-full e-flex e-con e-child\" data-id=\"4aaf7f6a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58f420be elementor-widget elementor-widget-heading\" data-id=\"58f420be\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Calcula\u021bi direct pre\u021bul<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ffd2d96 elementor-widget elementor-widget-text-editor\" data-id=\"6ffd2d96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"ltr\" data-placeholder=\"Translation\" data-ved=\"2ahUKEwiJ1riZ45-KAxVP8rsIHQgWHR4Q3ewLegQICRAU\" aria-label=\"Translated text: Met onze handige rekentool berekent u eenvoudig en zonder verborgen kosten de beste totaalprijs voor uw transport\"><span class=\"Y2IQFc\" lang=\"nl\">Cu ajutorul instrumentului nostru practic de calcul, pute\u021bi calcula cu u\u0219urin\u021b\u0103 cel mai bun pre\u021b total pentru transportul dumneavoastr\u0103, f\u0103r\u0103 costuri ascunse<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0d28f6b e-con-full e-flex e-con e-child\" data-id=\"0d28f6b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-85ca264 elementor-widget elementor-widget-button\" data-id=\"85ca264\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/transportinghighway.com\/book-a-demo\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Rezerva\u021bi o demonstra\u021bie<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2a7db8ac e-con-full e-flex e-con e-child\" data-id=\"2a7db8ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0234726 elementor-widget elementor-widget-image\" data-id=\"0234726\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"11319\" height=\"8186\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2.png\" class=\"attachment-full size-full wp-image-3863\" alt=\"\" srcset=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2.png 11319w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2-1024x741.png 1024w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2-1493x1080.png 1493w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2-768x555.png 768w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2-1320x955.png 1320w\" sizes=\"(max-width: 11319px) 100vw, 11319px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e6a3f41 e-flex e-con-boxed e-con e-parent\" data-id=\"e6a3f41\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-abdd811 e-con-full e-flex e-con e-child\" data-id=\"abdd811\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfb8172 elementor-widget elementor-widget-heading\" data-id=\"dfb8172\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Serviciu complet de transport<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8f67cff elementor-widget elementor-widget-text-editor\" data-id=\"8f67cff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span class=\"Y2IQFc\" lang=\"nl\">Organiz\u0103m totul de la A la Z \u0219i v\u0103 inform\u0103m pas cu pas.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2d1de21 e-con-full e-flex e-con e-child\" data-id=\"2d1de21\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d131303 e-con-full e-flex e-con e-child\" data-id=\"d131303\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8151b00 elementor-widget elementor-widget-image\" data-id=\"8151b00\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"6912\" height=\"3456\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans.png\" class=\"attachment-full size-full wp-image-4692\" alt=\"\" srcset=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans.png 6912w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans-1024x512.png 1024w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans-1920x960.png 1920w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans-768x384.png 768w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans-1536x768.png 1536w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans-2048x1024.png 2048w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/car-trans-1320x660.png 1320w\" sizes=\"(max-width: 6912px) 100vw, 6912px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0739040 e-flex e-con-boxed e-con e-parent\" data-id=\"0739040\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-bb6d874 e-con-full e-flex e-con e-child\" data-id=\"bb6d874\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8845bc6 elementor-widget elementor-widget-heading\" data-id=\"8845bc6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Vehicule asigurate 100%<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9874e95 elementor-widget elementor-widget-text-editor\" data-id=\"9874e95\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p id=\"tw-target-text\" dir=\"ltr\" data-placeholder=\"Translation\" data-ved=\"2ahUKEwiJ1riZ45-KAxVP8rsIHQgWHR4Q3ewLegQICRAU\" aria-label=\"Translated text: Onze partners zijn betrouwbaar, deskundig en gecertificeerd. Alle auto's zijn 100% verzekerd tijdens het gehele transportproces\"><span lang=\"nl\">Toate ma\u0219inile sunt asigurate 100% pe parcursul procesului de transport<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a847d28 e-con-full e-flex e-con e-child\" data-id=\"a847d28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-94868d4 elementor-widget elementor-widget-image\" data-id=\"94868d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1080\" height=\"1080\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/oifv.png\" class=\"attachment-full size-full wp-image-4840\" alt=\"\" srcset=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/oifv.png 1080w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/oifv-768x768.png 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-69b61d9 e-flex e-con-boxed e-con e-parent\" data-id=\"69b61d9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e9ba160 e-con-full e-flex e-con e-child\" data-id=\"e9ba160\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-undefined-c96915f e-con-full e-flex e-con e-child\" data-id=\"undefined-c96915f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-61352b2 elementor-widget elementor-widget-heading\" data-id=\"undefined-61352b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Serviciul nostru de transport<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-ff9b054 elementor-widget-tablet__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"undefined-ff9b054\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"letter-spacing: 0px; text-align: var(--text-align); font-weight: var( --e-global-typography-text-font-weight );\">Cu Transporting Highway, nu trebuie s\u0103 v\u0103 face\u021bi griji cu privire la logistica de transport auto.  <\/span><span style=\"letter-spacing: 0px; text-align: var(--text-align); font-weight: var( --e-global-typography-text-font-weight );\">Las\u0103 munca grea \u00een seama noastr\u0103!<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-484cef9 e-con-full e-flex e-con e-child\" data-id=\"484cef9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-82ebeb8 e-flex e-con-boxed e-con e-parent\" data-id=\"undefined-82ebeb8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-undefined-ad66446 e-con-full e-flex e-con e-child\" data-id=\"undefined-ad66446\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-undefined-7a6e445 e-con-full e-flex e-con e-child\" data-id=\"undefined-7a6e445\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-62f0816 elementor-cta--valign-middle elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"undefined-62f0816\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tNa\u021bional \u0219i transfrontalier\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-cta__description elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tRe\u021beaua noastr\u0103 extins\u0103 \u0219i logistica avansat\u0103 garanteaz\u0103 c\u0103 vehiculul dumneavoastr\u0103 ajunge \u00een siguran\u021b\u0103 \u0219i la timp \u00een Europa.\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-7a974ce e-con-full e-flex e-con e-child\" data-id=\"undefined-7a974ce\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-e2077de elementor-cta--valign-middle elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"undefined-e2077de\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tDiverse op\u021biuni de transport\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-cta__description elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tTransportul sigur \u0219i la timp al vehiculelor, adaptat nevoilor dvs. specifice, fie c\u0103 este vorba de un singur vehicul sau de o \u00eentreag\u0103 flot\u0103.\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-de50296 e-con-full e-flex e-con e-child\" data-id=\"undefined-de50296\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-81c2afa elementor-cta--valign-middle elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"undefined-81c2afa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tPlanificare flexibil\u0103\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-cta__description elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tOferim program\u0103ri flexibile \u0219i servicii de livrare urgent\u0103 pentru a ne asigura c\u0103 ma\u0219inile dvs. ajung c\u00e2nd \u0219i unde sunt necesare.\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-undefined-6905266 e-con-full e-flex e-con e-child\" data-id=\"undefined-6905266\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-undefined-6a7535b elementor-cta--valign-middle elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"undefined-6a7535b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta\">\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tAsigurare de transport\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-cta__description elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tVehiculele dumneavoastr\u0103 sunt asigurate automat \u00eempotriva posibilelor daune de transport.\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2001618f e-flex e-con-boxed e-con e-parent\" data-id=\"2001618f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d4d384a elementor-widget elementor-widget-shortcode\" data-id=\"5d4d384a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><pre class=\"ti-widget\" style=\"display: none\"><template id=\"trustindex-google-widget-html\"><div class=\" ti-widget  ti-goog ti-review-text-mode-scroll ti-text-align-left\" data-no-translation=\"true\" data-time-locale=\"%d %s ago|today|day|days|week|weeks|month|months|year|years\" data-plugin-version=\"13.2.9\" data-layout-id=\"34\" data-layout-category=\"slider\" data-set-id=\"ligth-border\" data-pid=\"\" data-language=\"en\" data-close-locale=\"Close\" data-review-target-width=\"300\" data-css-version=\"2\" data-reply-by-locale=\"Owner's reply\" data-only-rating-locale=\"This user only left a rating.\" data-pager-autoplay-timeout=\"6\"> <div class=\"ti-widget-container ti-col-3\"> <div class=\"ti-header ti-header-grid source-Google\"> <div class=\"ti-fade-container\"> <div class=\"ti-rating-text\"> <strong class=\"ti-rating ti-rating-large\"> EXCELLENT <\/strong> <\/div> <span class=\"ti-stars star-lg\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><\/span> <div class=\"ti-rating-text\"> <span class=\"nowrap\">Based on <strong>31 reviews<\/strong><\/span> <\/div> <div class=\"ti-large-logo\"> <div class=\"ti-v-center\"> <trustindex-image class=\"ti-logo-fb\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/logo.svg\" width=\"150\" height=\"25\" loading=\"lazy\" alt=\"Google\"><\/trustindex-image> <\/div> <\/div> <\/div> <\/div> <div class=\"ti-reviews-container\"> <div class=\"ti-controls\"> <div class=\"ti-next\" aria-label=\"Next review\" role=\"button\" tabindex=\"0\"><\/div> <div class=\"ti-prev\" aria-label=\"Previous review\" role=\"button\" tabindex=\"0\"><\/div> <\/div> <div class=\"ti-reviews-container-wrapper\">  <div data-empty=\"0\" data-time=\"1745971200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocL94JkUco_qD1NFdjOrhZZCO2ck9m20sxuazmgheJ0XC1IHzA=w40-h40-c-rp-mo-br100\" alt=\"Klaus Achsel profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Klaus Achsel <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->wir arbeiten erst seit kurzen mit diesem Unternehmen zusammen. Alles was uns versprochen wurde, wurde bis jetzt eingehalten. Wir haben bis jetzt 10 Transporte durchf\u00fchren alssen. Mal mit 1 Fahrzeug oder manchmal sogar mit 6 Fahrzeugen. Alles Termine wurden eingehalten. Die Abwicklung sehr einfach und unkompliziert. Die angegebenen Termine wurden eingahalten. Das Personla ist nett und bei eventuellen Problemen stets hilfsbereit. Es werden sicherlich noch viele weitere Auftr\u00e4ge folgen. Mach weiter so. Auch die Fahrer immer fr\u00f6hlich und hilfsbereit.\nDanke sagt das Autohaus Manfred Kr\u00fcger aus Rostock<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1744848000\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocJ5CU8XqD-DZB-hOuLkzBb2ZO74GxcVeOc6_UMV6scQLoJgbA=w40-h40-c-rp-mo-br100\" alt=\"Paul Rooijakkers profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Paul Rooijakkers <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Bij hun een transport geboekt en binnen 3 dagen stond de auto bij mij op de stoep. Snelle service tegen betaalbare prijs.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1744675200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocKCmwWLbQp1RZMBee816GTgXY2oOSTLvpKrEg8m-vTsRyOX2g=w40-h40-c-rp-mo-br100\" alt=\"Hanna Mikho profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Hanna Mikho <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Sinds een jaar laat ik mijn auto\u2019s ophalen door Transportinghighway. Zeer tevreden over de prijs kwaliteitsverhouding. Alles wordt vooraf duidelijk afgesproken en nagekomen. Ten opzichte van andere transportbedrijven. Zeker een aanrader en tot de volgende transport.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1743724800\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjWVB7L_bPflQGloWdULI_wlgGg8GzQkkVHUYQq8xghHvF2UvEU=w40-h40-c-rp-mo-ba3-br100\" alt=\"Wilhelm Lenhardt profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Wilhelm Lenhardt <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Sehr gute Kommunikation und schnelle Lieferung. Ich bin sehr zufrieden.Immerv wieder !<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1740355200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocLJcHIrFlDgv6BomD2iYtx2i47avhnYFbCDJR0xX1Pl1duEoA=w40-h40-c-rp-mo-br100\" alt=\"Jos Screurs profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Jos Screurs <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Ben zeer tevreden over het transport,afgesproken levertermijn werd\ncorrect nagekomen,correcte prijs,geen transportschade of verdwenen toebehoren<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1740355200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjUPbeMGXQGx7WXS7DTSYRGizYRZvg7b3wWMlZ_XCFo1-Tux6T4=w40-h40-c-rp-mo-br100\" alt=\"ali akin profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> ali akin <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Sehr Schnelle abwicklung bin sehr zu frieden ohne probleme\nwerde in zukunft weiter arbeiten .....<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1740355200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjWWAhHe965fH1Z35UlwvkJD0hvpRvrmbbmt-51tPpjvqmQQ-62w=w40-h40-c-rp-mo-br100\" alt=\"Bo Bakker profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Bo Bakker <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->goede service<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1739145600\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjWE3FRRFB6uuKYPvntN_ASHNV2QCkSuk4_BOOmusC9P1lY58J9N=w40-h40-c-rp-mo-br100\" alt=\"Sweet Caroline Cars profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Sweet Caroline Cars <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Goede en snelle service, goede prijs en nette beleefde  chauffeurs. Toppie. \ud83d\udc4d\ud83d\ude97\ud83d\ude97<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1738540800\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocKpCET6IEqFySOxbgrPYQU-r4cNYhVI3rp6-CdPsQN_ujKKLg=w40-h40-c-rp-mo-br100\" alt=\"Hali Gi profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Hali Gi <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Toller Service, schnelle Lieferung und die Preis\/Leistung ist top.\nWir arbeiten gerne mit TransportingHighway zusammen.<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1736899200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Posted on <\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocJUf-2fVDuh-P6_ljK3uKfT7mCIR9F0Lzq5YleXCLB3XeW43A=w40-h40-c-rp-mo-br100\" alt=\"Ivan Sajnovic profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Ivan Sajnovic <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifies that the original source of the review is Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Du suchst eine Spedition welche schnell ist ?\nwelcher du vertrauen kannst ?\ndas Personal cool  ist ?\n\ndann melde dich aufjedenfall bei TRANSPORTING HIGHWAY\n\nBESTE MITARBEITERIN NATALIA IMMER ERREICHBAR UND HILFT IMMER<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Hide\" data-open-text=\"Read more\"><\/span> <\/div> <\/div>  <\/div> <div class=\"ti-controls-line\"> <div class=\"dot\"><\/div> <\/div> <\/div>   <\/div> <\/div> <\/template><\/pre><div data-src=\"https:\/\/cdn.trustindex.io\/loader.js?wp-widget\" data-template-id=\"trustindex-google-widget-html\" data-css-url=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/trustindex-google-widget.css?1776191531\"><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9580613 e-flex e-con-boxed e-con e-parent\" data-id=\"9580613\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-04001f4 e-con-full e-flex e-con e-child\" data-id=\"04001f4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-75bddbc elementor-widget elementor-widget-shortcode\" data-id=\"75bddbc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"brtpmj_reviews_container bbr-pro-container\" data-stars=\"4\" data-layout=\"grid\" data-limit=\"3\"><\/div>\n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-890c43c elementor-widget elementor-widget-heading\" data-id=\"890c43c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Alege\u021bi <span class=\"orange-text\">servicii de top<\/span> \u0219i cel <span class=\"orange-text\">mai bun pre\u021b!<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-247e74e e-flex e-con-boxed e-con e-parent\" data-id=\"247e74e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-16da0fc e-con-full e-flex e-con e-child\" data-id=\"16da0fc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a374d54 elementor-align-start elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"a374d54\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"1080\" viewBox=\"0 0 810 809.999993\" height=\"1080\" preserveAspectRatio=\"xMidYMid meet\"><defs><clipPath id=\"83ef062c88\"><path d=\"M 0 20.25 L 769 20.25 L 769 789.75 L 0 789.75 Z M 0 20.25 \" clip-rule=\"nonzero\"><\/path><\/clipPath><\/defs><rect x=\"-81\" width=\"972\" fill=\"#ffffff\" y=\"-80.999999\" height=\"971.999992\" fill-opacity=\"1\"><\/rect><rect x=\"-81\" width=\"972\" fill=\"#ffffff\" y=\"-80.999999\" height=\"971.999992\" fill-opacity=\"1\"><\/rect><g clip-path=\"url(#83ef062c88)\"><path fill=\"#1b144a\" d=\"M 384.125 789.136719 C 172.324219 789.136719 -0.0117188 616.804688 -0.0117188 404.914062 C -0.0117188 193.019531 172.332031 20.601562 384.125 20.601562 C 453.539062 20.601562 521.414062 39.148438 580.449219 74.359375 C 592.871094 81.761719 596.953125 97.839844 589.550781 110.171875 C 582.070312 122.675781 565.910156 126.417969 553.75 119.273438 C 502.789062 88.90625 444.1875 72.828125 384.125 72.828125 C 201.160156 72.828125 52.21875 221.773438 52.21875 404.914062 C 52.21875 587.878906 201.167969 736.734375 384.125 736.734375 C 567.183594 736.734375 716.039062 587.878906 716.039062 404.914062 C 716.039062 390.449219 727.777344 378.800781 742.234375 378.800781 C 756.703125 378.800781 768.441406 390.453125 768.441406 404.914062 C 768.441406 616.804688 596.015625 789.136719 384.125 789.136719 Z M 384.125 789.136719 \" fill-opacity=\"1\" fill-rule=\"nonzero\"><\/path><\/g><path fill=\"#eb6a07\" d=\"M 353.085938 619.351562 C 351.894531 619.351562 350.703125 619.351562 349.511719 619.183594 C 330.796875 618.160156 313.699219 608.472656 303.066406 592.988281 L 175.046875 406.613281 C 156.074219 378.972656 163.136719 341.199219 190.699219 322.230469 C 218.597656 303.175781 256.027344 310.320312 275.082031 337.882812 L 358.867188 460.027344 L 696.652344 74.445312 C 718.765625 49.179688 757.050781 46.796875 782.226562 68.828125 C 807.40625 90.863281 809.960938 129.226562 787.839844 154.402344 L 398.679688 598.597656 C 387.191406 611.871094 370.515625 619.351562 353.085938 619.351562 Z M 353.085938 619.351562 \" fill-opacity=\"1\" fill-rule=\"nonzero\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Cu ajutorul instrumentului nostru practic de calcul, pute\u021bi calcula cu u\u0219urin\u021b\u0103 cel mai bun pre\u021b total pentru transportul dvs.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"1080\" viewBox=\"0 0 810 809.999993\" height=\"1080\" preserveAspectRatio=\"xMidYMid meet\"><defs><clipPath id=\"83ef062c88\"><path d=\"M 0 20.25 L 769 20.25 L 769 789.75 L 0 789.75 Z M 0 20.25 \" clip-rule=\"nonzero\"><\/path><\/clipPath><\/defs><rect x=\"-81\" width=\"972\" fill=\"#ffffff\" y=\"-80.999999\" height=\"971.999992\" fill-opacity=\"1\"><\/rect><rect x=\"-81\" width=\"972\" fill=\"#ffffff\" y=\"-80.999999\" height=\"971.999992\" fill-opacity=\"1\"><\/rect><g clip-path=\"url(#83ef062c88)\"><path fill=\"#1b144a\" d=\"M 384.125 789.136719 C 172.324219 789.136719 -0.0117188 616.804688 -0.0117188 404.914062 C -0.0117188 193.019531 172.332031 20.601562 384.125 20.601562 C 453.539062 20.601562 521.414062 39.148438 580.449219 74.359375 C 592.871094 81.761719 596.953125 97.839844 589.550781 110.171875 C 582.070312 122.675781 565.910156 126.417969 553.75 119.273438 C 502.789062 88.90625 444.1875 72.828125 384.125 72.828125 C 201.160156 72.828125 52.21875 221.773438 52.21875 404.914062 C 52.21875 587.878906 201.167969 736.734375 384.125 736.734375 C 567.183594 736.734375 716.039062 587.878906 716.039062 404.914062 C 716.039062 390.449219 727.777344 378.800781 742.234375 378.800781 C 756.703125 378.800781 768.441406 390.453125 768.441406 404.914062 C 768.441406 616.804688 596.015625 789.136719 384.125 789.136719 Z M 384.125 789.136719 \" fill-opacity=\"1\" fill-rule=\"nonzero\"><\/path><\/g><path fill=\"#eb6a07\" d=\"M 353.085938 619.351562 C 351.894531 619.351562 350.703125 619.351562 349.511719 619.183594 C 330.796875 618.160156 313.699219 608.472656 303.066406 592.988281 L 175.046875 406.613281 C 156.074219 378.972656 163.136719 341.199219 190.699219 322.230469 C 218.597656 303.175781 256.027344 310.320312 275.082031 337.882812 L 358.867188 460.027344 L 696.652344 74.445312 C 718.765625 49.179688 757.050781 46.796875 782.226562 68.828125 C 807.40625 90.863281 809.960938 129.226562 787.839844 154.402344 L 398.679688 598.597656 C 387.191406 611.871094 370.515625 619.351562 353.085938 619.351562 Z M 353.085938 619.351562 \" fill-opacity=\"1\" fill-rule=\"nonzero\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Noi aranj\u0103m totul de la A la Z \u0219i v\u0103 \u021binem la curent pas cu pas.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"1080\" viewBox=\"0 0 810 809.999993\" height=\"1080\" preserveAspectRatio=\"xMidYMid meet\"><defs><clipPath id=\"83ef062c88\"><path d=\"M 0 20.25 L 769 20.25 L 769 789.75 L 0 789.75 Z M 0 20.25 \" clip-rule=\"nonzero\"><\/path><\/clipPath><\/defs><rect x=\"-81\" width=\"972\" fill=\"#ffffff\" y=\"-80.999999\" height=\"971.999992\" fill-opacity=\"1\"><\/rect><rect x=\"-81\" width=\"972\" fill=\"#ffffff\" y=\"-80.999999\" height=\"971.999992\" fill-opacity=\"1\"><\/rect><g clip-path=\"url(#83ef062c88)\"><path fill=\"#1b144a\" d=\"M 384.125 789.136719 C 172.324219 789.136719 -0.0117188 616.804688 -0.0117188 404.914062 C -0.0117188 193.019531 172.332031 20.601562 384.125 20.601562 C 453.539062 20.601562 521.414062 39.148438 580.449219 74.359375 C 592.871094 81.761719 596.953125 97.839844 589.550781 110.171875 C 582.070312 122.675781 565.910156 126.417969 553.75 119.273438 C 502.789062 88.90625 444.1875 72.828125 384.125 72.828125 C 201.160156 72.828125 52.21875 221.773438 52.21875 404.914062 C 52.21875 587.878906 201.167969 736.734375 384.125 736.734375 C 567.183594 736.734375 716.039062 587.878906 716.039062 404.914062 C 716.039062 390.449219 727.777344 378.800781 742.234375 378.800781 C 756.703125 378.800781 768.441406 390.453125 768.441406 404.914062 C 768.441406 616.804688 596.015625 789.136719 384.125 789.136719 Z M 384.125 789.136719 \" fill-opacity=\"1\" fill-rule=\"nonzero\"><\/path><\/g><path fill=\"#eb6a07\" d=\"M 353.085938 619.351562 C 351.894531 619.351562 350.703125 619.351562 349.511719 619.183594 C 330.796875 618.160156 313.699219 608.472656 303.066406 592.988281 L 175.046875 406.613281 C 156.074219 378.972656 163.136719 341.199219 190.699219 322.230469 C 218.597656 303.175781 256.027344 310.320312 275.082031 337.882812 L 358.867188 460.027344 L 696.652344 74.445312 C 718.765625 49.179688 757.050781 46.796875 782.226562 68.828125 C 807.40625 90.863281 809.960938 129.226562 787.839844 154.402344 L 398.679688 598.597656 C 387.191406 611.871094 370.515625 619.351562 353.085938 619.351562 Z M 353.085938 619.351562 \" fill-opacity=\"1\" fill-rule=\"nonzero\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Partenerii no\u0219tri sunt de \u00eencredere, competen\u021bi \u0219i certifica\u021bi<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-614490f e-con-full e-flex e-con e-child\" data-id=\"614490f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7ca421c8 e-con-full e-flex e-con e-child\" data-id=\"7ca421c8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;,&quot;background_video_start&quot;:0,&quot;background_video_link&quot;:&quot;https:\\\/\\\/transportinghighway.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/how-it-works.mp4&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e9334aa e-flex e-con-boxed e-con e-parent\" data-id=\"e9334aa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-60fa080 elementor-widget elementor-widget-spacer\" data-id=\"60fa080\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-66829613 e-flex e-con-boxed e-con e-parent\" data-id=\"66829613\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-248b650f elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-text-editor\" data-id=\"248b650f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-size: 24px;\"><b>Pentru toate solicit\u0103rile dvs. de v\u00e2nz\u0103ri, v\u0103 rug\u0103m s\u0103 contacta\u021bi:<\/b><\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3bd457eb elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"3bd457eb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6c17f1fc e-con-full e-flex e-con e-child\" data-id=\"6c17f1fc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-50deec1 e-con-full e-flex e-con e-child\" data-id=\"50deec1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-29efd32 e-con-full e-flex e-con e-child\" data-id=\"29efd32\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-64cb4a5 e-con-full e-flex e-con e-child\" data-id=\"64cb4a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-943ec74 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"943ec74\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Michael Smink<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-22dc81d elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"22dc81d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Director de v\u00e2nz\u0103ri<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0599a1f elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"0599a1f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:michael.smink@transportinghighway.com?subject=Sales%20Inquiry\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-mail-bulk\" viewBox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">michael.smink@transportinghighway.com<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f876efa elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"f876efa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:+31%206%2041%2085%2075%2089\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-mobile-alt\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">+31 6 41 85 75 89<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3bf05cd elementor-widget__width-inherit elementor-widget elementor-widget-image\" data-id=\"3bf05cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/JKDSA-1080x1080.png\" class=\"attachment-large size-large wp-image-4755\" alt=\"\" srcset=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/JKDSA-1080x1080.png 1080w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/JKDSA-768x768.png 768w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/JKDSA-1536x1536.png 1536w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/JKDSA-1320x1320.png 1320w, https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/12\/JKDSA.png 2025w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-17b76523 e-con-full e-flex e-con e-child\" data-id=\"17b76523\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c0e26a2 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"4c0e26a2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Intra\u021bi \u00een contact<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c0f6fc1 elementor-widget elementor-widget-wpforms\" data-id=\"c0f6fc1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"wpforms.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style id=\"wpforms-css-vars-elementor-widget-c0f6fc1\">\n\t\t\t\t.elementor-widget-wpforms.elementor-element-c0f6fc1 {\n\t\t\t\t--wpforms-field-border-radius: 5px;\n--wpforms-field-background-color: #FFFFFF00;\n--wpforms-field-text-color: #1A1449;\n--wpforms-label-color: #1A1449;\n--wpforms-label-sublabel-color: #1A144961;\n--wpforms-button-border-radius: 20px;\n--wpforms-button-background-color: #15C646;\n--wpforms-field-size-input-height: 31px;\n--wpforms-field-size-input-spacing: 10px;\n--wpforms-field-size-font-size: 14px;\n--wpforms-field-size-line-height: 17px;\n--wpforms-field-size-padding-h: 9px;\n--wpforms-field-size-checkbox-size: 14px;\n--wpforms-field-size-sublabel-spacing: 5px;\n--wpforms-field-size-icon-size: 0.75;\n--wpforms-label-size-font-size: 14px;\n--wpforms-label-size-line-height: 17px;\n--wpforms-label-size-sublabel-font-size: 13px;\n--wpforms-label-size-sublabel-line-height: 16px;\n\t\t\t}\n\t\t\t<\/style><div class=\"wpforms-container wpforms-container-full wpforms-render-modern\" id=\"wpforms-4875\"><form id=\"wpforms-form-4875\" class=\"wpforms-validate wpforms-form wpforms-ajax-form\" data-formid=\"4875\" method=\"post\" enctype=\"multipart\/form-data\" action=\"\/ro\/wp-json\/wp\/v2\/pages\/1075\" data-token=\"5fccb1850ffef5377605c760ebeaff0b\" data-token-time=\"1777729138\"><noscript class=\"wpforms-error-noscript\">Please enable JavaScript in your browser to complete this form.<\/noscript><div id=\"wpforms-error-noscript\" style=\"display: none;\">Please enable JavaScript in your browser to complete this form.<\/div><div class=\"wpforms-field-container\"><div id=\"wpforms-4875-field_1-container\" class=\"wpforms-field wpforms-field-name\" data-field-id=\"1\"><fieldset><legend class=\"wpforms-field-label wpforms-label-hide\" aria-hidden=\"false\">Name <span class=\"wpforms-required-label\" aria-hidden=\"true\">*<\/span><\/legend><div class=\"wpforms-field-row wpforms-field-medium\"><div class=\"wpforms-field-row-block wpforms-first wpforms-one-half\"><input type=\"text\" id=\"wpforms-4875-field_1\" class=\"wpforms-field-name-first wpforms-field-required\" name=\"wpforms[fields][1][first]\" placeholder=\"First Name*\" aria-errormessage=\"wpforms-4875-field_1-error\" required><label for=\"wpforms-4875-field_1\" class=\"wpforms-field-sublabel after wpforms-sublabel-hide\">First<\/label><\/div><div class=\"wpforms-field-row-block wpforms-one-half\"><input type=\"text\" id=\"wpforms-4875-field_1-last\" class=\"wpforms-field-name-last wpforms-field-required\" name=\"wpforms[fields][1][last]\" placeholder=\"Last Name*\" aria-errormessage=\"wpforms-4875-field_1-last-error\" required><label for=\"wpforms-4875-field_1-last\" class=\"wpforms-field-sublabel after wpforms-sublabel-hide\">Last<\/label><\/div><\/div><\/fieldset><\/div>\t\t<div id=\"wpforms-4875-field_4-container\"\n\t\t\tclass=\"wpforms-field wpforms-field-text\"\n\t\t\tdata-field-type=\"text\"\n\t\t\tdata-field-id=\"4\"\n\t\t\t>\n\t\t\t<label class=\"wpforms-field-label\" for=\"wpforms-4875-field_4\" >Email Message Name<\/label>\n\t\t\t<input type=\"text\" id=\"wpforms-4875-field_4\" class=\"wpforms-field-medium\" name=\"wpforms[fields][4]\" >\n\t\t<\/div>\n\t\t<div id=\"wpforms-4875-field_2-container\" class=\"wpforms-field wpforms-field-email\" data-field-id=\"2\"><label class=\"wpforms-field-label wpforms-label-hide\" for=\"wpforms-4875-field_2\" aria-hidden=\"false\">Email <span class=\"wpforms-required-label\" aria-hidden=\"true\">*<\/span><\/label><input type=\"email\" id=\"wpforms-4875-field_2\" class=\"wpforms-field-medium wpforms-field-required\" name=\"wpforms[fields][2]\" placeholder=\"Email*\" spellcheck=\"false\" aria-errormessage=\"wpforms-4875-field_2-error\" required><\/div><div id=\"wpforms-4875-field_3-container\" class=\"wpforms-field wpforms-field-textarea\" data-field-id=\"3\"><label class=\"wpforms-field-label wpforms-label-hide\" for=\"wpforms-4875-field_3\" aria-hidden=\"false\">Message <span class=\"wpforms-required-label\" aria-hidden=\"true\">*<\/span><\/label><textarea id=\"wpforms-4875-field_3\" class=\"wpforms-field-medium wpforms-field-required\" name=\"wpforms[fields][3]\" placeholder=\"Message*\" aria-errormessage=\"wpforms-4875-field_3-error\" aria-describedby=\"wpforms-4875-field_3-description\" required><\/textarea><div id=\"wpforms-4875-field_3-description\" class=\"wpforms-field-description\">Message<\/div><\/div><script>\n\t\t\t\t( function() {\n\t\t\t\t\tconst style = document.createElement( 'style' );\n\t\t\t\t\tstyle.appendChild( document.createTextNode( '#wpforms-4875-field_4-container { position: absolute !important; overflow: hidden !important; display: inline !important; height: 1px !important; width: 1px !important; z-index: -1000 !important; padding: 0 !important; } #wpforms-4875-field_4-container input { visibility: hidden; } #wpforms-conversational-form-page #wpforms-4875-field_4-container label { counter-increment: none; }' ) );\n\t\t\t\t\tdocument.head.appendChild( style );\n\t\t\t\t\tdocument.currentScript?.remove();\n\t\t\t\t} )();\n\t\t\t<\/script><\/div><!-- .wpforms-field-container --><div class=\"wpforms-submit-container\" ><input type=\"hidden\" name=\"wpforms[id]\" value=\"4875\"><input type=\"hidden\" name=\"page_title\" value=\"\"><input type=\"hidden\" name=\"page_url\" value=\"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/pages\/1075\"><input type=\"hidden\" name=\"url_referer\" value=\"\"><button type=\"submit\" name=\"wpforms[submit]\" id=\"wpforms-submit-4875\" class=\"wpforms-submit\" data-alt-text=\"Sending...\" data-submit-text=\"Versturen\" aria-live=\"assertive\" value=\"wpforms-submit\">Versturen<\/button><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/transportinghighway.com\/wp-content\/plugins\/wpforms-lite\/assets\/images\/submit-spin.svg\" class=\"wpforms-submit-spinner\" style=\"display: none;\" width=\"26\" height=\"26\" alt=\"Loading\"><\/div><\/form><\/div>  <!-- .wpforms-container -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-66647ec5 e-flex e-con-boxed e-con e-parent\" data-id=\"66647ec5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5a707b81 e-con-full e-flex e-con e-child\" data-id=\"5a707b81\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71b3aef elementor-widget elementor-widget-heading\" data-id=\"71b3aef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><span class=\"orange-text\">Cine<\/span> suntem noi?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f3072d1 elementor-widget elementor-widget-text-editor\" data-id=\"6f3072d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Sunte\u021bi un dealer auto, un dealer sau un garaj? Atunci a\u021bi ajuns la locul potrivit. Cunosc\u00e2nd pia\u021ba din interior \u0219i din exterior, suntem \u00een m\u0103sur\u0103 s\u0103 g\u0103sim cea mai bun\u0103 ofert\u0103 pentru dumneavoastr\u0103. Apoi aranj\u0103m totul de la A la Z, astfel \u00eenc\u00e2t s\u0103 nu trebuie s\u0103 v\u0103 face\u021bi griji. Nu ezita\u021bi s\u0103 l\u0103sa\u021bi transportul auto \u00een grija noastr\u0103!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-67250870 elementor-widget elementor-widget-button\" data-id=\"67250870\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/transportinghighway.com\/ro\/despre-noi\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Mai multe despre noi<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f6f5e36 e-con-full e-flex e-con e-child\" data-id=\"4f6f5e36\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5127ae7 elementor-widget elementor-widget-heading\" data-id=\"5127ae7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Transportul <span class=\"orange-text\">f\u0103r\u0103 griji<\/span> al ma\u0219inilor dumneavoastr\u0103<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-750ca83d elementor-widget elementor-widget-text-editor\" data-id=\"750ca83d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Noi lucr\u0103m cu formula all-in. Dumneavoastr\u0103 v\u0103 rezerva\u021bi transportul, iar noi ne ocup\u0103m de restul. Eficient, rapid \u0219i u\u0219or!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9a261ef elementor-widget elementor-widget-button\" data-id=\"9a261ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/transportinghighway.com\/ro\/cum-functioneaza\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Vezi cum func\u021bioneaz\u0103<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5c7fd0fd e-con-full e-flex e-con e-parent\" data-id=\"5c7fd0fd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-54658f35 e-con-full e-flex e-con e-child\" data-id=\"54658f35\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8a67b7b e-con-full e-flex e-con e-child\" data-id=\"8a67b7b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7e5621e3 e-grid e-con-full e-con e-child\" data-id=\"7e5621e3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3f9f7038 e-con-full e-flex e-con e-child\" data-id=\"3f9f7038\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b2420d0 elementor-widget elementor-widget-image\" data-id=\"1b2420d0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/04\/icons-locatiepin.svg\" class=\"attachment-large size-large wp-image-738\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-24112c49 elementor-widget elementor-widget-text-editor\" data-id=\"24112c49\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span class=\"OYPEnA font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\" style=\"color: #1b144a; font-kerning: none;\">Activ \u00een toat\u0103 Europa<\/span><\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d6b4ec e-con-full e-flex e-con e-child\" data-id=\"1d6b4ec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6da374f4 elementor-widget elementor-widget-image\" data-id=\"6da374f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/04\/icons-prestaties-1.svg\" class=\"attachment-large size-large wp-image-744\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-62fbd337 elementor-widget elementor-widget-text-editor\" data-id=\"62fbd337\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span class=\"OYPEnA font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\" style=\"color: #1b144a; font-kerning: none;\">Performan\u021b\u0103 \u00eembun\u0103t\u0103\u021bit\u0103<\/span><\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-60485dad e-con-full e-flex e-con e-child\" data-id=\"60485dad\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72878dd7 elementor-widget elementor-widget-image\" data-id=\"72878dd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/04\/icons-api-1.svg\" class=\"attachment-large size-large wp-image-756\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51eb9155 elementor-widget elementor-widget-text-editor\" data-id=\"51eb9155\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span class=\"OYPEnA font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\" style=\"color: #1b144a; font-kerning: none;\">Integrare API personalizat\u0103<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-37ae2afd e-con-full e-flex e-con e-child\" data-id=\"37ae2afd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2dd0fece elementor-widget elementor-widget-image\" data-id=\"2dd0fece\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1\" height=\"1\" src=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/04\/icons-support-1.svg\" class=\"attachment-large size-large wp-image-750\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b4a04c5 elementor-widget elementor-widget-text-editor\" data-id=\"4b4a04c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span class=\"OYPEnA font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\" style=\"color: #1b144a; font-kerning: none;\">Suport dedicat 24\/7<\/span><\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Organiz\u0103m transportul ma\u0219inii dumneavoastr\u0103 eficient, rapid \u0219i u\u0219or Calcula\u021bi-v\u0103 pre\u021bul total f\u0103r\u0103 obliga\u021bii Loca\u021bie Ad\u0103uga\u021bi vehicule Calculul De la BelgiaBulgariaDanemarcaGermaniaEstoniaFran\u021baUngariaItaliaCroa\u021biaLetoniaLituaniaLuxemburgOlandaAustriaPoloniaPortugaliaRom\u00e2niaSloveniaSlovaciaRepublica Ceh\u0103SpaniaSuediaElve\u021bia La BelgiaBulgariaDanemarcaGermaniaEstoniaFran\u021baUngariaItaliaCroa\u021biaLetoniaLituaniaLuxemburgOlandaAustriaPoloniaPortugaliaRom\u00e2niaSloveniaSlovaciaRepublica Ceh\u0103SpaniaSuediaElve\u021bia Ad\u0103uga\u021bi vehicule Loca\u021bie Ad\u0103uga\u021bi vehicule Calculul Selecta\u021bi un tip de vehicul StandardSuvAutobuz (max. L1H1)Autobuz (max. L3H3) Cantitate Electric \/ hibrid Nu conduce\u021bi Ad\u0103uga\u021bi un vehicul \u00cenapoi Calcula\u021bi pre\u021bul VEHICULE LIVRATE + [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"content-type":"","inline_featured_image":false,"_joinchat":[],"footnotes":""},"class_list":["post-1075","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>Acas\u0103 - Transporting Highway<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/transportinghighway.com\/ro\/\" \/>\n<meta property=\"og:locale\" content=\"ro_RO\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Acas\u0103 - Transporting Highway\" \/>\n<meta property=\"og:description\" content=\"Organiz\u0103m transportul ma\u0219inii dumneavoastr\u0103 eficient, rapid \u0219i u\u0219or Calcula\u021bi-v\u0103 pre\u021bul total f\u0103r\u0103 obliga\u021bii Loca\u021bie Ad\u0103uga\u021bi vehicule Calculul De la BelgiaBulgariaDanemarcaGermaniaEstoniaFran\u021baUngariaItaliaCroa\u021biaLetoniaLituaniaLuxemburgOlandaAustriaPoloniaPortugaliaRom\u00e2niaSloveniaSlovaciaRepublica Ceh\u0103SpaniaSuediaElve\u021bia La BelgiaBulgariaDanemarcaGermaniaEstoniaFran\u021baUngariaItaliaCroa\u021biaLetoniaLituaniaLuxemburgOlandaAustriaPoloniaPortugaliaRom\u00e2niaSloveniaSlovaciaRepublica Ceh\u0103SpaniaSuediaElve\u021bia Ad\u0103uga\u021bi vehicule Loca\u021bie Ad\u0103uga\u021bi vehicule Calculul Selecta\u021bi un tip de vehicul StandardSuvAutobuz (max. L1H1)Autobuz (max. L3H3) Cantitate Electric \/ hibrid Nu conduce\u021bi Ad\u0103uga\u021bi un vehicul \u00cenapoi Calcula\u021bi pre\u021bul VEHICULE LIVRATE + [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/transportinghighway.com\/ro\/\" \/>\n<meta property=\"og:site_name\" content=\"Transporting Highway\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-12T15:52:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2-1493x1080.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1493\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\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=\"Timp estimat pentru citire\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/\",\"url\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/\",\"name\":\"Acas\u0103 - Transporting Highway\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/transportinghighway.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Title-2.png\",\"datePublished\":\"2024-04-13T19:47:00+00:00\",\"dateModified\":\"2026-01-12T15:52:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#breadcrumb\"},\"inLanguage\":\"ro-RO\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ro-RO\",\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#primaryimage\",\"url\":\"https:\\\/\\\/transportinghighway.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Title-2.png\",\"contentUrl\":\"https:\\\/\\\/transportinghighway.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Title-2.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/acasa\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Acas\u0103\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#website\",\"url\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/\",\"name\":\"Transporting Highway\",\"description\":\"Vervoer uw auto&#039;s door Europa\",\"publisher\":{\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ro-RO\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#organization\",\"name\":\"Transporting Highway\",\"url\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ro-RO\",\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/transportinghighway.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/transporting-highway-logo.svg\",\"contentUrl\":\"https:\\\/\\\/transportinghighway.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/transporting-highway-logo.svg\",\"width\":\"1920\",\"height\":\"1080\",\"caption\":\"Transporting Highway\"},\"image\":{\"@id\":\"https:\\\/\\\/transportinghighway.com\\\/ro\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Acas\u0103 - Transporting Highway","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:\/\/transportinghighway.com\/ro\/","og_locale":"ro_RO","og_type":"article","og_title":"Acas\u0103 - Transporting Highway","og_description":"Organiz\u0103m transportul ma\u0219inii dumneavoastr\u0103 eficient, rapid \u0219i u\u0219or Calcula\u021bi-v\u0103 pre\u021bul total f\u0103r\u0103 obliga\u021bii Loca\u021bie Ad\u0103uga\u021bi vehicule Calculul De la BelgiaBulgariaDanemarcaGermaniaEstoniaFran\u021baUngariaItaliaCroa\u021biaLetoniaLituaniaLuxemburgOlandaAustriaPoloniaPortugaliaRom\u00e2niaSloveniaSlovaciaRepublica Ceh\u0103SpaniaSuediaElve\u021bia La BelgiaBulgariaDanemarcaGermaniaEstoniaFran\u021baUngariaItaliaCroa\u021biaLetoniaLituaniaLuxemburgOlandaAustriaPoloniaPortugaliaRom\u00e2niaSloveniaSlovaciaRepublica Ceh\u0103SpaniaSuediaElve\u021bia Ad\u0103uga\u021bi vehicule Loca\u021bie Ad\u0103uga\u021bi vehicule Calculul Selecta\u021bi un tip de vehicul StandardSuvAutobuz (max. L1H1)Autobuz (max. L3H3) Cantitate Electric \/ hibrid Nu conduce\u021bi Ad\u0103uga\u021bi un vehicul \u00cenapoi Calcula\u021bi pre\u021bul VEHICULE LIVRATE + [&hellip;]","og_url":"https:\/\/transportinghighway.com\/ro\/","og_site_name":"Transporting Highway","article_modified_time":"2026-01-12T15:52:16+00:00","og_image":[{"width":1493,"height":1080,"url":"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2-1493x1080.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Timp estimat pentru citire":"2 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/transportinghighway.com\/ro\/","url":"https:\/\/transportinghighway.com\/ro\/","name":"Acas\u0103 - Transporting Highway","isPartOf":{"@id":"https:\/\/transportinghighway.com\/ro\/#website"},"primaryImageOfPage":{"@id":"https:\/\/transportinghighway.com\/ro\/#primaryimage"},"image":{"@id":"https:\/\/transportinghighway.com\/ro\/#primaryimage"},"thumbnailUrl":"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2.png","datePublished":"2024-04-13T19:47:00+00:00","dateModified":"2026-01-12T15:52:16+00:00","breadcrumb":{"@id":"https:\/\/transportinghighway.com\/ro\/#breadcrumb"},"inLanguage":"ro-RO","potentialAction":[{"@type":"ReadAction","target":["https:\/\/transportinghighway.com\/ro\/"]}]},{"@type":"ImageObject","inLanguage":"ro-RO","@id":"https:\/\/transportinghighway.com\/ro\/#primaryimage","url":"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2.png","contentUrl":"https:\/\/transportinghighway.com\/wp-content\/uploads\/2024\/10\/Title-2.png"},{"@type":"BreadcrumbList","@id":"https:\/\/transportinghighway.com\/ro\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/transportinghighway.com\/ro\/acasa\/"},{"@type":"ListItem","position":2,"name":"Acas\u0103"}]},{"@type":"WebSite","@id":"https:\/\/transportinghighway.com\/ro\/#website","url":"https:\/\/transportinghighway.com\/ro\/","name":"Transporting Highway","description":"Vervoer uw auto&#039;s door Europa","publisher":{"@id":"https:\/\/transportinghighway.com\/ro\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/transportinghighway.com\/ro\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ro-RO"},{"@type":"Organization","@id":"https:\/\/transportinghighway.com\/ro\/#organization","name":"Transporting Highway","url":"https:\/\/transportinghighway.com\/ro\/","logo":{"@type":"ImageObject","inLanguage":"ro-RO","@id":"https:\/\/transportinghighway.com\/ro\/#\/schema\/logo\/image\/","url":"https:\/\/transportinghighway.com\/wp-content\/uploads\/2023\/05\/transporting-highway-logo.svg","contentUrl":"https:\/\/transportinghighway.com\/wp-content\/uploads\/2023\/05\/transporting-highway-logo.svg","width":"1920","height":"1080","caption":"Transporting Highway"},"image":{"@id":"https:\/\/transportinghighway.com\/ro\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/pages\/1075","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/comments?post=1075"}],"version-history":[{"count":42,"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/pages\/1075\/revisions"}],"predecessor-version":[{"id":5977,"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/pages\/1075\/revisions\/5977"}],"wp:attachment":[{"href":"https:\/\/transportinghighway.com\/ro\/wp-json\/wp\/v2\/media?parent=1075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}