
				<style>
								.LoadingImg img {
					max-width: 45px;
					max-height: 45px;
					box-shadow:  none;
				}
				
				#fagp_1718 .img-thumbnail {
					padding: 4px;
				}

				#fagp_1718 .b-link-fade .b-wrapper,#fagp_1718 .b-link-fade .b-top-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-flow .b-wrapper,#fagp_1718 .b-link-flow .b-top-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-stroke .b-top-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-stroke .b-bottom-line{
					background: rgba(30, 140, 190, 0.5);
				}

				#fagp_1718 .b-link-box .b-top-line{

					border: 16px solid rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-box .b-bottom-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-stripe .b-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-apart-horisontal .b-top-line,#fagp_1718 .b-link-apart-horisontal .b-top-line-up{
					background: rgba(30, 140, 190, 0.5);

				}
				#fagp_1718 .b-link-apart-horisontal .b-bottom-line,#fagp_1718 .b-link-apart-horisontal .b-bottom-line-up{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-apart-vertical .b-top-line,#fagp_1718 .b-link-apart-vertical .b-top-line-up{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-apart-vertical .b-bottom-line,#fagp_1718 .b-link-apart-vertical .b-bottom-line-up{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1718 .b-link-diagonal .b-line{
					background: rgba(30, 140, 190, 0.5);
				}

				@media (min-width: 992px){
					#fagp_1718 .col-md-6 {
					width: 49.97% !important;
					}
					#fagp_1718 .col-md-4 {
					width: 33.30% !important;
					}
					#fagp_1718 .col-md-3 {
					width: 24.90% !important;
					}
					#fagp_1718 .col-md-2 {
					width: 16.60% !important;
					}
				}
				</style>

				<script type="text/javascript">
				jQuery(function() {
					// Engage gallery.
					jQuery('.gallery1718').flickr1718({
						apiKey: 'e54499be5aedef32dccbf89df9eaf921',
						photosetId: '72157664903218157',
						loadingSpeed: 45,
						photosLimit: 100					});
				});
				
				/*
				* jQuery Flickr Photoset
				* https://github.com/hadalin/jquery-flickr-photoset
				*
				* Copyright 2014, Primož Hadalin
				*
				* Licensed under the MIT license:
				* http://www.opensource.org/licenses/MIT
				*/

				;(function (jQuery, window, document, undefined) {

					'use strict';

					var pluginName = "flickr1718",
						defaults = {
							apiKey: "",
							photosetId: "",
							errorText: "Error generating gallery."
						},
						apiUrl = 'https://api.flickr.com/services/rest/',
						photos = [];

					// The actual plugin constructor
					function Plugin(element, options) {
						this.element = jQuery(element);
						this.settings = jQuery.extend({}, defaults, options);
						this._defaults = defaults;
						this._name = pluginName;

						this._hideSpinner = function() {
							this.element.find('.spinner-wrapper').hide().find('*').hide();
						};

						this._printError = function() {
							this.element.find('.gallery-container').append(jQuery("<div></div>", { "class": "col-lg-12 col-lg-offset-1" })
								.append(jQuery("<div></div>", { "class": "error-wrapper" })
									.append(jQuery("<span></span>", { "class": "label label-danger error" })
										.html(this.settings.errorText))));
						};

						this._flickrAnimate = function() {
							this.element.find('.gallery-container img').each(jQuery.proxy(function(index, el) {
								var image = el;
								setTimeout(function() {
									jQuery(image).parent().fadeIn();
								}, this.settings.loadingSpeed * index);
							}, this));
						};

						this._printGallery = function(photos) {
							var element = this.element.find('.gallery-container');
							jQuery.each(photos, function(key, photo) {
								var img = jQuery('<img>', { 'class': 'thumb img-thumbnail gall-img-responsive', src: photo.thumbnail, });
								element.append(jQuery('<div></div>', { 'class': 'col-md-4 col-sm-6 wl-gallery' })
								.append(jQuery('<div></div>', { 'class': 'b-link-fade b-animate-go' })
									.append(jQuery('<a></a>', { 'data-lightbox-gallery': 'enigma_lightbox', 'class': 'nivoz', title: photo.title, href: photo.href  }).hide()
									.append(img)
									.append(jQuery('<div></div>', { 'class': 'b-wrapper ' })))));
							});

							element.imagesLoaded()
								.done(jQuery.proxy(this._flickrAnimate, this))
								.always(jQuery.proxy(this._hideSpinner, this));
						};

						this._flickrPhotoset = function(photoset) {
							var _this = this;
							
							photos[photoset.id] = [];
							jQuery.each(photoset.photo, function(key, photo) {
								// Limit number of photos.
								if(key >= _this.settings.photosLimit) {
									return false;
								}

								photos[photoset.id][key] = {
									thumbnail: 'http://farm' + photo.farm + '.static.flickr.com/' + photo.server + '/' + photo.id + '_' + photo.secret + '_n.jpg',
									href: 'http://farm' + photo.farm + '.static.flickr.com/' + photo.server + '/' + photo.id + '_' + photo.secret + '_b.jpg',
									title: photo.title
								};
							});

							this._printGallery(photos[photoset.id]);
						};

						this._onFlickrResponse = function(response) {
							if(response.stat === "ok") {
								 this._flickrPhotoset(response.photoset);
							}
							else {
								this._hideSpinner();
								this._printError();
							}
						};

						this._flickrRequest = function(method, data) {
							var url = apiUrl + "?format=json&jsoncallback=?&method=" + method + "&api_key=" + this.settings.apiKey;

							jQuery.each(data, function(key, value) {
								url += "&" + key + "=" + value;
							});

							jQuery.ajax({
								dataType: "json",
								url: url,
								context: this,
								success: this._onFlickrResponse
							});
						};

						this._flickrInit = function () {
							this._flickrRequest('flickr.photosets.getPhotos', {
								photoset_id: this.settings.photosetId
							});
						};

						// Init
						this.init();
					}

					Plugin.prototype = {
						init: function () {
							this._flickrInit();
						}
					};

					// Wrapper
					jQuery.fn[pluginName] = function (options) {
						this.each(function () {
							if (!jQuery.data(this, "plugin_" + pluginName)) {
								jQuery.data(this, "plugin_" + pluginName, new Plugin(this, options));
							}
						});

						// Chain
						return this;
					};

				})(jQuery, window, document);
				</script>
				<!-- Gallery Thumbnails -->
				<div style="margin-bottom: 25px; padding-top: 20px; overflow: auto; display: block;">
										<h3 style="font-size: 18px; border-bottom: 2px solid #F1F1F1; text-align:center;"></h3>
										<div class="gallery1718" id="fagp_1718">
						<div class="col-xs-12 spinner-wrapper">
							<div class="LoadingImg"><img src="https://www.exposeprod.com/el/wp-content/plugins/flickr-album-gallery-pro/img/loading.gif" /></div>
						</div>
													<div  class="gallery-container  gallery1"></div>
											</div>
				</div>
						
		<!-- Nivo Box -->
				<script>
		jQuery(window).load(function() {
				// NIVO-LIGHTBOX
				jQuery('a.nivoz').nivoLightbox({
				effect: 'slideDown',  
			});
		});
		</script>
				
		<!-- Photo box-->
				
		
		<!-- Smooth Box-->
				
		<!-- Swipe Box-->
				
		<!-- Ion box-->
				
		<!-- Fancy box-->
				
		<!-- Hover Animation Effect JS-->
		<script>
		jQuery(window).load(function() {
			/* Slide */
			jQuery('#slide a').each(function(index, element) {
				jQuery(this).hoverdir();
			});

			/* Stroke */
			jQuery('.b-link-stroke').prepend('<div class="b-top-line"></div>');
			jQuery('.b-link-stroke').prepend('<div class="b-bottom-line"></div>');

			/* Twist */
			jQuery('.b-link-twist').prepend('<div class="b-top-line"><b></b></div>');
			jQuery('.b-link-twist').prepend('<div class="b-bottom-line"><b></b></div>');
			jQuery('.b-link-twist img').each(function(index, element) {
				jQuery(this).css('visibility','hidden');
				jQuery(this).parent().find('.b-top-line, .b-bottom-line').css('background-image','url('+jQuery(this).attr('src')+')');
			});

			/* Flip */
			jQuery('.b-link-flip').prepend('<div class="b-top-line"><b></b></div>');
			jQuery('.b-link-flip').prepend('<div class="b-bottom-line"><b></b></div>');
			jQuery('.b-link-flip img').each(function(index, element) {
				jQuery(this).css('visibility','hidden');
				jQuery(this).parent().find('.b-top-line, .b-bottom-line').css('background-image','url('+jQuery(this).attr('src')+')');

			});

			/* Fade */
			jQuery('.b-link-fade').each(function(index, element) {
				jQuery(this).append('<div class="b-top-line"></div>')
			});

			/* Flow */
			jQuery('.b-link-flow').each(function(index, element) {
				jQuery(this).append('<div class="b-top-line"></div>')
			});

			/* Box */
			jQuery('.b-link-box').prepend('<div class="b-top-line"></div>');
			jQuery('.b-link-box').prepend('<div class="b-bottom-line"></div>');

			/* Stripe */
			jQuery('.b-link-stripe').each(function(index, element) {
				jQuery(this).prepend('<div class="b-line b-line1"></div><div class="b-line b-line2"></div><div class="b-line b-line3"></div><div class="b-line b-line4"></div><div class="b-line b-line5"></div>');
			});

			/* Apart */
			jQuery('.b-link-apart-vertical, .b-link-apart-horisontal').each(function(index, element) {
				jQuery(this).prepend('<div class="b-top-line"></div><div class="b-bottom-line"></div><div class="b-top-line-up"></div><div class="b-bottom-line-up"></div>');
			});

			/* diagonal */
			jQuery('.b-link-diagonal').each(function(index, element) {
				jQuery(this).prepend('<div class="b-line-group"><div class="b-line b-line1"></div><div class="b-line b-line2"></div><div class="b-line b-line3"></div><div class="b-line b-line4"></div><div class="b-line b-line5"></div></div>');
			});

			setTimeout("calculate_margin();", 100);
		});
		</script>
		<div style="font-size: small; margin-top:10px; float: left; display:none;">
			Flickr Album Gallery Pro Powered By: <a href="http://www.weblizar.com/" target="_blank">Weblizar</a>
		</div>
		{"id":1719,"date":"2018-03-21T15:44:16","date_gmt":"2018-03-21T13:44:16","guid":{"rendered":"https:\/\/www.exposeprod.com\/?page_id=1719"},"modified":"2019-06-17T13:41:24","modified_gmt":"2019-06-17T10:41:24","slug":"architecture-products","status":"publish","type":"page","link":"https:\/\/www.exposeprod.com\/el\/architecture-products\/","title":{"rendered":"Architecture &#8211; Products"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1719","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<link rel=\"canonical\" href=\"https:\/\/www.exposeprod.com\/el\/?p=1718\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"el_GR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4 | \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\" - \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.exposeprod.com\/el\/?p=1718\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2018-03-21T13:42:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2018-04-18T05:56:17+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\" - \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/?p=1718#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.exposeprod.com\\\/el\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/architecture-products\\\/#listItem\",\"name\":\"Architecture &#8211; Products\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/architecture-products\\\/#listItem\",\"position\":2,\"name\":\"Architecture &#8211; Products\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/#organization\",\"name\":\"\\u03a0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u0395\\u03c4\\u03b1\\u03b9\\u03c1\\u03b9\\u03ba\\u03cc \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u03a4\\u03b7\\u03bb\\u03b5\\u03bf\\u03c0\\u03c4\\u03b9\\u03ba\\u03ae \\u03c0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae | \\u0394\\u03b9\\u03b1\\u03c6\\u03b7\\u03bc\\u03b9\\u03c3\\u03c4\\u03b9\\u03ba\\u03ac \\u03c3\\u03c0\\u03bf\\u03c4\",\"description\":\"\\u03a0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u0395\\u03c4\\u03b1\\u03b9\\u03c1\\u03b9\\u03ba\\u03cc \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u03a4\\u03b7\\u03bb\\u03b5\\u03bf\\u03c0\\u03c4\\u03b9\\u03ba\\u03ae \\u03c0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae | \\u0394\\u03b9\\u03b1\\u03c6\\u03b7\\u03bc\\u03b9\\u03c3\\u03c4\\u03b9\\u03ba\\u03ac \\u03c3\\u03c0\\u03bf\\u03c4\",\"url\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/?p=1718#webpage\",\"url\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/?p=1718\",\"name\":\"- \\u03a0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u0395\\u03c4\\u03b1\\u03b9\\u03c1\\u03b9\\u03ba\\u03cc \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u03a4\\u03b7\\u03bb\\u03b5\\u03bf\\u03c0\\u03c4\\u03b9\\u03ba\\u03ae \\u03c0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae | \\u0394\\u03b9\\u03b1\\u03c6\\u03b7\\u03bc\\u03b9\\u03c3\\u03c4\\u03b9\\u03ba\\u03ac \\u03c3\\u03c0\\u03bf\\u03c4\",\"inLanguage\":\"el\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/?p=1718#breadcrumblist\"},\"datePublished\":\"2018-03-21T15:42:52+02:00\",\"dateModified\":\"2018-04-18T08:56:17+03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/#website\",\"url\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/\",\"name\":\"\\u03a0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u0395\\u03c4\\u03b1\\u03b9\\u03c1\\u03b9\\u03ba\\u03cc \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u03a4\\u03b7\\u03bb\\u03b5\\u03bf\\u03c0\\u03c4\\u03b9\\u03ba\\u03ae \\u03c0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae | \\u0394\\u03b9\\u03b1\\u03c6\\u03b7\\u03bc\\u03b9\\u03c3\\u03c4\\u03b9\\u03ba\\u03ac \\u03c3\\u03c0\\u03bf\\u03c4\",\"description\":\"\\u03a0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u0395\\u03c4\\u03b1\\u03b9\\u03c1\\u03b9\\u03ba\\u03cc \\u0392\\u03af\\u03bd\\u03c4\\u03b5\\u03bf | \\u03a4\\u03b7\\u03bb\\u03b5\\u03bf\\u03c0\\u03c4\\u03b9\\u03ba\\u03ae \\u03c0\\u03b1\\u03c1\\u03b1\\u03b3\\u03c9\\u03b3\\u03ae | \\u0394\\u03b9\\u03b1\\u03c6\\u03b7\\u03bc\\u03b9\\u03c3\\u03c4\\u03b9\\u03ba\\u03ac \\u03c3\\u03c0\\u03bf\\u03c4\",\"inLanguage\":\"el\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.exposeprod.com\\\/el\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":" - \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","description":"","canonical_url":"https:\/\/www.exposeprod.com\/el\/?p=1718","robots":"","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.exposeprod.com\/el\/?p=1718#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.exposeprod.com\/el#listItem","position":1,"name":"Home","item":"https:\/\/www.exposeprod.com\/el","nextItem":{"@type":"ListItem","@id":"https:\/\/www.exposeprod.com\/el\/architecture-products\/#listItem","name":"Architecture &#8211; Products"}},{"@type":"ListItem","@id":"https:\/\/www.exposeprod.com\/el\/architecture-products\/#listItem","position":2,"name":"Architecture &#8211; Products","previousItem":{"@type":"ListItem","@id":"https:\/\/www.exposeprod.com\/el#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/www.exposeprod.com\/el\/#organization","name":"\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","description":"\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","url":"https:\/\/www.exposeprod.com\/el\/"},{"@type":"WebPage","@id":"https:\/\/www.exposeprod.com\/el\/?p=1718#webpage","url":"https:\/\/www.exposeprod.com\/el\/?p=1718","name":"- \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","inLanguage":"el","isPartOf":{"@id":"https:\/\/www.exposeprod.com\/el\/#website"},"breadcrumb":{"@id":"https:\/\/www.exposeprod.com\/el\/?p=1718#breadcrumblist"},"datePublished":"2018-03-21T15:42:52+02:00","dateModified":"2018-04-18T08:56:17+03:00"},{"@type":"WebSite","@id":"https:\/\/www.exposeprod.com\/el\/#website","url":"https:\/\/www.exposeprod.com\/el\/","name":"\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","description":"\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","inLanguage":"el","publisher":{"@id":"https:\/\/www.exposeprod.com\/el\/#organization"}}]},"og:locale":"el_GR","og:site_name":"\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4 | \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","og:type":"article","og:title":" - \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4","og:url":"https:\/\/www.exposeprod.com\/el\/?p=1718","article:published_time":"2018-03-21T13:42:52+00:00","article:modified_time":"2018-04-18T05:56:17+00:00","twitter:card":"summary","twitter:title":" - \u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u0395\u03c4\u03b1\u03b9\u03c1\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf | \u03a4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae | \u0394\u03b9\u03b1\u03c6\u03b7\u03bc\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c3\u03c0\u03bf\u03c4"},"aioseo_meta_data":{"post_id":"1719","title":"Corporate Photography Greece | #site_title","description":"Corporate Photography Greece Tracking your picture along its journey, we try to &quot;push&quot; and present it to more future clients.","keywords":[{"label":"Corporate Photography Greece","value":"Corporate Photography Greece"},{"label":"Corporate Photography","value":"Corporate Photography"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-06 15:07:53","updated":"2025-08-21 05:43:42","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.exposeprod.com\/el\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tArchitecture \u2013 Products\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.exposeprod.com\/el"},{"label":"Architecture &#8211; Products","link":"https:\/\/www.exposeprod.com\/el\/architecture-products\/"}],"_links":{"self":[{"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages\/1719","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/comments?post=1719"}],"version-history":[{"count":2,"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages\/1719\/revisions"}],"predecessor-version":[{"id":1724,"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages\/1719\/revisions\/1724"}],"wp:attachment":[{"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/media?parent=1719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}