
<style type="text/css">
    .acf-map {
        width: 100%;
        height: 400px;
        border: #ccc solid 1px;
        margin: 20px 0;
    }
    .acf-map img {
        max-width: inherit !important;
    }
</style>

<script type="text/javascript">
    (function( $ ) {
  
    function initMap( $el ) {
  
        // Find marker elements within map.
        var $markers = $el.find('.marker');
        
        // Create gerenic map.
        var mapArgs = {
            // zoom        : $el.data('zoom') || 16,
            // mapTypeId   : google.maps.MapTypeId.ROADMAP,
            mapTypeControl: false,
            panControl: false,
            scaleControl: false,
            streetViewControl: false,
            fullscreenControl: false
        };

        var styles = [
            {
                "featureType": "water",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#e9e9e9"
                    },
                    {
                        "lightness": 17
                    }
                ]
            },
            {
                "featureType": "landscape",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#f5f5f5"
                    },
                    {
                        "lightness": 20
                    }
                ]
            },
            {
                "featureType": "road.highway",
                "elementType": "geometry.fill",
                "stylers": [
                    {
                        "color": "#ffffff"
                    },
                    {
                        "lightness": 17
                    }
                ]
            },
            {
                "featureType": "road.highway",
                "elementType": "geometry.stroke",
                "stylers": [
                    {
                        "color": "#ffffff"
                    },
                    {
                        "lightness": 29
                    },
                    {
                        "weight": 0.2
                    }
                ]
            },
            {
                "featureType": "road.arterial",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#ffffff"
                    },
                    {
                        "lightness": 18
                    }
                ]
            },
            {
                "featureType": "road.local",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#ffffff"
                    },
                    {
                        "lightness": 16
                    }
                ]
            },
            {
                "featureType": "poi",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#f5f5f5"
                    },
                    {
                        "lightness": 21
                    }
                ]
            },
            {
                "featureType": "poi.park",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#dedede"
                    },
                    {
                        "lightness": 21
                    }
                ]
            },
            {
                "elementType": "labels.text.stroke",
                "stylers": [
                    {
                        "visibility": "on"
                    },
                    {
                        "color": "#ffffff"
                    },
                    {
                        "lightness": 16
                    }
                ]
            },
            {
                "elementType": "labels.text.fill",
                "stylers": [
                    {
                        "saturation": 36
                    },
                    {
                        "color": "#333333"
                    },
                    {
                        "lightness": 40
                    }
                ]
            },
            {
                "elementType": "labels.icon",
                "stylers": [
                    {
                        "visibility": "off"
                    }
                ]
            },
            {
                "featureType": "transit",
                "elementType": "geometry",
                "stylers": [
                    {
                        "color": "#f2f2f2"
                    },
                    {
                        "lightness": 19
                    }
                ]
            },
            {
                "featureType": "administrative",
                "elementType": "geometry.fill",
                "stylers": [
                    {
                        "color": "#fefefe"
                    },
                    {
                        "lightness": 20
                    }
                ]
            },
            {
                "featureType": "administrative",
                "elementType": "geometry.stroke",
                "stylers": [
                    {
                        "color": "#fefefe"
                    },
                    {
                        "lightness": 17
                    },
                    {
                        "weight": 1.2
                    }
                ]
            }
        ];

        var map = new google.maps.Map( $el[0], mapArgs )
        
        map.setOptions({styles: styles});

        // Add markers.
        map.markers = [];
        
        var infoWindow = new google.maps.InfoWindow();

        $markers.each(function(index, element){
        var $marker = $(element)
        const marker = initMarker( $marker, map );
        if( $marker.html() ){
            marker.addListener('click', () => {
            infoWindow.setContent($marker.html());
            infoWindow.open(map, marker);
            })
        }
        });

        map.addListener('click', () => {
        infoWindow.close();
        });
        
        // Center map based on markers.
        centerMap( map );
        
        const markers = map.markers;
        const mcOptions = {
            styles:[{
                textColor: "black",
            }],
            maxZoom: 8
        };

        const ClusterIcon = color => window.btoa(`
            <svg fill="#000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240">
                <circle cx="120" cy="120" opacity=".6" r="70" />
                <circle cx="120" cy="120" opacity=".4" r="95" />
                <circle cx="120" cy="120" opacity=".2" r="120" />
            </svg>`)

        // const mk = new markerClusterer.MarkerClusterer({ 
        //     map: map,
        //     markers: markers,
        // });
        
        const mk = new MarkerClusterer(map, markers, {
            styles: [`blue`, `green`, `red`].map(color => ({
            url: `data:image/svg+xml;base64,${ClusterIcon(color)}`,
            height: 45,
            width: 45,
            textColor: `white`,
            })),
        })

        mk.addListener("click", () => {
        infoWindow.close();
        })

        // Return map instance.
        return map;
    }
    function initMarker( $marker, map ) {
  
    // Get position from marker.
    var lat = $marker.data('lat');
    var lng = $marker.data('lng');
    var latLng = {
        lat: parseFloat( lat ),
        lng: parseFloat( lng )
    };
    const svgMarker = {
        path: "m0 0h22v22h-22z",
        fillColor: "black",
        fillOpacity: 1,
        strokeWeight: 0,
        rotation: 0,
        scale: 0.5,
        anchor: new google.maps.Point(15, 30),
    };
    // Create marker instance.
    var marker = new google.maps.Marker({
        position : latLng,
        icon: svgMarker,
        map: map
    });

    // Append to reference for later use.
    map.markers.push( marker );

    return marker;
    }
    /**
     * centerMap
     *
     * Centers the map showing all markers in view.
     *
     * @date    22/10/19
     * @since   5.8.6
     *
     * @param   object The map instance.
     * @return  void
     */
    function centerMap( map ) {
        // Create map boundaries from all map markers.
        var bounds = new google.maps.LatLngBounds();
        map.markers.forEach(function( marker ){
            bounds.extend({
                lat: marker.position.lat(),
                lng: marker.position.lng()
            });
        });
        
        // Case: Single marker.
        if( map.markers.length == 1 ){
            map.setCenter( bounds.getCenter() );
        // Case: Multiple markers.
        } else {
            map.fitBounds( bounds );
        }
    }
            
            // Render maps on page load.
            $(document).ready(function(){
                $('.acf-map').each(function(){
                    var map = initMap( $(this) );
                });
            });
            
            })(jQuery);
            </script>

        <div class="acf-map" data-zoom="16">
                    <div class="marker" data-lat="37.9838096" data-lng="23.7275388">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Snappi Workplace Hub</h3>
                    <p style="margin-bottom:1rem;"><b>Atene </b>/ 2024</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/snappi-workplace-hub/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.5552886" data-lng="5.690366">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Van Dijk Groep</h3>
                    <p style="margin-bottom:1rem;"><b>Gemert </b>/ 2025</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/van-dijk-groep/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="30.4280405" data-lng="-9.5925444">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >TLS Contact</h3>
                    <p style="margin-bottom:1rem;"><b>Agadir </b>/ 2025</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/tls-contact/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.6669338" data-lng="12.2430608">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Home staging a Treviso</h3>
                    <p style="margin-bottom:1rem;"><b>Treviso </b>/ 2025</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/home-staging-a-treviso/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="46.151241" data-lng="14.995463">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Caffetteria del Collegio de...</h3>
                    <p style="margin-bottom:1rem;"><b>Slovenia </b>/ 2025</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/caffetteria-del-collegio-dei-gesuiti/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="44.647128" data-lng="10.9252269">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Sala congressi</h3>
                    <p style="margin-bottom:1rem;"><b>Modena </b>/ 2025</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/sala-congressi/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.5952548" data-lng="7.7981967">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Podium Campus</h3>
                    <p style="margin-bottom:1rem;"><b>Pont-Saint-Martin </b>/ 2024</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/podium-campus/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="46.0569465" data-lng="14.5057515">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Resalta Offices</h3>
                    <p style="margin-bottom:1rem;"><b>Lubiana </b>/ 2024</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/resalta-offices/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="50.0546886" data-lng="5.4676983">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >RSM Tax &amp; Accounting</h3>
                    <p style="margin-bottom:1rem;"><b>Lussemburgo </b>/ 2024</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/rsm-tax-accounting/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="46.7104236" data-lng="11.6524696">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Biblioteca civica di Bressa...</h3>
                    <p style="margin-bottom:1rem;"><b>Bressanone </b>/ 2024</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/biblioteca-civica-di-bressanone/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="52.132633" data-lng="5.291266">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >theunissen koffie</h3>
                    <p style="margin-bottom:1rem;"><b>Herten </b>/ 2024</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/theunissen-koffie/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="10.0278" data-lng="-71.5769">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Design Group Latinamerica</h3>
                    <p style="margin-bottom:1rem;"><b>Maracaibo </b>/ 2023</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/design-group-latinamerica-maracaibo/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.6978162" data-lng="5.3036748">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Kuijpers, Paesi Bassi</h3>
                    <p style="margin-bottom:1rem;"><b>Paesi Bassi </b>/ 2023</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/kuijpers-paesi-bassi/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="41.6938026" data-lng="44.8015168">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >British-Georgian Academy, T...</h3>
                    <p style="margin-bottom:1rem;"><b>Tbilisi, Georgia </b>/ 2023</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/british-georgian-academy-tbilisi/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="10.4805937" data-lng="-66.9036063">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Design group Latinamerica</h3>
                    <p style="margin-bottom:1rem;"><b>Caracas </b>/ 2023</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/design-group-latinamerica/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="41.87194" data-lng="12.56738">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Studio privato</h3>
                    <p style="margin-bottom:1rem;"><b>Italia </b>/ 2023</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/studio-privato-italia/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.6432605" data-lng="11.809877">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >BRERA 89</h3>
                    <p style="margin-bottom:1rem;"><b>Italia </b>/ 2023</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/brera89/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="52.132633" data-lng="5.291266">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Quintes</h3>
                    <p style="margin-bottom:1rem;"><b>Olanda </b>/ 2022</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/quintes/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.839616" data-lng="12.3807137">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >GI.DI. Meccanica</h3>
                    <p style="margin-bottom:1rem;"><b>Vazzola - Italy </b>/ 2022</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/gi-di-meccanica-2022/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="50.4501" data-lng="30.5234">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Co-working &quot;National&quot; - Ucr...</h3>
                    <p style="margin-bottom:1rem;"><b>Ucraina </b>/ 2022</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/co-working-national-ucraina/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="44.6989932" data-lng="10.6296859">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Comune di Reggiolo</h3>
                    <p style="margin-bottom:1rem;"><b>Reggio Emilia - ITALIA </b>/ 2022</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/comune-di-reggiolo/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="48.624421" data-lng="9.3469069">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >ARTFLIESEN</h3>
                    <p style="margin-bottom:1rem;"><b>Nürtingen - Germania </b>/ 2022</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/artfliesen/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="-37.8135212" data-lng="144.9607688">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >ORLY PARIS INTERNATIONAL AI...</h3>
                    <p style="margin-bottom:1rem;"><b>Paris </b>/ 2021</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/en/projects/orly-paris-international-airport/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="48.7262321" data-lng="2.3652422">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Aeroporto internazionale di...</h3>
                    <p style="margin-bottom:1rem;"><b>Parigi </b>/ 2021</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/aeroporto-internazionale-di-orly/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.9019925" data-lng="12.526491">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Etra</h3>
                    <p style="margin-bottom:1rem;"><b>Brugnera </b>/ 2021</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/etra/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="44.4056499" data-lng="8.946256">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >BeDimensional</h3>
                    <p style="margin-bottom:1rem;"><b>Genova </b>/ 2021</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/bedimensional/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="-33.4488897" data-lng="-70.6692655">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Hotel Pullman Santiago Vita...</h3>
                    <p style="margin-bottom:1rem;"><b>Santiago del Cile </b>/ 2021</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/hotel-pullman-santiago-vitacura/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.8150108" data-lng="15.981919">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Business Building PEMO Center</h3>
                    <p style="margin-bottom:1rem;"><b>Zagabria / Croazia </b>/ 2021</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/business-building-pemo-center/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="23.885942" data-lng="45.079162">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Ministry of Culture Office</h3>
                    <p style="margin-bottom:1rem;"><b>Arabia Saudita </b>/ 2020</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/ministry-of-culture-office/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Óptica Millennium</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2019</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/optica-millennium/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="44.1396438" data-lng="12.2464292">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Infoteck - Vignali trasporti</h3>
                    <p style="margin-bottom:1rem;"><b>Forlì-Cesena - Italy </b>/ 2019</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/infoteck-vignali-trasporti/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Faurecia Interior Systems S...</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2019</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/faurecia-interior-systems-salc-espana-s-l/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="44.9983525" data-lng="7.6802878">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Hansgrohe Italia</h3>
                    <p style="margin-bottom:1rem;"><b>Moncalieri  - Italy </b>/ 2019</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/hansgrohe-italia/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Coworking Parc Central</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2019</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/coworking-parc-central/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.917978" data-lng="12.857311">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Casa funeraria</h3>
                    <p style="margin-bottom:1rem;"><b>San Vito al Tagliamento - Italy </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/casa-funeraria/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="48.1351253" data-lng="11.5819806">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Università</h3>
                    <p style="margin-bottom:1rem;"><b>Munich - Germany </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/universita/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="50.926454" data-lng="4.4258375">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Buro Market</h3>
                    <p style="margin-bottom:1rem;"><b>Vilvoorde - Belgium </b>/ 2019</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/buro-market/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Associazione medica</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/associazione-medica/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.1847248" data-lng="9.1582069">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Ospedale San Matteo</h3>
                    <p style="margin-bottom:1rem;"><b>Pavia - Italy </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/ospedale-san-matteo/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="41.9027835" data-lng="12.4963655">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >MSX</h3>
                    <p style="margin-bottom:1rem;"><b>Roma - Italy </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/msx/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.4642035" data-lng="9.189982">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >S.I.R.M. srl</h3>
                    <p style="margin-bottom:1rem;"><b>Milan - Italy </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/s-i-r-m-srl/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.6274082" data-lng="-0.5968562">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Santiago Cafetería</h3>
                    <p style="margin-bottom:1rem;"><b>Lliria - Spain </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/santiago-cafeteria/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Loewe</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/loewe/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="19.0759837" data-lng="72.8776559">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Bright Commodities</h3>
                    <p style="margin-bottom:1rem;"><b>Mumbai - India </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/bright-commodities/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.839616" data-lng="12.3807137">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >GI.DI. Meccanica</h3>
                    <p style="margin-bottom:1rem;"><b>Vazzola - Italy </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/gi-di-meccanica/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="24.7135517" data-lng="46.6752957">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Riyadh</h3>
                    <p style="margin-bottom:1rem;"><b>Arabia Saudita </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/riyadh/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="44.801485" data-lng="10.3279036">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Santa Caterina Srl</h3>
                    <p style="margin-bottom:1rem;"><b>Parma - Italy </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/santa-caterina-srl/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="42.1354079" data-lng="24.7452904">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Mirage 96 Ltd</h3>
                    <p style="margin-bottom:1rem;"><b>Plovdiv - Bulgaria </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/mirage-96-ltd/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.7664504" data-lng="12.2782889">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Contarina Spa</h3>
                    <p style="margin-bottom:1rem;"><b>Lovadina di Spresiano - Italy </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/contarina-spa/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.4061985" data-lng="9.1239694">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Tesi spa</h3>
                    <p style="margin-bottom:1rem;"><b>Assago - Italy </b>/ 2018</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/tesi-spa/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Hotel Don Carlos RH</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/hotel-don-carlos-rh/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.8615136" data-lng="12.0387474">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Abitazione privata</h3>
                    <p style="margin-bottom:1rem;"><b>Vidor - Italy </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/abitazione-privata/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Peugeot</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/peugeot/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="39.4699075" data-lng="-0.3762881">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >ANPE Sindicato independiente</h3>
                    <p style="margin-bottom:1rem;"><b>Valencia - Spain </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/anpe-sindicato-independiente/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.9105136" data-lng="5.6568202">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Spikes &amp; Sparrow</h3>
                    <p style="margin-bottom:1rem;"><b>Dodewaard - Holland </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/spikes-sparrow/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.6157885" data-lng="5.5392399">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >IVS</h3>
                    <p style="margin-bottom:1rem;"><b>Veghel - Holland </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/ivs/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.4231423" data-lng="5.4622897">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Holland Immo Group</h3>
                    <p style="margin-bottom:1rem;"><b>Eindhoven - Holland </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/holland-immo-group/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="52.132633" data-lng="5.291266">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Beople</h3>
                    <p style="margin-bottom:1rem;"><b>campagna - Holland </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/beople/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.7016294" data-lng="5.2863541">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Plantlab</h3>
                    <p style="margin-bottom:1rem;"><b>De Gruyterfabriek in Den Bosch - Holland </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/plantlab/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="38.3964181" data-lng="-0.5248711">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Oficinas Asesores Lledo Yan...</h3>
                    <p style="margin-bottom:1rem;"><b>San Vincente del Raspeig - Spain </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/oficinas-asesores-lledo-yanguas/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.8911895" data-lng="12.3267227">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Centro Servizi Associati – CSA</h3>
                    <p style="margin-bottom:1rem;"><b>San Vendemiano - Italy </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/centro-servizi-associati-csa/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="43.7695604" data-lng="11.2558136">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >AVIS Budget Group Emea</h3>
                    <p style="margin-bottom:1rem;"><b>Firenze - Italy </b>/ 2017</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/avis-budget-group-emea/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="36.8064948" data-lng="10.1815316">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Grand Salle</h3>
                    <p style="margin-bottom:1rem;"><b>Tunis - Tunisia </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/grand-salle/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.5724468" data-lng="11.9333359">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Tiemme Costruzioni Spa</h3>
                    <p style="margin-bottom:1rem;"><b>Camposanpiero - Italy </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/tiemme-costruzioni-spa/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.8580754" data-lng="12.5376873">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Italdoor</h3>
                    <p style="margin-bottom:1rem;"><b>Portobuffolé - Italy </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/italdoor/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="53.3498053" data-lng="-6.2603097">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >PR 360</h3>
                    <p style="margin-bottom:1rem;"><b>Dublin - Ireland </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/pr-360/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="50.8476424" data-lng="4.3571696">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Radisson Blu Hotel</h3>
                    <p style="margin-bottom:1rem;"><b>Brussels - Belgium </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/radisson-blu-hotel/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="43.8657267" data-lng="10.2513103">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Tecnopool</h3>
                    <p style="margin-bottom:1rem;"><b>Viareggio- Italy </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/tecnopool/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="38.3459963" data-lng="-0.4906855">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Studio Psichiatrico</h3>
                    <p style="margin-bottom:1rem;"><b>Alicante - Spain </b>/ 2016</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/studio-psichiatrico/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.9244201" data-lng="4.4777325">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Feyenoord Rotterdam</h3>
                    <p style="margin-bottom:1rem;"><b>Rotterdam - Holland </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/feyenoord-rotterdam/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="19.1293739" data-lng="72.9330185">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >RD Engineering</h3>
                    <p style="margin-bottom:1rem;"><b>Kanjurmarg - India </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/rd-engineering/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="48.856614" data-lng="2.3522219">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Ivanohe Cambridge</h3>
                    <p style="margin-bottom:1rem;"><b>Paris - France </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/ivanohe-cambridge/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="49.157651" data-lng="2.331063">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Scapnor</h3>
                    <p style="margin-bottom:1rem;"><b>Bruyères sur Oise - France </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/scapnor/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="49.0134297" data-lng="12.1016236">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Optware</h3>
                    <p style="margin-bottom:1rem;"><b>Regensburg - Germany </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/optware/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.4064349" data-lng="11.8767611">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Parker Hannfin</h3>
                    <p style="margin-bottom:1rem;"><b>Padova - Italy </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/parker-hannfin/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.8487988" data-lng="9.0163811">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Soag Europe</h3>
                    <p style="margin-bottom:1rem;"><b>Morbio Inferiore - Switzerland </b>/ 2015</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/soag-europe/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.8792472" data-lng="12.4826559">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Comune</h3>
                    <p style="margin-bottom:1rem;"><b>Gaiarine - Italy </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/comune/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.4383842" data-lng="10.9916215">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Hotel San Carlo</h3>
                    <p style="margin-bottom:1rem;"><b>Verona - Italy </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/hotel-san-carlo/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="43.8274885" data-lng="11.1277659">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Giusto Manetti Battiloro</h3>
                    <p style="margin-bottom:1rem;"><b>Campo Bisenzio - Italy </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/giusto-manetti-battiloro/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.3310274" data-lng="10.0537888">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >BCC</h3>
                    <p style="margin-bottom:1rem;"><b>Veralovecchia - Italy </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/bcc/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="25.2048493" data-lng="55.2707828">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Media Vest</h3>
                    <p style="margin-bottom:1rem;"><b>Dubai -  United Arab Emirates </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/media-vest/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.5072178" data-lng="-0.1275862">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Allsopp&amp;Allsopp</h3>
                    <p style="margin-bottom:1rem;"><b>London - England </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/allsoppallsopp/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.5072178" data-lng="-0.1275862">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >The Blade</h3>
                    <p style="margin-bottom:1rem;"><b>London - England </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/the-blade/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="45.5845001" data-lng="9.2744485">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >SAPIO Gruppo</h3>
                    <p style="margin-bottom:1rem;"><b>Monza - Italy </b>/ 2014</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/sapio-gruppo/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="46.0378862" data-lng="12.710835">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >IES Biogas</h3>
                    <p style="margin-bottom:1rem;"><b>Pordenone - Italy </b>/ 2013</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/ies-biogas/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="47.6567329" data-lng="9.4649538">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Comfort Hotel</h3>
                    <p style="margin-bottom:1rem;"><b>Friesdrichshafen - Germany </b>/ 2013</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/comfort-hotel/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="55.6760968" data-lng="12.5683371">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Anderson Hotel</h3>
                    <p style="margin-bottom:1rem;"><b>Copenaghen - Denmark </b>/ 2013</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/anderson-hotel/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="52.3555177" data-lng="-1.1743197">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Vue Cinema</h3>
                    <p style="margin-bottom:1rem;"><b>England </b>/ 2013</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/vue-cinema/"> VOIR LE PROJET</a>
                </div>
                            <div class="marker" data-lat="51.9244201" data-lng="4.4777325">
                    <h3 style="text-transform: uppercase; font-weight: 600;" >Feyenoord Rotterdam</h3>
                    <p style="margin-bottom:1rem;"><b>Rotterdam - Holland </b>/ 2013</p>
                    <a style="text-decoration:underline; font-weight: 500;font-size: .7rem;" href="https://www.diemmeoffice.com/progetti/feyenoord-rotterdam-sala-stampa/"> VOIR LE PROJET</a>
                </div>
                </div>
    {"id":4358,"date":"2020-04-19T11:39:13","date_gmt":"2020-04-19T09:39:13","guid":{"rendered":"https:\/\/www.diemmeoffice.com\/?page_id=4358"},"modified":"2023-03-13T10:07:18","modified_gmt":"2023-03-13T09:07:18","slug":"tous-les-projets","status":"publish","type":"page","link":"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/","title":{"rendered":"Tous les projets"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row disable_element=\u00a0\u00bbyes\u00a0\u00bb][vc_column offset=\u00a0\u00bbvc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8&Prime;][vc_column_text el_class=\u00a0\u00bblead\u00a0\u00bb]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&rsquo;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book[\/vc_column_text][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=\u00a0\u00bbstretch_row\u00a0\u00bb bg_type=\u00a0\u00bbbg_color\u00a0\u00bb bg_color_value=\u00a0\u00bb#f6f6f6&Prime;][vc_column][vc_custom_heading text=\u00a0\u00bbfeatured.\u00a0\u00bb font_container=\u00a0\u00bbtag:h4|text_align:left|color:%23040404&Prime; use_theme_fonts=\u00a0\u00bbyes\u00a0\u00bb][vc_empty_space][vc_basic_grid post_type=\u00a0\u00bbprogetti\u00a0\u00bb max_items=\u00a0\u00bb-1&Prime; style=\u00a0\u00bbpagination\u00a0\u00bb items_per_page=\u00a0\u00bb4&Prime; element_width=\u00a0\u00bb6&Prime; gap=\u00a0\u00bb35&Prime; paging_design=\u00a0\u00bbpagination_square_dark\u00a0\u00bb item=\u00a0\u00bb4464&Prime; grid_id=\u00a0\u00bbvc_gid:1678698083490-a7e7c376-7ca9-9&Prime; taxonomies=\u00a0\u00bb76&Prime;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=\u00a0\u00bb70px\u00a0\u00bb][vc_custom_heading text=\u00a0\u00bbautres projets.\u00a0\u00bb font_container=\u00a0\u00bbtag:h4|text_align:left|color:%23040404&Prime; use_theme_fonts=\u00a0\u00bbyes\u00a0\u00bb][vc_empty_space][vc_basic_grid post_type=\u00a0\u00bbprogetti\u00a0\u00bb max_items=\u00a0\u00bb-1&Prime; style=\u00a0\u00bbpagination\u00a0\u00bb items_per_page=\u00a0\u00bb8&Prime; element_width=\u00a0\u00bb6&Prime; gap=\u00a0\u00bb35&Prime; paging_design=\u00a0\u00bbpagination_square_dark\u00a0\u00bb item=\u00a0\u00bb3171&Prime; grid_id=\u00a0\u00bbvc_gid:1678698083492-24a18d5a-be51-8&Prime; el_class=\u00a0\u00bblistaProgetti\u00a0\u00bb taxonomies=\u00a0\u00bb196&Prime;][\/vc_column][\/vc_row][vc_row full_width=\u00a0\u00bbstretch_row\u00a0\u00bb css=\u00a0\u00bb.vc_custom_1678698006228{background-color: #f6f6f6 !important;}\u00a0\u00bb][vc_column][vc_empty_space height=\u00a0\u00bb70px\u00a0\u00bb][vc_custom_heading text=\u00a0\u00bbo\u00f9 nous avons d\u00e9j\u00e0 travaill\u00e9.\u00a0\u00bb font_container=\u00a0\u00bbtag:h4|text_align:left|color:%23040404&Prime; use_theme_fonts=\u00a0\u00bbyes\u00a0\u00bb][vc_empty_space height=\u00a0\u00bb30px\u00a0\u00bb][vc_column_text]<strong>Bienvenue sur notre carte du monde des chaises de bureau Diemme. <\/strong><br \/>\nNous sommes fiers de vous pr\u00e9senter les endroits o\u00f9 notre savoir-faire artisanal a permis de cr\u00e9er le mobilier parfait pour des lieux de travail fonctionnels et accueillants dans le monde entier.<br \/>\nGr\u00e2ce \u00e0 notre passion pour la qualit\u00e9 et le design, nous avons apport\u00e9 l&rsquo;excellence italienne aux quatre coins de la plan\u00e8te, en travaillant avec des partenaires internationaux qui partagent notre vision.<br \/>\nExplorez la carte et laissez-vous s\u00e9duire par la beaut\u00e9 fonctionnelle et la qualit\u00e9 de nos chaises qui repr\u00e9sentent la rencontre de l&rsquo;artisanat et de la technologie de pointe, o\u00f9 que vous soyez dans le monde.[\/vc_column_text][vc_row_inner][vc_column_inner][\/vc_column_inner][\/vc_row_inner][vc_empty_space height=\u00a0\u00bb70px\u00a0\u00bb][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row disable_element=\u00a0\u00bbyes\u00a0\u00bb][vc_column offset=\u00a0\u00bbvc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8&Prime;][vc_column_text el_class=\u00a0\u00bblead\u00a0\u00bb]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&rsquo;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book[\/vc_column_text][vc_column_text]I am text block. Click edit button&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-4358","page","type-page","status-publish","hentry","description-off"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tous les projets | Diemme Office<\/title>\n<meta name=\"description\" content=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#039;s standard dummy text ever since the 1500s,\" \/>\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.diemmeoffice.com\/fr\/tous-les-projets\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tous les projets | Diemme Office\" \/>\n<meta property=\"og:description\" content=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#039;s standard dummy text ever since the 1500s,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/\" \/>\n<meta property=\"og:site_name\" content=\"Diemme Office\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-13T09:07:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.diemmeoffice.com\/wp-content\/uploads\/2020\/04\/Diemme-retina-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"69\" \/>\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=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/tous-les-projets\\\/\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/tous-les-projets\\\/\",\"name\":\"Tous les projets | Diemme Office\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/#website\"},\"datePublished\":\"2020-04-19T09:39:13+00:00\",\"dateModified\":\"2023-03-13T09:07:18+00:00\",\"description\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/tous-les-projets\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/tous-les-projets\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/tous-les-projets\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tous les projets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/\",\"name\":\"Diemme Office\",\"description\":\"Sedute per ufficio e contract\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/#organization\",\"name\":\"DIEMME S.r.l.\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/Diemme-retina.png\",\"contentUrl\":\"https:\\\/\\\/www.diemmeoffice.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/Diemme-retina.png\",\"width\":272,\"height\":47,\"caption\":\"DIEMME S.r.l.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tous les projets | Diemme Office","description":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,","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.diemmeoffice.com\/fr\/tous-les-projets\/","og_locale":"fr_FR","og_type":"article","og_title":"Tous les projets | Diemme Office","og_description":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,","og_url":"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/","og_site_name":"Diemme Office","article_modified_time":"2023-03-13T09:07:18+00:00","og_image":[{"width":400,"height":69,"url":"https:\/\/www.diemmeoffice.com\/wp-content\/uploads\/2020\/04\/Diemme-retina-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/","url":"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/","name":"Tous les projets | Diemme Office","isPartOf":{"@id":"https:\/\/www.diemmeoffice.com\/fr\/#website"},"datePublished":"2020-04-19T09:39:13+00:00","dateModified":"2023-03-13T09:07:18+00:00","description":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,","breadcrumb":{"@id":"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.diemmeoffice.com\/fr\/tous-les-projets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.diemmeoffice.com\/fr\/"},{"@type":"ListItem","position":2,"name":"Tous les projets"}]},{"@type":"WebSite","@id":"https:\/\/www.diemmeoffice.com\/fr\/#website","url":"https:\/\/www.diemmeoffice.com\/fr\/","name":"Diemme Office","description":"Sedute per ufficio e contract","publisher":{"@id":"https:\/\/www.diemmeoffice.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.diemmeoffice.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/www.diemmeoffice.com\/fr\/#organization","name":"DIEMME S.r.l.","url":"https:\/\/www.diemmeoffice.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.diemmeoffice.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/www.diemmeoffice.com\/wp-content\/uploads\/2020\/04\/Diemme-retina.png","contentUrl":"https:\/\/www.diemmeoffice.com\/wp-content\/uploads\/2020\/04\/Diemme-retina.png","width":272,"height":47,"caption":"DIEMME S.r.l."},"image":{"@id":"https:\/\/www.diemmeoffice.com\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/pages\/4358","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/comments?post=4358"}],"version-history":[{"count":0,"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/pages\/4358\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.diemmeoffice.com\/fr\/wp-json\/wp\/v2\/media?parent=4358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}