
				<style>
								.LoadingImg img {
					max-width: 45px;
					max-height: 45px;
					box-shadow:  none;
				}
				
				#fagp_1722 .img-thumbnail {
					padding: 4px;
				}

				#fagp_1722 .b-link-fade .b-wrapper,#fagp_1722 .b-link-fade .b-top-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-flow .b-wrapper,#fagp_1722 .b-link-flow .b-top-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-stroke .b-top-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-stroke .b-bottom-line{
					background: rgba(30, 140, 190, 0.5);
				}

				#fagp_1722 .b-link-box .b-top-line{

					border: 16px solid rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-box .b-bottom-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-stripe .b-line{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-apart-horisontal .b-top-line,#fagp_1722 .b-link-apart-horisontal .b-top-line-up{
					background: rgba(30, 140, 190, 0.5);

				}
				#fagp_1722 .b-link-apart-horisontal .b-bottom-line,#fagp_1722 .b-link-apart-horisontal .b-bottom-line-up{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-apart-vertical .b-top-line,#fagp_1722 .b-link-apart-vertical .b-top-line-up{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-apart-vertical .b-bottom-line,#fagp_1722 .b-link-apart-vertical .b-bottom-line-up{
					background: rgba(30, 140, 190, 0.5);
				}
				#fagp_1722 .b-link-diagonal .b-line{
					background: rgba(30, 140, 190, 0.5);
				}

				@media (min-width: 992px){
					#fagp_1722 .col-md-6 {
					width: 49.97% !important;
					}
					#fagp_1722 .col-md-4 {
					width: 33.30% !important;
					}
					#fagp_1722 .col-md-3 {
					width: 24.90% !important;
					}
					#fagp_1722 .col-md-2 {
					width: 16.60% !important;
					}
				}
				</style>

				<script type="text/javascript">
				jQuery(function() {
					// Engage gallery.
					jQuery('.gallery1722').flickr1722({
						apiKey: 'e54499be5aedef32dccbf89df9eaf921',
						photosetId: '72157666944103668',
						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 = "flickr1722",
						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="gallery1722" id="fagp_1722">
						<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":1721,"date":"2018-03-21T15:45:35","date_gmt":"2018-03-21T13:45:35","guid":{"rendered":"https:\/\/www.exposeprod.com\/?page_id=1721"},"modified":"2019-06-17T13:49:55","modified_gmt":"2019-06-17T10:49:55","slug":"corporate-events","status":"publish","type":"page","link":"https:\/\/www.exposeprod.com\/el\/corporate-events\/","title":{"rendered":"Corporate Events"},"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-1721","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages\/1721","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=1721"}],"version-history":[{"count":1,"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages\/1721\/revisions"}],"predecessor-version":[{"id":1723,"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/pages\/1721\/revisions\/1723"}],"wp:attachment":[{"href":"https:\/\/www.exposeprod.com\/el\/wp-json\/wp\/v2\/media?parent=1721"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}