(function($){
window.etCore=window.etCore||{};
window.etCore.api=window.etCore.api||{};
window.etCore.api.spam=window.etCore.api.spam||{};
window.etCore.api.spam.recaptcha=$.extend(et_core_api_spam_recaptcha, {
_bindMethods: function(target){
Object.keys(target).forEach(function(prop){
if(target.hasOwnProperty(prop)&&'function'===typeof target[prop]){
target[prop]=target[prop].bind(target);
}});
},
init: function(){
this._bindMethods(this);
if(this.isEnabled()){
window.grecaptcha&&grecaptcha.execute(this.site_key, this.page_action);
}},
isEnabled: function(){
return !! (this.site_key&&window.grecaptcha);
},
interaction: function(action){
if(! this.isEnabled()){
return Promise.resolve('');
}
return grecaptcha.execute(this.site_key, { action: action });
}});
window.grecaptcha&&grecaptcha.ready(function(){
window.etCore.api.spam.recaptcha.init();
});
})(jQuery);
;(function($){
'use strict';
$.fn.fitVids=function(options){
var settings={
customSelector: null,
ignore: null
};
if(!document.getElementById('fit-vids-style')){
var head=document.head||document.getElementsByTagName('head')[0];
var css='.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
var div=document.createElement("div");
div.innerHTML='<p>x</p><style id="fit-vids-style">' + css + '</style>';
head.appendChild(div.childNodes[1]);
}
if(options){
$.extend(settings, options);
}
return this.each(function(){
var selectors=[
'iframe[src*="player.vimeo.com"]',
'iframe[src*="youtube.com"]',
'iframe[src*="youtube-nocookie.com"]',
'iframe[src*="kickstarter.com"][src*="video.html"]',
'object',
'embed'
];
if(settings.customSelector){
selectors.push(settings.customSelector);
}
var ignoreList='.fitvidsignore';
if(settings.ignore){
ignoreList=ignoreList + ', ' + settings.ignore;
}
var $allVideos=$(this).find(selectors.join(','));
$allVideos=$allVideos.not('object object');
$allVideos=$allVideos.not(ignoreList);
$allVideos.each(function(){
var $this=$(this);
if($this.parents(ignoreList).length > 0){
return;
}
if(this.tagName.toLowerCase()==='embed'&&$this.parent('object').length||$this.parent('.fluid-width-video-wrapper').length){ return; }
if((!$this.css('height')&&!$this.css('width'))&&(isNaN($this.attr('height'))||isNaN($this.attr('width')))){
$this.attr('height', 9);
$this.attr('width', 16);
}
var height=(this.tagName.toLowerCase()==='object'||($this.attr('height')&&!isNaN(parseInt($this.attr('height'), 10)))) ? parseInt($this.attr('height'), 10):$this.height(),
width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10):$this.width(),
aspectRatio=height / width;
if(!$this.attr('name')){
var videoName='fitvid' + $.fn.fitVids._count;
$this.attr('name', videoName);
$.fn.fitVids._count++;
}
$this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%');
$this.removeAttr('height').removeAttr('width');
});
});
};
$.fn.fitVids._count=0;
})(window.jQuery||window.Zepto);
(function(root, factory){
if(typeof exports==='object'){
module.exports=factory(require('jquery'));
}
else if(typeof define==='function'&&define.amd){
define(['jquery'], factory);
}else{
factory(root.jQuery);
}}(this, function($){
var CanvasRenderer=function(el, options){
var cachedBackground;
var canvas=document.createElement('canvas');
el.appendChild(canvas);
if(typeof(G_vmlCanvasManager)!=='undefined'){
G_vmlCanvasManager.initElement(canvas);
}
var ctx=canvas.getContext('2d');
canvas.width=canvas.height=options.size;
var scaleBy=1;
if(window.devicePixelRatio > 1){
scaleBy=window.devicePixelRatio;
canvas.style.width=canvas.style.height=[options.size, 'px'].join('');
canvas.width=canvas.height=options.size * scaleBy;
ctx.scale(scaleBy, scaleBy);
}
ctx.translate(options.size / 2, options.size / 2);
ctx.rotate((-1 / 2 + options.rotate / 180) * Math.PI);
var radius=(options.size - options.lineWidth) / 2;
if(options.scaleColor&&options.scaleLength){
radius -=options.scaleLength + 2;
}
Date.now=Date.now||function(){
return +(new Date());
};
var drawCircle=function(color, lineWidth, percent, alpha){
percent=Math.min(Math.max(-1, percent||0), 1);
var isNegative=percent <=0 ? true:false;
ctx.beginPath();
ctx.arc(0, 0, radius, 0, Math.PI * 2 * percent, isNegative);
ctx.strokeStyle=color;
ctx.globalAlpha=alpha;
ctx.lineWidth=lineWidth;
ctx.stroke();
};
var drawScale=function(){
var offset;
var length;
ctx.lineWidth=1;
ctx.fillStyle=options.scaleColor;
ctx.save();
for (var i=24; i > 0; --i){
if(i % 6===0){
length=options.scaleLength;
offset=0;
}else{
length=options.scaleLength * 0.6;
offset=options.scaleLength - length;
}
ctx.fillRect(-options.size/2 + offset, 0, length, 1);
ctx.rotate(Math.PI / 12);
}
ctx.restore();
};
var reqAnimationFrame=(function(){
return  window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
function(callback){
window.setTimeout(callback, 1000 / 60);
};}());
var drawBackground=function(){
if(options.scaleColor) drawScale();
if(options.trackColor) drawCircle(options.trackColor, options.lineWidth, 1, options.trackAlpha);
};
this.getCanvas=function(){
return canvas;
};
this.getCtx=function(){
return ctx;
};
this.clear=function(){
ctx.clearRect(options.size / -2, options.size / -2, options.size, options.size);
};
this.draw=function(percent){
if(!!options.scaleColor||!!options.trackColor){
if(ctx.getImageData&&ctx.putImageData){
if(!cachedBackground){
drawBackground();
cachedBackground=ctx.getImageData(0, 0, options.size * scaleBy, options.size * scaleBy);
}else{
ctx.putImageData(cachedBackground, 0, 0);
}}else{
this.clear();
drawBackground();
}}else{
this.clear();
}
ctx.lineCap=options.lineCap;
var color;
if(typeof(options.barColor)==='function'){
color=options.barColor(percent);
}else{
color=options.barColor;
}
drawCircle(color, options.lineWidth, percent / 100, options.barAlpha);
}.bind(this);
this.animate=function(from, to){
var startTime=Date.now();
options.onStart(from, to);
var animation=function(){
var process=Math.min(Date.now() - startTime, options.animate.duration);
var currentValue=options.easing(this, process, from, to - from, options.animate.duration);
this.draw(currentValue);
options.onStep(from, to, currentValue);
if(process >=options.animate.duration){
options.onStop(from, to);
}else{
reqAnimationFrame(animation);
}}.bind(this);
reqAnimationFrame(animation);
}.bind(this);
};
var EasyPieChart=function(el, opts){
var defaultOptions={
barColor: '#ef1e25',
barAlpha: 1.0,
trackColor: '#f9f9f9',
trackAlpha: 1.0,
scaleColor: '#dfe0e0',
scaleLength: 5,
lineCap: 'round',
lineWidth: 3,
size: 110,
rotate: 0,
render: true,
animate: {
duration: 1000,
enabled: true
},
easing: function (x, t, b, c, d){ // more can be found here: http://gsgd.co.uk/sandbox/jquery/easing/
t=t / (d/2);
if(t < 1){
return c / 2 * t * t + b;
}
return -c/2 * ((--t)*(t-2) - 1) + b;
},
onStart: function(from, to){
return;
},
onStep: function(from, to, currentValue){
return;
},
onStop: function(from, to){
return;
}};
if(typeof(CanvasRenderer)!=='undefined'){
defaultOptions.renderer=CanvasRenderer;
}else if(typeof(SVGRenderer)!=='undefined'){
defaultOptions.renderer=SVGRenderer;
}else{
throw new Error('Please load either the SVG- or the CanvasRenderer');
}
var options={};
var currentValue=0;
var init=function(){
this.el=el;
this.options=options;
for (var i in defaultOptions){
if(defaultOptions.hasOwnProperty(i)){
options[i]=opts&&typeof(opts[i])!=='undefined' ? opts[i]:defaultOptions[i];
if(typeof(options[i])==='function'){
options[i]=options[i].bind(this);
}}
}
if(typeof(options.easing)==='string'&&typeof(jQuery)!=='undefined'&&'function'===typeof jQuery.easing[options.easing]){
options.easing=jQuery.easing[options.easing];
}else{
options.easing=defaultOptions.easing;
}
if(typeof(options.animate)==='number'){
options.animate={
duration: options.animate,
enabled: true
};}
if(typeof(options.animate)==='boolean'&&!options.animate){
options.animate={
duration: 1000,
enabled: options.animate
};}
this.renderer=new options.renderer(el, options);
this.renderer.draw(currentValue);
if(el.dataset&&el.dataset.percent){
this.update(parseFloat(el.dataset.percent));
}else if(el.getAttribute&&el.getAttribute('data-percent')){
this.update(parseFloat(el.getAttribute('data-percent')));
}}.bind(this);
this.update=function(newValue){
newValue=parseFloat(newValue);
if(options.animate.enabled){
this.renderer.animate(currentValue, newValue);
}else{
this.renderer.draw(newValue);
}
currentValue=newValue;
return this;
}.bind(this);
this.disableAnimation=function(){
options.animate.enabled=false;
return this;
};
this.enableAnimation=function(){
options.animate.enabled=true;
return this;
};
init();
};
$.fn.easyPieChart=function(options){
return this.each(function(){
var instanceOptions;
if(!$.data(this, 'easyPieChart')){
instanceOptions=$.extend({}, options, $(this).data());
$.data(this, 'easyPieChart', new EasyPieChart(this, instanceOptions));
}});
};}));
!function(t){var e={};function i(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,i),o.l=!0,o.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:n})},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="/",i(i.s=194)}({18:function(t,e){},19:function(t,e){},194:function(t,e,i){i(195),i(196),i(197),i(198),i(199),i(19),i(29),i(22),i(71),i(67),i(72),i(23),i(47),i(42),i(24),i(51),i(68),i(40),i(41),i(62),i(43),i(18),i(70),i(35),i(69),i(34),i(27),i(63),i(65),i(31),i(30),i(48),i(49),i(50),i(200),i(25),i(32),i(33),i(28),i(36),i(20),i(21),i(73),i(44),i(66),i(45),i(46),i(26),t.exports=i(201)},195:function(t,e){},196:function(t,e){},197:function(t,e){},198:function(t,e){},199:function(t,e){},20:function(t,e){},200:function(t,e){},201:function(t,e){jQuery(function(t){t.fn.isInViewport=function(){var e=t(this).offset().top,i=e+t(this).outerHeight(),n=t(window).scrollTop(),o=n+t(window).height();return i>n&&e<o-t(window).height()/3};var e=t(".bck-vertical-timeline");e&&e.length>0&&e.each(function(){var e=t(this).find(".bck_vertical_timeline_child");"on"===t(this).data("scroll")&&t(window).on("scroll",function(){e.each(function(){if(t(this).isInViewport()?t(this).addClass("is-scroll"):t(this).removeClass("is-scroll"),t(this).hasClass("is-scroll")){var e=.03*t(this).height()+window.innerHeight/2,i=t(this).offset().top,n=window.scrollY+1.3*e-i;t(this).find(".bck-vt-scroll-inner").css("height",n+"px")}})})});var i=t(".bck-scroll-image");i&&i.length>0&&i.each(function(){var e=t(this).find(".bck-main-figure"),i=t(this).data("dir-hover"),n=t(this).data("dir-scroll"),o=t(this);if("none"!==i&&setTimeout(function(){var t="",n=e.width()-o.width(),a=e.height()-o.height();"X_rtl"!==i&&"Y_btt"!==i||(t="-"),o.get(0).style.setProperty("--offset-X",t+n+"px"),o.get(0).style.setProperty("--offset-Y",t+a+"px")},300),"none"!==n){var a=t(this).find(".bck-scroll-image-overlay");"horizontal"===n?a.css({width:e.width(),height:e.height()}):a.css({width:"100%",height:"100%"})}}),t(".bck-image-compare").each(function(){var e=t(this).data("offsetpct"),i=t(this).data("moveonhover"),n=t(this).data("orientation"),o=t(this).data("beforelabel"),a=t(this).data("afterlabel"),c=t(this).data("overlay");t(this).find(".bck-image-compare-container").twentytwenty({default_offset_pct:e,move_slider_on_hover:"on"===i,orientation:n,before_label:o,after_label:a,no_overlay:"on"!==c,move_with_handle_only:!0,click_to_move:!0})});var n=t(".bck-popup-yt, .bck-popup-vm");n&&n.length>0&&n.each(function(){var e=t(this).data("id"),i=t(this).data("type"),n=t(this).data("autoplay"),o=t(this).data("mute"),a=(t(this).data("order-class"),"");"yt"===i?a="https://www.youtube.com/watch?v=".concat(e):"vm"===i&&(a="https://player.vimeo.com/video/".concat(e)),t(".bck-popup-yt, .bck-popup-vm").magnificPopup({type:"iframe",mainClass:"mfp-fade",removalDelay:160,preloader:!1,fixedContentPos:!1,items:[{src:a,type:"iframe"}],iframe:{patterns:{youtube:{index:"youtube.com/",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay="+n+"&mute="+o},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay="+n+"&muted="+o}}},callbacks:{beforeOpen:function(){var e=t(this.st.el).data("order");t("body").addClass("bck-video-open bck-video-popup-".concat(e))},close:function(){var e=t(this.st.el).data("order");t("body").removeClass("bck-video-open bck-video-popup-".concat(e))}}})});var o=t(".bck-popup-video");o&&o.length>0&&t(".bck-popup-video").magnificPopup({type:"inline",mainClass:"mfp-fade",removalDelay:100,closeOnContentClick:!1,midClick:!0,callbacks:{beforeOpen:function(){t("body").addClass("bck-modal-open bck-video-popup")},open:function(){var e=t(this.st.el).data("mfp-src");t(".bck-modal").addClass("open"),t("".concat(e," video")).trigger("play")},close:function(){var e=t(this.st.el).data("mfp-src");t("".concat(e," video")).trigger("pause"),t("body").removeClass("bck-modal-open bck-video-popup"),t(".bck-modal").removeClass("open")}}});var a=t(".bck-horizontal-timeline");if(a&&a.length>0){var c={swipeToSlide:!1,edgeFriction:.35,useTransform:!0,touchThreshold:600,arrows:!0,dots:!1};a.each(function(){var e=t(this).data("settings"),i=Object.assign(c,e);t(this).slick(i)})}t(".bck-content-toggle-input").each(function(){var e=t(this).parents(".bck-content-toggle").find(".bck-content-toggle-back"),i=t(this).parents(".bck-content-toggle").find(".bck-content-toggle-front");this.checked?(i.hide(),e.show()):(e.hide(),i.show()),t(this).on("change",function(){this.checked?(i.hide(),e.show()):(e.hide(),i.show())})}),t(".bck-counter").each(function(e,i){var n=window.counterUp.default;new Waypoint({element:t(this),handler:function(){n(i,{duration:1e3,delay:16}),this.destroy()},offset:"bottom-in-view"})}),setTimeout(function(){t(".bck-front.bck-hotspots").each(function(){t(this).find(".bck-hotspot").each(function(){var e=t(this).data("settings");if(console.log(e),!e.link){var i=t(this).find(".bck-hotspot-tooltip").prop("outerHTML");tippy(".".concat(e.order_class," .bck-hotspot"),{content:i,allowHTML:!0,trigger:e.trigger,placement:e.placement,animation:e.animation,arrow:e.arrow,interactive:!0,maxWidth:"none"})}})})},300),t(".bck_hover_box").each(function(){t(this).find(".bck-hover-tilt").tilt({perspective:500})}),t(".bck_lottie").each(function(){var e=t(this).find(".bck-lottie-js").data("settings"),i="bck-lottie-js-"+e.id;if(e.path)if(this.lottie=lottie.loadAnimation({container:document.getElementById(i),path:e.path,renderer:e.renderer,loop:"on"===e.loop,autoplay:!1,rendererSettings:{progressiveLoad:!0}}),e.play_speed&&this.lottie.setSpeed(e.play_speed),"none"===e.trigger)this.lottie.play();else if("on_click"===e.trigger){var n=this;t("#"+i).on("click",function(t){t.preventDefault(),n.lottie.stop(),n.lottie.play()})}else if("on_hover"===e.trigger){var o=this;t("#"+i).on("mouseenter",function(t){t.preventDefault(),o.lottie.stop(),o.lottie.play()}),t("#"+i).on("mouseleave",function(t){t.preventDefault(),o.lottie.stop()})}else if("viewport"===e.trigger){var a=this;if("IntersectionObserver"in window){var c=document.querySelector("#"+i),s=!1;new IntersectionObserver(function(t,e){t.forEach(function(t){1!=t.intersectionRatio?(a.lottie.pause(),s=!0):s&&(a.lottie.play(),s=!1)})},{threshold:1}).observe(c)}else a.lottie.play()}}),t(".bck_instagram_feed").each(function(){var e=t(this).find(".bck-insta-js");if("masonry"===e.data("settings").layout_type){var i=e.masonry({itemSelector:".grid-item",columnWidth:".grid-sizer",gutter:".gutter-sizer",percentPosition:!0});i.imagesLoaded().progress(function(){i.masonry("layout")})}}),t(".bck-popup-front-mode").each(function(){var e=t(this),i=e.data("settings");new window.brainPopup(e,i).init()}),t(".bck_blog_plus").each(function(){var e=t(this).find(".bck-bp-wrapper"),i=e.find(".bck-bp-inner-wrapper"),n=e.find("button.bck-bp-infinite-button"),o=t(this).find(".bck-bp-inner-wrapper"),a=o.data("settings");if("masonry"===a.layout_type){var c=o.masonry({itemSelector:".grid-item",columnWidth:".grid-sizer",gutter:".gutter-sizer",percentPosition:!0});c.imagesLoaded().progress(function(){c.masonry("layout")})}if(n.on("click",function(e){e.preventDefault();var n=t(this),o=n.data("settings"),a=i.find(".bck-bp-post").length;n.attr("disabled",!0),t.ajax({url:BrainConkitLocalize.ajax_url,type:"POST",data:{action:"bck_get_post",security:BrainConkitLocalize.nonce,settings:o,loadedPosts:a},success:function(e){e?t(e).each(function(){var e=t(this);e.hasClass("bck-bp-post")?e.addClass("bck-bp-post-loaded").appendTo(i):e.appendTo(i)}):(n.text("All Loaded").addClass("loaded"),setTimeout(function(){n.css({display:"none"})},1e3)),n.find(".bck-bp-loading").css({display:"none"}),n.removeAttr("disabled"),console.log(o),"masonry"===o.layout_type&&c.imagesLoaded().progress(function(){c.masonry("reloadItems"),c.masonry("layout")})},error:function(t){}})}),"carousel"===a.layout_type){var s=e.data("settings"),r=Object.assign({swipeToSlide:!0,edgeFriction:.35,useTransform:!0,touchThreshold:600},s);o.slick(r)}});var s=t(".bck-image-magnifier-front");s&&s.length>0&&t(".bck-image-magnifier-front img").magnify();var r=t(".bck-image-accordion");r&&r.length>0&&r.each(function(){var e=t(this),i=t(this).data("trigger");"hover"===i?(t(this).find(".bck_image_accordion_child").each(function(){t(this).on("mouseenter",function(){t(this).addClass("bck-active")})}),t(this).find(".bck_image_accordion_child").each(function(){t(this).on("mouseleave",function(){t(this).removeClass("bck-active")})})):"click"===i&&t(this).find(".bck_image_accordion_child").each(function(){t(this).on("click",function(){e.find(".bck_image_accordion_child").removeClass("bck-active"),t(this).addClass("bck-active")})})}),t(".bck-animated-text.bck-front").each(function(){var e=this,i=t(this).data("settings"),n=t(this).attr("id"),o=t(this).data("type");"typed"===o?new Typed("#".concat(n," .bck-typed-text"),i):"tilt"===o?t(this).find(".bck-animated-text-tilt").textillate(i):"slide"===o&&(t(this).find(".bck-animated-text-slide").addClass("slide-initialized"),t(this).find(".bck-animated-text-slide li").removeClass("text-in"),t(this).find(".bck-animated-text-slide li").first().addClass("text-in"),setInterval(function(){var i=t(e).find(".bck-animated-text-slide .text-in");i.addClass("text-out"),i.removeClass("text-in"),i.next().is("li")?(i.next().removeClass("text-out"),i.next().addClass("text-in")):(t(e).find(".bck-animated-text-slide li").first().addClass("text-in"),t(e).find(".bck-animated-text-slide li").first().removeClass("text-out"))},parseInt(i.slide_gap)))})})},21:function(t,e){},22:function(t,e){},23:function(t,e){},24:function(t,e){},25:function(t,e){},26:function(t,e){},27:function(t,e){},28:function(t,e){},29:function(t,e){},30:function(t,e){},31:function(t,e){},32:function(t,e){},33:function(t,e){},34:function(t,e){},35:function(t,e){},36:function(t,e){},40:function(t,e){},41:function(t,e){},42:function(t,e){},43:function(t,e){},44:function(t,e){},45:function(t,e){},46:function(t,e){},47:function(t,e){},48:function(t,e){},49:function(t,e){},50:function(t,e){},51:function(t,e){},62:function(t,e){},63:function(t,e){},65:function(t,e){},66:function(t,e){},67:function(t,e){},68:function(t,e){},69:function(t,e){},70:function(t,e){},71:function(t,e){},72:function(t,e){},73:function(t,e){}});
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var o=t[i]={i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:i})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=213)}([,,,,,function(e,t){},function(e,t){},,,function(e,t){},function(e,t){},,,,,function(e,t){},function(e,t){},,function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},,function(e,t){},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){n(214),n(215),n(216),n(10),n(56),n(57),n(9),n(40),n(88),n(6),n(5),n(15),n(16),n(18),n(217),n(19),n(20),n(21),n(22),n(23),n(24),n(25),n(26),n(27),n(28),n(29),n(30),n(31),n(32),n(33),n(34),n(35),n(36),n(37),n(38),n(39),n(86),n(218),n(41),n(42),n(43),n(44),n(45),n(46),n(47),n(48),n(49),n(50),n(51),n(52),n(53),n(54),n(55),n(58),n(59),n(60),n(61),n(62),n(63),n(64),n(65),n(66),n(67),n(68),n(69),n(70),n(71),n(72),n(73),n(74),n(75),n(76),n(77),n(78),n(79),n(80),n(81),n(82),n(83),n(84),n(85),n(219),e.exports=n(220)},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){jQuery(function(e){var t="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MCIgaGVpZ2h0PSI1NDAiIHZpZXdCb3g9IjAgMCAxMDgwIDU0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTAgMGgxMDgwdjU0MEgweiIvPgogICAgICAgIDxwYXRoIGQ9Ik00NDUuNjQ5IDU0MGgtOTguOTk1TDE0NC42NDkgMzM3Ljk5NSAwIDQ4Mi42NDR2LTk4Ljk5NWwxMTYuMzY1LTExNi4zNjVjMTUuNjItMTUuNjIgNDAuOTQ3LTE1LjYyIDU2LjU2OCAwTDQ0NS42NSA1NDB6IiBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgICAgICA8Y2lyY2xlIGZpbGwtb3BhY2l0eT0iLjA1IiBmaWxsPSIjMDAwIiBjeD0iMzMxIiBjeT0iMTQ4IiByPSI3MCIvPgogICAgICAgIDxwYXRoIGQ9Ik0xMDgwIDM3OXYxMTMuMTM3TDcyOC4xNjIgMTQwLjMgMzI4LjQ2MiA1NDBIMjE1LjMyNEw2OTkuODc4IDU1LjQ0NmMxNS42Mi0xNS42MiA0MC45NDgtMTUuNjIgNTYuNTY4IDBMMTA4MCAzNzl6IiBmaWxsLW9wYWNpdHk9Ii4yIiBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz4KICAgIDwvZz4KPC9zdmc+Cg==",n="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgdmlld0JveD0iMCAwIDUwMCA1MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNFQkVCRUIiIGQ9Ik0wIDBoNTAwdjUwMEgweiIvPgogICAgICAgIDxyZWN0IGZpbGwtb3BhY2l0eT0iLjEiIGZpbGw9IiMwMDAiIHg9IjY4IiB5PSIzMDUiIHdpZHRoPSIzNjQiIGhlaWdodD0iNTY4IiByeD0iMTgyIi8+CiAgICAgICAgPGNpcmNsZSBmaWxsLW9wYWNpdHk9Ii4xIiBmaWxsPSIjMDAwIiBjeD0iMjQ5IiBjeT0iMTcyIiByPSIxMDAiLz4KICAgIDwvZz4KPC9zdmc+Cg==",i="Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.";window.ETBuilderBackendDynamic&&window.ETBuilderBackendDynamic.defaults&&(window.ETBuilderBackendDynamic.defaults.dnxte_flip_box={front_heading:"Front Title",back_heading:"Back Title",front_content:"<p>".concat("Put your actual text here.","</p>"),back_content:"<p>".concat("Put your actual text here.","</p>")},window.ETBuilderBackendDynamic.defaults.dnxte_image_reveal={dnext_img_reveal:t},window.ETBuilderBackendDynamic.defaults.dnxte_3d_flipbox={front_heading:"Front Title Goes Here",back_heading:"Back Title Goes Here",front_content:"<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings.</p>",back_content:"<p>Your content goes here. Edit or remove this text inline or in the module Content settings.</p>"},window.ETBuilderBackendDynamic.defaults.dnxte_team_social_reveal={teamsorev_image:n,teamsorev_name:"Name Goes Here",teamsorev_position:"Position",teamsorev_content:i},window.ETBuilderBackendDynamic.defaults.dnxte_person={teamperson_image:n,teamperson_name:"Name Goes Here",teamperson_position:"CEO and Founder , Unknown Company"},window.ETBuilderBackendDynamic.defaults.dnxte_team_overlay={teamoverlay_image:n,teamoverlay_name:"Name Goes Here",teamoverlay_position:"CEO and Founder , Unknown Company"},window.ETBuilderBackendDynamic.defaults.dnxte_team_overlay_card={teamoverlay_card_image:n,teamovelay_card_content:i,teamoverlay_card_name:"Name Goes Here",teamoverlay_card_position:"CEO and Founder , Unknown Company"},window.ETBuilderBackendDynamic.defaults.dnxte_team_creative={team_creative_image:n,team_creative_name:"Name Goes Here",team_creative_position:"CEO and Founder , Unknown Company",button_text:"Button Text"},window.ETBuilderBackendDynamic.defaults.dnxte_review={reviewer_image:n,reviewer_name:"Name Goes Here",reviewer_position:"CEO and Founder , Unknown Company",content:"<p>".concat(i,"</p>")},window.ETBuilderBackendDynamic.defaults.dnxte_image_icon={dnxtiep_iie_image:t,dnxtiep_iie_heading_text:"Heading Text",dnxtiep_iie_heading_bold:"Focus Text"},window.ETBuilderBackendDynamic.defaults.dnxte_text_mask={text_mask:"Text Mask",thumbnail_image_mask:t},window.ETBuilderBackendDynamic.defaults.dnxte_gradient_text={gradient_title:"Gradient Heading Text"},window.ETBuilderBackendDynamic.defaults.dnxte_multi_heading={text_one:"Multi"},window.ETBuilderBackendDynamic.defaults.dnxte_text_animation={before_text:"Before Text"},window.ETBuilderBackendDynamic.defaults.dnxte_color_motion={text_color_motion:"Heading"},window.ETBuilderBackendDynamic.defaults.dnxte_text_divider={dnxt_divider_text:"Text Divider"},window.ETBuilderBackendDynamic.defaults.dnxte_glitch_text={glitch_text:"Glitch"},window.ETBuilderBackendDynamic.defaults.dnxte_text_highlight={highlight_text:"Highlight"},window.ETBuilderBackendDynamic.defaults.dnxte_text_highlight={highlight_text:"Highlight"},window.ETBuilderBackendDynamic.defaults.dnxte_text_hover_highlight={thh_before_text:"Before",thh_highlight_text:"Highlight",thh_after_text:"After"},window.ETBuilderBackendDynamic.defaults.dnxte_text_hover_highlight={thh_before_text:"Before",thh_highlight_text:"Highlight",thh_after_text:"After"},window.ETBuilderBackendDynamic.defaults.dnxte_text_stroke={dnxt_text_stroke_title:"Stroke Text"},window.ETBuilderBackendDynamic.defaults.dnxte_text_stroke_motion={dnxt_text_stroke_title:"Stroke"},window.ETBuilderBackendDynamic.defaults.dnxte_text_stroke_motion={stroke_text:"Stroke"},window.ETBuilderBackendDynamic.defaults.dnxte_text_tilt={tilt_text:"Tilt Heading",tilt_body:"Lorem ipsum dolor sit, amet consectetur"},window.ETBuilderBackendDynamic.defaults.dnxte_mega_image_effect={dnxtiep_image:t,dnxtiep_heading_text:"Your Heading Text Goes Here",dnxtiep_description:i},window.ETBuilderBackendDynamic.defaults.dnxte_image_hover_box={dnxtiep_ihb_image:t,dnxtiep_ihb_heading_text:"Your Heading Text Goes Here"},window.ETBuilderBackendDynamic.defaults.dnxte_ultimate_image_hover={dnxtiep_uih_image:t,dnxtiep_uih_heading_text:"Heading Text",dnxtiep_uih_heading_bold:"Focus Text"},window.ETBuilderBackendDynamic.defaults.dnxte_minimal_image_hover={image:t},window.ETBuilderBackendDynamic.defaults.dnxte_circular_image_hover={dnxtiep_cih_image:t,dnxtiep_cih_heading_text:"Your Heading Text Goes Here",dnxtiep_cih_description:"Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design"},window.ETBuilderBackendDynamic.defaults.dnxte_blurb={dnxt_image:t,blurb_heading:"Your Heading Text Goes Here",blurb_description:i,blurb_pre_heading:"Pre Heading Text",blurb_post_heading:"Post Heading Text"},window.ETBuilderBackendDynamic.defaults.dnxte_business_hour_child={dnxte_businesshour_title:"Monday ",dnxte_businesshour_time:"9:00 AM - 6:00 PM "},window.ETBuilderBackendDynamic.defaults.dnxte_price_list_child={dnxte_pricelist_heading_text:"Title Text",dnxte_pricelist_price:"0$",dnxte_pricelist_description:i,dnxte_pricelist_image:t},window.ETBuilderBackendDynamic.defaults.dnxte_thumbs_gallery_child={thumbs_gallery_top_image:t},window.ETBuilderBackendDynamic.defaults.dnxte_3dcubeslider_child={cubeslider_image:t,cubeslider_title:"Heading Goes Here ",cubeslider_content:i},window.ETBuilderBackendDynamic.defaults.dnxte_coverflowslider_child={coverflowslider_image:t,coverflowslider_text:"Heading Goes Here",coverflowslider_content:i},window.ETBuilderBackendDynamic.defaults.dnxte_logo_carousel_child={logo_carousel_image:t},window.ETBuilderBackendDynamic.defaults.dnxte_testimonial_child={dnxte_testimonial_name:"Name Goes Here",dnxte_testimonial_position:"Position Goes Here,",company_name:"Your Company Name",dnxte_testimonial_description:i,dnxte_testimonial_logo:n},window.ETBuilderBackendDynamic.defaults.dnxte_promobox={dnxte_promobox_title_one:"Product Support",dnxte_promobox_title_two:"Our Products are Customizable",dnxte_promobox_title_three:"Friendly Support",dnxte_promobox_button_text:"Buy Now",dnxte_promobox_offer_text:"30% off",dnxte_promobox_content:i,dnxte_promobox_image:n},window.ETBuilderBackendDynamic.defaults.dnxte_feature_list_child={dnxte_feature_list_title:"Title Goes Here",dnxte_feature_list_image:n},window.ETBuilderBackendDynamic.defaults.dnxte_floating_element_child={floting_shape_image:t,floting_shape_text:"Text Goes Here"},window.ETBuilderBackendDynamic.defaults.dnxte_step_flow={badge_title:"Pro-v1",dnxte_stepflow_title:"Share With Friends",dnxte_stepflow_description:"Create an excellent step by step visual diagram and instructions using this smart widget."},window.ETBuilderBackendDynamic.defaults.dnxte_tooltip={tooltip_image:t},window.ETBuilderBackendDynamic.defaults.dnxte_lottie={lottie_title:"Title Goes Here",lottie_content:i,lottie_button_text:"Click Here"},window.ETBuilderBackendDynamic.defaults.dnxte_image_magnifier={magnifier_upload:t,image_alt:"magnifier"},window.ETBuilderBackendDynamic.defaults.dnxte_timeline_child={timeline_title:"Title Goes Here",timeline_content:i,timeline_button_text:"Read more",timeline_date:"Jan 14"},window.ETBuilderBackendDynamic.defaults.dnxte_image_accordion_item={dnxte_imga_title:"Title Goes Here",dnxte_imga_des:i,button_text:"Read more"})})},function(e,t){jQuery(document).ready(function(e){e(".dnext-neip-uih-descwrap").length&&e(".dnext-neip-uih-descwrap").each(function(){e("p:empty").remove(),e(".dnext-neip-uih-des-pra").after("<br>")})})}]);
(function($){
$(function(){
var user_agent=navigator.userAgent;
var is_opera_edge;
var browser=user_agent.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))/i)||[];
var browser_name='';
var browser_class='';
if(/trident/i.test(browser[0]) ){
browser_name='ie';
}else if(browser[0]==='Chrome'){
is_opera_edge=user_agent.match(/\b(OPR|Edge)/);
if(is_opera_edge!==null){
browser_name=is_opera_edge[0].replace('OPR', 'opera');
}}
if(''===browser_name){
if('standalone' in window.navigator&&!window.navigator.standalone){
browser_name='uiwebview';
}else{
browser_name=browser[0]&&''!==browser[0] ? browser[0]:navigator.appName;
}}
browser_name=browser_name.toLowerCase();
switch(browser_name){
case 'msie' :
browser_class='ie';
break;
case 'firefox' :
browser_class='gecko';
break;
default :
browser_class=browser_name;
break;
}
if(user_agent.match(/iPhone/)){
browser_class +=' iphone';
}
$('body').addClass(browser_class);
});
})(jQuery);
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.counterUp=e():t.counterUp=e()}(window,function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=0)}([function(t,e,n){"use strict";n.r(e),n.d(e,"divideNumbers",function(){return o}),n.d(e,"hasComma",function(){return i}),n.d(e,"isFloat",function(){return u}),n.d(e,"decimalPlaces",function(){return l});e.default=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.action,i=void 0===n?"start":n,u=e.duration,l=void 0===u?1e3:u,a=e.delay,c=void 0===a?16:a,d=e.lang,f=void 0===d?void 0:d;if("stop"!==i){if(r(t),/[0-9]/.test(t.innerHTML)){var s=o(t.innerHTML,{duration:l||t.getAttribute("data-duration"),lang:f||document.querySelector("html").getAttribute("lang")||void 0,delay:c||t.getAttribute("data-delay")});t._countUpOrigInnerHTML=t.innerHTML,t.innerHTML=s[0],t.style.visibility="visible",t.countUpTimeout=setTimeout(function e(){t.innerHTML=s.shift(),s.length?(clearTimeout(t.countUpTimeout),t.countUpTimeout=setTimeout(e,c)):t._countUpOrigInnerHTML=void 0},c)}}else r(t)};var r=function(t){clearTimeout(t.countUpTimeout),t._countUpOrigInnerHTML&&(t.innerHTML=t._countUpOrigInnerHTML,t._countUpOrigInnerHTML=void 0),t.style.visibility=""},o=function(t){for(var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.duration,r=void 0===n?1e3:n,o=e.delay,i=void 0===o?16:o,u=e.lang,l=void 0===u?void 0:u,a=r/i,c=t.toString().split(/(<[^>]+>|[0-9.][,.0-9]*[0-9]*)/),d=[],f=0;f<a;f++)d.push("");for(var s=0;s<c.length;s++)if(/([0-9.][,.0-9]*[0-9]*)/.test(c[s])&&!/<[^>]+>/.test(c[s])){var p=c[s],v=/[0-9]+,[0-9]+/.test(p);p=p.replace(/,/g,"");for(var g=/^[0-9]+\.[0-9]+$/.test(p),y=g?(p.split(".")[1]||[]).length:0,b=d.length-1,m=a;m>=1;m--){var T=parseInt(p/a*m,10);g&&(T=parseFloat(p/a*m).toFixed(y),T=parseFloat(T).toLocaleString(l)),v&&(T=T.toLocaleString(l)),d[b--]+=T}}else for(var M=0;M<a;M++)d[M]+=c[s];return d[d.length]=t.toString(),d},i=function(t){return/[0-9]+,[0-9]+/.test(t)},u=function(t){return/^[0-9]+\.[0-9]+$/.test(t)},l=function(t){return u(t)?(t.split(".")[1]||[]).length:0}}])});