
<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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</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/"> SEE PROJECT</a>
                </div>
                </div>
    {"id":3111,"date":"2020-04-19T11:39:13","date_gmt":"2020-04-19T09:39:13","guid":{"rendered":"https:\/\/www.diemmeoffice.com\/?page_id=3111"},"modified":"2023-03-13T10:02:27","modified_gmt":"2023-03-13T09:02:27","slug":"all-projects","status":"publish","type":"page","link":"https:\/\/www.diemmeoffice.com\/en\/all-projects\/","title":{"rendered":"All the projects"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row disable_element=&#8221;yes&#8221;][vc_column offset=&#8221;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8&#8243;][vc_column_text el_class=&#8221;lead&#8221;]Eng-Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;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=&#8221;stretch_row&#8221; bg_type=&#8221;bg_color&#8221; bg_color_value=&#8221;#f6f6f6&#8243;][vc_column][vc_custom_heading text=&#8221;featured.&#8221; font_container=&#8221;tag:h4|text_align:left|color:%23040404&#8243; use_theme_fonts=&#8221;yes&#8221;][vc_empty_space][vc_basic_grid post_type=&#8221;progetti&#8221; max_items=&#8221;-1&#8243; style=&#8221;pagination&#8221; items_per_page=&#8221;4&#8243; element_width=&#8221;6&#8243; gap=&#8221;35&#8243; paging_design=&#8221;pagination_square_dark&#8221; item=&#8221;4458&#8243; grid_id=&#8221;vc_gid:1678697992245-176230c7-ad7a-10&#8243; taxonomies=&#8221;76&#8243;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;70px&#8221;][vc_custom_heading text=&#8221;other projects.&#8221; font_container=&#8221;tag:h4|text_align:left|color:%23040404&#8243; use_theme_fonts=&#8221;yes&#8221;][vc_empty_space][vc_basic_grid post_type=&#8221;progetti&#8221; max_items=&#8221;-1&#8243; style=&#8221;pagination&#8221; items_per_page=&#8221;8&#8243; element_width=&#8221;6&#8243; gap=&#8221;35&#8243; paging_design=&#8221;pagination_square_dark&#8221; item=&#8221;3171&#8243; grid_id=&#8221;vc_gid:1678697992246-193d9fbd-0c2a-3&#8243; el_class=&#8221;listaProgetti&#8221; taxonomies=&#8221;195&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1678697998783{background-color: #f6f6f6 !important;}&#8221;][vc_column][vc_empty_space height=&#8221;70px&#8221;][vc_custom_heading text=&#8221;where we have already worked.&#8221; font_container=&#8221;tag:h4|text_align:left|color:%23040404&#8243; use_theme_fonts=&#8221;yes&#8221;][vc_empty_space height=&#8221;30px&#8221;][vc_column_text]<strong>Welcome to our world map of Diemme office chair design. <\/strong><br \/>\nWe proudly introduce you to the places where our craftsmanship know-how has created the perfect furniture for functional and welcoming work environments, all over the world.<br \/>\nThrough our passion for quality and design, we have brought Italian excellence to every corner of the planet, working with global partners who share our vision.<br \/>\nExplore the map and be won over by the functional beauty and quality of our chairs that represent the meeting of craftsmanship and advanced technology, wherever you are in the world.[\/vc_column_text][vc_row_inner][vc_column_inner][\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;70px&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row disable_element=&#8221;yes&#8221;][vc_column offset=&#8221;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8&#8243;][vc_column_text el_class=&#8221;lead&#8221;]Eng-Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;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-3111","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>All the projects | Diemme Office<\/title>\n<meta name=\"description\" content=\"Eng-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\" \/>\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\/en\/all-projects\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"All the projects | Diemme Office\" \/>\n<meta property=\"og:description\" content=\"Eng-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\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.diemmeoffice.com\/en\/all-projects\/\" \/>\n<meta property=\"og:site_name\" content=\"Diemme Office\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-13T09:02:27+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=\"Est. reading time\" \/>\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\\\/en\\\/all-projects\\\/\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/all-projects\\\/\",\"name\":\"All the projects | Diemme Office\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/#website\"},\"datePublished\":\"2020-04-19T09:39:13+00:00\",\"dateModified\":\"2023-03-13T09:02:27+00:00\",\"description\":\"Eng-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\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/all-projects\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/all-projects\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/all-projects\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"All the projects\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/\",\"name\":\"Diemme Office\",\"description\":\"Sedute per ufficio e contract\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/#organization\",\"name\":\"DIEMME S.r.l.\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/en\\\/#\\\/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\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"All the projects | Diemme Office","description":"Eng-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","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\/en\/all-projects\/","og_locale":"en_US","og_type":"article","og_title":"All the projects | Diemme Office","og_description":"Eng-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","og_url":"https:\/\/www.diemmeoffice.com\/en\/all-projects\/","og_site_name":"Diemme Office","article_modified_time":"2023-03-13T09:02:27+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":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.diemmeoffice.com\/en\/all-projects\/","url":"https:\/\/www.diemmeoffice.com\/en\/all-projects\/","name":"All the projects | Diemme Office","isPartOf":{"@id":"https:\/\/www.diemmeoffice.com\/en\/#website"},"datePublished":"2020-04-19T09:39:13+00:00","dateModified":"2023-03-13T09:02:27+00:00","description":"Eng-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","breadcrumb":{"@id":"https:\/\/www.diemmeoffice.com\/en\/all-projects\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.diemmeoffice.com\/en\/all-projects\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.diemmeoffice.com\/en\/all-projects\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.diemmeoffice.com\/en\/"},{"@type":"ListItem","position":2,"name":"All the projects"}]},{"@type":"WebSite","@id":"https:\/\/www.diemmeoffice.com\/en\/#website","url":"https:\/\/www.diemmeoffice.com\/en\/","name":"Diemme Office","description":"Sedute per ufficio e contract","publisher":{"@id":"https:\/\/www.diemmeoffice.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.diemmeoffice.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.diemmeoffice.com\/en\/#organization","name":"DIEMME S.r.l.","url":"https:\/\/www.diemmeoffice.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.diemmeoffice.com\/en\/#\/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\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/pages\/3111","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/comments?post=3111"}],"version-history":[{"count":0,"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/pages\/3111\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.diemmeoffice.com\/en\/wp-json\/wp\/v2\/media?parent=3111"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}