{"id":17,"date":"2020-01-31T14:51:26","date_gmt":"2020-01-31T14:51:26","guid":{"rendered":"https:\/\/gopalkrishnagirvi.org\/?page_id=17"},"modified":"2020-06-08T08:00:14","modified_gmt":"2020-06-08T08:00:14","slug":"gallery","status":"publish","type":"page","link":"https:\/\/gopalkrishnagirvi.org\/en\/gallery\/","title":{"rendered":"Gallery"},"content":{"rendered":"<p><\/p>\n<hr class=\"wp-block-separator\"\/>\n<\/p>\n<p><\/p>\n\t\t\t\t\t<script type=\"text\/javascript\">\n\t\t\t\tjQuery(window).on(\"load\",function(){\n\t\t\t\t(function(window){\n\t\t\t\t\tvar slice=Array.prototype.slice;function noop(){}function defineBridget($){if(!$)return;function addOptionMethod(PluginClass){if(PluginClass.prototype.option)return;PluginClass.prototype.option=function(opts){if(!$.isPlainObject(opts))return;this.options=$.extend(true,this.options,opts);};}var logError=typeof console==='undefined'?noop:function(message){console.error(message);};function bridge(namespace,PluginClass){$.fn[namespace]=function(options){if(typeof options==='string'){var args=slice.call(arguments,1);for(var i=0,len=this.length;i<len;i++){var elem=this[i];var instance=$.data(elem,namespace);if(!instance){logError(\"cannot call methods on \"+namespace+\" prior to initialization; \"+\"attempted to call '\"+options+\"'\");continue;}if(!$.isFunction(instance[options])||options.charAt(0)==='_'){logError(\"no such method '\"+options+\"' for \"+namespace+\" instance\");continue;}var returnValue=instance[options].apply(instance,args);if(returnValue!==undefined)return returnValue;}return this;}else return this.each(function(){var instance=$.data(this,namespace);if(instance){instance.option(options);instance._init();}else{instance=new PluginClass(this,options);$.data(this,namespace,instance);}});};}$.bridget=function(namespace,PluginClass){addOptionMethod(PluginClass);bridge(namespace,PluginClass);};return $.bridget;}if(typeof define==='function'&&define.amd)define('jquery-bridget\/jquery.bridget',['jquery'],defineBridget);else if(typeof exports==='object')defineBridget(require('jquery'));else defineBridget(window.jQuery);})(window);(function(window){var docElem=document.documentElement;var bind=function(){};function getIEEvent(obj){var event=window.event;event.target=event.target||event.srcElement||obj;return event;}if(docElem.addEventListener)bind=function(obj,type,fn){obj.addEventListener(type,fn,false);};else if(docElem.attachEvent)bind=function(obj,type,fn){obj[type+fn]=fn.handleEvent?function(){var event=getIEEvent(obj);fn.handleEvent.call(fn,event);}:function(){var event=getIEEvent(obj);fn.call(obj,event);};obj.attachEvent(\"on\"+type,obj[type+fn]);};var unbind=function(){};if(docElem.removeEventListener)unbind=function(obj,type,fn){obj.removeEventListener(type,fn,false);};else if(docElem.detachEvent)unbind=function(obj,type,fn){obj.detachEvent(\"on\"+type,obj[type+fn]);try{delete obj[type+fn];}catch(err){obj[type+fn]=undefined;}};var eventie={bind:bind,unbind:unbind};if(typeof define==='function'&&define.amd)define('eventie\/eventie',eventie);else if(typeof exports==='object')module.exports=eventie;else window.eventie=eventie;})(window);;(function(){'use strict';function EventEmitter(){}var proto=EventEmitter.prototype;var exports=this;var originalGlobalValue=exports.EventEmitter;function indexOfListener(listeners,listener){var i=listeners.length;while(i--)if(listeners[i].listener===listener)return i;return -1;}function alias(name){return function aliasClosure(){return this[name].apply(this,arguments);};}proto.getListeners=function getListeners(evt){var events=this._getEvents();var response;var key;if(evt instanceof RegExp){response={};for(key in events)if(events.hasOwnProperty(key)&&evt.test(key))response[key]=events[key];}else response=events[evt]||(events[evt]=[]);return response;};proto.flattenListeners=function flattenListeners(listeners){var flatListeners=[];var i;for(i=0;i<listeners.length;i+=1)flatListeners.push(listeners[i].listener);return flatListeners;};proto.getListenersAsObject=function getListenersAsObject(evt){var listeners=this.getListeners(evt);var response;if(listeners instanceof Array){response={};response[evt]=listeners;}return response||listeners;};proto.addListener=function addListener(evt,listener){var listeners=this.getListenersAsObject(evt);var listenerIsWrapped=typeof listener==='object';var key;for(key in listeners)if(listeners.hasOwnProperty(key)&&indexOfListener(listeners[key],listener)===-1)listeners[key].push(listenerIsWrapped?listener:{listener:listener,once:false});return this;};proto.on=alias('addListener');proto.addOnceListener=function addOnceListener(evt,listener){return this.addListener(evt,{listener:listener,once:true});};proto.once=alias('addOnceListener');proto.defineEvent=function defineEvent(evt){this.getListeners(evt);return this;};proto.defineEvents=function defineEvents(evts){for(var i=0;i<evts.length;i+=1)this.defineEvent(evts[i]);return this;};proto.removeListener=function removeListener(evt,listener){var listeners=this.getListenersAsObject(evt);var index;var key;for(key in listeners)if(listeners.hasOwnProperty(key)){index=indexOfListener(listeners[key],listener);if(index!==-1)listeners[key].splice(index,1);}return this;};proto.off=alias('removeListener');proto.addListeners=function addListeners(evt,listeners){return this.manipulateListeners(false,evt,listeners);};proto.removeListeners=function removeListeners(evt,listeners){return this.manipulateListeners(true,evt,listeners);};proto.manipulateListeners=function manipulateListeners(remove,evt,listeners){var i;var value;var single=remove?this.removeListener:this.addListener;var multiple=remove?this.removeListeners:this.addListeners;if(typeof evt==='object'&&!(evt instanceof RegExp)){for(i in evt)if(evt.hasOwnProperty(i)&&(value=evt[i]))if(typeof value==='function')single.call(this,i,value);else multiple.call(this,i,value);}else{i=listeners.length;while(i--)single.call(this,evt,listeners[i]);}return this;};proto.removeEvent=function removeEvent(evt){var type=typeof evt;var events=this._getEvents();var key;if(type==='string')delete events[evt];else if(evt instanceof RegExp){for(key in events)if(events.hasOwnProperty(key)&&evt.test(key))delete events[key];}else delete this._events;return this;};proto.removeAllListeners=alias('removeEvent');proto.emitEvent=function emitEvent(evt,args){var listeners=this.getListenersAsObject(evt);var listener;var i;var key;var response;for(key in listeners)if(listeners.hasOwnProperty(key)){i=listeners[key].length;while(i--){listener=listeners[key][i];if(listener.once===true)this.removeListener(evt,listener.listener);response=listener.listener.apply(this,args||[]);if(response===this._getOnceReturnValue())this.removeListener(evt,listener.listener);}}return this;};proto.trigger=alias('emitEvent');proto.emit=function emit(evt){var args=Array.prototype.slice.call(arguments,1);return this.emitEvent(evt,args);};proto.setOnceReturnValue=function setOnceReturnValue(value){this._onceReturnValue=value;return this;};proto._getOnceReturnValue=function _getOnceReturnValue(){if(this.hasOwnProperty('_onceReturnValue'))return this._onceReturnValue;else return true;};proto._getEvents=function _getEvents(){return this._events||(this._events={});};EventEmitter.noConflict=function noConflict(){exports.EventEmitter=originalGlobalValue;return EventEmitter;};if(typeof define==='function'&&define.amd)define('eventEmitter\/EventEmitter',[],function(){return EventEmitter;});else if(typeof module==='object'&&module.exports)module.exports=EventEmitter;else exports.EventEmitter=EventEmitter;}.call(this));(function(window){var prefixes='Webkit Moz ms Ms O'.split(' ');var docElemStyle=document.documentElement.style;function getStyleProperty(propName){if(!propName)return;if(typeof docElemStyle[propName]==='string')return propName;propName=propName.charAt(0).toUpperCase()+propName.slice(1);var prefixed;for(var i=0,len=prefixes.length;i<len;i++){prefixed=prefixes[i]+propName;if(typeof docElemStyle[prefixed]==='string')return prefixed;}}if(typeof define==='function'&&define.amd)define('get-style-property\/get-style-property',[],function(){return getStyleProperty;});else if(typeof exports==='object')module.exports=getStyleProperty;else window.getStyleProperty=getStyleProperty;})(window);(function(window,undefined){function getStyleSize(value){var num=parseFloat(value);var isValid=value.indexOf('%')===-1&&!isNaN(num);return isValid&&num;}function noop(){}var logError=typeof console==='undefined'?noop:function(message){console.error(message);};var measurements=['paddingLeft','paddingRight','paddingTop','paddingBottom','marginLeft','marginRight','marginTop','marginBottom','borderLeftWidth','borderRightWidth','borderTopWidth','borderBottomWidth'];function getZeroSize(){var size={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0};for(var i=0,len=measurements.length;i<len;i++){var measurement=measurements[i];size[measurement]=0;}return size;}function defineGetSize(getStyleProperty){var isSetup=false;var getStyle,boxSizingProp,isBoxSizeOuter;function setup(){if(isSetup)return;isSetup=true;var getComputedStyle=window.getComputedStyle;getStyle=(function(){var getStyleFn=getComputedStyle?function(elem){return getComputedStyle(elem,null);}:function(elem){return elem.currentStyle;};return function getStyle(elem){var style=getStyleFn(elem);if(!style)logError('Style returned '+style+'. Are you running this code in a hidden iframe on Firefox? '+'See http:\/\/bit.ly\/getsizebug1');return style;};})();boxSizingProp=getStyleProperty('boxSizing');if(boxSizingProp){var div=document.createElement('div');div.style.width='200px';div.style.padding='1px 2px 3px 4px';div.style.borderStyle='solid';div.style.borderWidth='1px 2px 3px 4px';div.style[boxSizingProp]='border-box';var body=document.body||document.documentElement;body.appendChild(div);var style=getStyle(div);isBoxSizeOuter=getStyleSize(style.width)===200;body.removeChild(div);}}function getSize(elem){setup();if(typeof elem==='string')elem=document.querySelector(elem);if(!elem||typeof elem!=='object'||!elem.nodeType)return;var style=getStyle(elem);if(style.display==='none')return getZeroSize();var size={};size.width=elem.offsetWidth;size.height=elem.offsetHeight;var isBorderBox=size.isBorderBox=!!(boxSizingProp&&style[boxSizingProp]&&style[boxSizingProp]==='border-box');for(var i=0,len=measurements.length;i<len;i++){var measurement=measurements[i];var value=style[measurement];value=mungeNonPixel(elem,value);var num=parseFloat(value);size[measurement]=!isNaN(num)?num:0;}var paddingWidth=size.paddingLeft+size.paddingRight;var paddingHeight=size.paddingTop+size.paddingBottom;var marginWidth=size.marginLeft+size.marginRight;var marginHeight=size.marginTop+size.marginBottom;var borderWidth=size.borderLeftWidth+size.borderRightWidth;var borderHeight=size.borderTopWidth+size.borderBottomWidth;var isBorderBoxSizeOuter=isBorderBox&&isBoxSizeOuter;var styleWidth=getStyleSize(style.width);if(styleWidth!==false)size.width=styleWidth+(isBorderBoxSizeOuter?0:paddingWidth+borderWidth);var styleHeight=getStyleSize(style.height);if(styleHeight!==false)size.height=styleHeight+(isBorderBoxSizeOuter?0:paddingHeight+borderHeight);size.innerWidth=size.width-(paddingWidth+borderWidth);size.innerHeight=size.height-(paddingHeight+borderHeight);size.outerWidth=size.width+marginWidth;size.outerHeight=size.height+marginHeight;return size;}function mungeNonPixel(elem,value){if(window.getComputedStyle||value.indexOf('%')===-1)return value;var style=elem.style;var left=style.left; var rs=elem.runtimeStyle;var rsLeft=rs&&rs.left;if(rsLeft)rs.left=elem.currentStyle.left;style.left=value;value=style.pixelLeft;style.left=left;if(rsLeft)rs.left=rsLeft;return value;}return getSize;}if(typeof define==='function'&&define.amd)define('get-size\/get-size',['get-style-property\/get-style-property'],defineGetSize);else if(typeof exports==='object')module.exports=defineGetSize(require('desandro-get-style-property'));else window.getSize=defineGetSize(window.getStyleProperty);})(window);(function(window){var document=window.document;var queue=[];function docReady(fn){if(typeof fn!=='function')return;if(docReady.isReady)fn();else queue.push(fn);}docReady.isReady=false;function onReady(event){var isIE8NotReady=event.type==='readystatechange'&&document.readyState!=='complete';if(docReady.isReady||isIE8NotReady)return;trigger();}function trigger(){docReady.isReady=true;for(var i=0,len=queue.length;i<len;i++){var fn=queue[i];fn();}}function defineDocReady(eventie){if(document.readyState==='complete')trigger();else{eventie.bind(document,'DOMContentLoaded',onReady);eventie.bind(document,'readystatechange',onReady);eventie.bind(window,'load',onReady);}return docReady;}if(typeof define==='function'&&define.amd)define('doc-ready\/doc-ready',['eventie\/eventie'],defineDocReady);else if(typeof exports==='object')module.exports=defineDocReady(require('eventie'));else window.docReady=defineDocReady(window.eventie);})(window);(function(ElemProto){'use strict';var matchesMethod=(function(){if(ElemProto.matches)return 'matches';if(ElemProto.matchesSelector)return 'matchesSelector';var prefixes=['webkit','moz','ms','o'];for(var i=0,len=prefixes.length;i<len;i++){var prefix=prefixes[i];var method=prefix+'MatchesSelector';if(ElemProto[method])return method;}})();function match(elem,selector){return elem[matchesMethod](selector);}function checkParent(elem){if(elem.parentNode)return;var fragment=document.createDocumentFragment();fragment.appendChild(elem);}function query(elem,selector){checkParent(elem);var elems=elem.parentNode.querySelectorAll(selector);for(var i=0,len=elems.length;i<len;i++)if(elems[i]===elem)return true;return false;}function matchChild(elem,selector){checkParent(elem);return match(elem,selector);}var matchesSelector;if(matchesMethod){var div=document.createElement('div');var supportsOrphans=match(div,'div');matchesSelector=supportsOrphans?match:matchChild;}else matchesSelector=query;if(typeof define==='function'&&define.amd)define('matches-selector\/matches-selector',[],function(){return matchesSelector;});else if(typeof exports==='object')module.exports=matchesSelector;else window.matchesSelector=matchesSelector;})(Element.prototype);(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('fizzy-ui-utils\/utils',['doc-ready\/doc-ready','matches-selector\/matches-selector'],function(docReady,matchesSelector){return factory(window,docReady,matchesSelector);});else if(typeof exports=='object')module.exports=factory(window,require('doc-ready'),require('desandro-matches-selector'));else window.fizzyUIUtils=factory(window,window.docReady,window.matchesSelector);}(window,function factory(window,docReady,matchesSelector){var utils={};utils.extend=function(a,b){for(var prop in b)a[prop]=b[prop];return a;};utils.modulo=function(num,div){return((num%div)+div)%div;};var objToString=Object.prototype.toString;utils.isArray=function(obj){return objToString.call(obj)=='[object Array]';};utils.makeArray=function(obj){var ary=[];if(utils.isArray(obj))ary=obj;else if(obj&&typeof obj.length=='number')for(var i=0,len=obj.length;i<len;i++)ary.push(obj[i]);else ary.push(obj);return ary;};utils.indexOf=Array.prototype.indexOf?function(ary,obj){return ary.indexOf(obj);}:function(ary,obj){for(var i=0,len=ary.length;i<len;i++)if(ary[i]===obj)return i;return -1;};utils.removeFrom=function(ary,obj){var index=utils.indexOf(ary,obj);if(index!=-1)ary.splice(index,1);};utils.isElement=(typeof HTMLElement=='function'||typeof HTMLElement=='object')?function isElementDOM2(obj){return obj instanceof HTMLElement;}:function isElementQuirky(obj){return obj&&typeof obj=='object'&&obj.nodeType==1&&typeof obj.nodeName=='string';};utils.setText=(function(){var setTextProperty;function setText(elem,text){setTextProperty=setTextProperty||(document.documentElement.textContent!==undefined?'textContent':'innerText');elem[setTextProperty]=text;}return setText;})();utils.getParent=function(elem,selector){while(elem!=document.body){elem=elem.parentNode;if(matchesSelector(elem,selector))return elem;}};utils.getQueryElement=function(elem){if(typeof elem=='string')return document.querySelector(elem);return elem;};utils.handleEvent=function(event){var method='on'+event.type;if(this[method])this[method](event);};utils.filterFindElements=function(elems,selector){elems=utils.makeArray(elems);var ffElems=[];for(var i=0,len=elems.length;i<len;i++){var elem=elems[i];if(!utils.isElement(elem))continue;if(selector){if(matchesSelector(elem,selector))ffElems.push(elem);var childElems=elem.querySelectorAll(selector);for(var j=0,jLen=childElems.length;j<jLen;j++)ffElems.push(childElems[j]);}else ffElems.push(elem);}return ffElems;};utils.debounceMethod=function(_class,methodName,threshold){var method=_class.prototype[methodName];var timeoutName=methodName+'Timeout';_class.prototype[methodName]=function(){var timeout=this[timeoutName];if(timeout)clearTimeout(timeout);var args=arguments;var _this=this;this[timeoutName]=setTimeout(function(){method.apply(_this,args);delete _this[timeoutName];},threshold||100);};};utils.toDashed=function(str){return str.replace(\/(.)([A-Z])\/g,function(match,$1,$2){return $1+'-'+$2;}).toLowerCase();};var console=window.console;utils.htmlInit=function(WidgetClass,namespace){docReady(function(){var dashedNamespace=utils.toDashed(namespace);var elems=document.querySelectorAll('.js-'+dashedNamespace);var dataAttr='data-'+dashedNamespace+'-options';for(var i=0,len=elems.length;i<len;i++){var elem=elems[i];var attr=elem.getAttribute(dataAttr);var options;try{options=attr&&JSON.parse(attr);}catch(error){if(console)console.error('Error parsing '+dataAttr+' on '+elem.nodeName.toLowerCase()+(elem.id?'#'+elem.id:'')+': '+error);continue;}var instance=new WidgetClass(elem,options);var jQuery=window.jQuery;if(jQuery)jQuery.data(elem,namespace,instance);}});};return utils;}));(function(window,factory){'use strict';if(typeof define==='function'&&define.amd)define('outlayer\/item',['eventEmitter\/EventEmitter','get-size\/get-size','get-style-property\/get-style-property','fizzy-ui-utils\/utils'],function(EventEmitter,getSize,getStyleProperty,utils){return factory(window,EventEmitter,getSize,getStyleProperty,utils);});else if(typeof exports==='object')module.exports=factory(window,require('wolfy87-eventemitter'),require('get-size'),require('desandro-get-style-property'),require('fizzy-ui-utils'));else{window.Outlayer={};window.Outlayer.Item=factory(window,window.EventEmitter,window.getSize,window.getStyleProperty,window.fizzyUIUtils);}}(window,function factory(window,EventEmitter,getSize,getStyleProperty,utils){'use strict';var getComputedStyle=window.getComputedStyle;var getStyle=getComputedStyle?function(elem){return getComputedStyle(elem,null);}:function(elem){return elem.currentStyle;};function isEmptyObj(obj){for(var prop in obj)return false;prop=null;return true;}var transitionProperty=getStyleProperty('transition');var transformProperty=getStyleProperty('transform');var supportsCSS3=transitionProperty&&transformProperty;var is3d=!!getStyleProperty('perspective');var transitionEndEvent={WebkitTransition:'webkitTransitionEnd',MozTransition:'transitionend',OTransition:'otransitionend',transition:'transitionend'}[transitionProperty];var prefixableProperties=['transform','transition','transitionDuration','transitionProperty'];var vendorProperties=(function(){var cache={};for(var i=0,len=prefixableProperties.length;i<len;i++){var prop=prefixableProperties[i];var supportedProp=getStyleProperty(prop);if(supportedProp&&supportedProp!==prop)cache[prop]=supportedProp;}return cache;})();function Item(element,layout){if(!element)return;this.element=element;this.layout=layout;this.position={x:0,y:0};this._create();}utils.extend(Item.prototype,EventEmitter.prototype);Item.prototype._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}};this.css({position:'absolute'});};Item.prototype.handleEvent=function(event){var method='on'+event.type;if(this[method])this[method](event);};Item.prototype.getSize=function(){this.size=getSize(this.element);};Item.prototype.css=function(style){var elemStyle=this.element.style;for(var prop in style){var supportedProp=vendorProperties[prop]||prop;elemStyle[supportedProp]=style[prop];}};Item.prototype.getPosition=function(){var style=getStyle(this.element);var layoutOptions=this.layout.options;var isOriginLeft=layoutOptions.isOriginLeft;var isOriginTop=layoutOptions.isOriginTop;var xValue=style[isOriginLeft?'left':'right'];var yValue=style[isOriginTop?'top':'bottom'];var x=parseInt(xValue,10);var y=parseInt(yValue,10);var layoutSize=this.layout.size;x=xValue.indexOf('%')!=-1?(x\/100)*layoutSize.width:x;y=yValue.indexOf('%')!=-1?(y\/100)*layoutSize.height:y;x=isNaN(x)?0:x;y=isNaN(y)?0:y;x-=isOriginLeft?layoutSize.paddingLeft:layoutSize.paddingRight;y-=isOriginTop?layoutSize.paddingTop:layoutSize.paddingBottom;this.position.x=x;this.position.y=y;};Item.prototype.layoutPosition=function(){var layoutSize=this.layout.size;var layoutOptions=this.layout.options;var style={};var xPadding=layoutOptions.isOriginLeft?'paddingLeft':'paddingRight';var xProperty=layoutOptions.isOriginLeft?'left':'right';var xResetProperty=layoutOptions.isOriginLeft?'right':'left';var x=this.position.x+layoutSize[xPadding];style[xProperty]=this.getXValue(x);style[xResetProperty]='';var yPadding=layoutOptions.isOriginTop?'paddingTop':'paddingBottom';var yProperty=layoutOptions.isOriginTop?'top':'bottom';var yResetProperty=layoutOptions.isOriginTop?'bottom':'top';var y=this.position.y+layoutSize[yPadding];style[yProperty]=this.getYValue(y);style[yResetProperty]='';this.css(style);this.emitEvent('layout',[this]);};Item.prototype.getXValue=function(x){var layoutOptions=this.layout.options;return layoutOptions.percentPosition&&!layoutOptions.isHorizontal?((x\/this.layout.size.width)*100)+'%':x+'px';};Item.prototype.getYValue=function(y){var layoutOptions=this.layout.options;return layoutOptions.percentPosition&&layoutOptions.isHorizontal?((y\/this.layout.size.height)*100)+'%':y+'px';};Item.prototype._transitionTo=function(x,y){this.getPosition();var curX=this.position.x;var curY=this.position.y;var compareX=parseInt(x,10);var compareY=parseInt(y,10);var didNotMove=compareX===this.position.x&&compareY===this.position.y;this.setPosition(x,y);if(didNotMove&&!this.isTransitioning){this.layoutPosition();return;}var transX=x-curX;var transY=y-curY;var transitionStyle={};transitionStyle.transform=this.getTranslate(transX,transY);this.transition({to:transitionStyle,onTransitionEnd:{transform:this.layoutPosition},isCleaning:true});};Item.prototype.getTranslate=function(x,y){var layoutOptions=this.layout.options;x=layoutOptions.isOriginLeft?x:-x;y=layoutOptions.isOriginTop?y:-y;x=this.getXValue(x);y=this.getYValue(y);if(is3d)return 'translate3d('+x+', '+y+', 0)';return 'translate('+x+', '+y+')';};Item.prototype.goTo=function(x,y){this.setPosition(x,y);this.layoutPosition();};Item.prototype.moveTo=supportsCSS3?Item.prototype._transitionTo:Item.prototype.goTo;Item.prototype.setPosition=function(x,y){this.position.x=parseInt(x,10);this.position.y=parseInt(y,10);};Item.prototype._nonTransition=function(args){this.css(args.to);if(args.isCleaning)this._removeStyles(args.to);for(var prop in args.onTransitionEnd)args.onTransitionEnd[prop].call(this);};Item.prototype._transition=function(args){if(!parseFloat(this.layout.options.transitionDuration)){this._nonTransition(args);return;}var _transition=this._transn;for(var prop in args.onTransitionEnd)_transition.onEnd[prop]=args.onTransitionEnd[prop];for(prop in args.to){_transition.ingProperties[prop]=true;if(args.isCleaning)_transition.clean[prop]=true;}if(args.from){this.css(args.from);var h=this.element.offsetHeight;h=null;}this.enableTransition(args.to);this.css(args.to);this.isTransitioning=true;};function toDashedAll(str){return str.replace(\/([A-Z])\/g,function($1){return '-'+$1.toLowerCase();});}var transitionProps='opacity,'+toDashedAll(vendorProperties.transform||'transform');Item.prototype.enableTransition=function(){if(this.isTransitioning)return;this.css({transitionProperty:transitionProps,transitionDuration:this.layout.options.transitionDuration});this.element.addEventListener(transitionEndEvent,this,false);};Item.prototype.transition=Item.prototype[transitionProperty?'_transition':'_nonTransition'];Item.prototype.onwebkitTransitionEnd=function(event){this.ontransitionend(event);};Item.prototype.onotransitionend=function(event){this.ontransitionend(event);};var dashedVendorProperties={'-webkit-transform':'transform','-moz-transform':'transform','-o-transform':'transform'};Item.prototype.ontransitionend=function(event){if(event.target!==this.element)return;var _transition=this._transn;var propertyName=dashedVendorProperties[event.propertyName]||event.propertyName;delete _transition.ingProperties[propertyName];if(isEmptyObj(_transition.ingProperties))this.disableTransition();if(propertyName in _transition.clean){this.element.style[event.propertyName]='';delete _transition.clean[propertyName];}if(propertyName in _transition.onEnd){var onTransitionEnd=_transition.onEnd[propertyName];onTransitionEnd.call(this);delete _transition.onEnd[propertyName];}this.emitEvent('transitionEnd',[this]);};Item.prototype.disableTransition=function(){this.removeTransitionStyles();this.element.removeEventListener(transitionEndEvent,this,false);this.isTransitioning=false;};Item.prototype._removeStyles=function(style){var cleanStyle={};for(var prop in style)cleanStyle[prop]='';this.css(cleanStyle);};var cleanTransitionStyle={transitionProperty:'',transitionDuration:''};Item.prototype.removeTransitionStyles=function(){this.css(cleanTransitionStyle);};Item.prototype.removeElem=function(){this.element.parentNode.removeChild(this.element);this.css({display:''});this.emitEvent('remove',[this]);};Item.prototype.remove=function(){if(!transitionProperty||!parseFloat(this.layout.options.transitionDuration)){this.removeElem();return;}var _this=this;this.once('transitionEnd',function(){_this.removeElem();});this.hide();};Item.prototype.reveal=function(){delete this.isHidden;this.css({display:''});var options=this.layout.options;var onTransitionEnd={};var transitionEndProperty=this.getHideRevealTransitionEndProperty('visibleStyle');onTransitionEnd[transitionEndProperty]=this.onRevealTransitionEnd;this.transition({from:options.hiddenStyle,to:options.visibleStyle,isCleaning:true,onTransitionEnd:onTransitionEnd});};Item.prototype.onRevealTransitionEnd=function(){if(!this.isHidden)this.emitEvent('reveal');};Item.prototype.getHideRevealTransitionEndProperty=function(styleProperty){var optionStyle=this.layout.options[styleProperty];if(optionStyle.opacity)return 'opacity';for(var prop in optionStyle)return prop;};Item.prototype.hide=function(){this.isHidden=true;this.css({display:''});var options=this.layout.options;var onTransitionEnd={};var transitionEndProperty=this.getHideRevealTransitionEndProperty('hiddenStyle');onTransitionEnd[transitionEndProperty]=this.onHideTransitionEnd;this.transition({from:options.visibleStyle,to:options.hiddenStyle,isCleaning:true,onTransitionEnd:onTransitionEnd});};Item.prototype.onHideTransitionEnd=function(){if(this.isHidden){this.css({display:'none'});this.emitEvent('hide');}};Item.prototype.destroy=function(){this.css({position:'',left:'',right:'',top:'',bottom:'',transition:'',transform:''});};return Item;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('outlayer\/outlayer',['eventie\/eventie','eventEmitter\/EventEmitter','get-size\/get-size','fizzy-ui-utils\/utils','.\/item'],function(eventie,EventEmitter,getSize,utils,Item){return factory(window,eventie,EventEmitter,getSize,utils,Item);});else if(typeof exports=='object')module.exports=factory(window,require('eventie'),require('wolfy87-eventemitter'),require('get-size'),require('fizzy-ui-utils'),require('.\/item'));else window.Outlayer=factory(window,window.eventie,window.EventEmitter,window.getSize,window.fizzyUIUtils,window.Outlayer.Item);}(window,function factory(window,eventie,EventEmitter,getSize,utils,Item){'use strict';var console=window.console;var jQuery=window.jQuery;var noop=function(){};var GUID=0;var instances={};function Outlayer(element,options){var queryElement=utils.getQueryElement(element);if(!queryElement){if(console)console.error('Bad element for '+this.constructor.namespace+': '+(queryElement||element));return;}this.element=queryElement;if(jQuery)this.$element=jQuery(this.element);this.options=utils.extend({},this.constructor.defaults);this.option(options);var id=++GUID;this.element.outlayerGUID=id;instances[id]=this;this._create();if(this.options.isInitLayout)this.layout();}Outlayer.namespace='outlayer';Outlayer.Item=Item;Outlayer.defaults={containerStyle:{position:'relative'},isInitLayout:true,isOriginLeft:true,isOriginTop:true,isResizeBound:true,isResizingContainer:true,transitionDuration:'0.4s',hiddenStyle:{opacity:0,transform:'scale(0.001)'},visibleStyle:{opacity:1,transform:'scale(1)'}};utils.extend(Outlayer.prototype,EventEmitter.prototype);Outlayer.prototype.option=function(opts){utils.extend(this.options,opts);};Outlayer.prototype._create=function(){this.reloadItems();this.stamps=[];this.stamp(this.options.stamp);utils.extend(this.element.style,this.options.containerStyle);if(this.options.isResizeBound)this.bindResize();};Outlayer.prototype.reloadItems=function(){this.items=this._itemize(this.element.children);};Outlayer.prototype._itemize=function(elems){var itemElems=this._filterFindItemElements(elems);var Item=this.constructor.Item;var items=[];for(var i=0,len=itemElems.length;i<len;i++){var elem=itemElems[i];var item=new Item(elem,this);items.push(item);}return items;};Outlayer.prototype._filterFindItemElements=function(elems){return utils.filterFindElements(elems,this.options.itemSelector);};Outlayer.prototype.getItemElements=function(){var elems=[];for(var i=0,len=this.items.length;i<len;i++)elems.push(this.items[i].element);return elems;};Outlayer.prototype.layout=function(){this._resetLayout();this._manageStamps();var isInstant=this.options.isLayoutInstant!==undefined?this.options.isLayoutInstant:!this._isLayoutInited;this.layoutItems(this.items,isInstant);this._isLayoutInited=true;};Outlayer.prototype._init=Outlayer.prototype.layout;Outlayer.prototype._resetLayout=function(){this.getSize();};Outlayer.prototype.getSize=function(){this.size=getSize(this.element);};Outlayer.prototype._getMeasurement=function(measurement,size){var option=this.options[measurement];var elem;if(!option)this[measurement]=0;else{if(typeof option==='string')elem=this.element.querySelector(option);else if(utils.isElement(option))elem=option;this[measurement]=elem?getSize(elem)[size]:option;}};Outlayer.prototype.layoutItems=function(items,isInstant){items=this._getItemsForLayout(items);this._layoutItems(items,isInstant);this._postLayout();};Outlayer.prototype._getItemsForLayout=function(items){var layoutItems=[];for(var i=0,len=items.length;i<len;i++){var item=items[i];if(!item.isIgnored)layoutItems.push(item);}return layoutItems;};Outlayer.prototype._layoutItems=function(items,isInstant){this._emitCompleteOnItems('layout',items);if(!items||!items.length)return;var queue=[];for(var i=0,len=items.length;i<len;i++){var item=items[i];var position=this._getItemLayoutPosition(item);position.item=item;position.isInstant=isInstant||item.isLayoutInstant;queue.push(position);}this._processLayoutQueue(queue);};Outlayer.prototype._getItemLayoutPosition=function(){return{x:0,y:0};};Outlayer.prototype._processLayoutQueue=function(queue){for(var i=0,len=queue.length;i<len;i++){var obj=queue[i];this._positionItem(obj.item,obj.x,obj.y,obj.isInstant);}};Outlayer.prototype._positionItem=function(item,x,y,isInstant){if(isInstant)item.goTo(x,y);else item.moveTo(x,y);};Outlayer.prototype._postLayout=function(){this.resizeContainer();};Outlayer.prototype.resizeContainer=function(){if(!this.options.isResizingContainer)return;var size=this._getContainerSize();if(size){this._setContainerMeasure(size.width,true);this._setContainerMeasure(size.height,false);}};Outlayer.prototype._getContainerSize=noop;Outlayer.prototype._setContainerMeasure=function(measure,isWidth){if(measure===undefined)return;var elemSize=this.size;if(elemSize.isBorderBox)measure+=isWidth?elemSize.paddingLeft+elemSize.paddingRight+elemSize.borderLeftWidth+elemSize.borderRightWidth:elemSize.paddingBottom+elemSize.paddingTop+elemSize.borderTopWidth+elemSize.borderBottomWidth;measure=Math.max(measure,0);this.element.style[isWidth?'width':'height']=measure+'px';};Outlayer.prototype._emitCompleteOnItems=function(eventName,items){var _this=this;function onComplete(){_this.dispatchEvent(eventName+'Complete',null,[items]);}var count=items.length;if(!items||!count){onComplete();return;}var doneCount=0;function tick(){doneCount++;if(doneCount===count)onComplete();}for(var i=0,len=items.length;i<len;i++){var item=items[i];item.once(eventName,tick);}};Outlayer.prototype.dispatchEvent=function(type,event,args){var emitArgs=event?[event].concat(args):args;this.emitEvent(type,emitArgs);if(jQuery){this.$element=this.$element||jQuery(this.element);if(event){var $event=jQuery.Event(event);$event.type=type;this.$element.trigger($event,args);}else this.$element.trigger(type,args);}};Outlayer.prototype.ignore=function(elem){var item=this.getItem(elem);if(item)item.isIgnored=true;};Outlayer.prototype.unignore=function(elem){var item=this.getItem(elem);if(item)delete item.isIgnored;};Outlayer.prototype.stamp=function(elems){elems=this._find(elems);if(!elems)return;this.stamps=this.stamps.concat(elems);for(var i=0,len=elems.length;i<len;i++){var elem=elems[i];this.ignore(elem);}};Outlayer.prototype.unstamp=function(elems){elems=this._find(elems);if(!elems)return;for(var i=0,len=elems.length;i<len;i++){var elem=elems[i];utils.removeFrom(this.stamps,elem);this.unignore(elem);}};Outlayer.prototype._find=function(elems){if(!elems)return;if(typeof elems==='string')elems=this.element.querySelectorAll(elems);elems=utils.makeArray(elems);return elems;};Outlayer.prototype._manageStamps=function(){if(!this.stamps||!this.stamps.length)return;this._getBoundingRect();for(var i=0,len=this.stamps.length;i<len;i++){var stamp=this.stamps[i];this._manageStamp(stamp);}};Outlayer.prototype._getBoundingRect=function(){var boundingRect=this.element.getBoundingClientRect();var size=this.size;this._boundingRect={left:boundingRect.left+size.paddingLeft+size.borderLeftWidth,top:boundingRect.top+size.paddingTop+size.borderTopWidth,right:boundingRect.right-(size.paddingRight+size.borderRightWidth),bottom:boundingRect.bottom-(size.paddingBottom+size.borderBottomWidth)};};Outlayer.prototype._manageStamp=noop;Outlayer.prototype._getElementOffset=function(elem){var boundingRect=elem.getBoundingClientRect();var thisRect=this._boundingRect;var size=getSize(elem);var offset={left:boundingRect.left-thisRect.left-size.marginLeft,top:boundingRect.top-thisRect.top-size.marginTop,right:thisRect.right-boundingRect.right-size.marginRight,bottom:thisRect.bottom-boundingRect.bottom-size.marginBottom};return offset;};Outlayer.prototype.handleEvent=function(event){var method='on'+event.type;if(this[method])this[method](event);};Outlayer.prototype.bindResize=function(){if(this.isResizeBound)return;eventie.bind(window,'resize',this);this.isResizeBound=true;};Outlayer.prototype.unbindResize=function(){if(this.isResizeBound)eventie.unbind(window,'resize',this);this.isResizeBound=false;};Outlayer.prototype.onresize=function(){if(this.resizeTimeout)clearTimeout(this.resizeTimeout);var _this=this;function delayed(){_this.resize();delete _this.resizeTimeout;}this.resizeTimeout=setTimeout(delayed,100);};Outlayer.prototype.resize=function(){if(!this.isResizeBound||!this.needsResizeLayout())return;this.layout();};Outlayer.prototype.needsResizeLayout=function(){var size=getSize(this.element);var hasSizes=this.size&&size;return hasSizes&&size.innerWidth!==this.size.innerWidth;};Outlayer.prototype.addItems=function(elems){var items=this._itemize(elems);if(items.length)this.items=this.items.concat(items);return items;};Outlayer.prototype.appended=function(elems){var items=this.addItems(elems);if(!items.length)return;this.layoutItems(items,true);this.reveal(items);};Outlayer.prototype.prepended=function(elems){var items=this._itemize(elems);if(!items.length)return;var previousItems=this.items.slice(0);this.items=items.concat(previousItems);this._resetLayout();this._manageStamps();this.layoutItems(items,true);this.reveal(items);this.layoutItems(previousItems);};Outlayer.prototype.reveal=function(items){this._emitCompleteOnItems('reveal',items);var len=items&&items.length;for(var i=0;len&&i<len;i++){var item=items[i];item.reveal();}};Outlayer.prototype.hide=function(items){this._emitCompleteOnItems('hide',items);var len=items&&items.length;for(var i=0;len&&i<len;i++){var item=items[i];item.hide();}};Outlayer.prototype.revealItemElements=function(elems){var items=this.getItems(elems);this.reveal(items);};Outlayer.prototype.hideItemElements=function(elems){var items=this.getItems(elems);this.hide(items);};Outlayer.prototype.getItem=function(elem){for(var i=0,len=this.items.length;i<len;i++){var item=this.items[i];if(item.element===elem)return item;}};Outlayer.prototype.getItems=function(elems){elems=utils.makeArray(elems);var items=[];for(var i=0,len=elems.length;i<len;i++){var elem=elems[i];var item=this.getItem(elem);if(item)items.push(item);}return items;};Outlayer.prototype.remove=function(elems){var removeItems=this.getItems(elems);this._emitCompleteOnItems('remove',removeItems);if(!removeItems||!removeItems.length)return;for(var i=0,len=removeItems.length;i<len;i++){var item=removeItems[i];item.remove();utils.removeFrom(this.items,item);}};Outlayer.prototype.destroy=function(){var style=this.element.style;style.height='';style.position='';style.width='';for(var i=0,len=this.items.length;i<len;i++){var item=this.items[i];item.destroy();}this.unbindResize();var id=this.element.outlayerGUID;delete instances[id];delete this.element.outlayerGUID;if(jQuery)jQuery.removeData(this.element,this.constructor.namespace);};Outlayer.data=function(elem){elem=utils.getQueryElement(elem);var id=elem&&elem.outlayerGUID;return id&&instances[id];};Outlayer.create=function(namespace,options){function Layout(){Outlayer.apply(this,arguments);}if(Object.create)Layout.prototype=Object.create(Outlayer.prototype);else utils.extend(Layout.prototype,Outlayer.prototype);Layout.prototype.constructor=Layout;Layout.defaults=utils.extend({},Outlayer.defaults);utils.extend(Layout.defaults,options);Layout.prototype.settings={};Layout.namespace=namespace;Layout.data=Outlayer.data;Layout.Item=function LayoutItem(){Item.apply(this,arguments);};Layout.Item.prototype=new Item();utils.htmlInit(Layout,namespace);if(jQuery&&jQuery.bridget)jQuery.bridget(namespace,Layout);return Layout;};Outlayer.Item=Item;return Outlayer;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('isotope\/js\/item',['outlayer\/outlayer'],factory);else if(typeof exports=='object')module.exports=factory(require('outlayer'));else{window.Isotope=window.Isotope||{};window.Isotope.Item=factory(window.Outlayer);}}(window,function factory(Outlayer){'use strict';function Item(){Outlayer.Item.apply(this,arguments);}Item.prototype=new Outlayer.Item();Item.prototype._create=function(){this.id=this.layout.itemGUID++;Outlayer.Item.prototype._create.call(this);this.sortData={};};Item.prototype.updateSortData=function(){if(this.isIgnored)return;this.sortData.id=this.id;this.sortData['original-order']=this.id;this.sortData.random=Math.random();var getSortData=this.layout.options.getSortData;var sorters=this.layout._sorters;for(var key in getSortData){var sorter=sorters[key];this.sortData[key]=sorter(this.element,this);}};var _destroy=Item.prototype.destroy;Item.prototype.destroy=function(){_destroy.apply(this,arguments);this.css({display:''});};return Item;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('isotope\/js\/layout-mode',['get-size\/get-size','outlayer\/outlayer'],factory);else if(typeof exports=='object')module.exports=factory(require('get-size'),require('outlayer'));else{window.Isotope=window.Isotope||{};window.Isotope.LayoutMode=factory(window.getSize,window.Outlayer);}}(window,function factory(getSize,Outlayer){'use strict';function LayoutMode(isotope){this.isotope=isotope;if(isotope){this.options=isotope.options[this.namespace];this.element=isotope.element;this.items=isotope.filteredItems;this.size=isotope.size;}}(function(){var facadeMethods=['_resetLayout','_getItemLayoutPosition','_manageStamp','_getContainerSize','_getElementOffset','needsResizeLayout'];for(var i=0,len=facadeMethods.length;i<len;i++){var methodName=facadeMethods[i];LayoutMode.prototype[methodName]=getOutlayerMethod(methodName);}function getOutlayerMethod(methodName){return function(){return Outlayer.prototype[methodName].apply(this.isotope,arguments);};}})();LayoutMode.prototype.needsVerticalResizeLayout=function(){var size=getSize(this.isotope.element);var hasSizes=this.isotope.size&&size;return hasSizes&&size.innerHeight!=this.isotope.size.innerHeight;};LayoutMode.prototype._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments);};LayoutMode.prototype.getColumnWidth=function(){this.getSegmentSize('column','Width');};LayoutMode.prototype.getRowHeight=function(){this.getSegmentSize('row','Height');};LayoutMode.prototype.getSegmentSize=function(segment,size){var segmentName=segment+size;var outerSize='outer'+size;this._getMeasurement(segmentName,outerSize);if(this[segmentName])return;var firstItemSize=this.getFirstItemSize();this[segmentName]=firstItemSize&&firstItemSize[outerSize]||this.isotope.size['inner'+size];};LayoutMode.prototype.getFirstItemSize=function(){var firstItem=this.isotope.filteredItems[0];return firstItem&&firstItem.element&&getSize(firstItem.element);};LayoutMode.prototype.layout=function(){this.isotope.layout.apply(this.isotope,arguments);};LayoutMode.prototype.getSize=function(){this.isotope.getSize();this.size=this.isotope.size;};LayoutMode.modes={};LayoutMode.create=function(namespace,options){function Mode(){LayoutMode.apply(this,arguments);}Mode.prototype=new LayoutMode();if(options)Mode.options=options;Mode.prototype.namespace=namespace;LayoutMode.modes[namespace]=Mode;return Mode;};return LayoutMode;}));(function(window,factory){'use strict';if(typeof define==='function'&&define.amd)define('masonry\/masonry',['outlayer\/outlayer','get-size\/get-size','fizzy-ui-utils\/utils'],factory);else if(typeof exports==='object')module.exports=factory(require('outlayer'),require('get-size'),require('fizzy-ui-utils'));else window.Masonry=factory(window.Outlayer,window.getSize,window.fizzyUIUtils);}(window,function factory(Outlayer,getSize,utils){var Masonry=Outlayer.create('masonry');Masonry.prototype._resetLayout=function(){this.getSize();this._getMeasurement('columnWidth','outerWidth');this._getMeasurement('gutter','outerWidth');this.measureColumns();var i=this.cols;this.colYs=[];while(i--)this.colYs.push(0);this.maxY=0;};Masonry.prototype.measureColumns=function(){this.getContainerWidth();if(!this.columnWidth){var firstItem=this.items[0];var firstItemElem=firstItem&&firstItem.element;this.columnWidth=firstItemElem&&getSize(firstItemElem).outerWidth||this.containerWidth;}var columnWidth=this.columnWidth+=this.gutter;var containerWidth=this.containerWidth+this.gutter;var cols=containerWidth\/columnWidth;var excess=columnWidth-containerWidth%columnWidth;var mathMethod=excess&&excess<1?'round':'floor';cols=Math[mathMethod](cols);this.cols=Math.max(cols,1);};Masonry.prototype.getContainerWidth=function(){var container=this.options.isFitWidth?this.element.parentNode:this.element;var size=getSize(container);this.containerWidth=size&&size.innerWidth;};Masonry.prototype._getItemLayoutPosition=function(item){item.getSize();var remainder=item.size.outerWidth%this.columnWidth;var mathMethod=remainder&&remainder<1?'round':'ceil';var colSpan=Math[mathMethod](item.size.outerWidth\/this.columnWidth);colSpan=Math.min(colSpan,this.cols);var colGroup=this._getColGroup(colSpan);var minimumY=Math.min.apply(Math,colGroup);var shortColIndex=utils.indexOf(colGroup,minimumY);var position={x:this.columnWidth*shortColIndex,y:minimumY};var setHeight=minimumY+item.size.outerHeight;var setSpan=this.cols+1-colGroup.length;for(var i=0;i<setSpan;i++)this.colYs[shortColIndex+i]=setHeight;return position;};Masonry.prototype._getColGroup=function(colSpan){if(colSpan<2)return this.colYs;var colGroup=[];var groupCount=this.cols+1-colSpan;for(var i=0;i<groupCount;i++){var groupColYs=this.colYs.slice(i,i+colSpan);colGroup[i]=Math.max.apply(Math,groupColYs);}return colGroup;};Masonry.prototype._manageStamp=function(stamp){var stampSize=getSize(stamp);var offset=this._getElementOffset(stamp);var firstX=this.options.isOriginLeft?offset.left:offset.right;var lastX=firstX+stampSize.outerWidth;var firstCol=Math.floor(firstX\/this.columnWidth);firstCol=Math.max(0,firstCol);var lastCol=Math.floor(lastX\/this.columnWidth);lastCol-=lastX%this.columnWidth?0:1;lastCol=Math.min(this.cols-1,lastCol);var stampMaxY=(this.options.isOriginTop?offset.top:offset.bottom)+stampSize.outerHeight;for(var i=firstCol;i<=lastCol;i++)this.colYs[i]=Math.max(stampMaxY,this.colYs[i]);};Masonry.prototype._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var size={height:this.maxY};if(this.options.isFitWidth)size.width=this._getContainerFitWidth();return size;};Masonry.prototype._getContainerFitWidth=function(){var unusedCols=0;var i=this.cols;while(--i){if(this.colYs[i]!==0)break;unusedCols++;}return(this.cols-unusedCols)*this.columnWidth-this.gutter;};Masonry.prototype.needsResizeLayout=function(){var previousWidth=this.containerWidth;this.getContainerWidth();return previousWidth!==this.containerWidth;};return Masonry;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('isotope\/js\/layout-modes\/masonry',['..\/layout-mode','masonry\/masonry'],factory);else if(typeof exports=='object')module.exports=factory(require('..\/layout-mode'),require('masonry-layout'));else factory(window.Isotope.LayoutMode,window.Masonry);}(window,function factory(LayoutMode,Masonry){'use strict';function extend(a,b){for(var prop in b)a[prop]=b[prop];return a;}var MasonryMode=LayoutMode.create('masonry');var _getElementOffset=MasonryMode.prototype._getElementOffset;var layout=MasonryMode.prototype.layout;var _getMeasurement=MasonryMode.prototype._getMeasurement;extend(MasonryMode.prototype,Masonry.prototype);MasonryMode.prototype._getElementOffset=_getElementOffset;MasonryMode.prototype.layout=layout;MasonryMode.prototype._getMeasurement=_getMeasurement;var measureColumns=MasonryMode.prototype.measureColumns;MasonryMode.prototype.measureColumns=function(){this.items=this.isotope.filteredItems;measureColumns.call(this);};var _manageStamp=MasonryMode.prototype._manageStamp;MasonryMode.prototype._manageStamp=function(){this.options.isOriginLeft=this.isotope.options.isOriginLeft;this.options.isOriginTop=this.isotope.options.isOriginTop;_manageStamp.apply(this,arguments);};return MasonryMode;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('isotope\/js\/layout-modes\/fit-rows',['..\/layout-mode'],factory);else if(typeof exports=='object')module.exports=factory(require('..\/layout-mode'));else factory(window.Isotope.LayoutMode);}(window,function factory(LayoutMode){'use strict';var FitRows=LayoutMode.create('fitRows');FitRows.prototype._resetLayout=function(){this.x=0;this.y=0;this.maxY=0;this._getMeasurement('gutter','outerWidth');};FitRows.prototype._getItemLayoutPosition=function(item){item.getSize();var itemWidth=item.size.outerWidth+this.gutter;var containerWidth=this.isotope.size.innerWidth+this.gutter;if(this.x!==0&&itemWidth+this.x>containerWidth){this.x=0;this.y=this.maxY;}var position={x:this.x,y:this.y};this.maxY=Math.max(this.maxY,this.y+item.size.outerHeight);this.x+=itemWidth;return position;};FitRows.prototype._getContainerSize=function(){return{height:this.maxY};};return FitRows;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define('isotope\/js\/layout-modes\/vertical',['..\/layout-mode'],factory);else if(typeof exports=='object')module.exports=factory(require('..\/layout-mode'));else factory(window.Isotope.LayoutMode);}(window,function factory(LayoutMode){'use strict';var Vertical=LayoutMode.create('vertical',{horizontalAlignment:0});Vertical.prototype._resetLayout=function(){this.y=0;};Vertical.prototype._getItemLayoutPosition=function(item){item.getSize();var x=(this.isotope.size.innerWidth-item.size.outerWidth)*this.options.horizontalAlignment;var y=this.y;this.y+=item.size.outerHeight;return{x:x,y:y};};Vertical.prototype._getContainerSize=function(){return{height:this.y};};return Vertical;}));(function(window,factory){'use strict';if(typeof define=='function'&&define.amd)define(['outlayer\/outlayer','get-size\/get-size','matches-selector\/matches-selector','fizzy-ui-utils\/utils','isotope\/js\/item','isotope\/js\/layout-mode','isotope\/js\/layout-modes\/masonry','isotope\/js\/layout-modes\/fit-rows','isotope\/js\/layout-modes\/vertical'],function(Outlayer,getSize,matchesSelector,utils,Item,LayoutMode){return factory(window,Outlayer,getSize,matchesSelector,utils,Item,LayoutMode);});else if(typeof exports=='object')module.exports=factory(window,require('outlayer'),require('get-size'),require('desandro-matches-selector'),require('fizzy-ui-utils'),require('.\/item'),require('.\/layout-mode'),require('.\/layout-modes\/masonry'),require('.\/layout-modes\/fit-rows'),require('.\/layout-modes\/vertical'));else window.Isotope=factory(window,window.Outlayer,window.getSize,window.matchesSelector,window.fizzyUIUtils,window.Isotope.Item,window.Isotope.LayoutMode);}(window,function factory(window,Outlayer,getSize,matchesSelector,utils,Item,LayoutMode){var jQuery=window.jQuery;var trim=String.prototype.trim?function(str){return str.trim();}:function(str){return str.replace(\/^\\s+|\\s+$\/g,'');};var docElem=document.documentElement;var getText=docElem.textContent?function(elem){return elem.textContent;}:function(elem){return elem.innerText;};var Isotope=Outlayer.create('isotope',{layoutMode:\"masonry\",isJQueryFiltering:true,sortAscending:true});Isotope.Item=Item;Isotope.LayoutMode=LayoutMode;Isotope.prototype._create=function(){this.itemGUID=0;this._sorters={};this._getSorters();Outlayer.prototype._create.call(this);this.modes={};this.filteredItems=this.items;this.sortHistory=['original-order'];for(var name in LayoutMode.modes)this._initLayoutMode(name);};Isotope.prototype.reloadItems=function(){this.itemGUID=0;Outlayer.prototype.reloadItems.call(this);};Isotope.prototype._itemize=function(){var items=Outlayer.prototype._itemize.apply(this,arguments);for(var i=0,len=items.length;i<len;i++){var item=items[i];item.id=this.itemGUID++;}this._updateItemsSortData(items);return items;};Isotope.prototype._initLayoutMode=function(name){var Mode=LayoutMode.modes[name];var initialOpts=this.options[name]||{};this.options[name]=Mode.options?utils.extend(Mode.options,initialOpts):initialOpts;this.modes[name]=new Mode(this);};Isotope.prototype.layout=function(){if(!this._isLayoutInited&&this.options.isInitLayout){this.arrange();return;}this._layout();};Isotope.prototype._layout=function(){var isInstant=this._getIsInstant();this._resetLayout();this._manageStamps();this.layoutItems(this.filteredItems,isInstant);this._isLayoutInited=true;};Isotope.prototype.arrange=function(opts){this.option(opts);this._getIsInstant();var filtered=this._filter(this.items);this.filteredItems=filtered.matches;var _this=this;function hideReveal(){_this.reveal(filtered.needReveal);_this.hide(filtered.needHide);}this._bindArrangeComplete();if(this._isInstant)this._noTransition(hideReveal);else hideReveal();this._sort();this._layout();};Isotope.prototype._init=Isotope.prototype.arrange;Isotope.prototype._getIsInstant=function(){var isInstant=this.options.isLayoutInstant!==undefined?this.options.isLayoutInstant:!this._isLayoutInited;this._isInstant=isInstant;return isInstant;};Isotope.prototype._bindArrangeComplete=function(){var isLayoutComplete,isHideComplete,isRevealComplete;var _this=this;function arrangeParallelCallback(){if(isLayoutComplete&&isHideComplete&&isRevealComplete)_this.dispatchEvent('arrangeComplete',null,[_this.filteredItems]);}this.once('layoutComplete',function(){isLayoutComplete=true;arrangeParallelCallback();});this.once('hideComplete',function(){isHideComplete=true;arrangeParallelCallback();});this.once('revealComplete',function(){isRevealComplete=true;arrangeParallelCallback();});};Isotope.prototype._filter=function(items){var filter=this.options.filter;filter=filter||'*';var matches=[];var hiddenMatched=[];var visibleUnmatched=[];var test=this._getFilterTest(filter);for(var i=0,len=items.length;i<len;i++){var item=items[i];if(item.isIgnored)continue;var isMatched=test(item);if(isMatched)matches.push(item);if(isMatched&&item.isHidden)hiddenMatched.push(item);else if(!isMatched&&!item.isHidden)visibleUnmatched.push(item);}return{matches:matches,needReveal:hiddenMatched,needHide:visibleUnmatched};};Isotope.prototype._getFilterTest=function(filter){if(jQuery&&this.options.isJQueryFiltering)return function(item){return jQuery(item.element).is(filter);};if(typeof filter=='function')return function(item){return filter(item.element);};return function(item){return matchesSelector(item.element,filter);};};Isotope.prototype.updateSortData=function(elems){var items;if(elems){elems=utils.makeArray(elems);items=this.getItems(elems);}else items=this.items;this._getSorters();this._updateItemsSortData(items);};Isotope.prototype._getSorters=function(){var getSortData=this.options.getSortData;for(var key in getSortData){var sorter=getSortData[key];this._sorters[key]=mungeSorter(sorter);}};Isotope.prototype._updateItemsSortData=function(items){var len=items&&items.length;for(var i=0;len&&i<len;i++){var item=items[i];item.updateSortData();}};var mungeSorter=(function(){function mungeSorter(sorter){if(typeof sorter!='string')return sorter;var args=trim(sorter).split(' ');var query=args[0];var attrMatch=query.match(\/^\\[(.+)\\]$\/);var attr=attrMatch&&attrMatch[1];var getValue=getValueGetter(attr,query);var parser=Isotope.sortDataParsers[args[1]];sorter=parser?function(elem){return elem&&parser(getValue(elem));}:function(elem){return elem&&getValue(elem);};return sorter;}function getValueGetter(attr,query){var getValue;if(attr)getValue=function(elem){return elem.getAttribute(attr);};else getValue=function(elem){var child=elem.querySelector(query);return child&&getText(child);};return getValue;}return mungeSorter;})();Isotope.sortDataParsers={'parseInt':function(val){return parseInt(val,10);},'parseFloat':function(val){return parseFloat(val);}};Isotope.prototype._sort=function(){var sortByOpt=this.options.sortBy;if(!sortByOpt)return;var sortBys=[].concat.apply(sortByOpt,this.sortHistory);var itemSorter=getItemSorter(sortBys,this.options.sortAscending);this.filteredItems.sort(itemSorter);if(sortByOpt!=this.sortHistory[0])this.sortHistory.unshift(sortByOpt);};function getItemSorter(sortBys,sortAsc){return function sorter(itemA,itemB){for(var i=0,len=sortBys.length;i<len;i++){var sortBy=sortBys[i];var a=itemA.sortData[sortBy];var b=itemB.sortData[sortBy];if(a>b||a<b){var isAscending=sortAsc[sortBy]!==undefined?sortAsc[sortBy]:sortAsc;var direction=isAscending?1:-1;return(a>b?1:-1)*direction;}}return 0;};}Isotope.prototype._mode=function(){var layoutMode=this.options.layoutMode;var mode=this.modes[layoutMode];if(!mode)throw new Error('No layout mode: '+layoutMode);mode.options=this.options[layoutMode];return mode;};Isotope.prototype._resetLayout=function(){Outlayer.prototype._resetLayout.call(this);this._mode()._resetLayout();};Isotope.prototype._getItemLayoutPosition=function(item){return this._mode()._getItemLayoutPosition(item);};Isotope.prototype._manageStamp=function(stamp){this._mode()._manageStamp(stamp);};Isotope.prototype._getContainerSize=function(){return this._mode()._getContainerSize();};Isotope.prototype.needsResizeLayout=function(){return this._mode().needsResizeLayout();};Isotope.prototype.appended=function(elems){var items=this.addItems(elems);if(!items.length)return;var filteredItems=this._filterRevealAdded(items);this.filteredItems=this.filteredItems.concat(filteredItems);};Isotope.prototype.prepended=function(elems){var items=this._itemize(elems);if(!items.length)return;this._resetLayout();this._manageStamps();var filteredItems=this._filterRevealAdded(items);this.layoutItems(this.filteredItems);this.filteredItems=filteredItems.concat(this.filteredItems);this.items=items.concat(this.items);};Isotope.prototype._filterRevealAdded=function(items){var filtered=this._filter(items);this.hide(filtered.needHide);this.reveal(filtered.matches);this.layoutItems(filtered.matches,true);return filtered.matches;};Isotope.prototype.insert=function(elems){var items=this.addItems(elems);if(!items.length)return;var i,item;var len=items.length;for(i=0;i<len;i++){item=items[i];this.element.appendChild(item.element);}var filteredInsertItems=this._filter(items).matches;for(i=0;i<len;i++)items[i].isLayoutInstant=true;this.arrange();for(i=0;i<len;i++)delete items[i].isLayoutInstant;this.reveal(filteredInsertItems);};var _remove=Isotope.prototype.remove;Isotope.prototype.remove=function(elems){elems=utils.makeArray(elems);var removeItems=this.getItems(elems);_remove.call(this,elems);var len=removeItems&&removeItems.length;if(!len)return;for(var i=0;i<len;i++){var item=removeItems[i];utils.removeFrom(this.filteredItems,item);}};Isotope.prototype.shuffle=function(){for(var i=0,len=this.items.length;i<len;i++){var item=this.items[i];item.sortData.random=Math.random();}this.options.sortBy='random';this._sort();this._layout();};Isotope.prototype._noTransition=function(fn){var transitionDuration=this.options.transitionDuration;this.options.transitionDuration=0;var returnValue=fn.call(this);this.options.transitionDuration=transitionDuration;return returnValue;};Isotope.prototype.getFilteredItemElements=function(){var elems=[];for(var i=0,len=this.filteredItems.length;i<len;i++)elems.push(this.filteredItems[i].element);return elems;};return Isotope;}));\n\t\t\t\t})\n\t\t\t<\/script>\n\t\t\t<style type=\"text\/css\">\n\t\t\t\t.filters-button-group_13\t\t\t\t{\n\t\t\t\t\tmargin: 20px 0;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tbackground-color: #d81c4e;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tz-index: 0;\n\t\t\t\t}\n\t\t\t\t.filters-button-group_13 div\n\t\t\t\t{\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tz-index: 1;\n\t\t\t\t\tbackground-color: #d81c4e;\n\t\t\t\t}\n\t\t\t\t\t\t\t\t\t.filters-button-group_13\t\t\t\t\t{\n\t\t\t\t\t\tposition:relative;\n\t\t\t\t\t\tbox-shadow:0 1px 4px #878787, 0 0 40px #878787 inset;\n\t\t\t\t\t\t-webkit-box-shadow:0 1px 4px #878787, 0 0 40px #878787 inset;\n\t\t\t\t\t\t-moz-box-shadow:0 1px 4px #878787, 0 0 40px #878787 inset;\n\t\t\t\t\t}\n\t\t\t\t\t.filters-button-group_13:before, .filters-button-group_13:after\n\t\t\t\t\t{\n\t\t\t\t\t\tcontent:\"\";\n\t\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\tz-index:-1;\n\t\t\t\t\t\tbox-shadow:0 0 20px #878787;\n\t\t\t\t\t\t-webkit-box-shadow:0 0 20px #878787;\n\t\t\t\t\t\t-moz-box-shadow:0 0 20px #878787;\n\t\t\t\t\t\ttop:0;\n\t\t\t\t\t\tbottom:0;\n\t\t\t\t\t\tleft:10px;\n\t\t\t\t\t\tright:10px;\n\t\t\t\t\t\tborder-radius:100px \/ 10px;\n\t\t\t\t\t}\n\t\t\t\t\t.filters-button-group_13:after\n\t\t\t\t\t{\n\t\t\t\t\t\tright:10px;\n\t\t\t\t\t\tleft:auto;\n\t\t\t\t\t\ttransform:skew(8deg) rotate(3deg);\n\t\t\t\t\t\t-moz-transform:skew(8deg) rotate(3deg);\n\t\t\t\t\t\t-webkit-transform:skew(8deg) rotate(3deg);\n\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.TSPortfolioHE_Button_13\t\t\t\t{\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tpadding: 5px 10px;\n\t\t\t\t\tbackground: #d81c4e;\n\t\t\t\t\tcolor: #ffffff;\n\t\t\t\t\tfont-family: Arial;\n\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tmargin: 10px;\n\t\t\t\t\tposition: relative !important;\n\t\t\t\t\tz-index: 2;\n\t\t\t\t\ttext-transform: none !important;\n\t\t\t\t\tborder: none !important;\n\t\t\t\t\theight: inherit;\n\t\t\t\t\tline-height: 1 !important;\n\t\t\t\t\toverflow: visible !important;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Button_13 span\n\t\t\t\t{\n\t\t\t\t\tfont-weight: 400 !important;\n\t\t\t\t\tcolor: #ffffff !important;\n\t\t\t\t\tfont-family: Arial !important;\n\t\t\t\t\tfont-size: 18px !important;\n\t\t\t\t\tpadding: 0 !important;\n\t\t\t\t\tline-height: 1 !important;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Button_13:active\n\t\t\t\t{\n\t\t\t\t\tpadding: 5px 10px !important;\n\t\t\t\t\tborder: none !important;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Button_13:active, .TSPortfolioHE_Button_13:hover, .TSPortfolioHE_Button_13:focus\n\t\t\t\t{\n\t\t\t\t\tbackground: #d81c4e !important;\n\t\t\t\t\toutline: none !important;\n\t\t\t\t\topacity: 1 !important;\n\t\t\t\t}\n\t\t\t\t.filters-button-group_13 > button:hover .TSPortfolioHE_Button_Span_13, .filters-button-group_13 > button.is-checked .TSPortfolioHE_Button_Span_13\t\t\t\t{\n\t\t\t\t\tcolor: #ffffff !important;\n\t\t\t\t}\n\t\t\t\t\t\t\t\t\t.filters-button-group_13 > button:before, .filters-button-group_13 > button:after\n\t\t\t\t\t{\n\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\twidth: 50px;\n\t\t\t\t\t\theight: 50px;\n\t\t\t\t\t\tborder-radius: 50%;\n\t\t\t\t\t\tborder: 4px solid rgba(196,0,52,0.7);\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: 50%;\n\t\t\t\t\t\tleft: 50%;\n\t\t\t\t\t\topacity: 0;\n\t\t\t\t\t\ttransform: translateX(-50%) translateY(-50%) scale(0.8);\n\t\t\t\t\t\t-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);\n\t\t\t\t\t\t-ms-transform: translateX(-50%) translateY(-50%) scale(0.8);\n\t\t\t\t\t\ttransition: all 0.3s ease 0s;\n\t\t\t\t\t}\n\t\t\t\t\t.filters-button-group_13 > button:after\n\t\t\t\t\t{\n\t\t\t\t\t\tborder-width: 2px;\n\t\t\t\t\t\ttransition: all 0.4s ease 0s;\n\t\t\t\t\t}\n\t\t\t\t\t.filters-button-group_13 > button:hover:before, .filters-button-group_13 > button.is-checked:before\n\t\t\t\t\t{\n\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t\ttransform: translateX(-50%) translateY(-50%) scale(1);\n\t\t\t\t\t\t-webkit-transform: translateX(-50%) translateY(-50%) scale(1);\n\t\t\t\t\t\t-ms-transform: translateX(-50%) translateY(-50%) scale(1);\n\t\t\t\t\t}\n\t\t\t\t\t.filters-button-group_13 > button:hover:after, .filters-button-group_13 > button.is-checked:after\n\t\t\t\t\t{\n\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t\ttransform: translateX(-50%) translateY(-50%) scale(1.3);\n\t\t\t\t\t\t-webkit-transform: translateX(-50%) translateY(-50%) scale(1.3);\n\t\t\t\t\t\t-ms-transform: translateX(-50%) translateY(-50%) scale(1.3);\n\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.TSPortfolioHE_13\t\t\t\t{\n\t\t\t\t\tperspective: 500px;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_13 article img\n\t\t\t\t{\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t\tmargin: 0 auto !important;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\t\t\t-webkit-filter: blur(0px);\n\t\t\t\t\tfilter: blur(0px);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_13 article\n\t\t\t\t{\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin: 1%;\n\t\t\t\t\t\t\t\t\t\t\twidth: 31.3%;\n\t\t\t\t\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\tbackground: #ffffff;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tpadding: 0 !important;\n\t\t\t\t\tborder: none !important;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_13 article h3\n\t\t\t\t{\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\t-webkit-box-sizing: border-box;\n\t\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_13 article ul\n\t\t\t\t{\n\t\t\t\t\theight: 100%;\n\t\t\t\t\tbackground: transparent !important;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_13 article a, .TSPortfolioHE_13 article a:focus, .TSPortfolioHE_13 article a:hover\n\t\t\t\t{\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\toutline: none;\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t\t-webkit-box-shadow: none;\n\t\t\t\t\t-moz-box-shadow: none;\n\t\t\t\t\tborder-bottom: none;\n\t\t\t\t}\n\t\t\t\t\t\t\t\t\t.TSPortfolioHE_13 article img\n\t\t\t\t\t{\n\t\t\t\t\t\ttransition: all 0.3s ease-out 0s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_13 article:hover img\n\t\t\t\t\t{\n\t\t\t\t\t\ttransform: scale(1.1);\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content\n\t\t\t\t\t{\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: 0;\n\t\t\t\t\t\tleft: 0;\n\t\t\t\t\t\tbackground: rgba(0,0,0,0.33);\n\t\t\t\t\t\topacity: 0;\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_13 article:hover .box-content { opacity: 1; }\n\t\t\t\t\t.TSPortfolioHE_13 article .title\n\t\t\t\t\t{\n\t\t\t\t\t\tfont-weight: 400 !important;\n\t\t\t\t\t\tline-height: 1 !important;\n\t\t\t\t\t\tcolor: #ffffff !important;\n\t\t\t\t\t\tfont-family: Abadi MT Condensed Light !important;\n\t\t\t\t\t\tfont-size: 18px !important;\n\t\t\t\t\t\topacity: 0;\n\t\t\t\t\t\tmargin: 0 0 10px !important;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: 50%;\n\t\t\t\t\t\tleft: 0;\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\ttransform: translateY(-50%);\n\t\t\t\t\t\t-webkit-transform: translateY(-50%);\n\t\t\t\t\t\t-ms-transform: translateY(-50%);\n\t\t\t\t\t\tletter-spacing: 0 !important;\n\t\t\t\t\t\ttext-transform: none !important;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_13 article:hover .title { opacity: 1; }\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay\n\t\t\t\t\t{\n\t\t\t\t\t\twidth: 78px;\n\t\t\t\t\t\theight: 78px;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: 50%;\n\t\t\t\t\t\tleft: 50%;\n\t\t\t\t\t\ttransform-origin: 0 0;\n\t\t\t\t\t\ttransform: rotate(45deg) translate(-50%, -50%);\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay:before,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay:after,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay div:before,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay div:after\n\t\t\t\t\t{\n\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\tbackground: rgba(216,28,78,0.79);\n\t\t\t\t\t\ttransition: all 0.4s ease-in-out;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay:before,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay:after { width: 0; height: 2px; }\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay div:before,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay div:after { width: 2px; height: 0; }\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay:before,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay div:before { top: 0; left: 0; }\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay:after,\n\t\t\t\t\t.TSPortfolioHE_13 article .box-content .overlay div:after { bottom: 0; right: 0; }\n\t\t\t\t\t.TSPortfolioHE_13 article:hover .overlay:before,\n\t\t\t\t\t.TSPortfolioHE_13 article:hover .overlay:after { width: 65%; }\n\t\t\t\t\t.TSPortfolioHE_13 article:hover .overlay div:before,\n\t\t\t\t\t.TSPortfolioHE_13 article:hover .overlay div:after { height: 65%; }\n\t\t\t\t\t\t\t\t\/* Overlay *\/\n\t\t\t\t.TSPortfolioHE_Ov_13\t\t\t\t{\n\t\t\t\t\tposition: fixed;\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbackground: rgba(0,0,0,0.1);\n\t\t\t\t\tz-index: 10000000;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13\t\t\t\t{\n\t\t\t\t\tposition: fixed;\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tmax-height: 80%;\n\t\t\t\t\ttop: 50%;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tz-index: 10000001;\n\t\t\t\t\ttransform: translateY(-50%);\n\t\t\t\t\t-webkit-transform: translateY(-50%);\n\t\t\t\t\t-moz-transform: translateY(-50%);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div1\n\t\t\t\t{\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\twidth: 70%;\n\t\t\t\t\theight: inherit;\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2\n\t\t\t\t{\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tdisplay: -webkit-flex;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\twidth: 60%;\n\t\t\t\t\tbackground: #000000;\n\t\t\t\t\theight: 100%;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\ttop: 1.5%;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3\n\t\t\t\t{\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\/*float: right;*\/\n\t\t\t\t\twidth: 40%;\n\t\t\t\t\tbackground: #ffffff;\n\t\t\t\t\tpadding: 15px;\n\t\t\t\t\toverflow: auto;\n\t\t\t\t\tcursor: default;\n\t\t\t\t\ttop: 7px;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3 h3\n\t\t\t\t{\n\t\t\t\t\ttext-transform: none !important;\n\t\t\t\t\tline-height: 1 !important;\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t\tpadding: 5px 0 15px 0 !important;\n\t\t\t\t\tfont-weight: 400 !important;\n\t\t\t\t\tcolor: #d81c4e !important;\n\t\t\t\t\tfont-size: 19px !important;\n\t\t\t\t\tfont-family: Abadi MT Condensed Light !important;\n\t\t\t\t\ttext-align: center !important;\n\t\t\t\t\tletter-spacing: 0 !important;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3 p { line-height: 1.3 !important; margin: 0 !important; }\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3::-webkit-scrollbar { width: 9px; }\n\t\t\t\t\/* Track *\/\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3::-webkit-scrollbar-track { background: none; }\n\t\t\t\t\/* Handle *\/\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3::-webkit-scrollbar-thumb\n\t\t\t\t{\n\t\t\t\t\tbackground:#ffffff;\n\t\t\t\t\tborder:1px solid #d81c4e;\n\t\t\t\t\tborder-radius: 10px;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3::-webkit-scrollbar-thumb:hover\n\t\t\t\t{\n\t\t\t\t\tbackground:#d81c4e;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 img\n\t\t\t\t{\n\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\twidth: auto;\n\t\t\t\t\tmax-height: 100%;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t\t-webkit-backface-visibility: hidden;\n\t\t\t\t\t-ms-transform: translateZ(0);\n\t\t\t\t\t-webkit-transform: translateZ(0);\n\t\t\t\t\ttransform: translateZ(0);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2 span\n\t\t\t\t{\n\t\t\t\t\tbackground: rgba(0,0,0,0.4);\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tcolor: #ffffff;\n\t\t\t\t\tleft: 0px;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\tdisplay: -webkit-flex;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tfont-size: 25px;\n\t\t\t\t\tpadding: 15px 5px;\n\t\t\t\t\ttransform: translateX(-100%);\n\t\t\t\t\ttransition: all .5s;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2 span:hover\n\t\t\t\t{\n\t\t\t\t\tbackground: rgba(0,0,0,0.4);\n\t\t\t\t\tcolor: #ffffff;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2 span:last-child\n\t\t\t\t{\n\t\t\t\t\tright: 0px;\n\t\t\t\t\tleft: auto;\n\t\t\t\t\ttransform: translateX(100%);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2:hover .TSPortfolioHE_Ov_Div_Span_13\t\t\t\t{\n\t\t\t\t\ttransform: translateX(0%);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4\n\t\t\t\t{\n\t\t\t\t\tposition:fixed;\n\t\t\t\t\t\t\t\t\t\t\theight:60px;\n\t\t\t\t\t\twidth:60px;\n\t\t\t\t\t\ttop:20px;\n\t\t\t\t\t\t\t\t\t\tright:0;\n\t\t\t\t\tbackground: rgba(0,0,0,0.66);\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4:hover\n\t\t\t\t{\n\t\t\t\t\tbackground: rgba(0,0,0,0.66);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4:hover span:before, .TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4:hover span:after\n\t\t\t\t{\n\t\t\t\t\tbackground:#ffffff;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span\n\t\t\t\t{\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\t\t\t\t\t\t\theight:50px;\n\t\t\t\t\t\twidth:50px;\n\t\t\t\t\t\tright:5px;\n\t\t\t\t\t\ttop:5px;\n\t\t\t\t\t\t\t\t\t\ttext-indent:-5000px;\n\t\t\t\t\t-webkit-transform:rotate(45deg);\n\t\t\t\t\t-moz-transform:rotate(45deg);\n\t\t\t\t\t-ms-transform:rotate(45deg);\n\t\t\t\t\t-o-transform:rotate(45deg);\n\t\t\t\t\ttransform:rotate(45deg);\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:before\n\t\t\t\t{\n\t\t\t\t\tcontent:'';\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\t\t\t\t\t\theight:50px;\n\t\t\t\t\t\twidth:2px;\n\t\t\t\t\t\tleft:24px;\n\t\t\t\t\t\t\t\t\t\ttop:0;\n\t\t\t\t\tbackground:#ffffff;\n\t\t\t\t\tborder-radius:2px;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:after\n\t\t\t\t{\n\t\t\t\t\tcontent:'';\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\t\t\t\t\t\twidth:50px;\n\t\t\t\t\t\theight:2px;\n\t\t\t\t\t\ttop:24px;\n\t\t\t\t\t\t\t\t\t\tleft:0;\n\t\t\t\t\tbackground:#ffffff;\n\t\t\t\t\tborder-radius:2px;\n\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:before\n\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spana_a .5s;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:after\n\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spanb_a .5s;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spana { 0% {height: 3px;} 20% {height: 10px;} 40% {height: 20px;} 60% {height: 30px;} 80% {height: 40px;} 100% {height: 50px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spana_a { 0% {height: 2px;} 20% {height: 10px;} 40% {height: 20px;} 60% {height: 30px;} 80% {height: 40px;} 100% {height: 50px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spana_b { 0% {height: 2px;} 20% {height: 7px;} 40% {height: 12px;} 60% {height: 19px;} 80% {height: 25px;} 100% {height: 30px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spana_c { 0% {height: 2px;} 20% {height: 5px;} 40% {height: 10px;} 60% {height: 15px;} 80% {height: 20px;} 100% {height: 26px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spanb { 0% {width: 3px;} 20% {width: 10px;} 40% {width: 20px;} 60% {width: 30px;} 80% {width: 40px;} 100% {width: 50px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spanb_a { 0% {width: 2px;} 20% {width: 10px;} 40% {width: 20px;} 60% {width: 30px;} 80% {width: 40px;} 100% {width: 50px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spanb_b { 0% {width: 2px;} 20% {width: 7px;} 40% {width: 12px;} 60% {width: 19px;} 80% {width: 25px;} 100% {width: 30px;} }\n\t\t\t\t@-webkit-keyframes TSPortfolioHE_Ov_Spanb_c { 0% {width: 2px;} 20% {width: 5px;} 40% {width: 10px;} 60% {width: 15px;} 80% {width: 20px;} 100% {width: 26px;} }\n\t\t\t\t@media screen and (max-width: 1024px)\n\t\t\t\t{\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:before\n\t\t\t\t\t{\n\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spana_a .5s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:after\n\t\t\t\t\t{\n\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spanb_a .5s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 { height:60px; width:60px; top:-60px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span { height:50px; width:50px; right:5px; top:5px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:before { height:50px; width:2px; left:24px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:after { width:50px; height:2px; top:24px; }\n\t\t\t\t}\n\t\t\t\t@media screen and (max-width: 820px)\n\t\t\t\t{\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 { height:40px; width:40px; top:-40px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span { height:30px; width:30px; right:5px; top:5px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:before { height:30px; width:2px; left:14px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:after { width:30px; height:2px; top:14px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:before\n\t\t\t\t\t{\n\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spana_b .5s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:after\n\t\t\t\t\t{\n\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spanb_b .5s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2 span\n\t\t\t\t\t{\n\t\t\t\t\t\ttransform: translateX(0) !important;\n\t\t\t\t\t\t-moz-transform: translateX(0) !important;\n\t\t\t\t\t\t-webkit-transform: translateX(0) !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t@media screen and (max-width: 500px)\n\t\t\t\t{\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 { height:30px; width:30px; top:-30px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span { height:26px; width:26px; right:2px; top:2px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:before { height:26px; width:2px; left:12px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span:after { width:26px; height:2px; top:12px; }\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:before\n\t\t\t\t\t{\n\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spana_c .5s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div4 span.tsportspan:after\n\t\t\t\t\t{\n\t\t\t\t\t\t-webkit-animation: TSPortfolioHE_Ov_Spanb_c .5s;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div1, .TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2, .TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3\n\t\t\t\t\t{\n\t\t\t\t\t\twidth: 94%;\n\t\t\t\t\t\tleft: 0.5%;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div2\n\t\t\t\t\t{\n\t\t\t\t\t\theight: auto;\n\t\t\t\t\t}\n\t\t\t\t\t.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div3\n\t\t\t\t\t{\n\t\t\t\t\t\tmax-height: 250px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t@media (max-width: 1024px) { .TSPortfolioHE_13 article { width: 31.3%; } }\n\t\t\t\t@media (max-width: 800px) { .TSPortfolioHE_13 article { width: 48%; } }\n\t\t\t\t@media (max-width: 500px) { .TSPortfolioHE_13 article { width: 100%; margin: 2% 0; } }\n\t\t\t\t.por_hov_effects_loading13{\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: 300px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t}\n\t\t\t\t.por_hov_effects_loading13 img{\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 50%;\n\t\t\t\t\tleft: 50%;\n\t\t\t\t\ttransform: translateY(-50%) translateX(-50%);\n\t\t\t\t\t-webkit-transform: translateY(-50%) translateX(-50%);\n\t\t\t\t\t-ms-transform: translateY(-50%) translateX(-50%);\n\t\t\t\t\t-moz-transform: translateY(-50%) translateX(-50%);\n\t\t\t\t\t-o-transform: translateY(-50%) translateX(-50%);\n\t\t\t\t}\n\t\t\t<\/style>\n\t\t\t<div class=\"por_hov_effects_loading13\">\n\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/plugins\/gallery-portfolio\/Includes\/..\/Images\/loader.gif\">\n\t\t\t<\/div>\n\t\t\t<div class=\"por_hov_effects13\" style=\"display: none;\">\n\t\t\t\t\t\t\t<div class=\"button-group filters-button-group filters-button-group_13\">\n\t\t\t\t\t<div><\/div>\n\t\t\t\t\t<button class=\"button is-checked TSPortfolioHE_Button_13\" data-filter=\"*\">\n\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">All<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".PreDevelopment13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Pre Development<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".NewKalashSthapana13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">New Kalash Sthapana<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".WrittenJapa13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Written Japa<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".MediaPublishedArticles13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Media Published Articles<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".BlessingsfromMahatmas13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Blessings from Mahatmas<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".OtherActivities13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Other Activities<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".BaburaoMaharajPhotoUnveil13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Baburao Maharaj Photo Unveil<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<button class=\"button TSPortfolioHE_Button_13\" data-filter=\".BhagwatSaptah13\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Button_Span_13\">Bhagwat Saptah<\/span>\n\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<section id=\"grid-container\" class=\"transitions-enabled fluid masonry js-masonry TSPortfolioHE_13\">\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Garud-Shankar-Nandi-and-Hanuman-Temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 1)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Pre Development Shree Garud, Shankar-Nandi and Hanuman Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shree-Garud-Shankar-Nandi-and-Hanuman-Temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 2)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Post Development Shree Garud, Shankar-Nandi and Hanuman Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Hanuman-rotated.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 3)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Pre Development: Shree Hanuman<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shree-Hanuman.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 4)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Post Development: Shree Hanuman<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Garud-rotated.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 5)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Pre Development: Shree Garud<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-DevelopmentShree-Garud.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 6)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Post Development:Shree Garud<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shankar-Nandi.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 7)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Pre Development: Shankar-Nandi<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shankar-Nand.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 8)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Post Development: Shankar-Nandi<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Ganesh-Hanuman-and-Narsinh-Temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 9)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Pre Development: Shree Ganesh, Hanuman and Narsinh Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"PreDevelopment13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shree-Ganesh-Hanuman-and-Narsinh-Temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 10)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Post Development: Shree Ganesh, Hanuman and Narsinh Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"NewKalashSthapana13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 11)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Kalash Pujan<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"NewKalashSthapana13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 12)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Mandir Pradakshina<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"NewKalashSthapana13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-2.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 13)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Kalash Sthapana at the hands of Swami Dinkar Shastr<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"NewKalashSthapana13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-3.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 14)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Kalash Mandir Pradakshina<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"NewKalashSthapana13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-4.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 15)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Kalash Gram Pradakshina<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"NewKalashSthapana13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Shree-DeoDhar-Charity-Commissioner-Satara-along-with-Dinkar-Swami.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 16)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Shree Deodhar Charity Commissioner (Satara) along with Dinkar Swami<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"WrittenJapa13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Notebook-for-writing-\u201cOm-Namo-Bhagvate-Vasudev\u201d-Jap.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 17)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Notebook for writing \u201cOm Namo Bhagvate Vasudev\u201d Jap<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"WrittenJapa13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sample-of-jap-notebook-received-from-sadhakas-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 18)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Sample of jap notebook received from sadhakas-1<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"WrittenJapa13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sample-of-jap-notebook-received-from-sadhakas-2.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 19)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Sample of jap notebook received from sadhakas-2<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"WrittenJapa13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sample-of-jap-notebook-received-from-sadhakas-3.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 20)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Sample of jap notebook received from sadhakas-3<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"WrittenJapa13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2020-January-Swami-Govind-Dev-Giriji-giving-blessings-for-Written-Japa-e1591594827368.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 21)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2020 January Swami Govind Dev Giriji giving blessings for Written Japa<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2006-Girvi-Media-Kalash-News.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 22)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2006 Girvi Media Kalash News<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-24-November-Website-Launch-by-Achyutananad-Swami.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 23)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 24 November Website Launch by Achyutananad Swami<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Aadarsh-Mandir-Puraskar-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 24)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 Aadarsh Mandir Puraskar-1<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Aadarsh-Mandir-Puraskar-2.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 25)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 Aadarsh Mandir Puraskar-2<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Girvi-Media-Mataji-Visit.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 26)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 Girvi Media Mataji Visit<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2015-Amhi-Sare-Brahman-16th-to-31st-July-edition.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 27)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2015 Amhi Sare Brahman (16th to 31st July edition)<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Amhi-Sare-Brahman-16th-30th-April-edition.-International-Spiritual-guru-unveiling-Dhyan-Mandir-at-Girvi.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 28)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2016 Amhi Sare Brahman (16th 30th April edition). International Spiritual guru unveiling Dhyan Mandir at Girvi<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Amhi-Sare-Brahman-parjanyasukta-Anushtan-to-increase-the-rainfall.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 29)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2016 Amhi Sare Brahman parjanyasukta Anushtan to increase the rainfall<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2018-Amhi-Saare-Brahman-Feb-edition-Special-Puja-performed-on-eve-of-Birth-Anniversary-of-Hon.-Kirshor-ji-Vyas.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 30)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2018 Amhi Saare Brahman (Feb edition) Special Puja performed on eve of Birth Anniversary of Hon. Kirshor ji Vyas<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-Amhi-Saare-Brahman-1-15-December-edition-Special-pooja-performed-by-25-pandits-for-3-days.png\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 31)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2019 Amhi Saare Brahman (1-15 December edition) Special pooja performed by 25 pandits for 3 days<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-16-31-December-Amhi-Saare-Brahman-Geeta-Pathan-by-Sadhaks.png\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 32)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2019 16-31 December Amhi Saare Brahman Geeta Pathan by Sadhaks<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sthairya-11-April-2016-Swami-Govind-Dev-giriji-visited-the-temple-and-explained-mandir\u2019s-significance.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 33)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Sthairya 11 April 2016 Swami Govind Dev giriji visited the temple and explained mandir\u2019s significance<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sthairya-Unveiling-of-Murtikar-Paduka-at-Girvi-Temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 34)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Sthairya Unveiling of Murtikar Paduka at Girvi Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"MediaPublishedArticles13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Charity-Commissioner-Mr.-P.B.-Tijare-visited-the-temple-and-expressed-satisfaction-regarding-progress-and-activities-conducted-in-temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 35)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Charity Commissioner Mr. P.B. Tijare visited the temple and expressed satisfaction regarding progress and activities conducted in temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 36)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2015 September: Swami Avdheshanand ji giving blessings for our efforts for efforts<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2018-Swami-Govind-Dev-Giriji-giving-blessings-e1591603381477.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 37)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2018 Swami Govind Dev Giriji giving blessings<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2018-November-Prasad-Maharaj-Amalnerkar-visited-Girvi-temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 38)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2018 November: Prasad Maharaj Amalnerkar visited Girvi temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2017-July-Soma-Abhishek-at-Girvi.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 39)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2017 July Soma Abhishek at Girvi<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Shree-Pranavtirtha-Pune-visited-Girvi-Temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 40)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 Shree Pranavtirtha (Pune) visited Girvi Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2009-August-Dr.-Suhas-Pethe-visited-Girvi-Temple-for-publication-of-new-book-on-Dnyaneshwari.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 41)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2009 August: Dr. Suhas Pethe visited Girvi Temple for publication of new book on Dnyaneshwari<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/November-2010-Swami-Veerjanand-Saraswati-at-Girvi.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 42)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">November 2010: Swami Veerjanand Saraswati at Girvi<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2008-August-Principal-Shivaji-rao-Bhosale-unveiling-the-second-edition-on-Book-on-Gopal-Krishna-Girvi.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 43)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2008 August Principal Shivaji rao Bhosale unveiling the second edition on Book on Gopal Krishna Girvi<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Pujya-Govind-Dev-Giriji-inaugurating-Dhyan-Mandir-at-Girvi-temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 44)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2016 Pujya Govind Dev Giriji inaugurating Dhyan Mandir at Girvi temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Pujya-Govind-Dev-Giriji-in-Dhyan-Mandir-at-Girvi-temple.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 45)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2016 Pujya Govind Dev Giriji in Dhyan Mandir at Girvi temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2020-March-Pujya-Shree-Shankaracharya-karveer-Peeth-blessings.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 46)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2020 March : Pujya Shree Shankaracharya (karveer Peeth) blessings<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BlessingsfromMahatmas13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pujya-Shakarachyarya-Jagannath-Puri-gave-his-blessings.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 47)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Pujya Shakarachyarya (Jagannath Puri) gave his blessings<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-Pad-Yatra-Phaltan-Girvi.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 48)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2019 Pad Yatra (Phaltan-Girvi)<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 49)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2019 Pad Yatra (Phaltan-Girvi)<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-Pad-Yatra-Phaltan-Girvi1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 50)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2019 Pad Yatra (Phaltan-Girvi)<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Ashadhi-Ekadashi-Gram-Pradakshina.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 51)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Ashadhi Ekadashi Gram Pradakshina<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed-2.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 52)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Ashadhi Ekadashi Gram Pradakshina<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 53)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 54)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav3.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 55)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"OtherActivities13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav4.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 56)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BaburaoMaharajPhotoUnveil13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-5.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 57)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 May Shree Shivanad Swami unveiling photo of Shree Baburao Maharaj, founder of Girvi Temple<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BaburaoMaharajPhotoUnveil13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed-3.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 58)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 May Shree Shivanad Swami unveiling photo of Shree Baburao Maharaj, founder of Girvi Temple.<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BaburaoMaharajPhotoUnveil13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-1-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 59)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 May Shree Shivanad Swami unveiling photo of Shree Baburao Maharaj, founder of Girvi Temple.<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BhagwatSaptah13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-2-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 60)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2006 Bhagwat Saptah by Late Dr. R. L .Joshi, Rukmini-Krishna Vivah<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BhagwatSaptah13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-6.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 61)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2011 Bhagwat Saptah by Mukundkaka Jatdevlekar<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BhagwatSaptah13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-1-2.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 62)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2013 Bhagwat Saptah by Padmakar Kundikar- Bhagwat Granth Pradakshina<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BhagwatSaptah13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-3-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 63)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2020 January: Maharudra and Adhyatma Ramayan<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"BhagwatSaptah13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-4-1.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 64)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">2020 January: Adhyatma Ramayan (Ram-Sita vivah scene)<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t<article class=\"WrittenJapa13\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/IMG_9745-scaled.jpg\" class=\"img-responsive\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"box-content\"  onclick=\"OpenTSPortfolioHE_Pop(13, 65)\" >\n\t\t\t\t\t\t\t\t<div class=\"overlay\"><div><\/div><\/div>\n\t\t\t\t\t\t\t\t<h3 class=\"title\">Japa written in Kannad Script<\/h3>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t<\/section>\n\t\t\t<\/div>\n\t\t\t<div class=\"TSPortfolioHE_Ov TSPortfolioHE_Ov_13\" onclick=\"CloseTSPortfolioHE_Pop(13)\"><\/div>\n\t\t\t<div class=\"TSPortfolioHE_Ov_Div_13\">\n\t\t\t\t<input type=\"text\" style=\"display: none;\" class=\"TSPortfolioHE_Ov_Div_Num_13\" value=\"novalue\">\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_1\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Garud-Shankar-Nandi-and-Hanuman-Temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 65)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 2)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Pre Development Shree Garud, Shankar-Nandi and Hanuman Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_2\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shree-Garud-Shankar-Nandi-and-Hanuman-Temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 1)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 3)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Post Development Shree Garud, Shankar-Nandi and Hanuman Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_3\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Hanuman-rotated.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 2)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 4)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Pre Development: Shree Hanuman<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_4\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shree-Hanuman.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 3)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 5)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Post Development: Shree Hanuman<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_5\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Garud-rotated.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 4)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 6)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Pre Development: Shree Garud<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_6\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-DevelopmentShree-Garud.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 5)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 7)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Post Development:Shree Garud<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_7\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shankar-Nandi.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 6)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 8)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Pre Development: Shankar-Nandi<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_8\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shankar-Nand.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 7)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 9)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Post Development: Shankar-Nandi<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_9\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pre-Development-Shree-Ganesh-Hanuman-and-Narsinh-Temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 8)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 10)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Pre Development: Shree Ganesh, Hanuman and Narsinh Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_10\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Post-Development-Shree-Ganesh-Hanuman-and-Narsinh-Temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 9)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 11)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Post Development: Shree Ganesh, Hanuman and Narsinh Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_11\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 10)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 12)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Kalash Pujan<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_12\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 11)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 13)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Mandir Pradakshina<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_13\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-2.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 12)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 14)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Kalash Sthapana at the hands of Swami Dinkar Shastr<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_14\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-3.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 13)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 15)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Kalash Mandir Pradakshina<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_15\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-4.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 14)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 16)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Kalash Gram Pradakshina<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_16\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Shree-DeoDhar-Charity-Commissioner-Satara-along-with-Dinkar-Swami.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 15)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 17)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Shree Deodhar Charity Commissioner (Satara) along with Dinkar Swami<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_17\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Notebook-for-writing-\u201cOm-Namo-Bhagvate-Vasudev\u201d-Jap.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 16)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 18)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Notebook for writing \u201cOm Namo Bhagvate Vasudev\u201d Jap<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_18\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sample-of-jap-notebook-received-from-sadhakas-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 17)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 19)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Sample of jap notebook received from sadhakas-1<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_19\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sample-of-jap-notebook-received-from-sadhakas-2.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 18)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 20)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Sample of jap notebook received from sadhakas-2<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_20\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sample-of-jap-notebook-received-from-sadhakas-3.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 19)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 21)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Sample of jap notebook received from sadhakas-3<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_21\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2020-January-Swami-Govind-Dev-Giriji-giving-blessings-for-Written-Japa-e1591594827368.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 20)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 22)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2020 January Swami Govind Dev Giriji giving blessings for Written Japa<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_22\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2006-Girvi-Media-Kalash-News.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 21)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 23)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2006 Girvi Media Kalash News<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_23\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-24-November-Website-Launch-by-Achyutananad-Swami.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 22)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 24)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 24 November Website Launch by Achyutananad Swami<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_24\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Aadarsh-Mandir-Puraskar-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 23)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 25)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 Aadarsh Mandir Puraskar-1<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_25\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Aadarsh-Mandir-Puraskar-2.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 24)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 26)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 Aadarsh Mandir Puraskar-2<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_26\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Girvi-Media-Mataji-Visit.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 25)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 27)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 Girvi Media Mataji Visit<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_27\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2015-Amhi-Sare-Brahman-16th-to-31st-July-edition.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 26)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 28)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2015 Amhi Sare Brahman (16th to 31st July edition)<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_28\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Amhi-Sare-Brahman-16th-30th-April-edition.-International-Spiritual-guru-unveiling-Dhyan-Mandir-at-Girvi.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 27)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 29)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2016 Amhi Sare Brahman (16th 30th April edition). International Spiritual guru unveiling Dhyan Mandir at Girvi<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_29\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Amhi-Sare-Brahman-parjanyasukta-Anushtan-to-increase-the-rainfall.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 28)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 30)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2016 Amhi Sare Brahman parjanyasukta Anushtan to increase the rainfall<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_30\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2018-Amhi-Saare-Brahman-Feb-edition-Special-Puja-performed-on-eve-of-Birth-Anniversary-of-Hon.-Kirshor-ji-Vyas.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 29)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 31)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2018 Amhi Saare Brahman (Feb edition) Special Puja performed on eve of Birth Anniversary of Hon. Kirshor ji Vyas<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_31\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-Amhi-Saare-Brahman-1-15-December-edition-Special-pooja-performed-by-25-pandits-for-3-days.png\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 30)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 32)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2019 Amhi Saare Brahman (1-15 December edition) Special pooja performed by 25 pandits for 3 days<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_32\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-16-31-December-Amhi-Saare-Brahman-Geeta-Pathan-by-Sadhaks.png\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 31)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 33)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2019 16-31 December Amhi Saare Brahman Geeta Pathan by Sadhaks<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_33\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sthairya-11-April-2016-Swami-Govind-Dev-giriji-visited-the-temple-and-explained-mandir\u2019s-significance.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 32)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 34)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Sthairya 11 April 2016 Swami Govind Dev giriji visited the temple and explained mandir\u2019s significance<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_34\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Sthairya-Unveiling-of-Murtikar-Paduka-at-Girvi-Temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 33)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 35)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Sthairya Unveiling of Murtikar Paduka at Girvi Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_35\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Charity-Commissioner-Mr.-P.B.-Tijare-visited-the-temple-and-expressed-satisfaction-regarding-progress-and-activities-conducted-in-temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 34)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 36)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Charity Commissioner Mr. P.B. Tijare visited the temple and expressed satisfaction regarding progress and activities conducted in temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_36\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 35)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 37)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2015 September: Swami Avdheshanand ji giving blessings for our efforts for efforts<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_37\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2018-Swami-Govind-Dev-Giriji-giving-blessings-e1591603381477.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 36)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 38)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2018 Swami Govind Dev Giriji giving blessings<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_38\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2018-November-Prasad-Maharaj-Amalnerkar-visited-Girvi-temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 37)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 39)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2018 November: Prasad Maharaj Amalnerkar visited Girvi temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_39\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2017-July-Soma-Abhishek-at-Girvi.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 38)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 40)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2017 July Soma Abhishek at Girvi<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_40\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2011-Shree-Pranavtirtha-Pune-visited-Girvi-Temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 39)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 41)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 Shree Pranavtirtha (Pune) visited Girvi Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_41\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2009-August-Dr.-Suhas-Pethe-visited-Girvi-Temple-for-publication-of-new-book-on-Dnyaneshwari.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 40)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 42)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2009 August: Dr. Suhas Pethe visited Girvi Temple for publication of new book on Dnyaneshwari<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_42\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/November-2010-Swami-Veerjanand-Saraswati-at-Girvi.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 41)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 43)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>November 2010: Swami Veerjanand Saraswati at Girvi<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_43\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2008-August-Principal-Shivaji-rao-Bhosale-unveiling-the-second-edition-on-Book-on-Gopal-Krishna-Girvi.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 42)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 44)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2008 August Principal Shivaji rao Bhosale unveiling the second edition on Book on Gopal Krishna Girvi<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_44\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Pujya-Govind-Dev-Giriji-inaugurating-Dhyan-Mandir-at-Girvi-temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 43)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 45)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2016 Pujya Govind Dev Giriji inaugurating Dhyan Mandir at Girvi temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_45\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2016-Pujya-Govind-Dev-Giriji-in-Dhyan-Mandir-at-Girvi-temple.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 44)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 46)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2016 Pujya Govind Dev Giriji in Dhyan Mandir at Girvi temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_46\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2020-March-Pujya-Shree-Shankaracharya-karveer-Peeth-blessings.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 45)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 47)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2020 March : Pujya Shree Shankaracharya (karveer Peeth) blessings<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_47\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Pujya-Shakarachyarya-Jagannath-Puri-gave-his-blessings.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 46)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 48)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Pujya Shakarachyarya (Jagannath Puri) gave his blessings<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_48\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-Pad-Yatra-Phaltan-Girvi.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 47)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 49)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2019 Pad Yatra (Phaltan-Girvi)<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_49\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 48)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 50)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2019 Pad Yatra (Phaltan-Girvi)<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_50\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/2019-Pad-Yatra-Phaltan-Girvi1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 49)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 51)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2019 Pad Yatra (Phaltan-Girvi)<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_51\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Ashadhi-Ekadashi-Gram-Pradakshina.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 50)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 52)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Ashadhi Ekadashi Gram Pradakshina<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_52\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed-2.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 51)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 53)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Ashadhi Ekadashi Gram Pradakshina<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_53\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 52)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 54)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_54\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 53)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 55)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_55\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav3.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 54)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 56)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_56\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/Mahaprasad-distribution-on-the-eve-of-anusthan-and-utsav4.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 55)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 57)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Mahaprasad distribution on the eve of anusthan and utsav<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_57\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-5.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 56)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 58)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 May Shree Shivanad Swami unveiling photo of Shree Baburao Maharaj, founder of Girvi Temple<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_58\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/unnamed-3.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 57)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 59)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 May Shree Shivanad Swami unveiling photo of Shree Baburao Maharaj, founder of Girvi Temple.<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_59\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-1-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 58)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 60)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 May Shree Shivanad Swami unveiling photo of Shree Baburao Maharaj, founder of Girvi Temple.<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_60\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-2-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 59)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 61)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2006 Bhagwat Saptah by Late Dr. R. L .Joshi, Rukmini-Krishna Vivah<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_61\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-6.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 60)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 62)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2011 Bhagwat Saptah by Mukundkaka Jatdevlekar<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_62\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-1-2.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 61)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 63)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2013 Bhagwat Saptah by Padmakar Kundikar- Bhagwat Granth Pradakshina<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_63\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-3-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 62)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 64)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2020 January: Maharudra and Adhyatma Ramayan<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_64\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/pasted-image-0-4-1.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 63)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 65)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>2020 January: Adhyatma Ramayan (Ram-Sita vivah scene)<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div1 TSPortfolioHE_Ov_Div1_65\">\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div2\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/gopalkrishnagirvi.org\/wp-content\/uploads\/2020\/01\/IMG_9745-scaled.jpg\">\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 64)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-left\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"TSPortfolioHE_Ov_Div_Span_13\" onclick=\"OpenTSPortfolioHE_Pop(13, 1)\">\n\t\t\t\t\t\t\t\t<i class=\"totalsoft totalsoft-long-arrow-right\"><\/i>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div3\">\n\t\t\t\t\t\t\t<h3>Japa written in Kannad Script<\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"TSPortfolioHE_Ov_Div4\" onclick=\"CloseTSPortfolioHE_Pop(13)\">\n\t\t\t\t\t\t\t<span><\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<script type=\"text\/javascript\">\n\t\t\t\tjQuery(window).on(\"load resize\",function(){\n\t\t\t\t\tvar $grid = jQuery('.TSPortfolioHE_13').isotope({ itemSelector: 'article', });\n\t\t\t\t\tjQuery('.filters-button-group_13').on( 'click', 'button', function() {\n\t\t\t\t\t\tvar filterValue = jQuery( this ).attr('data-filter');\n\t\t\t\t\t\t$grid.isotope({ filter: filterValue });\n\t\t\t\t\t});\n\t\t\t\t\tjQuery('.filters-button-group_13').each( function( i, buttonGroup ) {\n\t\t\t\t\t\tvar $buttonGroup = jQuery( buttonGroup );\n\t\t\t\t\t\t$buttonGroup.on( 'click', 'button', function() { $buttonGroup.find('.is-checked').removeClass('is-checked'); jQuery( this ).addClass('is-checked'); });\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t\t\/\/ debounce so filtering doesn't happen every millisecond\n\t\t\t\tfunction debounce( fn, threshold ) {\n\t\t\t\t\tvar timeout;\n\t\t\t\t\treturn function debounced() {\n\t\t\t\t\t\tif ( timeout ) { clearTimeout( timeout ); }\n\t\t\t\t\t\tfunction delayed() { fn(); timeout = null; }\n\t\t\t\t\t\ttimeout = setTimeout( delayed, threshold || 100 );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tjQuery(window).bind(\"load\", function() {\n\t\t\t\t\tjQuery('.TSPortfolioHE_Button_13.is-checked').click();\n\t\t\t\t\tvar k = 0;\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div1').each(function(){\n\t\t\t\t\t\tk++;\n\t\t\t\t\t})\n\t\t\t\t\tjQuery(\"body\").keydown(function(event){\n\t\t\t\t\t\tvar num = jQuery('.TSPortfolioHE_Ov_Div_Num_13').val();\n\t\t\t\t\t\tif(num != 'novalue')\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif(event.which == 27)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tCloseTSPortfolioHE_Pop(13);\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(event.which == 37)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tif(parseInt(parseInt(num)-1) == 0) { var prevImage = k; } else { var prevImage = parseInt(parseInt(num)-1); }\n\t\t\t\t\t\t\t\tOpenTSPortfolioHE_Pop(13, prevImage);\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if(event.which == 39)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tif(parseInt(parseInt(num)+1) == k+1) { var nextImage = 1; } else { var nextImage = parseInt(parseInt(num)+1); }\n\t\t\t\t\t\t\t\tOpenTSPortfolioHE_Pop(13, nextImage);\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t\tjQuery(window).resize(function(){\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_13 .TSPortfolioHE_Ov_Div1').each(function(){\n\t\t\t\t\t\tif(jQuery(window).width() > 500)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif(jQuery(this).css('display') == 'block')\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tjQuery(this).css('display','flex');\n\t\t\t\t\t\t\t\tjQuery(this).css('display','-webkit-flex');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif(jQuery(this).css('display') == 'flex' || jQuery(this).css('display') == '-webkit-flex')\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tjQuery(this).css('display','block');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t})\n\t\t\t\tfunction OpenTSPortfolioHE_Pop(Port_id, num) {\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_Num_'+Port_id).val(num);\n\t\t\t\t\tif(jQuery(window).width() > 500)\n\t\t\t\t\t{\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_'+Port_id).css('display','flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_'+Port_id).css('display','-webkit-flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_'+Port_id).css('display','flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_'+Port_id).css('display','-webkit-flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1').css('display','none');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1_'+num).css('display','flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1_'+num).css('display','-webkit-flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1_'+num+' .TSPortfolioHE_Ov_Div4 span').addClass('tsportspan');\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_'+Port_id).css('display','flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_'+Port_id).css('display','-webkit-flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_'+Port_id).css('display','flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_'+Port_id).css('display','-webkit-flex');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1').css('display','none');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1_'+num).css('display','block');\n\t\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1_'+num+' .TSPortfolioHE_Ov_Div4 span').addClass('tsportspan');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tfunction CloseTSPortfolioHE_Pop(Port_id) {\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_Num_'+Port_id).val('novalue');\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_'+Port_id).css('display','none');\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div_'+Port_id).css('display','none');\n\t\t\t\t\tjQuery('.TSPortfolioHE_Ov_Div1').css('display','none');\n\t\t\t\t}\n\t\t\t<\/script>\n\t\t\t<script type=\"text\/javascript\">\n\t\t\t\tvar array_TotSoft_HE13=[];\n\t\t\t\tjQuery(\".img-responsive\").each(function(){\n\t\t\t\t\tif( jQuery(this).attr(\"src\") != \"\" ) {\n\t\t\t\t\t\tarray_TotSoft_HE13.push(jQuery(this).attr(\"src\"));\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t\tvar y_TotSoft_HE13=0;\n\t\t\t\tfor(i=0;i<array_TotSoft_HE13.length;i++){\n\t\t\t\t\tjQuery(\"<img class='img-responsive' \/>\").attr('src', array_TotSoft_HE13[i]).on(\"load\",function(){\n\t\t\t\t\t\ty_TotSoft_HE13++;\n\t\t\t\t\t\tif(y_TotSoft_HE13 == array_TotSoft_HE13.length){\n\t\t\t\t\t\t\tjQuery(\".por_hov_effects_loading13\").remove();\n\t\t\t\t\t\t\tjQuery(\".por_hov_effects13\").fadeIn(1000);\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t<\/script>\n\t\t\n<p><\/p>\n<p><\/p>\n<hr class=\"wp-block-separator\"\/>\n<\/p>\n<p><\/p>\n<p><\/p>\n","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-17","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"thumblist":false,"meccarouselthumb":false,"gridsquare":false,"tileview":false,"RoboGalleryMansoryImagesCenter":false,"RoboGalleryPreload":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false,"easy_testimonial_thumb":false},"uagb_author_info":{"display_name":"templegopalkrishna@gmail.com","author_link":"https:\/\/gopalkrishnagirvi.org\/en\/author\/templegopalkrishnagmail-com\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/pages\/17","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/comments?post=17"}],"version-history":[{"count":36,"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/pages\/17\/revisions"}],"predecessor-version":[{"id":1166,"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/pages\/17\/revisions\/1166"}],"wp:attachment":[{"href":"https:\/\/gopalkrishnagirvi.org\/en\/wp-json\/wp\/v2\/media?parent=17"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}