{"id":857,"date":"2023-04-06T14:51:24","date_gmt":"2023-04-06T12:51:24","guid":{"rendered":"https:\/\/www.accuracy.com\/?page_id=857"},"modified":"2026-08-26T11:21:34","modified_gmt":"2026-08-26T09:21:34","slug":"nos-bureaux-dans-le-monde","status":"publish","type":"page","link":"https:\/\/www.accuracy.com\/fr\/discover-accuracy\/our-global-offices\/","title":{"rendered":"Nos bureaux dans le monde"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"857\" class=\"elementor elementor-857\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7e16d61 e-flex e-con-boxed e-con e-parent\" data-id=\"7e16d61\" 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-cbbe841 elementor-widget__width-inherit elementor-widget elementor-widget-shortcode\" data-id=\"cbbe841\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    <style>\n      .accuracy-map-wrapper {\n        width: 100%;\n        max-width: 1200px;\n        margin: 0 auto;\n        position: relative;\n        font-family: 'Poppins', sans-serif;\n      }\n      .accuracy-map-wrapper #accuracy-map {\n        width: 100%;\n        height: auto;\n        display: block;\n        overflow: hidden;\n      }\n      .accuracy-country {\n        fill: #E5E7EB;\n        stroke: #FFFFFF;\n        stroke-width: 0.5;\n        transition: fill 0.2s ease;\n      }\n      .accuracy-country.active {\n        fill: #CE1517;\n        cursor: pointer;\n      }\n      .accuracy-country.active:hover {\n        fill: #A81012;\n      }\n      .accuracy-tooltip {\n        position: absolute;\n        pointer-events: none;\n        background: #1F2937;\n        color: #ffffff;\n        padding: 8px 14px;\n        border-radius: 6px;\n        font-family: 'Poppins', sans-serif;\n        font-size: 13px;\n        font-weight: 500;\n        opacity: 0;\n        transition: opacity 0.15s ease;\n        white-space: nowrap;\n        box-shadow: 0 4px 12px rgba(0,0,0,0.15);\n        transform: translate(-50%, calc(-100% - 12px));\n        z-index: 10;\n      }\n      .accuracy-tooltip.visible { opacity: 1; }\n      .accuracy-tooltip::after {\n        content: '';\n        position: absolute;\n        bottom: -4px;\n        left: 50%;\n        transform: translateX(-50%) rotate(45deg);\n        width: 8px;\n        height: 8px;\n        background: #1F2937;\n      }\n    <\/style>\n\n    <div class=\"accuracy-map-wrapper\">\n      <svg id=\"accuracy-map\" viewBox=\"0 0 960 480\" preserveAspectRatio=\"xMidYMid meet\"><\/svg>\n      <div class=\"accuracy-tooltip\" id=\"accuracy-tooltip\"><\/div>\n    <\/div>\n\n    <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/d3@7\"><\/script>\n    <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/topojson-client@3\"><\/script>\n    <script>\n    (function() {\n      if (window.__accuracyMapInit) return;\n      window.__accuracyMapInit = true;\n\n      \/\/ ===== LISTE DES BUREAUX =====\n      \/\/ Cl\u00e9 = code ISO 3166-1 num\u00e9rique du pays\n      var offices = {\n        '124': { name: 'Canada',          url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/canada\/' },\n        '156': { name: 'China',           url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/china\/' },\n        '250': { name: 'France',          url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/france\/' },\n        '276': { name: 'Germany',         url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/germany\/' },\n        '356': { name: 'India',           url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/india\/' },\n        '380': { name: 'Italy',           url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/italy\/' },\n        '442': { name: 'Luxembourg',      url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/luxembourg\/' },\n        '784': { name: 'Middle East',     url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/middle-east\/' },\n        '504': { name: 'Morocco',         url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/morocco\/' },\n        '702': { name: 'Singapore',       url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/singapore\/' },\n        '724': { name: 'Spain',           url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/spain\/' },\n        '528': { name: 'The Netherlands', url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/the-netherlands\/' },\n        '826': { name: 'United Kingdom',  url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/united-kingdom\/' },\n        '840': { name: 'United States',   url: 'https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/united-states\/' }\n      };\n\n      function init() {\n        var svg = d3.select('#accuracy-map');\n        var tooltip = document.getElementById('accuracy-tooltip');\n        var wrapper = document.querySelector('.accuracy-map-wrapper');\n        if (!svg.node() || !tooltip || !wrapper) return;\n\n        var width = 960, height = 480;\n\n        var visibleWorld = {\n          type: 'Polygon',\n          coordinates: [[\n            [-180, 75], [180, 75], [180, -55], [-180, -55], [-180, 75]\n          ]]\n        };\n\n        var projection = d3.geoMercator().fitSize([width, height], visibleWorld);\n        var path = d3.geoPath().projection(projection);\n\n        function showTooltip(event, name) {\n          tooltip.textContent = name;\n          tooltip.classList.add('visible');\n          moveTooltip(event);\n        }\n        function moveTooltip(event) {\n          var rect = wrapper.getBoundingClientRect();\n          tooltip.style.left = (event.clientX - rect.left) + 'px';\n          tooltip.style.top  = (event.clientY - rect.top)  + 'px';\n        }\n        function hideTooltip() { tooltip.classList.remove('visible'); }\n\n        function keepPolygonsInBBox(feature, bbox) {\n          if (feature.geometry.type !== 'MultiPolygon') return feature;\n          var minLng = bbox[0], minLat = bbox[1], maxLng = bbox[2], maxLat = bbox[3];\n          var kept = feature.geometry.coordinates.filter(function(poly) {\n            var b = d3.geoBounds({ type: 'Polygon', coordinates: poly });\n            return b[0][0] >= minLng && b[1][0] <= maxLng\n                && b[0][1] >= minLat && b[1][1] <= maxLat;\n          });\n          return Object.assign({}, feature, {\n            geometry: { type: 'MultiPolygon', coordinates: kept }\n          });\n        }\n\n        d3.json('https:\/\/cdn.jsdelivr.net\/npm\/world-atlas@2\/countries-110m.json').then(function(world) {\n          var countries = topojson.feature(world, world.objects.countries).features\n            .filter(function(d) { return d.id !== '010'; })\n            .map(function(d) {\n              return d.id === '250'\n                ? keepPolygonsInBBox(d, [-10, 35, 30, 60])\n                : d;\n            });\n\n          svg.append('g')\n            .selectAll('path')\n            .data(countries)\n            .join('path')\n            .attr('d', path)\n            .attr('class', function(d) {\n              return offices[d.id] ? 'accuracy-country active' : 'accuracy-country';\n            })\n            .on('mouseenter', function(event, d) {\n              var office = offices[d.id];\n              if (office) showTooltip(event, office.name);\n            })\n            .on('mousemove', moveTooltip)\n            .on('mouseleave', hideTooltip)\n            .on('click', function(event, d) {\n              var office = offices[d.id];\n              if (office) window.location.href = office.url;\n            });\n\n          \/\/ Pays trop petits pour \u00eatre visibles \u00e0 cette \u00e9chelle.\n          \/\/ On superpose un petit cercle styl\u00e9 EXACTEMENT comme un pays actif\n          \/\/ (m\u00eame classe, m\u00eame rouge, m\u00eame bordure blanche fine) pour rester\n          \/\/ visuellement coh\u00e9rent avec les autres pays color\u00e9s.\n         var tinyZones = {\n  '702': [103.8198, 1.3521],  \/\/ Singapore\n  '442': [6.1296,   49.8153]  \/\/ Luxembourg\n};\n\n          Object.keys(tinyZones).forEach(function(id) {\n            var office = offices[id];\n            if (!office) return;\n            var p = projection(tinyZones[id]);\n            svg.append('circle')\n              .attr('cx', p[0])\n              .attr('cy', p[1])\n              .attr('r', 4)\n              .attr('class', 'accuracy-country active')\n              .on('mouseenter', function(event) { showTooltip(event, office.name); })\n              .on('mousemove', moveTooltip)\n              .on('mouseleave', hideTooltip)\n              .on('click', function() { window.location.href = office.url; });\n          });\n        });\n      }\n\n      \/\/ d3 et topojson sont charg\u00e9s de mani\u00e8re asynchrone : on attend qu'ils soient pr\u00eats\n      function ready() {\n        if (typeof d3 !== 'undefined' && typeof topojson !== 'undefined') {\n          init();\n        } else {\n          setTimeout(ready, 50);\n        }\n      }\n      if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', ready);\n      } else {\n        ready();\n      }\n    })();\n    <\/script>\n    <\/div>\n\t\t\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-8d2100c e-flex e-con-boxed e-con e-parent\" data-id=\"8d2100c\" 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-d346d0b elementor-widget elementor-widget-text-editor\" data-id=\"d346d0b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\"><span style=\"color: #ce1719;\">Our strategy is to be standing beside our clients wherever they need us.<\/span><\/p>\t\t\t\t\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-f19346d e-flex e-con-boxed e-con e-parent\" data-id=\"f19346d\" 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-2924087 e-con-full e-flex e-con e-child\" data-id=\"2924087\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d463fb elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"5d463fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\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<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/canada\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Canada<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/china\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">China<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/france\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">France<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/germany\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Germany<\/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<div class=\"elementor-element elementor-element-e64f6b7 e-con-full e-flex e-con e-child\" data-id=\"e64f6b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-111de87 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"111de87\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\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<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/india\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">India<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/italy\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Italy<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/middle-east\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Middle East<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/morocco\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Morocco<\/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<div class=\"elementor-element elementor-element-d59bca6 e-con-full e-flex e-con e-child\" data-id=\"d59bca6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-108366a elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"108366a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\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<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/singapore\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Singapore<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/spain\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">Spain<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/the-netherlands\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">The Netherlands<\/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\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/united-kingdom\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">United Kingdom<\/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<div class=\"elementor-element elementor-element-848f128 e-con-full e-flex e-con e-child\" data-id=\"848f128\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a067aa9 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"a067aa9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\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<a href=\"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/united-states\/\">\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-chevron-right\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/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\">United States<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Notre strat\u00e9gie consiste \u00e0 \u00eatre aux c\u00f4t\u00e9s de nos clients partout o\u00f9 ils ont besoin de nous. Canada, Chine, France, Allemagne, Inde, Italie, Moyen-Orient, Maroc, Singapour, Espagne, Pays-Bas, Royaume-Uni, \u00c9tats-Unis<\/p>","protected":false},"author":1,"featured_media":30648,"parent":100,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-857","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.3 (Yoast SEO v28.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Our global offices - Accuracy<\/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:\/\/www.accuracy.com\/fr\/decouvrez-accuracy\/nos-bureaux-dans-le-monde\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Our global offices\" \/>\n<meta property=\"og:description\" content=\"Our strategy is to be standing beside our clients wherever they need us. Canada China France Germany India Italy Middle East Morocco Singapore Spain The Netherlands United Kingdom United States\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.accuracy.com\/fr\/decouvrez-accuracy\/nos-bureaux-dans-le-monde\/\" \/>\n<meta property=\"og:site_name\" content=\"Accuracy\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-26T09:21:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/07\/our-global-offices-e1764772092351.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1800\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimation du temps de lecture\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/\",\"url\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/\",\"name\":\"Our global offices - Accuracy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.accuracy.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/our-global-offices-e1764772092351.jpg\",\"datePublished\":\"2023-04-06T12:51:24+00:00\",\"dateModified\":\"2026-08-26T09:21:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.accuracy.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/our-global-offices-e1764772092351.jpg\",\"contentUrl\":\"https:\\\/\\\/www.accuracy.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/our-global-offices-e1764772092351.jpg\",\"width\":1800,\"height\":372},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/our-global-offices\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.accuracy.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Discover Accuracy\",\"item\":\"https:\\\/\\\/www.accuracy.com\\\/discover-accuracy\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Our global offices\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/#website\",\"url\":\"https:\\\/\\\/www.accuracy.com\\\/\",\"name\":\"Accuracy\",\"description\":\"Business Advisers - Financial Consultants\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.accuracy.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/#organization\",\"name\":\"Accuracy\",\"url\":\"https:\\\/\\\/www.accuracy.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.accuracy.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/unnamed-3.jpg\",\"contentUrl\":\"https:\\\/\\\/www.accuracy.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/unnamed-3.jpg\",\"width\":512,\"height\":512,\"caption\":\"Accuracy\"},\"image\":{\"@id\":\"https:\\\/\\\/www.accuracy.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/accuracy\\\/?originalSubdomain=fr\",\"https:\\\/\\\/www.instagram.com\\\/accuracycareers\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Nos bureaux dans le monde - Pr\u00e9cision","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:\/\/www.accuracy.com\/fr\/decouvrez-accuracy\/nos-bureaux-dans-le-monde\/","og_locale":"fr_CA","og_type":"article","og_title":"Our global offices","og_description":"Our strategy is to be standing beside our clients wherever they need us. Canada China France Germany India Italy Middle East Morocco Singapore Spain The Netherlands United Kingdom United States","og_url":"https:\/\/www.accuracy.com\/fr\/decouvrez-accuracy\/nos-bureaux-dans-le-monde\/","og_site_name":"Accuracy","article_modified_time":"2026-08-26T09:21:34+00:00","og_image":[{"width":1800,"height":372,"url":"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/07\/our-global-offices-e1764772092351.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimation du temps de lecture":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/","url":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/","name":"Nos bureaux dans le monde - Pr\u00e9cision","isPartOf":{"@id":"https:\/\/www.accuracy.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/#primaryimage"},"image":{"@id":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/#primaryimage"},"thumbnailUrl":"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/07\/our-global-offices-e1764772092351.jpg","datePublished":"2023-04-06T12:51:24+00:00","dateModified":"2026-08-26T09:21:34+00:00","breadcrumb":{"@id":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/"]}]},{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/#primaryimage","url":"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/07\/our-global-offices-e1764772092351.jpg","contentUrl":"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/07\/our-global-offices-e1764772092351.jpg","width":1800,"height":372},{"@type":"BreadcrumbList","@id":"https:\/\/www.accuracy.com\/discover-accuracy\/our-global-offices\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.accuracy.com\/"},{"@type":"ListItem","position":2,"name":"Discover Accuracy","item":"https:\/\/www.accuracy.com\/discover-accuracy\/"},{"@type":"ListItem","position":3,"name":"Our global offices"}]},{"@type":"WebSite","@id":"https:\/\/www.accuracy.com\/#website","url":"https:\/\/www.accuracy.com\/","name":"Pr\u00e9cision","description":"Conseillers d'entreprise - Consultants financiers","publisher":{"@id":"https:\/\/www.accuracy.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.accuracy.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/www.accuracy.com\/#organization","name":"Pr\u00e9cision","url":"https:\/\/www.accuracy.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/www.accuracy.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/08\/unnamed-3.jpg","contentUrl":"https:\/\/www.accuracy.com\/wp-content\/uploads\/2023\/08\/unnamed-3.jpg","width":512,"height":512,"caption":"Accuracy"},"image":{"@id":"https:\/\/www.accuracy.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/accuracy\/?originalSubdomain=fr","https:\/\/www.instagram.com\/accuracycareers\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/pages\/857","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/comments?post=857"}],"version-history":[{"count":46,"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/pages\/857\/revisions"}],"predecessor-version":[{"id":67454,"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/pages\/857\/revisions\/67454"}],"up":[{"embeddable":true,"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/pages\/100"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/media\/30648"}],"wp:attachment":[{"href":"https:\/\/www.accuracy.com\/fr\/wp-json\/wp\/v2\/media?parent=857"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}