
<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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</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/"> SIEHE PROJEKT</a>
                </div>
                </div>
    {"id":4360,"date":"2020-04-19T11:39:13","date_gmt":"2020-04-19T09:39:13","guid":{"rendered":"https:\/\/www.diemmeoffice.com\/?page_id=4360"},"modified":"2023-03-13T10:02:39","modified_gmt":"2023-03-13T09:02:39","slug":"alle-projekte","status":"publish","type":"page","link":"https:\/\/www.diemmeoffice.com\/de\/alle-projekte\/","title":{"rendered":"Alle Projekte"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row disable_element=&#8220;yes&#8220;][vc_column offset=&#8220;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8&#8243;][vc_column_text el_class=&#8220;lead&#8220;]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=&#8220;stretch_row&#8220; bg_type=&#8220;bg_color&#8220; bg_color_value=&#8220;#f6f6f6&#8243;][vc_column][vc_custom_heading text=&#8220;featured.&#8220; font_container=&#8220;tag:h4|text_align:left|color:%23040404&#8243; use_theme_fonts=&#8220;yes&#8220;][vc_empty_space][vc_basic_grid post_type=&#8220;progetti&#8220; max_items=&#8220;-1&#8243; style=&#8220;pagination&#8220; items_per_page=&#8220;4&#8243; element_width=&#8220;6&#8243; gap=&#8220;35&#8243; paging_design=&#8220;pagination_square_dark&#8220; item=&#8220;4466&#8243; grid_id=&#8220;vc_gid:1678698066440-fb20c28e-d64e-4&#8243; taxonomies=&#8220;194&#8243;][\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8220;70px&#8220;][vc_custom_heading text=&#8220;altri progetti de.&#8220; font_container=&#8220;tag:h4|text_align:left|color:%23040404&#8243; use_theme_fonts=&#8220;yes&#8220;][vc_empty_space][vc_basic_grid post_type=&#8220;progetti&#8220; max_items=&#8220;-1&#8243; style=&#8220;pagination&#8220; items_per_page=&#8220;8&#8243; element_width=&#8220;6&#8243; gap=&#8220;35&#8243; paging_design=&#8220;pagination_square_dark&#8220; item=&#8220;3171&#8243; grid_id=&#8220;vc_gid:1678698066441-b79aed3c-fcd7-1&#8243; el_class=&#8220;listaProgetti&#8220; taxonomies=&#8220;197&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row&#8220; css=&#8220;.vc_custom_1678698033513{background-color: #f6f6f6 !important;}&#8220;][vc_column][vc_empty_space height=&#8220;70px&#8220;][vc_custom_heading text=&#8220;wo wir schon gearbeitet haben.&#8220; font_container=&#8220;tag:h4|text_align:left|color:%23040404&#8243; use_theme_fonts=&#8220;yes&#8220;][vc_empty_space height=&#8220;30px&#8220;][vc_column_text]<strong>Willkommen auf unserer Diemme B\u00fcrostuhl-Design-Weltkarte. <\/strong><br \/>\nWir sind stolz darauf, Ihnen die Orte zu pr\u00e4sentieren, an denen unser handwerkliches Know-how die perfekten M\u00f6bel f\u00fcr funktionale und einladende Arbeitspl\u00e4tze auf der ganzen Welt geschaffen hat.<br \/>\nDurch unsere Leidenschaft f\u00fcr Qualit\u00e4t und Design haben wir italienische Exzellenz in jeden Winkel der Erde gebracht, in Zusammenarbeit mit globalen Partnern, die unsere Vision teilen.<br \/>\nEntdecken Sie die Karte und lassen Sie sich von der funktionalen Sch\u00f6nheit und Qualit\u00e4t unserer St\u00fchle \u00fcberzeugen, die das Zusammentreffen von Handwerkskunst und fortschrittlicher Technologie repr\u00e4sentieren, wo immer Sie sich auf der Welt befinden.[\/vc_column_text][vc_row_inner][vc_column_inner][\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8220;70px&#8220;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row disable_element=&#8220;yes&#8220;][vc_column offset=&#8220;vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8&#8243;][vc_column_text el_class=&#8220;lead&#8220;]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-4360","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>Alle Projekte | 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\/de\/alle-projekte\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Alle Projekte | 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\/de\/alle-projekte\/\" \/>\n<meta property=\"og:site_name\" content=\"Diemme Office\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-13T09:02:39+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=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"2\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/alle-projekte\\\/\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/alle-projekte\\\/\",\"name\":\"Alle Projekte | Diemme Office\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/#website\"},\"datePublished\":\"2020-04-19T09:39:13+00:00\",\"dateModified\":\"2023-03-13T09:02:39+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\\\/de\\\/alle-projekte\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/alle-projekte\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/alle-projekte\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Alle Projekte\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/\",\"name\":\"Diemme Office\",\"description\":\"Sedute per ufficio e contract\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/#organization\",\"name\":\"DIEMME S.r.l.\",\"url\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.diemmeoffice.com\\\/de\\\/#\\\/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\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Alle Projekte | 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\/de\/alle-projekte\/","og_locale":"de_DE","og_type":"article","og_title":"Alle Projekte | 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\/de\/alle-projekte\/","og_site_name":"Diemme Office","article_modified_time":"2023-03-13T09:02:39+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":{"Gesch\u00e4tzte Lesezeit":"2\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.diemmeoffice.com\/de\/alle-projekte\/","url":"https:\/\/www.diemmeoffice.com\/de\/alle-projekte\/","name":"Alle Projekte | Diemme Office","isPartOf":{"@id":"https:\/\/www.diemmeoffice.com\/de\/#website"},"datePublished":"2020-04-19T09:39:13+00:00","dateModified":"2023-03-13T09:02:39+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\/de\/alle-projekte\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.diemmeoffice.com\/de\/alle-projekte\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.diemmeoffice.com\/de\/alle-projekte\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.diemmeoffice.com\/de\/"},{"@type":"ListItem","position":2,"name":"Alle Projekte"}]},{"@type":"WebSite","@id":"https:\/\/www.diemmeoffice.com\/de\/#website","url":"https:\/\/www.diemmeoffice.com\/de\/","name":"Diemme Office","description":"Sedute per ufficio e contract","publisher":{"@id":"https:\/\/www.diemmeoffice.com\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.diemmeoffice.com\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/www.diemmeoffice.com\/de\/#organization","name":"DIEMME S.r.l.","url":"https:\/\/www.diemmeoffice.com\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.diemmeoffice.com\/de\/#\/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\/de\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/pages\/4360","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/comments?post=4360"}],"version-history":[{"count":0,"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/pages\/4360\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.diemmeoffice.com\/de\/wp-json\/wp\/v2\/media?parent=4360"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}