From a33817bddd9743472367de47037253619420af49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Trigo=20Lo=CC=81pez?= Date: Thu, 26 Sep 2024 19:16:33 +0200 Subject: [PATCH 1/6] - Fixed bug: Anchors with whitespace throw error #4659 --- src/js/stateClasses.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/stateClasses.js b/src/js/stateClasses.js index db0eaf0b6..79f8d778e 100644 --- a/src/js/stateClasses.js +++ b/src/js/stateClasses.js @@ -19,7 +19,7 @@ export function setBodyClass(){ } //changing slash for dash to make it a valid CSS style - text = text.replace('/', '-').replace('#',''); + text = text.replace('/', '-').replace('#','').replace(/\s/g, ''); //removing previous anchor classes var classRe = new RegExp('\\b\\s?' + VIEWING_PREFIX + '-[^\\s]+\\b', "g"); From a45ba737bfac03d15834b94c932abd0a49d4c7c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Trigo=20Lo=CC=81pez?= Date: Thu, 26 Sep 2024 19:27:38 +0200 Subject: [PATCH 2/6] - Enhancement: "autoplay" media (video, audio) should automatically play #4658 --- src/js/media.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/js/media.js b/src/js/media.js index faf41b796..c0fb9bc32 100644 --- a/src/js/media.js +++ b/src/js/media.js @@ -19,6 +19,9 @@ export function onMediaLoad(section){ // } } +function hasAutoPlay(item){ + return item.hasAttribute('data-autoplay') || item.hasAttribute('autoplay'); +} /** * Plays video and audio elements. @@ -28,20 +31,20 @@ export function playMedia(destiny){ //playing HTML5 media elements utils.$('video, audio', panel).forEach(function(element){ - if( element.hasAttribute('data-autoplay') && typeof element.play === 'function' ) { + if( hasAutoPlay(element) && typeof element.play === 'function' ) { element.play(); } }); //youtube videos utils.$('iframe[src*="youtube.com/embed/"]', panel).forEach(function(element){ - if ( element.hasAttribute('data-autoplay') ){ + if ( hasAutoPlay(element) ){ playYoutube(element); } //in case the URL was not loaded yet. On page load we need time for the new URL (with the API string) to load. element.onload = function() { - if ( element.hasAttribute('data-autoplay') ){ + if ( hasAutoPlay(element) ){ playYoutube(element); } }; From 6698e527d21981df77728612adb1facceb6d0d8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Trigo=20Lo=CC=81pez?= Date: Wed, 9 Oct 2024 14:06:15 +0200 Subject: [PATCH 3/6] - Fixed bug scrollOverflow won't turn into auto-height on responsive #4664 --- src/css/fullpage.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/css/fullpage.css b/src/css/fullpage.css index f18bce802..abecf9467 100644 --- a/src/css/fullpage.css +++ b/src/css/fullpage.css @@ -1,5 +1,5 @@ /*! - * fullPage 4.0.29 + * fullPage 4.0.30 * https://github.com/alvarotrigo/fullPage.js * * @license GPLv3 for open source use only @@ -236,6 +236,9 @@ html.fp-enabled, /* Disabling vertical centering on scrollable elements */ .fp-overflow{ justify-content: flex-start; +} + +body:not(.fp-responsive) .fp-overflow{ max-height: 100vh; } From dbdad478d7d6799041fbe424ffdef7dea9ff7453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Trigo=20Lo=CC=81pez?= Date: Thu, 10 Oct 2024 17:42:46 +0200 Subject: [PATCH 4/6] - Enhancement: improved skipIntermediateItems example with anchor link --- examples/skipIntermediateItems.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/skipIntermediateItems.html b/examples/skipIntermediateItems.html index dcfc1c1c2..33fc94ccf 100644 --- a/examples/skipIntermediateItems.html +++ b/examples/skipIntermediateItems.html @@ -107,6 +107,9 @@

Section 1

+

+ Link to section 3 +

Slide 2.1

From 5540b97069b7a43b9ac4f1ff2b0cbf5be208544b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Trigo=20Lo=CC=81pez?= Date: Mon, 14 Oct 2024 18:09:35 +0200 Subject: [PATCH 5/6] - Fixed bug: third party scripts can modify "body" inline styles conflicting with FP #4657 --- src/css/fullpage.css | 5 +++++ src/js/autoScrolling.js | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/css/fullpage.css b/src/css/fullpage.css index abecf9467..a70f97379 100644 --- a/src/css/fullpage.css +++ b/src/css/fullpage.css @@ -216,6 +216,11 @@ html.fp-enabled, height: auto !important; } +.fp-enabled .fp-scrollable{ + overflow: visible; + height: initial; +} + /* Used with autoScrolling: false */ .fp-scrollable.fp-responsive .fp-is-overflow.fp-section, .fp-scrollable .fp-section, diff --git a/src/js/autoScrolling.js b/src/js/autoScrolling.js index c6a8b9450..2f9ebe144 100644 --- a/src/js/autoScrolling.js +++ b/src/js/autoScrolling.js @@ -11,6 +11,7 @@ import { getState } from './common/state.js'; import { FP } from './common/constants.js'; import { $body, $htmlBody } from './common/cache.js'; import { setRecordHistory } from './anchors/setRecordHistory.js'; +import { SCROLLABLE } from './common/selectors.js'; FP.setAutoScrolling = setAutoScrolling; FP.test.setAutoScrolling = setAutoScrolling; @@ -35,7 +36,7 @@ export function setAutoScrolling(value, type){ 'height': '100%' }); - utils.removeClass($body, 'fp-scrollable'); + utils.removeClass($body, SCROLLABLE); setRecordHistory(getOriginals().recordHistory, 'internal'); //for IE touch devices @@ -54,7 +55,7 @@ export function setAutoScrolling(value, type){ 'height' : 'initial' }); - utils.addClass($body, 'fp-scrollable'); + utils.addClass($body, SCROLLABLE); var recordHistory = !getOptions().autoScrolling ? false : getOriginals().recordHistory; setRecordHistory(recordHistory, 'internal'); From 7b98bb3c624d18b9399d2f96451af7e58ba8d08a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Trigo=20Lo=CC=81pez?= Date: Mon, 14 Oct 2024 18:25:08 +0200 Subject: [PATCH 6/6] - Updated version & dist files --- README.md | 2 +- dist/fullpage.css | 11 ++++++++++- dist/fullpage.extensions.min.js | 4 ++-- dist/fullpage.js | 22 +++++++++++++--------- dist/fullpage.min.css | 4 ++-- dist/fullpage.min.css.map | 2 +- dist/fullpage.min.js | 4 ++-- lang/brazilian-portuguese/README.md | 2 +- lang/chinese/README.md | 2 +- lang/french/README.md | 2 +- lang/japanese/README.md | 2 +- lang/korean/README.md | 2 +- lang/russian/README.md | 2 +- lang/spanish/README.md | 2 +- package.json | 2 +- rollup.config.js | 2 +- src/css/fullpage.css | 1 + src/js/fullpage.js | 2 +- src/js/mixed/index.min.js | 2 +- 19 files changed, 43 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index e98ffa7dd..fe4b2d9ec 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/dist/fullpage.css b/dist/fullpage.css index f18bce802..afdc69aaa 100644 --- a/dist/fullpage.css +++ b/dist/fullpage.css @@ -1,5 +1,5 @@ /*! - * fullPage 4.0.29 + * fullPage 4.0.30 * https://github.com/alvarotrigo/fullPage.js * * @license GPLv3 for open source use only @@ -216,6 +216,12 @@ html.fp-enabled, height: auto !important; } +/* Tries to prevent overwrites #4657 */ +.fp-enabled .fp-scrollable{ + overflow: visible; + height: initial; +} + /* Used with autoScrolling: false */ .fp-scrollable.fp-responsive .fp-is-overflow.fp-section, .fp-scrollable .fp-section, @@ -236,6 +242,9 @@ html.fp-enabled, /* Disabling vertical centering on scrollable elements */ .fp-overflow{ justify-content: flex-start; +} + +body:not(.fp-responsive) .fp-overflow{ max-height: 100vh; } diff --git a/dist/fullpage.extensions.min.js b/dist/fullpage.extensions.min.js index 50b748cbb..2d7806c4c 100644 --- a/dist/fullpage.extensions.min.js +++ b/dist/fullpage.extensions.min.js @@ -1,5 +1,5 @@ /*! -* fullPage 4.0.29 +* fullPage 4.0.30 * https://github.com/alvarotrigo/fullPage.js * * @license GPLv3 for open source use only @@ -8,4 +8,4 @@ * * Copyright (C) 2018 http://alvarotrigo.com/fullPage/ - A project by Alvaro Trigo */ -!function(n,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(n="undefined"!=typeof globalThis?globalThis:n||self).fullpage=t()}(this,(function(){"use strict";var n,t,e,i,r=Object.freeze({__proto__:null,get showError(){return ye},get isVisible(){return Me},get getVisible(){return Te},get $(){return Ae},get deepExtend(){return xe},get hasClass(){return Oe},get getWindowHeight(){return ke},get t(){return Ee},get css(){return Re},get prev(){return De},get next(){return Le},get last(){return je},get index(){return ze},get getList(){return Ne},get hide(){return Ie},get show(){return Pe},get isArrayOrList(){return He},get addClass(){return Ce},get removeClass(){return We},get appendTo(){return Fe},get wrap(){return Ve},get wrapAll(){return Be},get wrapInner(){return Ze},get unwrap(){return Ye},get closest(){return Ge},get after(){return Xe},get before(){return Ue},get insertBefore(){return _e},get getScrollTop(){return Qe},get siblings(){return Je},get preventDefault(){return Ke},get i(){return $e},get o(){return qe},get u(){return ni},get l(){return ti},get v(){return ei},get isFunction(){return ii},get trigger(){return ri},get matches(){return oi},get toggle(){return ai},get createElementFromHTML(){return ui},get remove(){return li},get filter(){return ci},get untilAll(){return si},get nextAll(){return fi},get prevAll(){return di},get toArray(){return vi},get p(){return pi},get h(){return hi},get g(){return gi},get S(){return mi},get M(){return wi}});Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(n){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),e=t.length>>>0;if("function"!=typeof n)throw new TypeError("predicate must be a function");for(var i=arguments[1],r=0;r0?1:-1)*Math.floor(Math.abs(t)):t}(n);return Math.min(Math.max(t,0),e)},function(n){var e=this,r=Object(n);if(null==n)throw new TypeError("Array.from requires an array-like object - not null or undefined");var o,a=arguments.length>1?arguments[1]:void 0;if(void 0!==a){if(!t(a))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(o=arguments[2])}for(var u,l=i(r.length),c=t(e)?Object(new e(l)):new Array(l),s=0;s0||navigator.maxTouchPoints,f=!!window.MSInputMethodContext&&!!document.documentMode,d={test:{},shared:{}},v=(o=window.self!==window.top,function(){return o});a.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=function(n,t){t=t||window;for(var e=0;e
','
'],controlArrowColor:"#fff",verticalCentered:!0,sectionsColor:[],paddingTop:0,paddingBottom:0,fixedElements:null,responsive:0,responsiveWidth:0,responsiveHeight:0,responsiveSlides:!1,parallax:!1,parallaxOptions:{type:"reveal",percentage:62,property:"translate"},cards:!1,cardsOptions:{perspective:100,fadeContent:!0,fadeBackground:!0},sectionSelector:".section",slideSelector:".slide",afterLoad:null,beforeLeave:null,onLeave:null,afterRender:null,afterResize:null,afterReBuild:null,afterSlideLoad:null,onSlideLeave:null,afterResponsive:null,onScrollOverflow:null,lazyLoading:!0,lazyLoadThreshold:0,observer:!0,scrollBeyondFullpage:!0},X=null,U=!1,_=xe({},G),Q=null;function J(n){return X}function K(){return Q||G}function $(){return _}function q(n,t,e){Q[n]=t,"internal"!==e&&(_[n]=t)}function nn(){if(!K().anchors.length){var n=Ae(K().sectionSelector.split(",").join("[data-anchor],")+"[data-anchor]",X);n.length&&n.length===Ae(K().sectionSelector,X).length&&(U=!0,n.forEach((function(n){K().anchors.push($e(n,"data-anchor").toString())})))}if(!K().navigationTooltips.length){var t=Ae(K().sectionSelector.split(",").join("[data-tooltip],")+"[data-tooltip]",X);t.length&&t.forEach((function(n){K().navigationTooltips.push($e(n,"data-tooltip").toString())}))}}var tn={A:0,O:0,slides:[],R:[],D:null,L:null,j:!1,N:!1,I:!1,P:!1,H:!1,C:void 0,W:void 0,F:!1,canScroll:!0,V:"none",B:"none",Z:!1,Y:!1,G:!0,X:0,U:ke(),_:!1,J:{},scrollY:0,scrollX:0,K:!1};function en(n){Object.assign(tn,n)}function rn(){return tn}function on(n){return void 0!==window["fp_"+n+"Extension"]}function an(n){var t=K();return null!==t[n]&&"[object Array]"===Object.prototype.toString.call(t[n])?t[n].length&&d[n]:t[n]&&d[n]}function un(n,t,e){if(an(n))return ii(d[n][t])?d[n][t](e):d[n][t]}function ln(){return un("dragAndMove","isAnimating")}function cn(){return un("dragAndMove","isGrabbing")}function sn(n){if(K().offsetSections&&d.offsetSections){var t=un("offsetSections","getWindowHeight",n);return""!==t?Math.round(t)+"px":t}return ke()+"px"}function fn(n,t){n.insertBefore(t,n.firstChild)}function dn(n){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";function e(n){var e,i,r,o,a,u,l="",c=0;for(n=n.replace(/[^A-Za-z0-9+/=]/g,"");c>4,i=(15&o)<<4|(a=t.indexOf(n.charAt(c++)))>>2,r=(3&a)<<6|(u=t.indexOf(n.charAt(c++))),l+=String.fromCharCode(e),64!=a&&(l+=String.fromCharCode(i)),64!=u&&(l+=String.fromCharCode(r));return l=function(n){for(var t,e="",i=0,r=0,o=0;i191&&r<224?(o=n.charCodeAt(i+1),e+=String.fromCharCode((31&r)<<6|63&o),i+=2):(o=n.charCodeAt(i+1),t=n.charCodeAt(i+2),e+=String.fromCharCode((15&r)<<12|(63&o)<<6|63&t),i+=3);return e}(l),l}function i(n){return n.slice(3).slice(0,-3)}return function(n){var t=n.split("_");if(t.length>1){var r=t[1];return e(n.replace(i(t[1]),"").split("_")[0].slice(2).slice(0,-2))+"_"+e(r.slice(3).slice(0,-3))}return i(n)}(e(n))}a.state=tn,a.fp_utils=a.fp_utils||{},Object.assign(a.fp_utils,{prependTo:fn,toggleClass:function(n,t,e){if(n.classList&&null==e)n.classList.toggle(t);else{var i=Oe(n,t);i&&null==e||!e?We(n,t):(!i&&null==e||e)&&Ce(n,t)}}});var vn=function(n){this.anchor=n.anchor,this.item=n.item,this.index=n.index(),this.isLast=this.index===n.item.parentElement.querySelectorAll(n.selector).length-1,this.isFirst=!this.index,this.isActive=n.isActive},pn=function(n,t){this.parent=this.parent||null,this.selector=t,this.anchor=$e(n,"data-anchor")||K().anchors[ze(n,K().sectionSelector)],this.item=n,this.isVisible=Me(n),this.isActive=Oe(n,S),this.q=Oe(n,I)||null!=Ae(P,n)[0],this.nn=t===K().sectionSelector,this.container=Ge(n,z)||Ge(n,h),this.index=function(){return this.siblings().indexOf(this)}};function hn(n){return n.map((function(n){return n.item}))}function gn(n,t){return n.find((function(n){return n.item===t}))}pn.prototype.siblings=function(){return this.nn?this.isVisible?tn.R:tn.tn:this.parent?this.parent.slides:0},pn.prototype.prev=function(){var n=this.siblings(),t=(this.nn?n.indexOf(this):this.parent.slides.indexOf(this))-1;return t>=0?n[t]:null},pn.prototype.next=function(){var n=this.siblings(),t=(this.nn?n.indexOf(this):this.parent.slides.indexOf(this))+1;return ti?"up":"down"}function On(n){return Ce(n,m)}function kn(n){return{"-webkit-transform":n,"-moz-transform":n,"-ms-transform":n,transform:n}}function En(n,t){t?An(J()):On(J()),clearTimeout(mn),Re(J(),kn(n)),d.test.on=n,mn=setTimeout((function(){We(J(),m)}),10)}function Rn(n){var t=Math.round(n);if(K().css3&&K().autoScrolling&&!K().scrollBar)En("translate3d(0px, -"+t+"px, 0px)",!1);else if(K().autoScrolling&&!K().scrollBar)Re(J(),{top:-t+"px"}),d.test.top=-t+"px";else{var e=Mn(t);Tn(e.element,e.options)}}function Dn(n,t){"internal"!==t&&un("fadingEffect","update",n),un("cards","update_",n),q("scrollingSpeed",n,t)}d.setScrollingSpeed=Dn;var Ln,jn=null,zn=null,Nn=null;function In(n,t,e,i){var r,o=function(n){return n.self!=a&&Oe(n,D)?n.scrollLeft:!K().autoScrolling||K().scrollBar?Qe():n.offsetTop}(n),u=t-o,l=!1,c=tn.F;en({F:!0}),Ln&&window.cancelAnimationFrame(Ln),Ln=function(s){r||(r=s);var f=Math.floor(s-r);if(tn.F){var d=t;e&&(d=a.fp_easings[K().easing](f,o,u,e)),f<=e&&Tn(n,d),f=n.HAVE_FUTURE_DATA?n.play():n.addEventListener("canplay",(function t(){n.play(),n.removeEventListener("canplay",t)})))})),Ae('iframe[src*="youtube.com/embed/"]',t).forEach((function(n){n.hasAttribute("data-autoplay")&&Hn(n),n.onload=function(){n.hasAttribute("data-autoplay")&&Hn(n)}}))}function Hn(n){n.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}',"*")}function Cn(n){var t=Sn(n);Ae("video, audio",t).forEach((function(n){n.hasAttribute("data-keepplaying")||"function"!=typeof n.pause||n.pause()})),Ae('iframe[src*="youtube.com/embed/"]',t).forEach((function(n){/youtube\.com\/embed\//.test($e(n,"src"))&&!n.hasAttribute("data-keepplaying")&&n.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*")}))}function Wn(n){K().lazyLoading&&Ae("img[data-src], img[data-srcset], source[data-src], source[data-srcset], video[data-src], audio[data-src], iframe[data-src]",Sn(n)).forEach((function(n){if(["src","srcset"].forEach((function(t){var e=$e(n,"data-"+t);null!=e&&e&&(gi(n,t),n.addEventListener("load",(function(){})))})),oi(n,"source")){var t=Ge(n,"video, audio");t&&(t.load(),t.onloadeddata=function(){})}}))}function Fn(n){var t=K().lazyLoadThreshold;Wn(n.item),t&&(Vn(n,"prev",t),Vn(n,"next",t))}function Vn(n,t,e){for(var i=n,r=0;r-1&&this.an[n].splice(e,1)}},ln:function(n){for(var t=this,e=arguments.length,i=new Array(e>1?e-1:0),r=1;rt?"left":"right"}function Et(){clearTimeout(wt)}function Rt(n){un("continuousHorizontal","afterSlideLoads",n),un("dragAndMove","afterSlideLoads",n),n.localIsResizing||(un("parallax","afterSlideLoads"),un("scrollOverflowReset","setPrevious",n.prevSlide),un("scrollOverflowReset","reset"),ii(K().afterSlideLoad)&&Vt("afterSlideLoad",n),en({canScroll:!0}),Pn(n.destiny),Un.ln(ht,n)),en({I:!1}),un("interlockedSlides","interlockedSlides",n)}function Dt(n,t){Dn(0,"internal"),void 0!==t&&en({P:!0}),xt(Ge(n,L),n),void 0!==t&&en({P:!1}),Dn($().scrollingSpeed,"internal")}bt.m={up:!0,down:!0,left:!0,right:!0},bt.k=xe({},bt.m),Un.un(Jn,(function(n){var t=n.target;(oi(t,V)||Ge(t,V))&&Mt.call(t,n)})),d.landscapeScroll=xt,Un.un(tt,(function(){Un.un(ft,At)}));var Lt=null,jt=null;function zt(){tn.D=null,tn.R.map((function(n){var t=Oe(n.item,S);n.isActive=t,n.q=Se.q(n.item),t&&(tn.D=n),n.slides.length&&(n.activeSlide=null,n.slides.map((function(t){var e=Oe(t.item,S);t.q=Se.q(n.item),t.isActive=e,e&&(n.activeSlide=t)})))})),function(){var n=tn.D,t=!!tn.D&&tn.D.slides.length,e=tn.D?tn.D.activeSlide:null;if(!n&&tn.R.length&&!rn().j){if(Lt){var i=Pt(Lt,tn.R);i&&(tn.D=i,tn.D.isActive=!0,Ce(tn.D.item,S)),tn.D&&Rn(tn.D.item.offsetTop)}if(t&&!e&&jt){var r=Pt(jt,tn.D.slides);r&&(tn.D.activeSlide=r,tn.D.activeSlide.isActive=!0,Ce(tn.D.activeSlide.item,S)),tn.D.activeSlide&&Dt(tn.D.activeSlide.item,"internal")}}}(),ri(J(),"onUpdateStateDone")}function Nt(){var n=Ae(K().sectionSelector+", "+A,J()),t=Te(n),e=Array.from(n).map((function(n){return new Ht(n)})),i=e.filter((function(n){return n.isVisible})),r=i.reduce((function(n,t){return n.concat(t.slides)}),[]);Lt=It(tn.D),jt=It(tn.D?tn.D.activeSlide:null),tn.A=t.length,tn.O=i.reduce((function(n,t){return n+t.slides.length}),0),tn.R=i,tn.tn=e,tn.slides=r,tn.rn=tn.R.concat(tn.slides)}function It(n){if(!n)return null;var t=n?n.item:null,e=n.nn?tn.tn:tn.D.dn;if(t){var i=gn(e,t);return i?i.index():null}return null}function Pt(n,t){var e,i=n-1,r=n;do{if(e=t[i]||t[r])break;i-=1,r+=1}while(i>=0||r0,o=i>2&&i'+_n(o.index(),"Section")+"";var l=K().navigationTooltips[o.index()];void 0!==l&&""!==l&&(i+='
'+l+"
"),i+=""}Ae("ul",e)[0].innerHTML=i;var c=Ae("li",Ae(O)[0])[rn().D.index()];Ce(Ae("a",c),S)}function _t(n){n.preventDefault&&Ke(n),en({L:"verticalNav"});var t=ze(Ge(this,"#fp-nav li"));Un.ln(lt,{destination:rn().R[t]})}function Qt(n,t){var e;e=n,K().menu&&K().menu.length&&Ae(K().menu).forEach((function(n){null!=n&&(We(Ae(y,n),S),Ce(Ae('[data-menuanchor="'+e+'"]',n),S))})),function(n,t){var e=Ae(O)[0];K().navigation&&null!=e&&"none"!==e.style.display&&(We(Ae(y,e),S),Ce(n?Ae('a[href="#'+n+'"]',e):Ae("a",Ae("li",e)[t]),S))}(n,t)}Ct.prototype=pn.prototype,Ct.prototype.constructor=Ht,d.setRecordHistory=Bt,d.setAutoScrolling=Zt,d.test.setAutoScrolling=Zt,(new Date).getTime();var Jt,Kt,$t,qt,ne,te,ee=(Kt=!0,$t=(new Date).getTime(),qt=!a.fullpage_api,function(n,t){var e=(new Date).getTime(),i="wheel"===n?K().scrollingSpeed:100;return Kt=qt||e-$t>=i,qt=!a.fullpage_api,Kt&&(Jt=t(),$t=e),void 0===Jt||Jt});function ie(n,t){if(ii(K().beforeLeave))return ee(rn().L,(function(){return Vt(n,t)}))}function re(n,t,e){var i=n.item;if(null!=i){var r,o,a={element:i,callback:t,isMovementUp:e,dtop:oe(i),yMovement:xn(rn().D,i),anchorLink:n.anchor,sectionIndex:n.index(),activeSlide:n.activeSlide?n.activeSlide.item:null,leavingSection:rn().D.index()+1,localIsResizing:tn.P,items:{origin:rn().D,destination:n},direction:null};if(!(rn().D.item==i&&!tn.P||K().scrollBar&&Qe()===a.dtop&&!Oe(i,"fp-auto-height"))){if(null!=a.activeSlide&&(r=$e(a.activeSlide,"data-anchor"),o=ze(a.activeSlide,null)),!a.localIsResizing){var u=a.yMovement;if(void 0!==e&&(u=e?"up":"down"),a.direction=u,on("dropEffect")&&d.dropEffect.onLeave_(a),on("waterEffect")&&d.waterEffect.onLeave_(a),ii(K().beforeLeave)&&!1===ie("beforeLeave",a))return;if(ii(K().onLeave)&&!Vt("onLeave",a))return}un("parallax","apply",a),un("cards","apply",a),un("dropEffect","apply",a),un("waterEffect","apply",a),K().autoScrolling&&K().continuousVertical&&void 0!==a.isMovementUp&&(!a.isMovementUp&&"up"==a.yMovement||a.isMovementUp&&"down"==a.yMovement)&&(a=function(n){en({_:!0});var t=rn().D.item;return n.isMovementUp?Ue(t,fi(t,A)):Xe(t,di(t,A).reverse()),Rn(rn().D.item.offsetTop),Yt(),n.hn=t,n.dtop=n.element.offsetTop,n.yMovement=xn(rn().D,n.element),n.leavingSection=n.items.origin.index()+1,n.sectionIndex=n.items.destination.index(),ri(J(),"onContinuousVertical",n),n}(a)),un("scrollOverflowReset","setPrevious",rn().D.item),a.localIsResizing||Cn(rn().D.item),an("dropEffect")&&K().dropEffect||(Ce(i,S),We(Je(i),S)),zt(),Fn(n),en({canScroll:d.test.gn}),Yn(o,r,a.anchorLink),Un.ln(vt,a),function(n){en({V:"none",scrollY:Math.round(n.dtop)}),Un.ln(ft,n);var t=K().scrollingSpeed<700,e=t?700:K().scrollingSpeed;if(K().css3&&K().autoScrolling&&!K().scrollBar)En("translate3d(0px, -"+Math.round(n.dtop)+"px, 0px)",!0),an("waterEffect")&&Yt(),K().scrollingSpeed?(clearTimeout(ne),ne=setTimeout((function(){ae(n),en({canScroll:!t||d.test.gn})}),K().scrollingSpeed)):ae(n);else{var i=Mn(n.dtop);d.test.top=-n.dtop+"px",clearTimeout(ne),In(i.element,i.options,K().scrollingSpeed,(function(){K().scrollBar?ne=setTimeout((function(){ae(n)}),30):(ae(n),en({canScroll:!t||d.test.gn}))}))}t&&(clearTimeout(te),te=setTimeout((function(){en({canScroll:!0})}),e))}(a),en({C:a.anchorLink}),Qt(a.anchorLink,function(n){return null!=n.hn?n.isMovementUp?tn.A-1:0:n.sectionIndex}(a))}}}function oe(n){var t=n.offsetHeight,e=n.offsetTop,i=e,r=an("dragAndMove")&&un("dragAndMove","isGrabbing")?un("dragAndMove","isScrollingDown"):e>tn.X,o=i-ke()+t,a=K().bigSectionsDestination;return t>ke()?(r||a)&&"bottom"!==a||(i=o):(r||tn.P&&null==Le(n))&&(i=o),an("offsetSections")&&(i=d.offsetSections.getSectionPosition_(r,i,n)),en({X:i}),i}function ae(n){en({j:!1}),function(n){null!=n.hn&&(n.isMovementUp?Ue(Ae(A)[0],n.hn):Xe(Ae(A)[rn().R.length-1],n.hn),Rn(rn().D.item.offsetTop),function(){for(var n=Ae(R),t=0;t-1&&!Se.An)return Ke(n),!1},yn:function(){Se.Tn=tn.canScroll},onLeave:function(){clearTimeout(ve),Se.An=!1},afterLoad:function(){Se.An=!1,clearTimeout(ve),ve=setTimeout((function(){Se.Tn=tn.canScroll}),200)},Rn:function(){u.activeElement===this.Mn&&(this.Mn.blur(),Se.An=!1)},Sn:function(){if(K().scrollOverflow&&Se.Tn){Se.Rn();var n=Se.Dn(rn().D.item);!n||l||s||(this.Mn=n,requestAnimationFrame((function(){n.focus({Ln:!0}),Se.An=!0}))),Se.Tn=!1}},bn:function(){K().scrollOverflowMacStyle&&!c&&Ce(jn,"fp-scroll-mac"),rn().rn.forEach((function(n){if(!(n.slides&&n.slides.length||Oe(n.item,"fp-auto-height-responsive")&&fe())){var t,e=Sn(n.item),i=Se.mn(n.item),o=(t=n).nn?t:t.parent;if(f){var a=i?"addClass":"removeClass";r[a](o.item,H),r[a](n.item,H)}else Ce(o.item,H),Ce(n.item,H);n.q||(Se.jn(e),Se.zn(e)),n.q=!0}}))},zn:function(n){Se.Dn(n).addEventListener("scroll",Se.Nn),n.addEventListener("wheel",Se.kn,{passive:!1}),n.addEventListener("keydown",Se.En,{passive:!1})},jn:function(n){var t=document.createElement("div");t.className=I,Ze(n,t),t.setAttribute("tabindex","-1")},In:function(n){var t=Ae(P,n)[0];t&&(Ye(t),n.removeAttribute("tabindex"))},Dn:function(n){var t=Sn(n);return Ae(P,t)[0]||t},q:function(n){return Oe(n,I)||null!=Ae(P,n)[0]},wn:function(n){return n.nn&&n.activeSlide?n.activeSlide.q:n.q},mn:function(n){return Se.Dn(n).scrollHeight>a.innerHeight},isScrolled:function(n,t){if(!tn.canScroll)return!1;if(K().scrollBar)return!0;var e=Se.Dn(t);if(!K().scrollOverflow||!Oe(e,I)||Oe(t,"fp-noscroll")||Oe(Sn(t),"fp-noscroll"))return!0;var i=f?1:0,r=e.scrollTop,o="up"===n&&r<=0,a="down"===n&&e.scrollHeight<=Math.ceil(e.offsetHeight+r)+i,u=o||a;return u||"none"===n||(this.xn=(new Date).getTime()),u},Pn:function(){this.On=(new Date).getTime();var n=this.On-Se.xn,t=(l||s)&&tn.Z,e=tn.Y&&n>600;return t&&n>400||e},Nn:(we=0,function(n){var t=n.target.scrollTop,e="none"!==tn.V?tn.V:we1?t:document)?t.querySelectorAll(n):null}function xe(n){n=n||{};for(var t=1,e=arguments.length;t1&&(K().controlArrows&&function(n){var t=n.item,e=[ui(K().controlArrowsHTML[0]),ui(K().controlArrowsHTML[1])];Xe(Ae(L,t)[0],e),Ce(e,F),Ce(e[0],B),Ce(e[1],"fp-next"),"#fff"!==K().controlArrowColor&&(Re(Ae(Y,t),{"border-color":"transparent transparent transparent "+K().controlArrowColor}),Re(Ae(Z,t),{"border-color":"transparent "+K().controlArrowColor+" transparent transparent"})),K().loopHorizontal||Ie(Ae(Z,t))}(n),K().slidesNavigation&&function(n){var t=n.item,e=n.slides.length;Fe(ui('
    '),t);var i=Ae(C,t)[0];Ce(i,"fp-"+K().slidesNavPosition);for(var r=0;r'+_n(r,"Slide",Ae(E,t)[r])+""),Ae("ul",i)[0]);Re(i,{"margin-left":"-"+i.innerWidth/2+"px"});var o=n.activeSlide?n.activeSlide.index():0;Ce(Ae("a",Ae("li",i)[o]),S)}(n)),i.forEach((function(n){Re(n.item,{width:o+"%"}),K().verticalCentered&&de(n)}));var c=an("responsiveSlides")?null:n.activeSlide||null;null!=c&&tn.D&&(0!==tn.D.index()||0===tn.D.index()&&0!==c.index())?(Dt(c.item,"internal"),Ce(c.item,"fp-initial")):Ce(e[0],S)}window.fp_utils=Object.assign(a.fp_utils||{},{$:Ae,deepExtend:xe,hasClass:Oe,getWindowHeight:ke,css:Re,prev:De,next:Le,last:je,index:ze,getList:Ne,hide:Ie,show:Pe,isArrayOrList:He,addClass:Ce,removeClass:We,appendTo:Fe,wrap:Ve,wrapAll:Be,wrapInner:Ze,unwrap:Ye,closest:Ge,after:Xe,before:Ue,insertBefore:_e,getScrollTop:Qe,siblings:Je,preventDefault:Ke,isFunction:ii,trigger:ri,matches:oi,toggle:ai,createElementFromHTML:ui,remove:li,filter:ci,untilAll:si,nextAll:fi,prevAll:di,showError:ye,scrollOverflowHandler:Se}),Un.un(tt,(function(){["click","touchstart"].forEach((function(n){qe(n,bi,{passive:!1})})),ni("focus",yi),Un.un(et,Si)}));var Ai={attributes:!1,subtree:!0,childList:!0,characterData:!0};function xi(){return un("responsiveSlides","isResponsiveSlidesChanging")||Te(Ae(K().slideSelector,J())).length!==rn().O}function Oi(n){var t=xi();(xi()||un("responsiveSlides","isResponsiveSlidesChanging")||Te(Ae(K().sectionSelector,J())).length!==rn().A)&&!tn._&&(K().observer&&be&&be.disconnect(),Nt(),zt(),K().anchors=[],li(Ae(O)),un("responsiveSlides","isResponsiveSlidesChanging")||Mi(),nn(),K().navigation&&Ut(),t&&(li(Ae(C)),li(Ae(V))),rn().R.forEach((function(n){n.slides.length?t&&Ti(n):he(n)}))),K().observer&&be&&Ae(h)[0]&&be.observe(Ae(h)[0],Ai)}Un.un(tt,(function(){var n,t,e;K().observer&&"MutationObserver"in window&&Ae(h)[0]&&(n=Ae(h)[0],t=Ai,(e=new MutationObserver(Oi)).observe(n,t),be=e),Un.un(it,Oi)})),d.render=Oi;var ki=function(){var n=!1;try{var t=Object.defineProperty({},"passive",{get:function(){n=!0}});ni("testPassive",null,t),ei("testPassive",null,t)}catch(n){}return function(){return n}}();function Ei(){return!!ki()&&{passive:!1}}var Ri,Di,Li,ji,zi=(Li=(new Date).getTime(),ji=[],{Cn:function(n){var t=(n=n||a.event).wheelDelta||-n.deltaY||-n.detail,e=Math.max(-1,Math.min(1,t)),i=void 0!==n.wheelDeltaX||void 0!==n.deltaX;Ri=Math.abs(n.wheelDeltaX)149&&ji.shift(),ji.push(Math.abs(t));var o=r-Li;Li=r,o>200&&(ji=[])},Wn:function(){var n=hi(ji,10)>=hi(ji,70);return!!ji.length&&n&&Ri},Fn:function(){return Di}});function Ni(){var n=K().css3?Qe()+ke():pi(rn().R).item.offsetTop+pi(rn().R).item.offsetHeight,t=Mn(n);d.test.top=-n+"px",en({canScroll:!1}),In(t.element,t.options,K().scrollingSpeed,(function(){setTimeout((function(){en({j:!0}),en({canScroll:!0})}),30)}))}function Ii(){J().getBoundingClientRect().bottom>=0&&Pi()}function Pi(){var n=Mn(pi(rn().R).item.offsetTop);en({canScroll:!1}),In(n.element,n.options,K().scrollingSpeed,(function(){en({canScroll:!0}),en({j:!1}),en({Vn:!1})}))}var Hi,Ci,Wi,Fi=(Hi=!1,Ci={},Wi={},function(n,t,e){switch(n){case"set":Ci[t]=(new Date).getTime(),Wi[t]=e;break;case"isNewKeyframe":var i=(new Date).getTime();Hi=i-Ci[t]>Wi[t]}return Hi});function Vi(){var n=rn().D.next();n||!K().loopBottom&&!K().continuousVertical||(n=rn().R[0]),null!=n?re(n,null,!1):J().scrollHeightZi&&yt().m.down&&Vi()),Zi=n.pageY)}function Gi(n){if(yt().m[n]){var t="down"===n?Vi:Bi;an("scrollHorizontally")&&(t=un("scrollHorizontally","getScrollSection",{type:n,scrollSection:t})),K().scrollOverflow&&Se.wn(rn().D)?Se.isScrolled(n,rn().D.item)&&Se.Pn()&&t():t()}}var Xi,Ui,_i,Qi=0,Ji=0,Ki=0,$i=0,qi=ar(),nr={Bn:"ontouchmove"in window?"touchmove":qi?qi.move:null,Zn:"ontouchstart"in window?"touchstart":qi?qi.down:null};function tr(n){var t=Ge(n.target,A)||rn().D.item,e=Se.wn(rn().D);if(er(n)){en({Z:!0,Y:!1}),K().autoScrolling&&(e&&!tn.canScroll||K().scrollBar)&&Ke(n);var i=or(n);Ki=i.y,$i=i.x;var r=Math.abs(Qi-Ki)>a.innerHeight/100*K().touchSensitivity,o=Math.abs(Ji-$i)>Ee()/100*K().touchSensitivity,u=Ae(L,t).length&&Math.abs(Ji-$i)>Math.abs(Qi-Ki),l=Qi>Ki?"down":"up";en({V:u?Ji>$i?"right":"left":l}),u?!tn.I&&o&&(Ji>$i?yt().m.right&&Un.ln($n,{section:t}):yt().m.left&&Un.ln(Kn,{section:t})):K().autoScrolling&&tn.canScroll&&r&&Gi(l)}}function er(n){return void 0===n.pointerType||"mouse"!=n.pointerType}function ir(n){if(K().fitToSection&&en({F:!1}),er(n)){var t=or(n);Qi=t.y,Ji=t.x}ni("touchend",rr)}function rr(){ei("touchend",rr),en({Z:!1})}function or(n){var t={};return t.y=void 0!==n.pageY&&(n.pageY||n.pageX)?n.pageY:n.touches[0].pageY,t.x=void 0!==n.pageX&&(n.pageY||n.pageX)?n.pageX:n.touches[0].pageX,s&&er(n)&&K().scrollBar&&void 0!==n.touches&&(t.y=n.touches[0].pageY,t.x=n.touches[0].pageX),t}function ar(){var n;return a.PointerEvent&&(n={down:"pointerdown",move:"pointermove"}),n}function ur(n){K().autoScrolling&&er(n)&&yt().m.up&&(tn.canScroll||Ke(n))}function lr(n,t){var e=null==t?rn().D.item:t,i=gn(tn.R,e),r=Ae(L,e)[0];if(!(null==r||ln()||tn.I||i.slides.length<2)){var o=i.activeSlide,a="left"===n?o.prev():o.next();if(!a){if(!K().loopHorizontal)return;a="left"===n?pi(i.slides):i.slides[0]}en({I:!d.test.gn}),xt(r,a.item,n)}}function cr(n){lr("left",n)}function sr(n){lr("right",n)}function fr(n){var t=rn().R.filter((function(t){return t.anchor===n}))[0];if(!t){var e=void 0!==n?n-1:0;t=rn().R[e]}return t}function dr(n){null!=n&&xt(Ge(n,L),n)}function vr(n,t){var e=fr(n);if(null!=e){var i=function(n,t){var e=t.slides.filter((function(t){return t.anchor===n}))[0];return null==e&&(n=void 0!==n?n:0,e=t.slides[n]),e?e.item:null}(t,e);e.anchor&&e.anchor===tn.C||Oe(e.item,S)?dr(i):re(e,(function(){dr(i)}))}}function pr(n,t){var e=fr(n);void 0!==t?vr(n,t):null!=e&&re(e)}function hr(){clearTimeout(Ui),ti("keydown",gr),ti("keyup",mr)}function gr(n){clearTimeout(Ui);var t=n.keyCode,e=[37,39].indexOf(t)>-1,i=K().autoScrolling||K().fitToSection||e;9===t?function(n){var t=n.shiftKey,e=u.activeElement,i=Mr(Sn(rn().D.item));function r(n){return Ke(n),i[0]?i[0].focus():null}if(tn.canScroll){if(!function(n){var t=Mr(u),e=t.indexOf(u.activeElement),i=t[n.shiftKey?e-1:e+1],r=Ge(i,E),o=Ge(i,A);return!r&&!o}(n)){e?null==Ge(e,".fp-section.active,.fp-section.active .fp-slide.active")&&(e=r(n)):r(n);var o=e==i[0],a=e==i[i.length-1],l=t&&o;if(l||!t&&a){Ke(n);var c=function(n){var t,e=n?"prevPanel":"nextPanel",i=[],r=yn((tn.D&&tn.D.activeSlide?tn.D.activeSlide:tn.D)[e]());do{(i=Mr(r.item)).length&&(t={Yn:r,Gn:i[n?i.length-1:0]}),r=yn(r[e]())}while(r&&0===i.length);return t}(l),s=c?c.Yn:null;if(s){var f=s.nn?s:s.parent;Un.ln(ot,{Xn:f.index()+1,slideAnchor:s.nn?0:s.index()}),_i=c.Gn,Ke(n)}}}}else Ke(n)}(n):!wi()&&K().keyboardScrolling&&i&&(Xi=n.ctrlKey,Ui=setTimeout((function(){!function(n){var t=n.shiftKey,e=u.activeElement,i=oi(e,"video")||oi(e,"audio"),r=Se.isScrolled("up",rn().D.item),o=Se.isScrolled("down",rn().D.item),a=[37,39].indexOf(n.keyCode)>-1;if(function(n){(function(n){return[40,38,32,33,34].indexOf(n.keyCode)>-1&&!tn.j})(n)&&!Ge(n.target,P)&&n.preventDefault()}(n),tn.canScroll||a)switch(en({L:"keydown"}),n.keyCode){case 38:case 33:yt().k.up&&r?tn.j?Un.ln(at,{e:n}):Bi():Se.Sn();break;case 32:if(t&&yt().k.up&&!i&&r){Bi();break}case 40:case 34:if(yt().k.down&&o){if(tn.j)return;32===n.keyCode&&i||Vi()}else Se.Sn();break;case 36:yt().k.up&&pr(1);break;case 35:yt().k.down&&pr(rn().R.length);break;case 37:yt().k.left&&cr();break;case 39:yt().k.right&&sr()}}(n)}),0))}function mr(n){tn.G&&(Xi=n.ctrlKey)}function wr(){en({G:!1}),Xi=!1}function br(n){yr()}function Sr(n){Ge(_i,E)&&!Ge(_i,R)||yr()}function yr(){_i&&(_i.focus(),_i=null)}function Mr(n){return[].slice.call(Ae('a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], summary:not([disabled]), [contenteditable]',n)).filter((function(n){return"-1"!==$e(n,"tabindex")&&null!==n.offsetParent}))}d.moveSlideLeft=cr,d.moveSlideRight=sr,d.moveTo=pr,Un.un(tt,(function(){ni("blur",wr),qe("keydown",gr),qe("keyup",mr),Un.un(et,hr),Un.un(ht,br),Un.un(pt,Sr)}));var Tr=(new Date).getTime(),Ar=[];function xr(n){n?(function(){var n,t="";a.addEventListener?n="addEventListener":(n="attachEvent",t="on");var e="onwheel"in u.createElement("div")?"wheel":void 0!==u.onmousewheel?"mousewheel":"DOMMouseScroll",i=Ei();"DOMMouseScroll"==e?u[n](t+"MozMousePixelScroll",Or,i):u[n](t+e,Or,i)}(),J().addEventListener("mousedown",kr),J().addEventListener("mouseup",Er)):(u.addEventListener?(ti("mousewheel",Or,!1),ti("wheel",Or,!1),ti("MozMousePixelScroll",Or,!1)):u.detachEvent("onmousewheel",Or),J().removeEventListener("mousedown",kr),J().removeEventListener("mouseup",Er))}function Or(n){var t=(new Date).getTime(),e=Oe(Ae(".fp-completely")[0],"fp-normal-scroll"),i=function(n,t){(new Date).getTime();var e=rn().j&&n.getBoundingClientRect().bottom>=0&&"up"===zi.Fn(),i=rn().Vn;if(i)return Ke(t),!1;if(rn().j){if(e){var r;if(!(i||Fi("isNewKeyframe","beyondFullpage")&&zi.Wn()))return(r=Mn(pi(rn().R).item.offsetTop+pi(rn().R).item.offsetHeight)).element.scrollTo(0,r.options),en({Vn:!1}),Ke(t),!1;if(zi.Wn())return e=!1,en({Vn:!0}),en({L:"wheel"}),Pi(),Ke(t),!1}else Fi("set","beyondFullpage",1e3);if(!i&&!e)return!0}}(J(),n);if(tn.Y||en({Z:!1,Y:!0,V:"none"}),!yt().m.down&&!yt().m.up)return!1;if(i)return!0;if(!1===i)return Ke(n),!1;if(K().autoScrolling&&!Xi&&!e){var r=(n=n||a.event).wheelDelta||-n.deltaY||-n.detail,o=Math.max(-1,Math.min(1,r)),u=void 0!==n.wheelDeltaX||void 0!==n.deltaX,l=Math.abs(n.wheelDeltaX)0?"up":"none";Ar.length>149&&Ar.shift(),Ar.push(Math.abs(r)),K().scrollBar&&Ke(n);var s=t-Tr;return Tr=t,s>200&&(Ar=[]),en({B:c}),tn.canScroll&&!ln()&&hi(Ar,10)>=hi(Ar,70)&&l&&(en({L:"wheel"}),Gi(o<0?"down":"up")),!1}K().fitToSection&&en({F:!1})}function kr(n){var t;2==n.which&&(t=n.pageY,Zi=t,J().addEventListener("mousemove",Yi))}function Er(n){2==n.which&&J().removeEventListener("mousemove",Yi)}function Rr(n){n?(xr(!0),function(){if(nr.Bn&&(l||s)&&(!an("dragAndMove")||"mouseonly"===K().dragAndMove)){K().autoScrolling&&(jn.removeEventListener(nr.Bn,ur,{passive:!1}),jn.addEventListener(nr.Bn,ur,{passive:!1}));var n=K().touchWrapper;n.removeEventListener(nr.Zn,ir),n.removeEventListener(nr.Bn,tr,{passive:!1}),n.addEventListener(nr.Zn,ir),n.addEventListener(nr.Bn,tr,{passive:!1})}}()):(xr(!1),function(){if(nr.Bn&&(l||s)){K().autoScrolling&&(jn.removeEventListener(nr.Bn,tr,{passive:!1}),jn.removeEventListener(nr.Bn,ur,{passive:!1}));var n=K().touchWrapper;n.removeEventListener(nr.Zn,ir),n.removeEventListener(nr.Bn,tr,{passive:!1})}}())}d.setMouseWheelScrolling=xr;var Dr=!0;function Lr(){["mouseenter","touchstart","mouseleave","touchend"].forEach((function(n){ti(n,zr,!0)}))}function jr(n,t){document["fp_"+n]=t,qe(n,zr,!0)}function zr(n){var t=n.type,e=!1,i="mouseleave"===t?n.toElement||n.relatedTarget:n.target;i!=document&&i?("touchend"===t&&(Dr=!1,setTimeout((function(){Dr=!0}),800)),("mouseenter"!==t||Dr)&&(K().normalScrollElements.split(",").forEach((function(n){if(!e){var t=oi(i,n),r=Ge(i,n);(t||r)&&(d.shared.Un||Rr(!1),d.shared.Un=!0,e=!0)}})),!e&&d.shared.Un&&(Rr(!0),d.shared.Un=!1))):Rr(!0)}function Nr(n,t){Dn(0,"internal"),pr(n,t),Dn($().scrollingSpeed,"internal")}Un.un(tt,(function(){K().normalScrollElements&&(["mouseenter","touchstart"].forEach((function(n){jr(n,!1)})),["mouseleave","touchend"].forEach((function(n){jr(n,!0)}))),Un.un(et,Lr)})),d.silentMoveTo=Nr;var Ir,Pr,Hr=ke(),Cr=Ee(),Wr=!1;function Fr(){clearTimeout(Ir),clearTimeout(Pr),ei("resize",Vr)}function Vr(){Wr||(K().autoScrolling&&!K().scrollBar||!K().fitToSection)&&Zr(ke()),tn.K&&function(){if(l)for(var n=0;n<4;n++)Pr=setTimeout((function(){window.requestAnimationFrame((function(){K().autoScrolling&&!K().scrollBar&&(en({P:!0}),Nr(tn.D.index()+1),en({P:!1}))}))}),200*n)}(),Wr=!0,clearTimeout(Ir),Ir=setTimeout((function(){!function(){if(en({P:!0}),Zr(""),ri(J(),"onResize"),K().autoScrolling||tn.j||function(){if(!K().autoScrolling||K().scrollBar){var n=.01*a.innerHeight;u.documentElement.style.setProperty("--vh","".concat(n,"px"))}}(),Un.ln(it),zt(),ce(),l){var n=u.activeElement;if(!oi(n,"textarea")&&!oi(n,"input")&&!oi(n,"select")){var t=ke();Math.abs(t-Hr)>20*Math.max(Hr,t)/100&&(Br(!0),Hr=t)}}else e=ke(),i=Ee(),tn.U===e&&Cr===i||(en({U:e}),Cr=i,Br(!0));var e,i;ri(J(),"onResizeEnds"),en({P:!1})}(),Wr=!1}),400)}function Br(n){if(!Oe(J(),w)){en({P:!0,U:ke(),_n:Ee()});for(var t=rn().R,e=0;e1&&xt(r,i.activeSlide.item)}K().scrollOverflow&&Se.bn();var u=rn().D.index();tn.j||!u||an("fadingEffect")||an("dropEffect")||an("waterEffect")||Nr(u+1),en({P:!1}),ii(K().afterResize)&&n&&K().afterResize.call(J(),a.innerWidth,a.innerHeight),ii(K().afterReBuild)&&!n&&K().afterReBuild.call(J()),ri(J(),"afterRebuild")}}function Zr(n){rn().R.forEach((function(t){var e=""!==n||an("offsetSections")?sn(t.item):"";Re(t.item,{height:e})}))}function Yr(){var n,t,e=a.location.hash;if(e.length){var i=e.replace("#","").split("/"),r=e.indexOf("#/")>-1;n=r?"/"+i[1]:decodeURIComponent(i[0]);var o=r?i[2]:i[1];o&&o.length&&(t=decodeURIComponent(o))}return{section:n,pn:t}}function Gr(){ei("hashchange",Xr)}function Xr(){if(!tn.H&&!K().lockAnchors){var n=Yr(),t=n.section,e=n.pn,i=void 0===tn.C,r=void 0===tn.C&&void 0===e&&!tn.I;t&&t.length&&(t&&t!==tn.C&&!i||r&&!ln()||!tn.I&&tn.W!=e&&!ln())&&Un.ln(ot,{Xn:t,slideAnchor:e})}}function Ur(n){var t=n.target;Ge(t,K().menu+" [data-menuanchor]")&&_r.call(t,n.e)}function _r(n){if(en({L:"menu"}),Ae(K().menu)[0]&&(K().lockAnchors||!K().anchors.length)){Ke(n);var t=Ge(this,"[data-menuanchor]");Un.ln(ut,{anchor:$e(t,"data-menuanchor")})}}function Qr(n){var t=n.target;t&&Ge(t,"#fp-nav a")?_t.call(t,n.e):oi(t,".fp-tooltip")?Xt.call(t):(oi(t,W)||null!=Ge(t,W))&>.call(t,n.e)}d.reBuild=Br,Un.un(tt,(function(){Vr(),ni("resize",Vr),Un.un(et,Fr)})),d.setLockAnchors=function(n){K().lockAnchors=n},Un.un(tt,(function(){ni("hashchange",Xr),Un.un(et,Gr)})),Un.un(tt,(function(){qe("wheel",zi.Cn,Ei()),Un.un(st,Ni),Un.un(at,Ii)})),Un.un(tt,(function(){Un.un(Jn,Ur)})),Un.un(tt,(function(){Un.un(Jn,Qr)}));var Jr,Kr,$r=0;function qr(n){var t,e,i,r,o;if(ri(J(),"onScroll"),!tn.P&&rn().D&&(pi(rn().R),!rn().j&&!rn().Vn&&(!K().autoScrolling||K().scrollBar||an("dragAndMove"))&&!cn())){var a=an("dragAndMove")?Math.abs(un("dragAndMove","getCurrentScroll")):Qe(),u=function(n){var t=n>$r?"down":"up";return $r=n,en({X:n}),t}(a),l=0,c=a+ke()/2,s=(an("dragAndMove")?un("dragAndMove","getDocumentHeight"):jn.scrollHeight-ke())===a,f=rn().R;if(en({scrollY:a}),s)l=f.length-1;else if(a)for(var d=0;d=Qe()+ke():r<=Qe())&&(Oe(rn().D.item,M)||(Ce(rn().D.item,M),We(Je(rn().D.item),M))),e=(t=f[l]).item,!t.isActive){en({H:!0});var v,p,h=rn().D.item,g=rn().D.index()+1,m=xn(rn().D,e),w=t.anchor,b=t.index()+1,y=t.activeSlide,T={D:h,sectionIndex:b-1,anchorLink:w,element:e,leavingSection:g,direction:m,items:{origin:rn().D,destination:t}};if(y&&(p=y.anchor,v=y.index()),tn.canScroll)We(f.filter((function(n){return n.index()!==t.index()})).map((function(n){return n.item})),S),Ce(e,S),un("parallax","afterLoad"),ii(K().beforeLeave)&&ie("beforeLeave",T),ii(K().onLeave)&&Vt("onLeave",T),ii(K().afterLoad)&&Vt("afterLoad",T),un("resetSliders","apply",{localIsResizing:tn.P,leavingSection:g}),Cn(h),Fn(t),Pn(e),Qt(w,b-1),K().anchors.length&&en({C:w}),zt(),Yn(v,p,w);clearTimeout(Jr),Jr=setTimeout((function(){en({H:!1})}),100)}K().fitToSection&&tn.canScroll&&(clearTimeout(Kr),Kr=setTimeout((function(){tn.R.filter((function(n){var t=n.item.getBoundingClientRect();return Math.round(t.bottom)===Math.round(ke())||0===Math.round(t.top)})).length||le()}),K().fitToSectionDelay))}}function no(n){var t=n.items.destination.activeSlide;en({scrollX:t?Math.round(t.offsetLeft):0})}function to(n){var t=K().skipIntermediateItems,e=n.items.origin.nn?"sections":"slides",i=Math.abs(n.items.origin.index()-n.items.destination.index())>1;(!0===t||t===e)&&i&&Dn(0,"internal")}function eo(){K().skipIntermediateItems&&q("scrollingSpeed",$().scrollingSpeed,"internal")}function io(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){St(n,t,"k")})):(St(n,"all","k"),K().keyboardScrolling=n)}function ro(n){var t=n.index();void 0!==K().anchors[t]&&n.isActive&&Qt(K().anchors[t],t),K().menu&&K().css3&&null!=Ge(Ae(K().menu)[0],h)&&Ae(K().menu).forEach((function(n){jn.appendChild(n)}))}function oo(){var n,t,e=rn().D,i=rn().D.item;Ce(i,M),Fn(rn().D),Gt(),Pn(i),t=fr((n=Yr()).section),n.section&&t&&(void 0===t||t.index()!==ze(pe))||!ii(K().afterLoad)||Vt("afterLoad",{D:i,element:i,direction:null,anchorLink:e.anchor,sectionIndex:e.index(),items:{origin:rn().D,destination:rn().D}}),ii(K().afterRender)&&Vt("afterRender"),ri(J(),"afterRender")}function ao(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){St(n,t,"m")})):St(n,"all","m"),ri(J(),"setAllowScrolling",{value:n,Qn:t})}function uo(){var n=Yr(),t=n.section,e=n.pn;t?K().animateAnchor?vr(t,e):Nr(t,e):Un.ln(Qn,null)}Un.un(et,(function(){clearTimeout(Jr),clearTimeout(Kr)})),Un.un(tt,(function(){ni("scroll",qr),u.body.addEventListener("scroll",qr),Un.un(ot,(function(n){vr(n.Xn,n.slideAnchor)})),Un.un(ut,(function(n){pr(n.anchor,void 0)})),Un.un(rt,(function(n){("down"===n.direction?Vi:Bi)()})),Un.un(lt,(function(n){re(n.destination)}))})),Un.un(et,(function(){ei("scroll",qr)})),d.getActiveSlide=function(){return Ft(rn().D.activeSlide)},d.getScrollX=function(){return tn.scrollX},Un.un(tt,(function(){Un.un(et,Et),Un.un(ct,(function(n){xt(n.slides,n.destination)})),Un.un($n,(function(n){sr(n.section)})),Un.un(Kn,(function(n){cr(n.section)})),Un.un(pt,no)})),Un.un(tt,(function(){var n=K().credits.position,t=["left","right"].indexOf(n)>-1?"".concat(n,": 0;"):"",e='\n \n "),i=pi(tn.R),r=!tn.Jn||K().credits.enabled;i&&i.item&&r&&i.item.insertAdjacentHTML("beforeend",e)})),function(){Un.un(qn,(function(){var t,u,l;en({Jn:(K().licenseKey,t=K().licenseKey,u=function(t){var e=parseInt("514").toString(16);if(!t||t.length<29||4===t.split(n[0]).length)return null;var i=["Each","for"][r()]().join(""),u=t[["split"]]("-"),l=[];u[i]((function(n,t){if(t<4){var i=function(n){var t=n[n.length-1],e=["NaN","is"][r()]().join("");return window[e](t)?o(t):function(n){return n-S.length}(t)}(n);l.push(i);var a=o(n[i]);if(1===t){var u=["pa","dS","t","art"].join("");a=a.toString()[u](2,"0")}e+=a,0!==t&&1!==t||(e+="-")}}));var c=0,s="";return t.split("-").forEach((function(n,t){if(t<4){for(var e=0,i=0;i<4;i++)i!==l[t]&&(e+=Math.abs(o(n[i])),isNaN(n[i])||c++);var r=a(e);s+=r}})),s+=a(c),{Kn:new Date(e+"T00:00"),$n:e.split("-")[2]===8*(S.length-2)+"",qn:s}}(t),l=function(n){var t=i[r()]().join("");return n&&0===t.indexOf(n)&&n.length===t.length}(t)||function(n){return new RegExp("^(?=.*?[A-Y])(?=.*?[a-y])(?=.*?[0-8])(?=.*?[#?!@$%^&*-]).{8,}$").test(n)}(t),(u||l)&&(u&&e<=u.Kn&&u.qn===t.split(n[0])[4]||l||u.$n)||!1)})}));var n=["-"],t="2024-8-6".split("-"),e=new Date(t[0],t[1],t[2]),i=["se","licen","-","v3","l","gp"];function r(){return[["re","verse"].join("")]["".length]}function o(n){return n?isNaN(n)?n.charCodeAt(0)-72:n:""}function a(n){var t=72+n;return t>90&&t<97&&(t+=15),String.fromCharCode(t).toUpperCase()}}(),Un.un(ft,to),Un.un(pt,eo),Un.un(dt,to),Un.un(ht,eo),Un.un(nt,(function(){io(!0)})),d.setKeyboardScrolling=io,d.shared.nt=oo,d.setAllowScrolling=ao;var lo={};function co(){return lo}var so,fo,vo,po,ho=!Oe(jn,dn("OHNsd3AtZnVsbHBhZ2UtanM5T20="));function go(n){if(fo=u.createElement("div"),so=dn("MTIzPGRpdj48YSBocmVmPSJodHRwOi8vYWx2YXJvdHJpZ28uY29tL2Z1bGxQYWdlL2V4dGVuc2lvbnMvIiBzdHlsZT0iY29sb3I6ICNmZmYgIWltcG9ydGFudDsgdGV4dC1kZWNvcmF0aW9uOm5vbmUgIWltcG9ydGFudDsiPlVubGljZW5zZWQgZnVsbFBhZ2UuanMgRXh0ZW5zaW9uPC9hPjwvZGl2PjEyMw=="),ho||(so=so.replace("extensions/","").replace("Extension","")),fo.innerHTML=so,fo=fo.firstChild,"MutationObserver"in window&&new MutationObserver(wo).observe(u.body,{childList:!0,subtree:!1}),(!ho||an(n)&&d[n])&&(!function(n){var t=void 0!==co()[n]&&co()[n].length,e=[],i=!1;return He(co()[n])?e=co()[n]:e.push(co()[n]),e.forEach((function(e){var r=function(){if(u.domain.length){for(var n=u.domain.replace(/^(www\.)/,"").split(".");n.length>2;)n.shift();return n.join(".").replace(/(^\.*)|(\.*$)/g,"")}return""}(),o=["MTM0bG9jYWxob3N0MjM0","MTM0MC4xMjM0","MTM0anNoZWxsLm5ldDIzNA==","UDdDQU5ZNlNN","NTY3YnVuZGxlNzg5","NTU1S2V5Nzc3","NDU2dGVzdDQ1Ng=="],a=dn(o[0]),l=dn(o[1]),c=dn(o[2]),s=dn(o[6]),f=dn(o[3]),d=dn(o[4]),v=dn(o[5]),p=void 0!==K()[d+v];t=t||p;var h=[a,l,c,s].indexOf(r)<0&&0!==r.length;if(!t&&!p&&h)return!1;var g=t?dn(e):"",m=(g=g.split("_")).length>1&&g[1].indexOf(n,g[1].length-n.length)>-1,w=g.length>1&&g[1].toLowerCase().indexOf(d)>-1,b=g[0].indexOf(r,g[0].length-r.length)<0,S=m||w;i=i||!(b&&h&&f!=g[0])&&S||!h})),i}(n)||!ho)){mo();var t=dn("MzQ1c2V0SW50ZXJ2YWwxMjM=");window[t](mo,2e3)}}function mo(){fo&&(po||(Math.random()<.5?fn(jn,fo):Fe(fo,jn),po=!0),fo.setAttribute("style",dn("MTIzei1pbmRleDo5OTk5OTk5O3Bvc2l0aW9uOmZpeGVkO3RvcDoyMHB4O2JvdHRvbTphdXRvO2xlZnQ6MjBweDtyaWdodDphdXRvO2JhY2tncm91bmQ6cmVkO3BhZGRpbmc6N3B4IDE1cHg7Zm9udC1zaXplOjE0cHg7Zm9udC1mYW1pbHk6YXJpYWw7Y29sb3I6I2ZmZjtkaXNwbGF5OmlubGluZS1ibG9jazt0cmFuc2Zvcm06dHJhbnNsYXRlM2QoMCwwLDApO29wYWNpdHk6MTtoZWlnaHQ6YXV0bzt3aWR0aDphdXRvO3pvb206MTttYXJnaW46YXV0bztib3JkZXI6bm9uZTt2aXNpYmlsaXR5OnZpc2libGU7Y2xpcC1wYXRoOm5vbmU7MTIz").replace(/;/g,dn("MTIzICFpbXBvcnRhbnQ7MzQ1"))))}function wo(n){n.forEach((function(n){if(n.removedNodes[0]&&n.removedNodes[0].isEqualNode(fo)){clearTimeout(vo);var t=dn("bDIwc2V0VGltZW91dDAzbA==");vo=window[t](bo,900)}}))}function bo(){po=!1}function So(){Nt(),zt(),K().scrollBar=K().scrollBar||K().hybrid,nn(),function(){Re(mi(J(),"body"),{height:"100%",position:"relative"}),Ce(J(),p),Ce(zn,b),en({U:ke()}),We(J(),w),Mi(),un("parallax","init");for(var n=rn().tn,t=0;t0&&Ti(e)}K().fixedElements&&K().css3&&Ae(K().fixedElements).forEach((function(n){jn.appendChild(n)})),K().navigation&&Ut(),Ae('iframe[src*="youtube.com/embed/"]',J()).forEach((function(n){var t,e;e=$e(t=n,"src"),t.setAttribute("src",e+(/\?/.test(e)?"&":"?")+"enablejsapi=1")})),un("fadingEffect","apply"),un("waterEffect","init"),un("dropEffect","init"),un("cards","init"),K().scrollOverflow&&Se.bn()}(),ao(!0),Rr(!0),Zt(K().autoScrolling,"internal"),ce(),Bn(),"complete"===u.readyState&&uo(),ni("load",uo),oo(),ho||go("l"),Nt(),zt()}function yo(){var n=K().licenseKey;""===K().licenseKey.trim()?(ye("error","Fullpage.js requires a `licenseKey` option. Read about it on the following website:"),ye("error","https://alvarotrigo.com/fullPage/docs/#licensekey")):K()&&tn.Jn||u.domain.indexOf("alvarotrigo.com")>-1?n&&n.length:(ye("error","Incorrect `licenseKey`. Get one for fullPage.js version 4 here:"),ye("error","https://alvarotrigo.com/fullPage/pricing")),Oe(zn,b)?ye("error","Fullpage.js can only be initialized once and you are doing it multiple times!"):(K().continuousVertical&&(K().loopTop||K().loopBottom)&&(K().continuousVertical=!1,ye("warn","Option `loopTop/loopBottom` is mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),!K().scrollOverflow||!K().scrollBar&&K().autoScrolling||ye("warn","Options scrollBar:true and autoScrolling:false are mutually exclusive with scrollOverflow:true. Sections with scrollOverflow might not work well in Firefox"),!K().continuousVertical||!K().scrollBar&&K().autoScrolling||(K().continuousVertical=!1,ye("warn","Scroll bars (`scrollBar:true` or `autoScrolling:false`) are mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),K().anchors.forEach((function(n){var t=[].slice.call(Ae("[name]")).filter((function(t){return $e(t,"name")&&$e(t,"name").toLowerCase()==n.toLowerCase()})),e=[].slice.call(Ae("[id]")).filter((function(t){return $e(t,"id")&&$e(t,"id").toLowerCase()==n.toLowerCase()}));if(e.length||t.length){ye("error","data-anchor tags can not have the same value as any `id` element on the site (or `name` element for IE).");var i=e.length?"id":"name";(e.length||t.length)&&ye("error",'"'+n+'" is is being used by another element `'+i+"` property")}})))}function Mo(){return{options:K(),internals:{container:J(),canScroll:tn.canScroll,isScrollAllowed:yt(),getDestinationPosition:oe,isTouch:s,c:go,getXmovement:kt,removeAnimation:On,getTransforms:kn,lazyLoad:Wn,addAnimation:An,performHorizontalMove:Ot,landscapeScroll:xt,silentLandscapeScroll:Dt,keepSlidesPosition:Yt,silentScroll:Rn,styleSlides:Ti,styleSection:he,scrollHandler:qr,getEventsPage:or,getMSPointer:ar,isReallyTouch:er,usingExtension:an,toggleControlArrows:Tt,touchStartHandler:ir,touchMoveHandler:tr,nullOrSection:Wt,items:{SectionPanel:Ht,SlidePanel:Ct,Item:pn},getVisible:Te,getState:rn,updateState:zt,updateStructuralState:Nt,activeSlidesNavigation:mt,getPanels:function(){return tn.rn},getSections:function(){return tn.R},setActiveSection:function(n){tn.D=n}}}}function To(n){var t=["NTY3YnVuZGxlNzg5","NTU1S2V5Nzc3"],e=dn(t[0]),i=dn(t[1]),r=void 0!==K()[e+i],o="fp_"+n+"Extension";co()[n]=r?K()[e+i]:K()[n+i],d[n]=void 0!==window[o]?new window[o]:null,d[n]&&d[n].c(n)}function Ao(n,t){var e;if(jn=Ae("body")[0],zn=Ae("html")[0],Nn=Ae("html, body"),!Oe(zn,b))return"touchWrapper",e="string"==typeof n?Ae(n)[0]:n,G.touchWrapper=e,function(n){Q=xe({},G,n),_=Object.assign({},Q)}(t),function(n){X=n}("string"==typeof n?Ae(n)[0]:n),Un.ln(qn),yo(),d.getFullpageData=Mo,d.version="4.0.29",d.test=Object.assign(d.test,{top:"0px",on:"translate3d(0px, 0px, 0px)",cn:function(){for(var n=[],t=0;t>>0;if("function"!=typeof n)throw new TypeError("predicate must be a function");for(var i=arguments[1],r=0;r0?1:-1)*Math.floor(Math.abs(t)):t}(n);return Math.min(Math.max(t,0),e)},function(n){var e=this,r=Object(n);if(null==n)throw new TypeError("Array.from requires an array-like object - not null or undefined");var o,a=arguments.length>1?arguments[1]:void 0;if(void 0!==a){if(!t(a))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(o=arguments[2])}for(var u,l=i(r.length),c=t(e)?Object(new e(l)):new Array(l),s=0;s0||navigator.maxTouchPoints,f=!!window.MSInputMethodContext&&!!document.documentMode,d={test:{},shared:{}},v=(o=window.self!==window.top,function(){return o});a.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=function(n,t){t=t||window;for(var e=0;e
    ','
    '],controlArrowColor:"#fff",verticalCentered:!0,sectionsColor:[],paddingTop:0,paddingBottom:0,fixedElements:null,responsive:0,responsiveWidth:0,responsiveHeight:0,responsiveSlides:!1,parallax:!1,parallaxOptions:{type:"reveal",percentage:62,property:"translate"},cards:!1,cardsOptions:{perspective:100,fadeContent:!0,fadeBackground:!0},sectionSelector:".section",slideSelector:".slide",afterLoad:null,beforeLeave:null,onLeave:null,afterRender:null,afterResize:null,afterReBuild:null,afterSlideLoad:null,onSlideLeave:null,afterResponsive:null,onScrollOverflow:null,lazyLoading:!0,lazyLoadThreshold:0,observer:!0,scrollBeyondFullpage:!0},U=null,_=!1,Q=ke({},X),J=null;function K(n){return U}function $(){return J||X}function q(){return Q}function nn(n,t,e){J[n]=t,"internal"!==e&&(Q[n]=t)}function tn(){if(!$().anchors.length){var n=Oe($().sectionSelector.split(",").join("[data-anchor],")+"[data-anchor]",U);n.length&&n.length===Oe($().sectionSelector,U).length&&(_=!0,n.forEach((function(n){$().anchors.push(ni(n,"data-anchor").toString())})))}if(!$().navigationTooltips.length){var t=Oe($().sectionSelector.split(",").join("[data-tooltip],")+"[data-tooltip]",U);t.length&&t.forEach((function(n){$().navigationTooltips.push(ni(n,"data-tooltip").toString())}))}}var en={A:0,O:0,slides:[],R:[],D:null,L:null,j:!1,N:!1,I:!1,P:!1,H:!1,C:void 0,W:void 0,F:!1,canScroll:!0,V:"none",B:"none",Z:!1,Y:!1,G:!0,X:0,U:Re(),_:!1,J:{},scrollY:0,scrollX:0,K:!1};function rn(n){Object.assign(en,n)}function on(){return en}function an(n){return void 0!==window["fp_"+n+"Extension"]}function un(n){var t=$();return null!==t[n]&&"[object Array]"===Object.prototype.toString.call(t[n])?t[n].length&&d[n]:t[n]&&d[n]}function ln(n,t,e){if(un(n))return oi(d[n][t])?d[n][t](e):d[n][t]}function cn(){return ln("dragAndMove","isAnimating")}function sn(){return ln("dragAndMove","isGrabbing")}function fn(n){if($().offsetSections&&d.offsetSections){var t=ln("offsetSections","getWindowHeight",n);return""!==t?Math.round(t)+"px":t}return Re()+"px"}function dn(n,t){n.insertBefore(t,n.firstChild)}function vn(n){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";function e(n){var e,i,r,o,a,u,l="",c=0;for(n=n.replace(/[^A-Za-z0-9+/=]/g,"");c>4,i=(15&o)<<4|(a=t.indexOf(n.charAt(c++)))>>2,r=(3&a)<<6|(u=t.indexOf(n.charAt(c++))),l+=String.fromCharCode(e),64!=a&&(l+=String.fromCharCode(i)),64!=u&&(l+=String.fromCharCode(r));return l=function(n){for(var t,e="",i=0,r=0,o=0;i191&&r<224?(o=n.charCodeAt(i+1),e+=String.fromCharCode((31&r)<<6|63&o),i+=2):(o=n.charCodeAt(i+1),t=n.charCodeAt(i+2),e+=String.fromCharCode((15&r)<<12|(63&o)<<6|63&t),i+=3);return e}(l),l}function i(n){return n.slice(3).slice(0,-3)}return function(n){var t=n.split("_");if(t.length>1){var r=t[1];return e(n.replace(i(t[1]),"").split("_")[0].slice(2).slice(0,-2))+"_"+e(r.slice(3).slice(0,-3))}return i(n)}(e(n))}a.state=en,a.fp_utils=a.fp_utils||{},Object.assign(a.fp_utils,{prependTo:dn,toggleClass:function(n,t,e){if(n.classList&&null==e)n.classList.toggle(t);else{var i=Ee(n,t);i&&null==e||!e?Ve(n,t):(!i&&null==e||e)&&Fe(n,t)}}});var pn=function(n){this.anchor=n.anchor,this.item=n.item,this.index=n.index(),this.isLast=this.index===n.item.parentElement.querySelectorAll(n.selector).length-1,this.isFirst=!this.index,this.isActive=n.isActive},hn=function(n,t){this.parent=this.parent||null,this.selector=t,this.anchor=ni(n,"data-anchor")||$().anchors[Ie(n,$().sectionSelector)],this.item=n,this.isVisible=Ae(n),this.isActive=Ee(n,y),this.q=Ee(n,P)||null!=Oe(H,n)[0],this.nn=t===$().sectionSelector,this.container=Ue(n,N)||Ue(n,h),this.index=function(){return this.siblings().indexOf(this)}};function gn(n){return n.map((function(n){return n.item}))}function mn(n,t){return n.find((function(n){return n.item===t}))}hn.prototype.siblings=function(){return this.nn?this.isVisible?en.R:en.tn:this.parent?this.parent.slides:0},hn.prototype.prev=function(){var n=this.siblings(),t=(this.nn?n.indexOf(this):this.parent.slides.indexOf(this))-1;return t>=0?n[t]:null},hn.prototype.next=function(){var n=this.siblings(),t=(this.nn?n.indexOf(this):this.parent.slides.indexOf(this))+1;return ti?"up":"down"}function kn(n){return Fe(n,w)}function En(n){return{"-webkit-transform":n,"-moz-transform":n,"-ms-transform":n,transform:n}}function Rn(n,t){t?xn(K()):kn(K()),clearTimeout(wn),Le(K(),En(n)),d.test.on=n,wn=setTimeout((function(){Ve(K(),w)}),10)}function Dn(n){var t=Math.round(n);if($().css3&&$().autoScrolling&&!$().scrollBar)Rn("translate3d(0px, -"+t+"px, 0px)",!1);else if($().autoScrolling&&!$().scrollBar)Le(K(),{top:-t+"px"}),d.test.top=-t+"px";else{var e=Tn(t);An(e.element,e.options)}}function Ln(n,t){"internal"!==t&&ln("fadingEffect","update",n),ln("cards","update_",n),nn("scrollingSpeed",n,t)}d.setScrollingSpeed=Ln;var jn,zn=null,Nn=null,In=null;function Pn(n,t,e,i){var r,o=function(n){return n.self!=a&&Ee(n,L)?n.scrollLeft:!$().autoScrolling||$().scrollBar?Ke():n.offsetTop}(n),u=t-o,l=!1,c=en.F;rn({F:!0}),jn&&window.cancelAnimationFrame(jn),jn=function(s){r||(r=s);var f=Math.floor(s-r);if(en.F){var d=t;e&&(d=a.fp_easings[$().easing](f,o,u,e)),f<=e&&An(n,d),f=n.HAVE_FUTURE_DATA?n.play():n.addEventListener("canplay",(function t(){n.play(),n.removeEventListener("canplay",t)})))})),Oe('iframe[src*="youtube.com/embed/"]',t).forEach((function(n){Hn(n)&&Wn(n),n.onload=function(){Hn(n)&&Wn(n)}}))}function Wn(n){n.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}',"*")}function Fn(n){var t=yn(n);Oe("video, audio",t).forEach((function(n){n.hasAttribute("data-keepplaying")||"function"!=typeof n.pause||n.pause()})),Oe('iframe[src*="youtube.com/embed/"]',t).forEach((function(n){/youtube\.com\/embed\//.test(ni(n,"src"))&&!n.hasAttribute("data-keepplaying")&&n.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}',"*")}))}function Vn(n){$().lazyLoading&&Oe("img[data-src], img[data-srcset], source[data-src], source[data-srcset], video[data-src], audio[data-src], iframe[data-src]",yn(n)).forEach((function(n){if(["src","srcset"].forEach((function(t){var e=ni(n,"data-"+t);null!=e&&e&&(wi(n,t),n.addEventListener("load",(function(){})))})),ui(n,"source")){var t=Ue(n,"video, audio");t&&(t.load(),t.onloadeddata=function(){})}}))}function Bn(n){var t=$().lazyLoadThreshold;Vn(n.item),t&&(Zn(n,"prev",t),Zn(n,"next",t))}function Zn(n,t,e){for(var i=n,r=0;r-1&&this.an[n].splice(e,1)}},ln:function(n){for(var t=this,e=arguments.length,i=new Array(e>1?e-1:0),r=1;rt?"left":"right"}function Dt(){clearTimeout(St)}function Lt(n){ln("continuousHorizontal","afterSlideLoads",n),ln("dragAndMove","afterSlideLoads",n),n.localIsResizing||(ln("parallax","afterSlideLoads"),ln("scrollOverflowReset","setPrevious",n.prevSlide),ln("scrollOverflowReset","reset"),oi($().afterSlideLoad)&&Zt("afterSlideLoad",n),rn({canScroll:!0}),Cn(n.destiny),Qn.ln(mt,n)),rn({I:!1}),ln("interlockedSlides","interlockedSlides",n)}function jt(n,t){Ln(0,"internal"),void 0!==t&&rn({P:!0}),kt(Ue(n,j),n),void 0!==t&&rn({P:!1}),Ln(q().scrollingSpeed,"internal")}yt.m={up:!0,down:!0,left:!0,right:!0},yt.k=ke({},yt.m),Qn.un($n,(function(n){var t=n.target;(ui(t,B)||Ue(t,B))&&At.call(t,n)})),d.landscapeScroll=kt,Qn.un(it,(function(){Qn.un(vt,Ot)}));var zt=null,Nt=null;function It(){en.D=null,en.R.map((function(n){var t=Ee(n.item,y);n.isActive=t,n.q=Me.q(n.item),t&&(en.D=n),n.slides.length&&(n.activeSlide=null,n.slides.map((function(t){var e=Ee(t.item,y);t.q=Me.q(n.item),t.isActive=e,e&&(n.activeSlide=t)})))})),function(){var n=en.D,t=!!en.D&&en.D.slides.length,e=en.D?en.D.activeSlide:null;if(!n&&en.R.length&&!on().j){if(zt){var i=Ct(zt,en.R);i&&(en.D=i,en.D.isActive=!0,Fe(en.D.item,y)),en.D&&Dn(en.D.item.offsetTop)}if(t&&!e&&Nt){var r=Ct(Nt,en.D.slides);r&&(en.D.activeSlide=r,en.D.activeSlide.isActive=!0,Fe(en.D.activeSlide.item,y)),en.D.activeSlide&&jt(en.D.activeSlide.item,"internal")}}}(),ai(K(),"onUpdateStateDone")}function Pt(){var n=Oe($().sectionSelector+", "+x,K()),t=xe(n),e=Array.from(n).map((function(n){return new Wt(n)})),i=e.filter((function(n){return n.isVisible})),r=i.reduce((function(n,t){return n.concat(t.slides)}),[]);zt=Ht(en.D),Nt=Ht(en.D?en.D.activeSlide:null),en.A=t.length,en.O=i.reduce((function(n,t){return n+t.slides.length}),0),en.R=i,en.tn=e,en.slides=r,en.rn=en.R.concat(en.slides)}function Ht(n){if(!n)return null;var t=n?n.item:null,e=n.nn?en.tn:en.D.dn;if(t){var i=mn(e,t);return i?i.index():null}return null}function Ct(n,t){var e,i=n-1,r=n;do{if(e=t[i]||t[r])break;i-=1,r+=1}while(i>=0||r0,o=i>2&&i'+Jn(o.index(),"Section")+"";var l=$().navigationTooltips[o.index()];void 0!==l&&""!==l&&(i+='
    '+l+"
    "),i+=""}Oe("ul",e)[0].innerHTML=i;var c=Oe("li",Oe(k)[0])[on().D.index()];Fe(Oe("a",c),y)}function Jt(n){n.preventDefault&&qe(n),rn({L:"verticalNav"});var t=Ie(Ue(this,"#fp-nav li"));Qn.ln(st,{destination:on().R[t]})}function Kt(n,t){var e;e=n,$().menu&&$().menu.length&&Oe($().menu).forEach((function(n){null!=n&&(Ve(Oe(M,n),y),Fe(Oe('[data-menuanchor="'+e+'"]',n),y))})),function(n,t){var e=Oe(k)[0];$().navigation&&null!=e&&"none"!==e.style.display&&(Ve(Oe(M,e),y),Fe(n?Oe('a[href="#'+n+'"]',e):Oe("a",Oe("li",e)[t]),y))}(n,t)}Ft.prototype=hn.prototype,Ft.prototype.constructor=Wt,d.setRecordHistory=Yt,d.setAutoScrolling=Gt,d.test.setAutoScrolling=Gt,(new Date).getTime();var $t,qt,ne,te,ee,ie,re=(qt=!0,ne=(new Date).getTime(),te=!a.fullpage_api,function(n,t){var e=(new Date).getTime(),i="wheel"===n?$().scrollingSpeed:100;return qt=te||e-ne>=i,te=!a.fullpage_api,qt&&($t=t(),ne=e),void 0===$t||$t});function oe(n,t){if(oi($().beforeLeave))return re(on().L,(function(){return Zt(n,t)}))}function ae(n,t,e){var i=n.item;if(null!=i){var r,o,a={element:i,callback:t,isMovementUp:e,dtop:ue(i),yMovement:On(on().D,i),anchorLink:n.anchor,sectionIndex:n.index(),activeSlide:n.activeSlide?n.activeSlide.item:null,leavingSection:on().D.index()+1,localIsResizing:en.P,items:{origin:on().D,destination:n},direction:null};if(!(on().D.item==i&&!en.P||$().scrollBar&&Ke()===a.dtop&&!Ee(i,"fp-auto-height"))){if(null!=a.activeSlide&&(r=ni(a.activeSlide,"data-anchor"),o=Ie(a.activeSlide,null)),!a.localIsResizing){var u=a.yMovement;if(void 0!==e&&(u=e?"up":"down"),a.direction=u,an("dropEffect")&&d.dropEffect.onLeave_(a),an("waterEffect")&&d.waterEffect.onLeave_(a),oi($().beforeLeave)&&!1===oe("beforeLeave",a))return;if(oi($().onLeave)&&!Zt("onLeave",a))return}ln("parallax","apply",a),ln("cards","apply",a),ln("dropEffect","apply",a),ln("waterEffect","apply",a),$().autoScrolling&&$().continuousVertical&&void 0!==a.isMovementUp&&(!a.isMovementUp&&"up"==a.yMovement||a.isMovementUp&&"down"==a.yMovement)&&(a=function(n){rn({_:!0});var t=on().D.item;return n.isMovementUp?Qe(t,vi(t,x)):_e(t,pi(t,x).reverse()),Dn(on().D.item.offsetTop),Xt(),n.hn=t,n.dtop=n.element.offsetTop,n.yMovement=On(on().D,n.element),n.leavingSection=n.items.origin.index()+1,n.sectionIndex=n.items.destination.index(),ai(K(),"onContinuousVertical",n),n}(a)),ln("scrollOverflowReset","setPrevious",on().D.item),a.localIsResizing||Fn(on().D.item),un("dropEffect")&&$().dropEffect||(Fe(i,y),Ve($e(i),y)),It(),Bn(n),rn({canScroll:d.test.gn}),Xn(o,r,a.anchorLink),Qn.ln(ht,a),function(n){rn({V:"none",scrollY:Math.round(n.dtop)}),Qn.ln(vt,n);var t=$().scrollingSpeed<700,e=t?700:$().scrollingSpeed;if($().css3&&$().autoScrolling&&!$().scrollBar)Rn("translate3d(0px, -"+Math.round(n.dtop)+"px, 0px)",!0),un("waterEffect")&&Xt(),$().scrollingSpeed?(clearTimeout(ee),ee=setTimeout((function(){le(n),rn({canScroll:!t||d.test.gn})}),$().scrollingSpeed)):le(n);else{var i=Tn(n.dtop);d.test.top=-n.dtop+"px",clearTimeout(ee),Pn(i.element,i.options,$().scrollingSpeed,(function(){$().scrollBar?ee=setTimeout((function(){le(n)}),30):(le(n),rn({canScroll:!t||d.test.gn}))}))}t&&(clearTimeout(ie),ie=setTimeout((function(){rn({canScroll:!0})}),e))}(a),rn({C:a.anchorLink}),Kt(a.anchorLink,function(n){return null!=n.hn?n.isMovementUp?en.A-1:0:n.sectionIndex}(a))}}}function ue(n){var t=n.offsetHeight,e=n.offsetTop,i=e,r=un("dragAndMove")&&ln("dragAndMove","isGrabbing")?ln("dragAndMove","isScrollingDown"):e>en.X,o=i-Re()+t,a=$().bigSectionsDestination;return t>Re()?(r||a)&&"bottom"!==a||(i=o):(r||en.P&&null==ze(n))&&(i=o),un("offsetSections")&&(i=d.offsetSections.getSectionPosition_(r,i,n)),rn({X:i}),i}function le(n){rn({j:!1}),function(n){null!=n.hn&&(n.isMovementUp?Qe(Oe(x)[0],n.hn):_e(Oe(x)[on().R.length-1],n.hn),Dn(on().D.item.offsetTop),function(){for(var n=Oe(D),t=0;t-1&&!Me.An)return qe(n),!1},yn:function(){Me.Tn=en.canScroll},onLeave:function(){clearTimeout(he),Me.An=!1},afterLoad:function(){Me.An=!1,clearTimeout(he),he=setTimeout((function(){Me.Tn=en.canScroll}),200)},Rn:function(){u.activeElement===this.Mn&&(this.Mn.blur(),Me.An=!1)},Sn:function(){if($().scrollOverflow&&Me.Tn){Me.Rn();var n=Me.Dn(on().D.item);!n||l||s||(this.Mn=n,requestAnimationFrame((function(){n.focus({Ln:!0}),Me.An=!0}))),Me.Tn=!1}},bn:function(){$().scrollOverflowMacStyle&&!c&&Fe(zn,"fp-scroll-mac"),on().rn.forEach((function(n){if(!(n.slides&&n.slides.length||Ee(n.item,"fp-auto-height-responsive")&&ve())){var t,e=yn(n.item),i=Me.mn(n.item),o=(t=n).nn?t:t.parent;if(f){var a=i?"addClass":"removeClass";r[a](o.item,C),r[a](n.item,C)}else Fe(o.item,C),Fe(n.item,C);n.q||(Me.jn(e),Me.zn(e)),n.q=!0}}))},zn:function(n){Me.Dn(n).addEventListener("scroll",Me.Nn),n.addEventListener("wheel",Me.kn,{passive:!1}),n.addEventListener("keydown",Me.En,{passive:!1})},jn:function(n){var t=document.createElement("div");t.className=P,Ge(n,t),t.setAttribute("tabindex","-1")},In:function(n){var t=Oe(H,n)[0];t&&(Xe(t),n.removeAttribute("tabindex"))},Dn:function(n){var t=yn(n);return Oe(H,t)[0]||t},q:function(n){return Ee(n,P)||null!=Oe(H,n)[0]},wn:function(n){return n.nn&&n.activeSlide?n.activeSlide.q:n.q},mn:function(n){return Me.Dn(n).scrollHeight>a.innerHeight},isScrolled:function(n,t){if(!en.canScroll)return!1;if($().scrollBar)return!0;var e=Me.Dn(t);if(!$().scrollOverflow||!Ee(e,P)||Ee(t,"fp-noscroll")||Ee(yn(t),"fp-noscroll"))return!0;var i=f?1:0,r=e.scrollTop,o="up"===n&&r<=0,a="down"===n&&e.scrollHeight<=Math.ceil(e.offsetHeight+r)+i,u=o||a;return u||"none"===n||(this.xn=(new Date).getTime()),u},Pn:function(){this.On=(new Date).getTime();var n=this.On-Me.xn,t=(l||s)&&en.Z,e=en.Y&&n>600;return t&&n>400||e},Nn:(Se=0,function(n){var t=n.target.scrollTop,e="none"!==en.V?en.V:Se1?t:document)?t.querySelectorAll(n):null}function ke(n){n=n||{};for(var t=1,e=arguments.length;t1&&($().controlArrows&&function(n){var t=n.item,e=[ci($().controlArrowsHTML[0]),ci($().controlArrowsHTML[1])];_e(Oe(j,t)[0],e),Fe(e,V),Fe(e[0],Z),Fe(e[1],"fp-next"),"#fff"!==$().controlArrowColor&&(Le(Oe(G,t),{"border-color":"transparent transparent transparent "+$().controlArrowColor}),Le(Oe(Y,t),{"border-color":"transparent "+$().controlArrowColor+" transparent transparent"})),$().loopHorizontal||He(Oe(Y,t))}(n),$().slidesNavigation&&function(n){var t=n.item,e=n.slides.length;Be(ci('
      '),t);var i=Oe(W,t)[0];Fe(i,"fp-"+$().slidesNavPosition);for(var r=0;r'+Jn(r,"Slide",Oe(R,t)[r])+""),Oe("ul",i)[0]);Le(i,{"margin-left":"-"+i.innerWidth/2+"px"});var o=n.activeSlide?n.activeSlide.index():0;Fe(Oe("a",Oe("li",i)[o]),y)}(n)),i.forEach((function(n){Le(n.item,{width:o+"%"}),$().verticalCentered&&pe(n)}));var c=un("responsiveSlides")?null:n.activeSlide||null;null!=c&&en.D&&(0!==en.D.index()||0===en.D.index()&&0!==c.index())?(jt(c.item,"internal"),Fe(c.item,"fp-initial")):Fe(e[0],y)}window.fp_utils=Object.assign(a.fp_utils||{},{$:Oe,deepExtend:ke,hasClass:Ee,getWindowHeight:Re,css:Le,prev:je,next:ze,last:Ne,index:Ie,getList:Pe,hide:He,show:Ce,isArrayOrList:We,addClass:Fe,removeClass:Ve,appendTo:Be,wrap:Ze,wrapAll:Ye,wrapInner:Ge,unwrap:Xe,closest:Ue,after:_e,before:Qe,insertBefore:Je,getScrollTop:Ke,siblings:$e,preventDefault:qe,isFunction:oi,trigger:ai,matches:ui,toggle:li,createElementFromHTML:ci,remove:si,filter:fi,untilAll:di,nextAll:vi,prevAll:pi,showError:Te,scrollOverflowHandler:Me}),Qn.un(it,(function(){["click","touchstart"].forEach((function(n){ti(n,yi,{passive:!1})})),ei("focus",Ti),Qn.un(rt,Mi)}));var Oi={attributes:!1,subtree:!0,childList:!0,characterData:!0};function ki(){return ln("responsiveSlides","isResponsiveSlidesChanging")||xe(Oe($().slideSelector,K())).length!==on().O}function Ei(n){var t=ki();(ki()||ln("responsiveSlides","isResponsiveSlidesChanging")||xe(Oe($().sectionSelector,K())).length!==on().A)&&!en._&&($().observer&&ye&&ye.disconnect(),Pt(),It(),$().anchors=[],si(Oe(k)),ln("responsiveSlides","isResponsiveSlidesChanging")||Ai(),tn(),$().navigation&&Qt(),t&&(si(Oe(W)),si(Oe(B))),on().R.forEach((function(n){n.slides.length?t&&xi(n):me(n)}))),$().observer&&ye&&Oe(h)[0]&&ye.observe(Oe(h)[0],Oi)}Qn.un(it,(function(){var n,t,e;$().observer&&"MutationObserver"in window&&Oe(h)[0]&&(n=Oe(h)[0],t=Oi,(e=new MutationObserver(Ei)).observe(n,t),ye=e),Qn.un(ot,Ei)})),d.render=Ei;var Ri=function(){var n=!1;try{var t=Object.defineProperty({},"passive",{get:function(){n=!0}});ei("testPassive",null,t),ri("testPassive",null,t)}catch(n){}return function(){return n}}();function Di(){return!!Ri()&&{passive:!1}}var Li,ji,zi,Ni,Ii=(zi=(new Date).getTime(),Ni=[],{Cn:function(n){var t=(n=n||a.event).wheelDelta||-n.deltaY||-n.detail,e=Math.max(-1,Math.min(1,t)),i=void 0!==n.wheelDeltaX||void 0!==n.deltaX;Li=Math.abs(n.wheelDeltaX)149&&Ni.shift(),Ni.push(Math.abs(t));var o=r-zi;zi=r,o>200&&(Ni=[])},Wn:function(){var n=mi(Ni,10)>=mi(Ni,70);return!!Ni.length&&n&&Li},Fn:function(){return ji}});function Pi(){var n=$().css3?Ke()+Re():gi(on().R).item.offsetTop+gi(on().R).item.offsetHeight,t=Tn(n);d.test.top=-n+"px",rn({canScroll:!1}),Pn(t.element,t.options,$().scrollingSpeed,(function(){setTimeout((function(){rn({j:!0}),rn({canScroll:!0})}),30)}))}function Hi(){K().getBoundingClientRect().bottom>=0&&Ci()}function Ci(){var n=Tn(gi(on().R).item.offsetTop);rn({canScroll:!1}),Pn(n.element,n.options,$().scrollingSpeed,(function(){rn({canScroll:!0}),rn({j:!1}),rn({Vn:!1})}))}var Wi,Fi,Vi,Bi=(Wi=!1,Fi={},Vi={},function(n,t,e){switch(n){case"set":Fi[t]=(new Date).getTime(),Vi[t]=e;break;case"isNewKeyframe":var i=(new Date).getTime();Wi=i-Fi[t]>Vi[t]}return Wi});function Zi(){var n=on().D.next();n||!$().loopBottom&&!$().continuousVertical||(n=on().R[0]),null!=n?ae(n,null,!1):K().scrollHeightGi&&Tt().m.down&&Zi()),Gi=n.pageY)}function Ui(n){if(Tt().m[n]){var t="down"===n?Zi:Yi;un("scrollHorizontally")&&(t=ln("scrollHorizontally","getScrollSection",{type:n,scrollSection:t})),$().scrollOverflow&&Me.wn(on().D)?Me.isScrolled(n,on().D.item)&&Me.Pn()&&t():t()}}var _i,Qi,Ji,Ki=0,$i=0,qi=0,nr=0,tr=lr(),er={Bn:"ontouchmove"in window?"touchmove":tr?tr.move:null,Zn:"ontouchstart"in window?"touchstart":tr?tr.down:null};function ir(n){var t=Ue(n.target,x)||on().D.item,e=Me.wn(on().D);if(rr(n)){rn({Z:!0,Y:!1}),$().autoScrolling&&(e&&!en.canScroll||$().scrollBar)&&qe(n);var i=ur(n);qi=i.y,nr=i.x;var r=Math.abs(Ki-qi)>a.innerHeight/100*$().touchSensitivity,o=Math.abs($i-nr)>De()/100*$().touchSensitivity,u=Oe(j,t).length&&Math.abs($i-nr)>Math.abs(Ki-qi),l=Ki>qi?"down":"up";rn({V:u?$i>nr?"right":"left":l}),u?!en.I&&o&&($i>nr?Tt().m.right&&Qn.ln(nt,{section:t}):Tt().m.left&&Qn.ln(qn,{section:t})):$().autoScrolling&&en.canScroll&&r&&Ui(l)}}function rr(n){return void 0===n.pointerType||"mouse"!=n.pointerType}function or(n){if($().fitToSection&&rn({F:!1}),rr(n)){var t=ur(n);Ki=t.y,$i=t.x}ei("touchend",ar)}function ar(){ri("touchend",ar),rn({Z:!1})}function ur(n){var t={};return t.y=void 0!==n.pageY&&(n.pageY||n.pageX)?n.pageY:n.touches[0].pageY,t.x=void 0!==n.pageX&&(n.pageY||n.pageX)?n.pageX:n.touches[0].pageX,s&&rr(n)&&$().scrollBar&&void 0!==n.touches&&(t.y=n.touches[0].pageY,t.x=n.touches[0].pageX),t}function lr(){var n;return a.PointerEvent&&(n={down:"pointerdown",move:"pointermove"}),n}function cr(n){$().autoScrolling&&rr(n)&&Tt().m.up&&(en.canScroll||qe(n))}function sr(n,t){var e=null==t?on().D.item:t,i=mn(en.R,e),r=Oe(j,e)[0];if(!(null==r||cn()||en.I||i.slides.length<2)){var o=i.activeSlide,a="left"===n?o.prev():o.next();if(!a){if(!$().loopHorizontal)return;a="left"===n?gi(i.slides):i.slides[0]}rn({I:!d.test.gn}),kt(r,a.item,n)}}function fr(n){sr("left",n)}function dr(n){sr("right",n)}function vr(n){var t=on().R.filter((function(t){return t.anchor===n}))[0];if(!t){var e=void 0!==n?n-1:0;t=on().R[e]}return t}function pr(n){null!=n&&kt(Ue(n,j),n)}function hr(n,t){var e=vr(n);if(null!=e){var i=function(n,t){var e=t.slides.filter((function(t){return t.anchor===n}))[0];return null==e&&(n=void 0!==n?n:0,e=t.slides[n]),e?e.item:null}(t,e);e.anchor&&e.anchor===en.C||Ee(e.item,y)?pr(i):ae(e,(function(){pr(i)}))}}function gr(n,t){var e=vr(n);void 0!==t?hr(n,t):null!=e&&ae(e)}function mr(){clearTimeout(Qi),ii("keydown",wr),ii("keyup",br)}function wr(n){clearTimeout(Qi);var t=n.keyCode,e=[37,39].indexOf(t)>-1,i=$().autoScrolling||$().fitToSection||e;9===t?function(n){var t=n.shiftKey,e=u.activeElement,i=Ar(yn(on().D.item));function r(n){return qe(n),i[0]?i[0].focus():null}if(en.canScroll){if(!function(n){var t=Ar(u),e=t.indexOf(u.activeElement),i=t[n.shiftKey?e-1:e+1],r=Ue(i,R),o=Ue(i,x);return!r&&!o}(n)){e?null==Ue(e,".fp-section.active,.fp-section.active .fp-slide.active")&&(e=r(n)):r(n);var o=e==i[0],a=e==i[i.length-1],l=t&&o;if(l||!t&&a){qe(n);var c=function(n){var t,e=n?"prevPanel":"nextPanel",i=[],r=Mn((en.D&&en.D.activeSlide?en.D.activeSlide:en.D)[e]());do{(i=Ar(r.item)).length&&(t={Yn:r,Gn:i[n?i.length-1:0]}),r=Mn(r[e]())}while(r&&0===i.length);return t}(l),s=c?c.Yn:null;if(s){var f=s.nn?s:s.parent;Qn.ln(ut,{Xn:f.index()+1,slideAnchor:s.nn?0:s.index()}),Ji=c.Gn,qe(n)}}}}else qe(n)}(n):!Si()&&$().keyboardScrolling&&i&&(_i=n.ctrlKey,Qi=setTimeout((function(){!function(n){var t=n.shiftKey,e=u.activeElement,i=ui(e,"video")||ui(e,"audio"),r=Me.isScrolled("up",on().D.item),o=Me.isScrolled("down",on().D.item),a=[37,39].indexOf(n.keyCode)>-1;if(function(n){(function(n){return[40,38,32,33,34].indexOf(n.keyCode)>-1&&!en.j})(n)&&!Ue(n.target,H)&&n.preventDefault()}(n),en.canScroll||a)switch(rn({L:"keydown"}),n.keyCode){case 38:case 33:Tt().k.up&&r?en.j?Qn.ln(lt,{e:n}):Yi():Me.Sn();break;case 32:if(t&&Tt().k.up&&!i&&r){Yi();break}case 40:case 34:if(Tt().k.down&&o){if(en.j)return;32===n.keyCode&&i||Zi()}else Me.Sn();break;case 36:Tt().k.up&&gr(1);break;case 35:Tt().k.down&&gr(on().R.length);break;case 37:Tt().k.left&&fr();break;case 39:Tt().k.right&&dr()}}(n)}),0))}function br(n){en.G&&(_i=n.ctrlKey)}function Sr(){rn({G:!1}),_i=!1}function yr(n){Tr()}function Mr(n){Ue(Ji,R)&&!Ue(Ji,D)||Tr()}function Tr(){Ji&&(Ji.focus(),Ji=null)}function Ar(n){return[].slice.call(Oe('a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], summary:not([disabled]), [contenteditable]',n)).filter((function(n){return"-1"!==ni(n,"tabindex")&&null!==n.offsetParent}))}d.moveSlideLeft=fr,d.moveSlideRight=dr,d.moveTo=gr,Qn.un(it,(function(){ei("blur",Sr),ti("keydown",wr),ti("keyup",br),Qn.un(rt,mr),Qn.un(mt,yr),Qn.un(gt,Mr)}));var xr=(new Date).getTime(),Or=[];function kr(n){n?(function(){var n,t="";a.addEventListener?n="addEventListener":(n="attachEvent",t="on");var e="onwheel"in u.createElement("div")?"wheel":void 0!==u.onmousewheel?"mousewheel":"DOMMouseScroll",i=Di();"DOMMouseScroll"==e?u[n](t+"MozMousePixelScroll",Er,i):u[n](t+e,Er,i)}(),K().addEventListener("mousedown",Rr),K().addEventListener("mouseup",Dr)):(u.addEventListener?(ii("mousewheel",Er,!1),ii("wheel",Er,!1),ii("MozMousePixelScroll",Er,!1)):u.detachEvent("onmousewheel",Er),K().removeEventListener("mousedown",Rr),K().removeEventListener("mouseup",Dr))}function Er(n){var t=(new Date).getTime(),e=Ee(Oe(".fp-completely")[0],"fp-normal-scroll"),i=function(n,t){(new Date).getTime();var e=on().j&&n.getBoundingClientRect().bottom>=0&&"up"===Ii.Fn(),i=on().Vn;if(i)return qe(t),!1;if(on().j){if(e){var r;if(!(i||Bi("isNewKeyframe","beyondFullpage")&&Ii.Wn()))return(r=Tn(gi(on().R).item.offsetTop+gi(on().R).item.offsetHeight)).element.scrollTo(0,r.options),rn({Vn:!1}),qe(t),!1;if(Ii.Wn())return e=!1,rn({Vn:!0}),rn({L:"wheel"}),Ci(),qe(t),!1}else Bi("set","beyondFullpage",1e3);if(!i&&!e)return!0}}(K(),n);if(en.Y||rn({Z:!1,Y:!0,V:"none"}),!Tt().m.down&&!Tt().m.up)return!1;if(i)return!0;if(!1===i)return qe(n),!1;if($().autoScrolling&&!_i&&!e){var r=(n=n||a.event).wheelDelta||-n.deltaY||-n.detail,o=Math.max(-1,Math.min(1,r)),u=void 0!==n.wheelDeltaX||void 0!==n.deltaX,l=Math.abs(n.wheelDeltaX)0?"up":"none";Or.length>149&&Or.shift(),Or.push(Math.abs(r)),$().scrollBar&&qe(n);var s=t-xr;return xr=t,s>200&&(Or=[]),rn({B:c}),en.canScroll&&!cn()&&mi(Or,10)>=mi(Or,70)&&l&&(rn({L:"wheel"}),Ui(o<0?"down":"up")),!1}$().fitToSection&&rn({F:!1})}function Rr(n){var t;2==n.which&&(t=n.pageY,Gi=t,K().addEventListener("mousemove",Xi))}function Dr(n){2==n.which&&K().removeEventListener("mousemove",Xi)}function Lr(n){n?(kr(!0),function(){if(er.Bn&&(l||s)&&(!un("dragAndMove")||"mouseonly"===$().dragAndMove)){$().autoScrolling&&(zn.removeEventListener(er.Bn,cr,{passive:!1}),zn.addEventListener(er.Bn,cr,{passive:!1}));var n=$().touchWrapper;n.removeEventListener(er.Zn,or),n.removeEventListener(er.Bn,ir,{passive:!1}),n.addEventListener(er.Zn,or),n.addEventListener(er.Bn,ir,{passive:!1})}}()):(kr(!1),function(){if(er.Bn&&(l||s)){$().autoScrolling&&(zn.removeEventListener(er.Bn,ir,{passive:!1}),zn.removeEventListener(er.Bn,cr,{passive:!1}));var n=$().touchWrapper;n.removeEventListener(er.Zn,or),n.removeEventListener(er.Bn,ir,{passive:!1})}}())}d.setMouseWheelScrolling=kr;var jr=!0;function zr(){["mouseenter","touchstart","mouseleave","touchend"].forEach((function(n){ii(n,Ir,!0)}))}function Nr(n,t){document["fp_"+n]=t,ti(n,Ir,!0)}function Ir(n){var t=n.type,e=!1,i="mouseleave"===t?n.toElement||n.relatedTarget:n.target;i!=document&&i?("touchend"===t&&(jr=!1,setTimeout((function(){jr=!0}),800)),("mouseenter"!==t||jr)&&($().normalScrollElements.split(",").forEach((function(n){if(!e){var t=ui(i,n),r=Ue(i,n);(t||r)&&(d.shared.Un||Lr(!1),d.shared.Un=!0,e=!0)}})),!e&&d.shared.Un&&(Lr(!0),d.shared.Un=!1))):Lr(!0)}function Pr(n,t){Ln(0,"internal"),gr(n,t),Ln(q().scrollingSpeed,"internal")}Qn.un(it,(function(){$().normalScrollElements&&(["mouseenter","touchstart"].forEach((function(n){Nr(n,!1)})),["mouseleave","touchend"].forEach((function(n){Nr(n,!0)}))),Qn.un(rt,zr)})),d.silentMoveTo=Pr;var Hr,Cr,Wr=Re(),Fr=De(),Vr=!1;function Br(){clearTimeout(Hr),clearTimeout(Cr),ri("resize",Zr)}function Zr(){Vr||($().autoScrolling&&!$().scrollBar||!$().fitToSection)&&Gr(Re()),en.K&&function(){if(l)for(var n=0;n<4;n++)Cr=setTimeout((function(){window.requestAnimationFrame((function(){$().autoScrolling&&!$().scrollBar&&(rn({P:!0}),Pr(en.D.index()+1),rn({P:!1}))}))}),200*n)}(),Vr=!0,clearTimeout(Hr),Hr=setTimeout((function(){!function(){if(rn({P:!0}),Gr(""),ai(K(),"onResize"),$().autoScrolling||en.j||function(){if(!$().autoScrolling||$().scrollBar){var n=.01*a.innerHeight;u.documentElement.style.setProperty("--vh","".concat(n,"px"))}}(),Qn.ln(ot),It(),fe(),l){var n=u.activeElement;if(!ui(n,"textarea")&&!ui(n,"input")&&!ui(n,"select")){var t=Re();Math.abs(t-Wr)>20*Math.max(Wr,t)/100&&(Yr(!0),Wr=t)}}else e=Re(),i=De(),en.U===e&&Fr===i||(rn({U:e}),Fr=i,Yr(!0));var e,i;ai(K(),"onResizeEnds"),rn({P:!1})}(),Vr=!1}),400)}function Yr(n){if(!Ee(K(),b)){rn({P:!0,U:Re(),_n:De()});for(var t=on().R,e=0;e1&&kt(r,i.activeSlide.item)}$().scrollOverflow&&Me.bn();var u=on().D.index();en.j||!u||un("fadingEffect")||un("dropEffect")||un("waterEffect")||Pr(u+1),rn({P:!1}),oi($().afterResize)&&n&&$().afterResize.call(K(),a.innerWidth,a.innerHeight),oi($().afterReBuild)&&!n&&$().afterReBuild.call(K()),ai(K(),"afterRebuild")}}function Gr(n){on().R.forEach((function(t){var e=""!==n||un("offsetSections")?fn(t.item):"";Le(t.item,{height:e})}))}function Xr(){var n,t,e=a.location.hash;if(e.length){var i=e.replace("#","").split("/"),r=e.indexOf("#/")>-1;n=r?"/"+i[1]:decodeURIComponent(i[0]);var o=r?i[2]:i[1];o&&o.length&&(t=decodeURIComponent(o))}return{section:n,pn:t}}function Ur(){ri("hashchange",_r)}function _r(){if(!en.H&&!$().lockAnchors){var n=Xr(),t=n.section,e=n.pn,i=void 0===en.C,r=void 0===en.C&&void 0===e&&!en.I;t&&t.length&&(t&&t!==en.C&&!i||r&&!cn()||!en.I&&en.W!=e&&!cn())&&Qn.ln(ut,{Xn:t,slideAnchor:e})}}function Qr(n){var t=n.target;Ue(t,$().menu+" [data-menuanchor]")&&Jr.call(t,n.e)}function Jr(n){if(rn({L:"menu"}),Oe($().menu)[0]&&($().lockAnchors||!$().anchors.length)){qe(n);var t=Ue(this,"[data-menuanchor]");Qn.ln(ct,{anchor:ni(t,"data-menuanchor")})}}function Kr(n){var t=n.target;t&&Ue(t,"#fp-nav a")?Jt.call(t,n.e):ui(t,".fp-tooltip")?_t.call(t):(ui(t,F)||null!=Ue(t,F))&&wt.call(t,n.e)}d.reBuild=Yr,Qn.un(it,(function(){Zr(),ei("resize",Zr),Qn.un(rt,Br)})),d.setLockAnchors=function(n){$().lockAnchors=n},Qn.un(it,(function(){ei("hashchange",_r),Qn.un(rt,Ur)})),Qn.un(it,(function(){ti("wheel",Ii.Cn,Di()),Qn.un(dt,Pi),Qn.un(lt,Hi)})),Qn.un(it,(function(){Qn.un($n,Qr)})),Qn.un(it,(function(){Qn.un($n,Kr)}));var $r,qr,no=0;function to(n){var t,e,i,r,o;if(ai(K(),"onScroll"),!en.P&&on().D&&(gi(on().R),!on().j&&!on().Vn&&(!$().autoScrolling||$().scrollBar||un("dragAndMove"))&&!sn())){var a=un("dragAndMove")?Math.abs(ln("dragAndMove","getCurrentScroll")):Ke(),u=function(n){var t=n>no?"down":"up";return no=n,rn({X:n}),t}(a),l=0,c=a+Re()/2,s=(un("dragAndMove")?ln("dragAndMove","getDocumentHeight"):zn.scrollHeight-Re())===a,f=on().R;if(rn({scrollY:a}),s)l=f.length-1;else if(a)for(var d=0;d=Ke()+Re():r<=Ke())&&(Ee(on().D.item,T)||(Fe(on().D.item,T),Ve($e(on().D.item),T))),e=(t=f[l]).item,!t.isActive){rn({H:!0});var v,p,h=on().D.item,g=on().D.index()+1,m=On(on().D,e),w=t.anchor,b=t.index()+1,S=t.activeSlide,M={D:h,sectionIndex:b-1,anchorLink:w,element:e,leavingSection:g,direction:m,items:{origin:on().D,destination:t}};if(S&&(p=S.anchor,v=S.index()),en.canScroll)Ve(f.filter((function(n){return n.index()!==t.index()})).map((function(n){return n.item})),y),Fe(e,y),ln("parallax","afterLoad"),oi($().beforeLeave)&&oe("beforeLeave",M),oi($().onLeave)&&Zt("onLeave",M),oi($().afterLoad)&&Zt("afterLoad",M),ln("resetSliders","apply",{localIsResizing:en.P,leavingSection:g}),Fn(h),Bn(t),Cn(e),Kt(w,b-1),$().anchors.length&&rn({C:w}),It(),Xn(v,p,w);clearTimeout($r),$r=setTimeout((function(){rn({H:!1})}),100)}$().fitToSection&&en.canScroll&&(clearTimeout(qr),qr=setTimeout((function(){en.R.filter((function(n){var t=n.item.getBoundingClientRect();return Math.round(t.bottom)===Math.round(Re())||0===Math.round(t.top)})).length||se()}),$().fitToSectionDelay))}}function eo(n){var t=n.items.destination.activeSlide;rn({scrollX:t?Math.round(t.offsetLeft):0})}function io(n){var t=$().skipIntermediateItems,e=n.items.origin.nn?"sections":"slides",i=Math.abs(n.items.origin.index()-n.items.destination.index())>1;(!0===t||t===e)&&i&&Ln(0,"internal")}function ro(){$().skipIntermediateItems&&nn("scrollingSpeed",q().scrollingSpeed,"internal")}function oo(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){Mt(n,t,"k")})):(Mt(n,"all","k"),$().keyboardScrolling=n)}function ao(n){var t=n.index();void 0!==$().anchors[t]&&n.isActive&&Kt($().anchors[t],t),$().menu&&$().css3&&null!=Ue(Oe($().menu)[0],h)&&Oe($().menu).forEach((function(n){zn.appendChild(n)}))}function uo(){var n,t,e=on().D,i=on().D.item;Fe(i,T),Bn(on().D),Ut(),Cn(i),t=vr((n=Xr()).section),n.section&&t&&(void 0===t||t.index()!==Ie(ge))||!oi($().afterLoad)||Zt("afterLoad",{D:i,element:i,direction:null,anchorLink:e.anchor,sectionIndex:e.index(),items:{origin:on().D,destination:on().D}}),oi($().afterRender)&&Zt("afterRender"),ai(K(),"afterRender")}function lo(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){Mt(n,t,"m")})):Mt(n,"all","m"),ai(K(),"setAllowScrolling",{value:n,Qn:t})}function co(){var n=Xr(),t=n.section,e=n.pn;t?$().animateAnchor?hr(t,e):Pr(t,e):Qn.ln(Kn,null)}Qn.un(rt,(function(){clearTimeout($r),clearTimeout(qr)})),Qn.un(it,(function(){ei("scroll",to),u.body.addEventListener("scroll",to),Qn.un(ut,(function(n){hr(n.Xn,n.slideAnchor)})),Qn.un(ct,(function(n){gr(n.anchor,void 0)})),Qn.un(at,(function(n){("down"===n.direction?Zi:Yi)()})),Qn.un(st,(function(n){ae(n.destination)}))})),Qn.un(rt,(function(){ri("scroll",to)})),d.getActiveSlide=function(){return Bt(on().D.activeSlide)},d.getScrollX=function(){return en.scrollX},Qn.un(it,(function(){Qn.un(rt,Dt),Qn.un(ft,(function(n){kt(n.slides,n.destination)})),Qn.un(nt,(function(n){dr(n.section)})),Qn.un(qn,(function(n){fr(n.section)})),Qn.un(gt,eo)})),Qn.un(it,(function(){var n=$().credits.position,t=["left","right"].indexOf(n)>-1?"".concat(n,": 0;"):"",e='\n \n "),i=gi(en.R),r=!en.Jn||$().credits.enabled;i&&i.item&&r&&i.item.insertAdjacentHTML("beforeend",e)})),function(){Qn.un(tt,(function(){var t,u,l;rn({Jn:($().licenseKey,t=$().licenseKey,u=function(t){var e=parseInt("514").toString(16);if(!t||t.length<29||4===t.split(n[0]).length)return null;var i=["Each","for"][r()]().join(""),u=t[["split"]]("-"),l=[];u[i]((function(n,t){if(t<4){var i=function(n){var t=n[n.length-1],e=["NaN","is"][r()]().join("");return window[e](t)?o(t):function(n){return n-y.length}(t)}(n);l.push(i);var a=o(n[i]);if(1===t){var u=["pa","dS","t","art"].join("");a=a.toString()[u](2,"0")}e+=a,0!==t&&1!==t||(e+="-")}}));var c=0,s="";return t.split("-").forEach((function(n,t){if(t<4){for(var e=0,i=0;i<4;i++)i!==l[t]&&(e+=Math.abs(o(n[i])),isNaN(n[i])||c++);var r=a(e);s+=r}})),s+=a(c),{Kn:new Date(e+"T00:00"),$n:e.split("-")[2]===8*(y.length-2)+"",qn:s}}(t),l=function(n){var t=i[r()]().join("");return n&&0===t.indexOf(n)&&n.length===t.length}(t)||function(n){return new RegExp("^(?=.*?[A-Y])(?=.*?[a-y])(?=.*?[0-8])(?=.*?[#?!@$%^&*-]).{8,}$").test(n)}(t),(u||l)&&(u&&e<=u.Kn&&u.qn===t.split(n[0])[4]||l||u.$n)||!1)})}));var n=["-"],t="2024-9-14".split("-"),e=new Date(t[0],t[1],t[2]),i=["se","licen","-","v3","l","gp"];function r(){return[["re","verse"].join("")]["".length]}function o(n){return n?isNaN(n)?n.charCodeAt(0)-72:n:""}function a(n){var t=72+n;return t>90&&t<97&&(t+=15),String.fromCharCode(t).toUpperCase()}}(),Qn.un(vt,io),Qn.un(gt,ro),Qn.un(pt,io),Qn.un(mt,ro),Qn.un(et,(function(){oo(!0)})),d.setKeyboardScrolling=oo,d.shared.nt=uo,d.setAllowScrolling=lo;var so={};function fo(){return so}var vo,po,ho,go,mo=!Ee(zn,vn("OHNsd3AtZnVsbHBhZ2UtanM5T20="));function wo(n){if(po=u.createElement("div"),vo=vn("MTIzPGRpdj48YSBocmVmPSJodHRwOi8vYWx2YXJvdHJpZ28uY29tL2Z1bGxQYWdlL2V4dGVuc2lvbnMvIiBzdHlsZT0iY29sb3I6ICNmZmYgIWltcG9ydGFudDsgdGV4dC1kZWNvcmF0aW9uOm5vbmUgIWltcG9ydGFudDsiPlVubGljZW5zZWQgZnVsbFBhZ2UuanMgRXh0ZW5zaW9uPC9hPjwvZGl2PjEyMw=="),mo||(vo=vo.replace("extensions/","").replace("Extension","")),po.innerHTML=vo,po=po.firstChild,"MutationObserver"in window&&new MutationObserver(So).observe(u.body,{childList:!0,subtree:!1}),(!mo||un(n)&&d[n])&&(!function(n){var t=void 0!==fo()[n]&&fo()[n].length,e=[],i=!1;return We(fo()[n])?e=fo()[n]:e.push(fo()[n]),e.forEach((function(e){var r=function(){if(u.domain.length){for(var n=u.domain.replace(/^(www\.)/,"").split(".");n.length>2;)n.shift();return n.join(".").replace(/(^\.*)|(\.*$)/g,"")}return""}(),o=["MTM0bG9jYWxob3N0MjM0","MTM0MC4xMjM0","MTM0anNoZWxsLm5ldDIzNA==","UDdDQU5ZNlNN","NTY3YnVuZGxlNzg5","NTU1S2V5Nzc3","NDU2dGVzdDQ1Ng=="],a=vn(o[0]),l=vn(o[1]),c=vn(o[2]),s=vn(o[6]),f=vn(o[3]),d=vn(o[4]),v=vn(o[5]),p=void 0!==$()[d+v];t=t||p;var h=[a,l,c,s].indexOf(r)<0&&0!==r.length;if(!t&&!p&&h)return!1;var g=t?vn(e):"",m=(g=g.split("_")).length>1&&g[1].indexOf(n,g[1].length-n.length)>-1,w=g.length>1&&g[1].toLowerCase().indexOf(d)>-1,b=g[0].indexOf(r,g[0].length-r.length)<0,S=m||w;i=i||!(b&&h&&f!=g[0])&&S||!h})),i}(n)||!mo)){bo();var t=vn("MzQ1c2V0SW50ZXJ2YWwxMjM=");window[t](bo,2e3)}}function bo(){po&&(go||(Math.random()<.5?dn(zn,po):Be(po,zn),go=!0),po.setAttribute("style",vn("MTIzei1pbmRleDo5OTk5OTk5O3Bvc2l0aW9uOmZpeGVkO3RvcDoyMHB4O2JvdHRvbTphdXRvO2xlZnQ6MjBweDtyaWdodDphdXRvO2JhY2tncm91bmQ6cmVkO3BhZGRpbmc6N3B4IDE1cHg7Zm9udC1zaXplOjE0cHg7Zm9udC1mYW1pbHk6YXJpYWw7Y29sb3I6I2ZmZjtkaXNwbGF5OmlubGluZS1ibG9jazt0cmFuc2Zvcm06dHJhbnNsYXRlM2QoMCwwLDApO29wYWNpdHk6MTtoZWlnaHQ6YXV0bzt3aWR0aDphdXRvO3pvb206MTttYXJnaW46YXV0bztib3JkZXI6bm9uZTt2aXNpYmlsaXR5OnZpc2libGU7Y2xpcC1wYXRoOm5vbmU7MTIz").replace(/;/g,vn("MTIzICFpbXBvcnRhbnQ7MzQ1"))))}function So(n){n.forEach((function(n){if(n.removedNodes[0]&&n.removedNodes[0].isEqualNode(po)){clearTimeout(ho);var t=vn("bDIwc2V0VGltZW91dDAzbA==");ho=window[t](yo,900)}}))}function yo(){go=!1}function Mo(){Pt(),It(),$().scrollBar=$().scrollBar||$().hybrid,tn(),function(){Le(bi(K(),"body"),{height:"100%",position:"relative"}),Fe(K(),p),Fe(Nn,S),rn({U:Re()}),Ve(K(),b),Ai(),ln("parallax","init");for(var n=on().tn,t=0;t0&&xi(e)}$().fixedElements&&$().css3&&Oe($().fixedElements).forEach((function(n){zn.appendChild(n)})),$().navigation&&Qt(),Oe('iframe[src*="youtube.com/embed/"]',K()).forEach((function(n){var t,e;e=ni(t=n,"src"),t.setAttribute("src",e+(/\?/.test(e)?"&":"?")+"enablejsapi=1")})),ln("fadingEffect","apply"),ln("waterEffect","init"),ln("dropEffect","init"),ln("cards","init"),$().scrollOverflow&&Me.bn()}(),lo(!0),Lr(!0),Gt($().autoScrolling,"internal"),fe(),Yn(),"complete"===u.readyState&&co(),ei("load",co),uo(),mo||wo("l"),Pt(),It()}function To(){var n=$().licenseKey;""===$().licenseKey.trim()?(Te("error","Fullpage.js requires a `licenseKey` option. Read about it on the following website:"),Te("error","https://alvarotrigo.com/fullPage/docs/#licensekey")):$()&&en.Jn||u.domain.indexOf("alvarotrigo.com")>-1?n&&n.length:(Te("error","Incorrect `licenseKey`. Get one for fullPage.js version 4 here:"),Te("error","https://alvarotrigo.com/fullPage/pricing")),Ee(Nn,S)?Te("error","Fullpage.js can only be initialized once and you are doing it multiple times!"):($().continuousVertical&&($().loopTop||$().loopBottom)&&($().continuousVertical=!1,Te("warn","Option `loopTop/loopBottom` is mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),!$().scrollOverflow||!$().scrollBar&&$().autoScrolling||Te("warn","Options scrollBar:true and autoScrolling:false are mutually exclusive with scrollOverflow:true. Sections with scrollOverflow might not work well in Firefox"),!$().continuousVertical||!$().scrollBar&&$().autoScrolling||($().continuousVertical=!1,Te("warn","Scroll bars (`scrollBar:true` or `autoScrolling:false`) are mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),$().anchors.forEach((function(n){var t=[].slice.call(Oe("[name]")).filter((function(t){return ni(t,"name")&&ni(t,"name").toLowerCase()==n.toLowerCase()})),e=[].slice.call(Oe("[id]")).filter((function(t){return ni(t,"id")&&ni(t,"id").toLowerCase()==n.toLowerCase()}));if(e.length||t.length){Te("error","data-anchor tags can not have the same value as any `id` element on the site (or `name` element for IE).");var i=e.length?"id":"name";(e.length||t.length)&&Te("error",'"'+n+'" is is being used by another element `'+i+"` property")}})))}function Ao(){return{options:$(),internals:{container:K(),canScroll:en.canScroll,isScrollAllowed:Tt(),getDestinationPosition:ue,isTouch:s,c:wo,getXmovement:Rt,removeAnimation:kn,getTransforms:En,lazyLoad:Vn,addAnimation:xn,performHorizontalMove:Et,landscapeScroll:kt,silentLandscapeScroll:jt,keepSlidesPosition:Xt,silentScroll:Dn,styleSlides:xi,styleSection:me,scrollHandler:to,getEventsPage:ur,getMSPointer:lr,isReallyTouch:rr,usingExtension:un,toggleControlArrows:xt,touchStartHandler:or,touchMoveHandler:ir,nullOrSection:Vt,items:{SectionPanel:Wt,SlidePanel:Ft,Item:hn},getVisible:xe,getState:on,updateState:It,updateStructuralState:Pt,activeSlidesNavigation:bt,getPanels:function(){return en.rn},getSections:function(){return en.R},setActiveSection:function(n){en.D=n}}}}function xo(n){var t=["NTY3YnVuZGxlNzg5","NTU1S2V5Nzc3"],e=vn(t[0]),i=vn(t[1]),r=void 0!==$()[e+i],o="fp_"+n+"Extension";fo()[n]=r?$()[e+i]:$()[n+i],d[n]=void 0!==window[o]?new window[o]:null,d[n]&&d[n].c(n)}function Oo(n,t){var e;if(zn=Oe("body")[0],Nn=Oe("html")[0],In=Oe("html, body"),!Ee(Nn,S))return"touchWrapper",e="string"==typeof n?Oe(n)[0]:n,X.touchWrapper=e,function(n){J=ke({},X,n),Q=Object.assign({},J)}(t),function(n){U=n}("string"==typeof n?Oe(n)[0]:n),Qn.ln(tt),To(),d.getFullpageData=Ao,d.version="4.0.30",d.test=Object.assign(d.test,{top:"0px",on:"translate3d(0px, 0px, 0px)",cn:function(){for(var n=[],t=0;t.fp-overflow{overflow-y:auto}.fp-overflow{outline:0}.fp-overflow.fp-table{display:block}.fp-responsive .fp-auto-height-responsive .fp-overflow,.fp-responsive .fp-auto-height-responsive .fp-slide,.fp-responsive .fp-auto-height-responsive.fp-section{height:auto!important;min-height:auto!important}.fp-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fp-scroll-mac .fp-overflow::-webkit-scrollbar{background-color:transparent;width:9px}.fp-scroll-mac .fp-overflow::-webkit-scrollbar-track{background-color:transparent}.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.4);border-radius:16px;border:4px solid transparent}.fp-warning,.fp-watermark{z-index:9999999;position:absolute;bottom:0}.fp-warning,.fp-watermark a{text-decoration:none;color:#000;background:rgba(255,255,255,.6);padding:5px 8px;font-size:14px;font-family:arial;color:#000;display:inline-block;border-radius:3px;margin:12px}.fp-noscroll .fp-overflow{overflow:hidden} + */.fp-enabled body,html.fp-enabled{margin:0;padding:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0)}.fp-section{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:100%;display:block}.fp-slide{float:left}.fp-slide,.fp-slidesContainer{height:100%;display:block}.fp-slides{z-index:1;height:100%;overflow:hidden;position:relative;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.fp-table{display:flex;flex-direction:column;justify-content:center;width:100%}.fp-slidesContainer{float:left;position:relative}.fp-controlArrow{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none;position:absolute;z-index:4;top:50%;cursor:pointer;margin-top:-38px;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fp-prev{left:15px}.fp-next{right:15px}.fp-arrow{width:0;height:0;border-style:solid}.fp-arrow.fp-prev{border-width:38.5px 34px 38.5px 0;border-color:transparent #fff transparent transparent}.fp-arrow.fp-next{border-width:38.5px 0 38.5px 34px;border-color:transparent transparent transparent #fff}.fp-notransition{-webkit-transition:none!important;transition:none!important}#fp-nav{position:fixed;z-index:100;top:50%;opacity:1;transform:translateY(-50%);-ms-transform:translateY(-50%);-webkit-transform:translate3d(0,-50%,0);pointer-events:none}#fp-nav.fp-right{right:17px}#fp-nav.fp-left{left:17px}.fp-slidesNav{position:absolute;z-index:4;opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0!important;right:0;margin:0 auto!important;pointer-events:none}.fp-slidesNav.fp-bottom{bottom:17px}.fp-slidesNav.fp-top{top:17px}#fp-nav ul,.fp-slidesNav ul{margin:0;padding:0}#fp-nav ul li,.fp-slidesNav ul li{display:block;width:14px;height:13px;margin:7px;position:relative}.fp-slidesNav ul li{display:inline-block}#fp-nav ul li a,.fp-slidesNav ul li a{display:block;position:relative;z-index:1;width:100%;height:100%;cursor:pointer;text-decoration:none;pointer-events:all}#fp-nav ul li a.active span,#fp-nav ul li:hover a.active span,.fp-slidesNav ul li a.active span,.fp-slidesNav ul li:hover a.active span{height:12px;width:12px;margin:-6px 0 0 -6px;border-radius:100%}#fp-nav ul li a span,.fp-slidesNav ul li a span{border-radius:50%;position:absolute;z-index:1;height:4px;width:4px;border:0;background:#333;left:50%;top:50%;margin:-2px 0 0 -2px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#fp-nav ul li:hover a span,.fp-slidesNav ul li:hover a span{width:10px;height:10px;margin:-5px 0 0 -5px}#fp-nav ul li .fp-tooltip{position:absolute;top:-2px;color:#fff;font-size:14px;font-family:arial,helvetica,sans-serif;white-space:nowrap;max-width:220px;overflow:hidden;display:block;opacity:0;width:0;cursor:pointer}#fp-nav ul li:hover .fp-tooltip,#fp-nav.fp-show-active a.active+.fp-tooltip{-webkit-transition:opacity .2s ease-in;transition:opacity .2s ease-in;width:auto;opacity:1}#fp-nav ul li .fp-tooltip.fp-right{right:20px}#fp-nav ul li .fp-tooltip.fp-left{left:20px}.fp-auto-height .fp-slide,.fp-auto-height.fp-section{height:auto!important}.fp-responsive .fp-is-overflow.fp-section{height:auto!important}.fp-enabled .fp-scrollable{overflow:visible;height:initial}.fp-scrollable .fp-section,.fp-scrollable .fp-slide,.fp-scrollable.fp-responsive .fp-is-overflow.fp-section{height:100vh;height:calc(var(--vh,1vh) * 100)}.fp-scrollable .fp-section:not(.fp-auto-height):not([data-percentage]),.fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]),.fp-scrollable.fp-responsive .fp-is-overflow.fp-section:not(.fp-auto-height):not([data-percentage]){min-height:100vh;min-height:calc(var(--vh,1vh) * 100)}.fp-overflow{justify-content:flex-start}body:not(.fp-responsive) .fp-overflow{max-height:100vh}.fp-scrollable .fp-auto-height .fp-overflow{max-height:none}.fp-is-overflow .fp-overflow.fp-auto-height,.fp-is-overflow .fp-overflow.fp-auto-height-responsive,.fp-is-overflow>.fp-overflow{overflow-y:auto}.fp-overflow{outline:0}.fp-overflow.fp-table{display:block}.fp-responsive .fp-auto-height-responsive .fp-overflow,.fp-responsive .fp-auto-height-responsive .fp-slide,.fp-responsive .fp-auto-height-responsive.fp-section{height:auto!important;min-height:auto!important}.fp-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fp-scroll-mac .fp-overflow::-webkit-scrollbar{background-color:transparent;width:9px}.fp-scroll-mac .fp-overflow::-webkit-scrollbar-track{background-color:transparent}.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.4);border-radius:16px;border:4px solid transparent}.fp-warning,.fp-watermark{z-index:9999999;position:absolute;bottom:0}.fp-warning,.fp-watermark a{text-decoration:none;color:#000;background:rgba(255,255,255,.6);padding:5px 8px;font-size:14px;font-family:arial;color:#000;display:inline-block;border-radius:3px;margin:12px}.fp-noscroll .fp-overflow{overflow:hidden} /*# sourceMappingURL=fullpage.min.css.map */ diff --git a/dist/fullpage.min.css.map b/dist/fullpage.min.css.map index e88b62f5c..2d3fe5cec 100644 --- a/dist/fullpage.min.css.map +++ b/dist/fullpage.min.css.map @@ -1 +1 @@ -{"version":3,"sources":["fullpage.css"],"names":[],"mappings":"AAAA;;;;;;;;;AAWA,iBADA,gBAEI,OAAQ,EACR,QAAS,EACT,SAAS,OAGT,4BAA6B,cAEjC,YACI,SAAU,SACV,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WACZ,OAAQ,KACR,QAAS,MAEb,UACI,MAAO,KAEX,UAAW,oBACP,OAAQ,KACR,QAAS,MAEb,WACI,QAAQ,EACR,OAAQ,KACR,SAAU,OACV,SAAU,SACV,mBAAoB,IAAI,IAAK,SAC7B,WAAY,IAAI,IAAK,SAEzB,UACI,QAAS,KACT,eAAgB,OAChB,gBAAiB,OACjB,MAAO,KAEX,oBACI,MAAO,KACP,SAAU,SAEd,iBACI,oBAAqB,KACrB,iBAAkB,KAClB,mBAAoB,KACpB,gBAAiB,KACjB,SAAU,SACV,QAAS,EACT,IAAK,IACL,OAAQ,QACR,WAAY,MACZ,kBAAmB,mBACnB,cAAe,mBACf,UAAW,mBAEf,SACI,KAAM,KAEV,SACI,MAAO,KAEX,UACI,MAAO,EACP,OAAQ,EACR,aAAc,MAElB,kBACI,aAAc,OAAO,KAAK,OAAO,EACjC,aAAc,YAAY,KAAK,YAAY,YAE/C,kBACI,aAAc,OAAO,EAAE,OAAO,KAC9B,aAAc,YAAY,YAAY,YAAY,KAEtD,iBACI,mBAAoB,eACpB,WAAY,eAEhB,QACI,SAAU,MACV,QAAS,IACT,IAAK,IACL,QAAS,EACT,UAAW,iBACX,cAAe,iBACf,kBAAmB,sBACnB,eAAgB,KAEpB,iBACI,MAAO,KAEX,gBACI,KAAM,KAEV,cACI,SAAU,SACV,QAAS,EACT,QAAS,EACT,kBAAmB,mBACnB,cAAe,mBACf,UAAW,mBACX,KAAM,YACN,MAAO,EACP,OAAQ,EAAE,eACV,eAAgB,KAEpB,wBACI,OAAQ,KAEZ,qBACI,IAAK,KAET,WACA,iBACE,OAAQ,EACR,QAAS,EAEX,cACA,oBACI,QAAS,MACT,MAAO,KACP,OAAQ,KACR,OAAQ,IACR,SAAS,SAEb,oBACI,QAAS,aAEb,gBACA,sBACI,QAAS,MACT,SAAU,SACV,QAAS,EACT,MAAO,KACP,OAAQ,KACR,OAAQ,QACR,gBAAiB,KACjB,eAAgB,IAEpB,4BAEA,kCADA,kCAEA,wCACI,OAAQ,KACR,MAAO,KACP,OAAQ,KAAK,EAAE,EAAE,KACjB,cAAe,KAEnB,qBACA,2BACI,cAAe,IACf,SAAU,SACV,QAAS,EACT,OAAQ,IACR,MAAO,IACP,OAAQ,EACR,WAAY,KACZ,KAAM,IACN,IAAK,IACL,OAAQ,KAAK,EAAE,EAAE,KACjB,mBAAoB,IAAI,IAAK,YAC7B,gBAAiB,IAAI,IAAK,YAC1B,cAAe,IAAI,IAAK,YACxB,WAAY,IAAI,IAAK,YAEzB,2BACA,iCACI,MAAO,KACP,OAAQ,KACR,OAAQ,KAAK,EAAI,EAAI,KAEzB,0BACI,SAAU,SACV,IAAK,KACL,MAAO,KACP,UAAW,KACX,YAAa,KAAK,CAAE,SAAS,CAAE,WAC/B,YAAa,OACb,UAAW,MACX,SAAU,OACV,QAAS,MACT,QAAS,EACT,MAAO,EACP,OAAQ,QAEZ,gCACA,4CACI,mBAAoB,QAAQ,IAAK,QACjC,WAAY,QAAQ,IAAK,QACzB,MAAO,KACP,QAAS,EAEb,mCACI,MAAO,KAEX,kCACI,KAAM,KAGV,0BADA,2BAEI,OAAQ,eAGZ,0CACI,OAAQ,eAKZ,2BACA,yBAFA,wDAIG,OAAQ,MACR,OAAQ,0BAIX,uEACA,qEAFA,oGAII,WAAY,MACZ,WAAY,0BAIhB,aACI,gBAAiB,WACjB,WAAY,MAIhB,4CACI,WAAY,KAIhB,4CADA,uDAEA,6BACI,WAAY,KAEhB,aACI,QAAQ,EAGZ,sBACI,QAAS,MAKb,uDADA,oDADA,qDAGI,OAAQ,eACR,WAAY,eAIhB,YACI,SAAU,SACV,MAAO,IACP,OAAQ,IACR,QAAS,EACT,SAAU,OACV,KAAM,cACN,YAAa,OACb,OAAQ,EAKZ,+CACI,iBAAkB,YAClB,MAAO,IAEX,qDACI,iBAAkB,YAEtB,qDACI,iBAAkB,eAClB,cAAe,KACf,OAAQ,IAAI,MAAM,YAEtB,YACA,cACI,QAAS,QACT,SAAU,SACV,OAAQ,EAEZ,YACA,gBACI,gBAAiB,KACjB,MAAO,KACP,WAAY,qBACZ,QAAS,IAAI,IACb,UAAW,KACX,YAAa,MACb,MAAO,KACP,QAAS,aACT,cAAe,IACf,OAAQ,KAEZ,0BACI,SAAU","file":"fullpage.min.css","sourcesContent":["/*!\r\n * fullPage 4.0.29\r\n * https://github.com/alvarotrigo/fullPage.js\r\n *\r\n * @license GPLv3 for open source use only\r\n * or Fullpage Commercial License for commercial use\r\n * http://alvarotrigo.com/fullPage/pricing/\r\n *\r\n * Copyright (C) 2021 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo\r\n */\r\nhtml.fp-enabled,\r\n.fp-enabled body {\r\n margin: 0;\r\n padding: 0;\r\n overflow:hidden;\r\n\r\n /*Avoid flicker on slides transitions for mobile phones #336 */\r\n -webkit-tap-highlight-color: rgba(0,0,0,0);\r\n}\r\n.fp-section {\r\n position: relative;\r\n -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */\r\n -moz-box-sizing: border-box; /* <=28 */\r\n box-sizing: border-box;\r\n height: 100%;\r\n display: block;\r\n}\r\n.fp-slide {\r\n float: left;\r\n}\r\n.fp-slide, .fp-slidesContainer {\r\n height: 100%;\r\n display: block;\r\n}\r\n.fp-slides {\r\n z-index:1;\r\n height: 100%;\r\n overflow: hidden;\r\n position: relative;\r\n -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */\r\n transition: all 0.3s ease-out;\r\n}\r\n.fp-table{\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: center;\r\n width: 100%;\r\n}\r\n.fp-slidesContainer {\r\n float: left;\r\n position: relative;\r\n}\r\n.fp-controlArrow {\r\n -webkit-user-select: none; /* webkit (safari, chrome) browsers */\r\n -moz-user-select: none; /* mozilla browsers */\r\n -khtml-user-select: none; /* webkit (konqueror) browsers */\r\n -ms-user-select: none; /* IE10+ */\r\n position: absolute;\r\n z-index: 4;\r\n top: 50%;\r\n cursor: pointer;\r\n margin-top: -38px;\r\n -webkit-transform: translate3d(0,0,0);\r\n -ms-transform: translate3d(0,0,0);\r\n transform: translate3d(0,0,0);\r\n}\r\n.fp-prev{\r\n left: 15px;\r\n}\r\n.fp-next{\r\n right: 15px;\r\n}\r\n.fp-arrow{\r\n width: 0;\r\n height: 0;\r\n border-style: solid;\r\n}\r\n.fp-arrow.fp-prev {\r\n border-width: 38.5px 34px 38.5px 0;\r\n border-color: transparent #fff transparent transparent;\r\n}\r\n.fp-arrow.fp-next {\r\n border-width: 38.5px 0 38.5px 34px;\r\n border-color: transparent transparent transparent #fff;\r\n}\r\n.fp-notransition {\r\n -webkit-transition: none !important;\r\n transition: none !important;\r\n}\r\n#fp-nav {\r\n position: fixed;\r\n z-index: 100;\r\n top: 50%;\r\n opacity: 1;\r\n transform: translateY(-50%);\r\n -ms-transform: translateY(-50%);\r\n -webkit-transform: translate3d(0,-50%,0);\r\n pointer-events: none;\r\n}\r\n#fp-nav.fp-right {\r\n right: 17px;\r\n}\r\n#fp-nav.fp-left {\r\n left: 17px;\r\n}\r\n.fp-slidesNav{\r\n position: absolute;\r\n z-index: 4;\r\n opacity: 1;\r\n -webkit-transform: translate3d(0,0,0);\r\n -ms-transform: translate3d(0,0,0);\r\n transform: translate3d(0,0,0);\r\n left: 0 !important;\r\n right: 0;\r\n margin: 0 auto !important;\r\n pointer-events: none;\r\n}\r\n.fp-slidesNav.fp-bottom {\r\n bottom: 17px;\r\n}\r\n.fp-slidesNav.fp-top {\r\n top: 17px;\r\n}\r\n#fp-nav ul,\r\n.fp-slidesNav ul {\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#fp-nav ul li,\r\n.fp-slidesNav ul li {\r\n display: block;\r\n width: 14px;\r\n height: 13px;\r\n margin: 7px;\r\n position:relative;\r\n}\r\n.fp-slidesNav ul li {\r\n display: inline-block;\r\n}\r\n#fp-nav ul li a,\r\n.fp-slidesNav ul li a {\r\n display: block;\r\n position: relative;\r\n z-index: 1;\r\n width: 100%;\r\n height: 100%;\r\n cursor: pointer;\r\n text-decoration: none;\r\n pointer-events: all;\r\n}\r\n#fp-nav ul li a.active span,\r\n.fp-slidesNav ul li a.active span,\r\n#fp-nav ul li:hover a.active span,\r\n.fp-slidesNav ul li:hover a.active span{\r\n height: 12px;\r\n width: 12px;\r\n margin: -6px 0 0 -6px;\r\n border-radius: 100%;\r\n }\r\n#fp-nav ul li a span,\r\n.fp-slidesNav ul li a span {\r\n border-radius: 50%;\r\n position: absolute;\r\n z-index: 1;\r\n height: 4px;\r\n width: 4px;\r\n border: 0;\r\n background: #333;\r\n left: 50%;\r\n top: 50%;\r\n margin: -2px 0 0 -2px;\r\n -webkit-transition: all 0.1s ease-in-out;\r\n -moz-transition: all 0.1s ease-in-out;\r\n -o-transition: all 0.1s ease-in-out;\r\n transition: all 0.1s ease-in-out;\r\n}\r\n#fp-nav ul li:hover a span,\r\n.fp-slidesNav ul li:hover a span{\r\n width: 10px;\r\n height: 10px;\r\n margin: -5px 0px 0px -5px;\r\n}\r\n#fp-nav ul li .fp-tooltip {\r\n position: absolute;\r\n top: -2px;\r\n color: #fff;\r\n font-size: 14px;\r\n font-family: arial, helvetica, sans-serif;\r\n white-space: nowrap;\r\n max-width: 220px;\r\n overflow: hidden;\r\n display: block;\r\n opacity: 0;\r\n width: 0;\r\n cursor: pointer;\r\n}\r\n#fp-nav ul li:hover .fp-tooltip,\r\n#fp-nav.fp-show-active a.active + .fp-tooltip {\r\n -webkit-transition: opacity 0.2s ease-in;\r\n transition: opacity 0.2s ease-in;\r\n width: auto;\r\n opacity: 1;\r\n}\r\n#fp-nav ul li .fp-tooltip.fp-right {\r\n right: 20px;\r\n}\r\n#fp-nav ul li .fp-tooltip.fp-left {\r\n left: 20px;\r\n}\r\n.fp-auto-height.fp-section,\r\n.fp-auto-height .fp-slide{\r\n height: auto !important;\r\n}\r\n\r\n.fp-responsive .fp-is-overflow.fp-section{\r\n height: auto !important;\r\n}\r\n\r\n/* Used with autoScrolling: false */ \r\n.fp-scrollable.fp-responsive .fp-is-overflow.fp-section,\r\n.fp-scrollable .fp-section,\r\n.fp-scrollable .fp-slide{\r\n /* Fallback for browsers that do not support Custom Properties */\r\n height: 100vh;\r\n height: calc(var(--vh, 1vh) * 100);\r\n}\r\n\r\n.fp-scrollable.fp-responsive .fp-is-overflow.fp-section:not(.fp-auto-height):not([data-percentage]),\r\n.fp-scrollable .fp-section:not(.fp-auto-height):not([data-percentage]),\r\n.fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]){\r\n /* Fallback for browsers that do not support Custom Properties */\r\n min-height: 100vh;\r\n min-height: calc(var(--vh, 1vh) * 100);\r\n}\r\n\r\n/* Disabling vertical centering on scrollable elements */\r\n.fp-overflow{\r\n justify-content: flex-start;\r\n max-height: 100vh;\r\n}\r\n\r\n/* No scrollable when using auto-height */\r\n.fp-scrollable .fp-auto-height .fp-overflow{\r\n max-height: none;\r\n}\r\n\r\n.fp-is-overflow .fp-overflow.fp-auto-height-responsive,\r\n.fp-is-overflow .fp-overflow.fp-auto-height,\r\n.fp-is-overflow > .fp-overflow{\r\n overflow-y: auto;\r\n}\r\n.fp-overflow{\r\n outline:none;\r\n}\r\n\r\n.fp-overflow.fp-table{\r\n display: block;\r\n}\r\n\r\n.fp-responsive .fp-auto-height-responsive.fp-section,\r\n.fp-responsive .fp-auto-height-responsive .fp-slide,\r\n.fp-responsive .fp-auto-height-responsive .fp-overflow{\r\n height: auto !important;\r\n min-height: auto !important;\r\n}\r\n\r\n/*Only display content to screen readers*/\r\n.fp-sr-only{\r\n position: absolute;\r\n width: 1px;\r\n height: 1px;\r\n padding: 0;\r\n overflow: hidden;\r\n clip: rect(0, 0, 0, 0);\r\n white-space: nowrap;\r\n border: 0;\r\n}\r\n\r\n/* Customize website's scrollbar like Mac OS\r\nNot supports in Firefox and IE */\r\n.fp-scroll-mac .fp-overflow::-webkit-scrollbar {\r\n background-color: transparent;\r\n width: 9px;\r\n}\r\n.fp-scroll-mac .fp-overflow::-webkit-scrollbar-track {\r\n background-color: transparent;\r\n}\r\n.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb {\r\n background-color: rgba(0,0,0,.4);\r\n border-radius: 16px;\r\n border: 4px solid transparent;\r\n}\r\n.fp-warning,\r\n.fp-watermark{\r\n z-index: 9999999;\r\n position: absolute;\r\n bottom: 0;\r\n}\r\n.fp-warning,\r\n.fp-watermark a{\r\n text-decoration: none;\r\n color: #000;\r\n background: rgba(255,255,255,0.6);\r\n padding: 5px 8px;\r\n font-size: 14px;\r\n font-family: arial;\r\n color: black;\r\n display: inline-block;\r\n border-radius: 3px;\r\n margin: 12px;\r\n}\r\n.fp-noscroll .fp-overflow{\r\n overflow: hidden;\r\n}"]} \ No newline at end of file +{"version":3,"sources":["fullpage.css"],"names":[],"mappings":"AAAA;;;;;;;;;AAWA,iBADA,gBAEI,OAAQ,EACR,QAAS,EACT,SAAS,OAGT,4BAA6B,cAEjC,YACI,SAAU,SACV,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WACZ,OAAQ,KACR,QAAS,MAEb,UACI,MAAO,KAEX,UAAW,oBACP,OAAQ,KACR,QAAS,MAEb,WACI,QAAQ,EACR,OAAQ,KACR,SAAU,OACV,SAAU,SACV,mBAAoB,IAAI,IAAK,SAC7B,WAAY,IAAI,IAAK,SAEzB,UACI,QAAS,KACT,eAAgB,OAChB,gBAAiB,OACjB,MAAO,KAEX,oBACI,MAAO,KACP,SAAU,SAEd,iBACI,oBAAqB,KACrB,iBAAkB,KAClB,mBAAoB,KACpB,gBAAiB,KACjB,SAAU,SACV,QAAS,EACT,IAAK,IACL,OAAQ,QACR,WAAY,MACZ,kBAAmB,mBACnB,cAAe,mBACf,UAAW,mBAEf,SACI,KAAM,KAEV,SACI,MAAO,KAEX,UACI,MAAO,EACP,OAAQ,EACR,aAAc,MAElB,kBACI,aAAc,OAAO,KAAK,OAAO,EACjC,aAAc,YAAY,KAAK,YAAY,YAE/C,kBACI,aAAc,OAAO,EAAE,OAAO,KAC9B,aAAc,YAAY,YAAY,YAAY,KAEtD,iBACI,mBAAoB,eACpB,WAAY,eAEhB,QACI,SAAU,MACV,QAAS,IACT,IAAK,IACL,QAAS,EACT,UAAW,iBACX,cAAe,iBACf,kBAAmB,sBACnB,eAAgB,KAEpB,iBACI,MAAO,KAEX,gBACI,KAAM,KAEV,cACI,SAAU,SACV,QAAS,EACT,QAAS,EACT,kBAAmB,mBACnB,cAAe,mBACf,UAAW,mBACX,KAAM,YACN,MAAO,EACP,OAAQ,EAAE,eACV,eAAgB,KAEpB,wBACI,OAAQ,KAEZ,qBACI,IAAK,KAET,WACA,iBACE,OAAQ,EACR,QAAS,EAEX,cACA,oBACI,QAAS,MACT,MAAO,KACP,OAAQ,KACR,OAAQ,IACR,SAAS,SAEb,oBACI,QAAS,aAEb,gBACA,sBACI,QAAS,MACT,SAAU,SACV,QAAS,EACT,MAAO,KACP,OAAQ,KACR,OAAQ,QACR,gBAAiB,KACjB,eAAgB,IAEpB,4BAEA,kCADA,kCAEA,wCACI,OAAQ,KACR,MAAO,KACP,OAAQ,KAAK,EAAE,EAAE,KACjB,cAAe,KAEnB,qBACA,2BACI,cAAe,IACf,SAAU,SACV,QAAS,EACT,OAAQ,IACR,MAAO,IACP,OAAQ,EACR,WAAY,KACZ,KAAM,IACN,IAAK,IACL,OAAQ,KAAK,EAAE,EAAE,KACjB,mBAAoB,IAAI,IAAK,YAC7B,gBAAiB,IAAI,IAAK,YAC1B,cAAe,IAAI,IAAK,YACxB,WAAY,IAAI,IAAK,YAEzB,2BACA,iCACI,MAAO,KACP,OAAQ,KACR,OAAQ,KAAK,EAAI,EAAI,KAEzB,0BACI,SAAU,SACV,IAAK,KACL,MAAO,KACP,UAAW,KACX,YAAa,KAAK,CAAE,SAAS,CAAE,WAC/B,YAAa,OACb,UAAW,MACX,SAAU,OACV,QAAS,MACT,QAAS,EACT,MAAO,EACP,OAAQ,QAEZ,gCACA,4CACI,mBAAoB,QAAQ,IAAK,QACjC,WAAY,QAAQ,IAAK,QACzB,MAAO,KACP,QAAS,EAEb,mCACI,MAAO,KAEX,kCACI,KAAM,KAGV,0BADA,2BAEI,OAAQ,eAGZ,0CACI,OAAQ,eAIZ,2BACI,SAAU,QACV,OAAQ,QAKZ,2BACA,yBAFA,wDAIG,OAAQ,MACR,OAAQ,0BAIX,uEACA,qEAFA,oGAII,WAAY,MACZ,WAAY,0BAIhB,aACI,gBAAiB,WAGrB,sCACI,WAAY,MAIhB,4CACI,WAAY,KAIhB,4CADA,uDAEA,6BACI,WAAY,KAEhB,aACI,QAAQ,EAGZ,sBACI,QAAS,MAKb,uDADA,oDADA,qDAGI,OAAQ,eACR,WAAY,eAIhB,YACI,SAAU,SACV,MAAO,IACP,OAAQ,IACR,QAAS,EACT,SAAU,OACV,KAAM,cACN,YAAa,OACb,OAAQ,EAKZ,+CACI,iBAAkB,YAClB,MAAO,IAEX,qDACI,iBAAkB,YAEtB,qDACI,iBAAkB,eAClB,cAAe,KACf,OAAQ,IAAI,MAAM,YAEtB,YACA,cACI,QAAS,QACT,SAAU,SACV,OAAQ,EAEZ,YACA,gBACI,gBAAiB,KACjB,MAAO,KACP,WAAY,qBACZ,QAAS,IAAI,IACb,UAAW,KACX,YAAa,MACb,MAAO,KACP,QAAS,aACT,cAAe,IACf,OAAQ,KAEZ,0BACI,SAAU","file":"fullpage.min.css","sourcesContent":["/*!\r\n * fullPage 4.0.30\r\n * https://github.com/alvarotrigo/fullPage.js\r\n *\r\n * @license GPLv3 for open source use only\r\n * or Fullpage Commercial License for commercial use\r\n * http://alvarotrigo.com/fullPage/pricing/\r\n *\r\n * Copyright (C) 2021 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo\r\n */\r\nhtml.fp-enabled,\r\n.fp-enabled body {\r\n margin: 0;\r\n padding: 0;\r\n overflow:hidden;\r\n\r\n /*Avoid flicker on slides transitions for mobile phones #336 */\r\n -webkit-tap-highlight-color: rgba(0,0,0,0);\r\n}\r\n.fp-section {\r\n position: relative;\r\n -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */\r\n -moz-box-sizing: border-box; /* <=28 */\r\n box-sizing: border-box;\r\n height: 100%;\r\n display: block;\r\n}\r\n.fp-slide {\r\n float: left;\r\n}\r\n.fp-slide, .fp-slidesContainer {\r\n height: 100%;\r\n display: block;\r\n}\r\n.fp-slides {\r\n z-index:1;\r\n height: 100%;\r\n overflow: hidden;\r\n position: relative;\r\n -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */\r\n transition: all 0.3s ease-out;\r\n}\r\n.fp-table{\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: center;\r\n width: 100%;\r\n}\r\n.fp-slidesContainer {\r\n float: left;\r\n position: relative;\r\n}\r\n.fp-controlArrow {\r\n -webkit-user-select: none; /* webkit (safari, chrome) browsers */\r\n -moz-user-select: none; /* mozilla browsers */\r\n -khtml-user-select: none; /* webkit (konqueror) browsers */\r\n -ms-user-select: none; /* IE10+ */\r\n position: absolute;\r\n z-index: 4;\r\n top: 50%;\r\n cursor: pointer;\r\n margin-top: -38px;\r\n -webkit-transform: translate3d(0,0,0);\r\n -ms-transform: translate3d(0,0,0);\r\n transform: translate3d(0,0,0);\r\n}\r\n.fp-prev{\r\n left: 15px;\r\n}\r\n.fp-next{\r\n right: 15px;\r\n}\r\n.fp-arrow{\r\n width: 0;\r\n height: 0;\r\n border-style: solid;\r\n}\r\n.fp-arrow.fp-prev {\r\n border-width: 38.5px 34px 38.5px 0;\r\n border-color: transparent #fff transparent transparent;\r\n}\r\n.fp-arrow.fp-next {\r\n border-width: 38.5px 0 38.5px 34px;\r\n border-color: transparent transparent transparent #fff;\r\n}\r\n.fp-notransition {\r\n -webkit-transition: none !important;\r\n transition: none !important;\r\n}\r\n#fp-nav {\r\n position: fixed;\r\n z-index: 100;\r\n top: 50%;\r\n opacity: 1;\r\n transform: translateY(-50%);\r\n -ms-transform: translateY(-50%);\r\n -webkit-transform: translate3d(0,-50%,0);\r\n pointer-events: none;\r\n}\r\n#fp-nav.fp-right {\r\n right: 17px;\r\n}\r\n#fp-nav.fp-left {\r\n left: 17px;\r\n}\r\n.fp-slidesNav{\r\n position: absolute;\r\n z-index: 4;\r\n opacity: 1;\r\n -webkit-transform: translate3d(0,0,0);\r\n -ms-transform: translate3d(0,0,0);\r\n transform: translate3d(0,0,0);\r\n left: 0 !important;\r\n right: 0;\r\n margin: 0 auto !important;\r\n pointer-events: none;\r\n}\r\n.fp-slidesNav.fp-bottom {\r\n bottom: 17px;\r\n}\r\n.fp-slidesNav.fp-top {\r\n top: 17px;\r\n}\r\n#fp-nav ul,\r\n.fp-slidesNav ul {\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#fp-nav ul li,\r\n.fp-slidesNav ul li {\r\n display: block;\r\n width: 14px;\r\n height: 13px;\r\n margin: 7px;\r\n position:relative;\r\n}\r\n.fp-slidesNav ul li {\r\n display: inline-block;\r\n}\r\n#fp-nav ul li a,\r\n.fp-slidesNav ul li a {\r\n display: block;\r\n position: relative;\r\n z-index: 1;\r\n width: 100%;\r\n height: 100%;\r\n cursor: pointer;\r\n text-decoration: none;\r\n pointer-events: all;\r\n}\r\n#fp-nav ul li a.active span,\r\n.fp-slidesNav ul li a.active span,\r\n#fp-nav ul li:hover a.active span,\r\n.fp-slidesNav ul li:hover a.active span{\r\n height: 12px;\r\n width: 12px;\r\n margin: -6px 0 0 -6px;\r\n border-radius: 100%;\r\n }\r\n#fp-nav ul li a span,\r\n.fp-slidesNav ul li a span {\r\n border-radius: 50%;\r\n position: absolute;\r\n z-index: 1;\r\n height: 4px;\r\n width: 4px;\r\n border: 0;\r\n background: #333;\r\n left: 50%;\r\n top: 50%;\r\n margin: -2px 0 0 -2px;\r\n -webkit-transition: all 0.1s ease-in-out;\r\n -moz-transition: all 0.1s ease-in-out;\r\n -o-transition: all 0.1s ease-in-out;\r\n transition: all 0.1s ease-in-out;\r\n}\r\n#fp-nav ul li:hover a span,\r\n.fp-slidesNav ul li:hover a span{\r\n width: 10px;\r\n height: 10px;\r\n margin: -5px 0px 0px -5px;\r\n}\r\n#fp-nav ul li .fp-tooltip {\r\n position: absolute;\r\n top: -2px;\r\n color: #fff;\r\n font-size: 14px;\r\n font-family: arial, helvetica, sans-serif;\r\n white-space: nowrap;\r\n max-width: 220px;\r\n overflow: hidden;\r\n display: block;\r\n opacity: 0;\r\n width: 0;\r\n cursor: pointer;\r\n}\r\n#fp-nav ul li:hover .fp-tooltip,\r\n#fp-nav.fp-show-active a.active + .fp-tooltip {\r\n -webkit-transition: opacity 0.2s ease-in;\r\n transition: opacity 0.2s ease-in;\r\n width: auto;\r\n opacity: 1;\r\n}\r\n#fp-nav ul li .fp-tooltip.fp-right {\r\n right: 20px;\r\n}\r\n#fp-nav ul li .fp-tooltip.fp-left {\r\n left: 20px;\r\n}\r\n.fp-auto-height.fp-section,\r\n.fp-auto-height .fp-slide{\r\n height: auto !important;\r\n}\r\n\r\n.fp-responsive .fp-is-overflow.fp-section{\r\n height: auto !important;\r\n}\r\n\r\n/* Tries to prevent overwrites #4657 */\r\n.fp-enabled .fp-scrollable{\r\n overflow: visible;\r\n height: initial;\r\n}\r\n\r\n/* Used with autoScrolling: false */ \r\n.fp-scrollable.fp-responsive .fp-is-overflow.fp-section,\r\n.fp-scrollable .fp-section,\r\n.fp-scrollable .fp-slide{\r\n /* Fallback for browsers that do not support Custom Properties */\r\n height: 100vh;\r\n height: calc(var(--vh, 1vh) * 100);\r\n}\r\n\r\n.fp-scrollable.fp-responsive .fp-is-overflow.fp-section:not(.fp-auto-height):not([data-percentage]),\r\n.fp-scrollable .fp-section:not(.fp-auto-height):not([data-percentage]),\r\n.fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]){\r\n /* Fallback for browsers that do not support Custom Properties */\r\n min-height: 100vh;\r\n min-height: calc(var(--vh, 1vh) * 100);\r\n}\r\n\r\n/* Disabling vertical centering on scrollable elements */\r\n.fp-overflow{\r\n justify-content: flex-start;\r\n}\r\n\r\nbody:not(.fp-responsive) .fp-overflow{\r\n max-height: 100vh;\r\n}\r\n\r\n/* No scrollable when using auto-height */\r\n.fp-scrollable .fp-auto-height .fp-overflow{\r\n max-height: none;\r\n}\r\n\r\n.fp-is-overflow .fp-overflow.fp-auto-height-responsive,\r\n.fp-is-overflow .fp-overflow.fp-auto-height,\r\n.fp-is-overflow > .fp-overflow{\r\n overflow-y: auto;\r\n}\r\n.fp-overflow{\r\n outline:none;\r\n}\r\n\r\n.fp-overflow.fp-table{\r\n display: block;\r\n}\r\n\r\n.fp-responsive .fp-auto-height-responsive.fp-section,\r\n.fp-responsive .fp-auto-height-responsive .fp-slide,\r\n.fp-responsive .fp-auto-height-responsive .fp-overflow{\r\n height: auto !important;\r\n min-height: auto !important;\r\n}\r\n\r\n/*Only display content to screen readers*/\r\n.fp-sr-only{\r\n position: absolute;\r\n width: 1px;\r\n height: 1px;\r\n padding: 0;\r\n overflow: hidden;\r\n clip: rect(0, 0, 0, 0);\r\n white-space: nowrap;\r\n border: 0;\r\n}\r\n\r\n/* Customize website's scrollbar like Mac OS\r\nNot supports in Firefox and IE */\r\n.fp-scroll-mac .fp-overflow::-webkit-scrollbar {\r\n background-color: transparent;\r\n width: 9px;\r\n}\r\n.fp-scroll-mac .fp-overflow::-webkit-scrollbar-track {\r\n background-color: transparent;\r\n}\r\n.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb {\r\n background-color: rgba(0,0,0,.4);\r\n border-radius: 16px;\r\n border: 4px solid transparent;\r\n}\r\n.fp-warning,\r\n.fp-watermark{\r\n z-index: 9999999;\r\n position: absolute;\r\n bottom: 0;\r\n}\r\n.fp-warning,\r\n.fp-watermark a{\r\n text-decoration: none;\r\n color: #000;\r\n background: rgba(255,255,255,0.6);\r\n padding: 5px 8px;\r\n font-size: 14px;\r\n font-family: arial;\r\n color: black;\r\n display: inline-block;\r\n border-radius: 3px;\r\n margin: 12px;\r\n}\r\n.fp-noscroll .fp-overflow{\r\n overflow: hidden;\r\n}"]} \ No newline at end of file diff --git a/dist/fullpage.min.js b/dist/fullpage.min.js index ff045a782..4cd746e26 100644 --- a/dist/fullpage.min.js +++ b/dist/fullpage.min.js @@ -1,5 +1,5 @@ /*! -* fullPage 4.0.29 +* fullPage 4.0.30 * https://github.com/alvarotrigo/fullPage.js * * @license GPLv3 for open source use only @@ -8,4 +8,4 @@ * * Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo */ -!function(n,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(n="undefined"!=typeof globalThis?globalThis:n||self).fullpage=t()}(this,(function(){"use strict";var n,t,e,i;Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(n){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),e=t.length>>>0;if("function"!=typeof n)throw new TypeError("predicate must be a function");for(var i=arguments[1],o=0;o0?1:-1)*Math.floor(Math.abs(t)):t}(n);return Math.min(Math.max(t,0),e)},function(n){var e=this,o=Object(n);if(null==n)throw new TypeError("Array.from requires an array-like object - not null or undefined");var r,a=arguments.length>1?arguments[1]:void 0;if(void 0!==a){if(!t(a))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(r=arguments[2])}for(var u,l=i(o.length),c=t(e)?Object(new e(l)):new Array(l),f=0;f0||navigator.maxTouchPoints,f=!!window.MSInputMethodContext&&!!document.documentMode,s={test:{},shared:{}},v=["parallax","scrollOverflowReset","dragAndMove","offsetSections","fadingEffect","responsiveSlides","continuousHorizontal","interlockedSlides","scrollHorizontally","resetSliders","cards","dropEffect","waterEffect"],d=(o=window.self!==window.top,function(){return o});function h(n,t){r.console&&r.console[n]&&r.console[n]("fullPage: "+t)}function p(n){return"none"!==r.getComputedStyle(n).display}function g(n){return Array.from(n).filter((function(n){return p(n)}))}function m(n,t){return(t=arguments.length>1?t:document)?t.querySelectorAll(n):null}function w(n){n=n||{};for(var t=1,e=arguments.length;t>=0,t=String(void 0!==t?t:" "),this.length>n?String(this):((n-=this.length)>t.length&&(t+=Array.apply(null,Array(n)).map((function(){return t})).join("")),t.slice(0,n)+String(this))}),window.fp_utils={$:m,deepExtend:w,hasClass:b,getWindowHeight:y,css:T,prev:M,next:A,last:x,index:k,getList:O,hide:j,show:L,isArrayOrList:D,addClass:E,removeClass:R,appendTo:P,wrap:F,wrapAll:z,unwrap:C,closest:N,after:B,before:H,insertBefore:W,getScrollTop:V,siblings:U,preventDefault:_,isFunction:X,trigger:Q,matches:J,toggle:Z,createElementFromHTML:nn,remove:tn,untilAll:en,nextAll:on,prevAll:rn,showError:h};var vn=Object.freeze({__proto__:null,showError:h,isVisible:p,o:g,$:m,deepExtend:w,hasClass:b,getWindowHeight:y,u:S,css:T,prev:M,next:A,last:x,index:k,getList:O,hide:j,show:L,isArrayOrList:D,addClass:E,removeClass:R,appendTo:P,wrap:F,wrapAll:z,l:I,unwrap:C,closest:N,after:B,before:H,insertBefore:W,getScrollTop:V,siblings:U,preventDefault:_,v:K,h:q,p:G,g:$,S:Y,isFunction:X,trigger:Q,matches:J,toggle:Z,createElementFromHTML:nn,remove:tn,untilAll:en,nextAll:on,prevAll:rn,toArray:an,T:un,M:ln,A:cn,O:fn,j:sn});function dn(n){return dn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(n){return typeof n}:function(n){return n&&"function"==typeof Symbol&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},dn(n)}var hn={L:{},D:function(n,t){var e=this;return"object"!==dn(this.L[n])&&(this.L[n]=[]),this.L[n].push(t),function(){return e.removeListener(n,t)}},removeListener:function(n,t){if("object"===dn(this.L[n])){var e=this.L[n].indexOf(t);e>-1&&this.L[n].splice(e,1)}},R:function(n){for(var t=this,e=arguments.length,i=new Array(e>1?e-1:0),o=1;o','
      '],controlArrowColor:"#fff",verticalCentered:!0,sectionsColor:[],paddingTop:0,paddingBottom:0,fixedElements:null,responsive:0,responsiveWidth:0,responsiveHeight:0,responsiveSlides:!1,parallax:!1,parallaxOptions:{type:"reveal",percentage:62,property:"translate"},cards:!1,cardsOptions:{perspective:100,fadeContent:!0,fadeBackground:!0},sectionSelector:".section",slideSelector:".slide",afterLoad:null,beforeLeave:null,onLeave:null,afterRender:null,afterResize:null,afterReBuild:null,afterSlideLoad:null,onSlideLeave:null,afterResponsive:null,onScrollOverflow:null,lazyLoading:!0,lazyLoadThreshold:0,observer:!0,scrollBeyondFullpage:!0},yt=null,St=!1,Tt=w({},bt),Mt=null;function At(n){return yt}function xt(){return Mt||bt}function kt(){return Tt}function Ot(n,t,e){Mt[n]=t,"internal"!==e&&(Tt[n]=t)}function jt(){if(!xt().anchors.length){var n=m(xt().sectionSelector.split(",").join("[data-anchor],")+"[data-anchor]",yt);n.length&&n.length===m(xt().sectionSelector,yt).length&&(St=!0,n.forEach((function(n){xt().anchors.push(K(n,"data-anchor").toString())})))}if(!xt().navigationTooltips.length){var t=m(xt().sectionSelector.split(",").join("[data-tooltip],")+"[data-tooltip]",yt);t.length&&t.forEach((function(n){xt().navigationTooltips.push(K(n,"data-tooltip").toString())}))}}var Lt=function(n){this.anchor=n.anchor,this.item=n.item,this.index=n.index(),this.isLast=this.index===n.item.parentElement.querySelectorAll(n.selector).length-1,this.isFirst=!this.index,this.isActive=n.isActive},Dt=function(n,t){this.parent=this.parent||null,this.selector=t,this.anchor=K(n,"data-anchor")||xt().anchors[k(n,xt().sectionSelector)],this.item=n,this.isVisible=p(n),this.isActive=b(n,$n),this.un=b(n,ct)||null!=m(ft,n)[0],this.ln=t===xt().sectionSelector,this.cn=N(n,ut)||N(n,Un),this.index=function(){return this.siblings().indexOf(this)}};function Et(n){return n.map((function(n){return n.item}))}function Rt(n,t){return n.find((function(n){return n.item===t}))}Dt.prototype.siblings=function(){return this.ln?this.isVisible?pn.I:pn.sn:this.parent?this.parent.slides:0},Dt.prototype.prev=function(){var n=this.siblings(),t=(this.ln?n.indexOf(this):this.parent.slides.indexOf(this))-1;return t>=0?n[t]:null},Dt.prototype.next=function(){var n=this.siblings(),t=(this.ln?n.indexOf(this):this.parent.slides.indexOf(this))+1;return ti?"up":"down"}function Vt(n){return E(n,Kn)}function Ut(n){return{"-webkit-transform":n,"-moz-transform":n,"-ms-transform":n,transform:n}}function _t(n,t){t?Ht(At()):Vt(At()),clearTimeout(Pt),T(At(),Ut(n)),s.test.hn=n,Pt=setTimeout((function(){R(At(),Kn)}),10)}function Kt(n){var t=Math.round(n);if(xt().css3&&xt().autoScrolling&&!xt().scrollBar)_t("translate3d(0px, -"+t+"px, 0px)",!1);else if(xt().autoScrolling&&!xt().scrollBar)T(At(),{top:-t+"px"}),s.test.top=-t+"px";else{var e=Nt(t);Bt(e.element,e.options)}}function qt(n,t){Ot("scrollingSpeed",n,t)}s.setScrollingSpeed=qt;var Gt,$t=null,Yt=null,Xt=null;function Qt(n,t,e,i){var o,a=function(n){return n.self!=r&&b(n,ot)?n.scrollLeft:!xt().autoScrolling||xt().scrollBar?V():n.offsetTop}(n),u=t-a,l=!1,c=pn.q;gn({q:!0}),Gt&&window.cancelAnimationFrame(Gt),Gt=function(f){o||(o=f);var s=Math.floor(f-o);if(pn.q){var v=t;e&&(v=r.fp_easings[xt().easing](s,a,u,e)),s<=e&&Bt(n,v),s0,r=i>2&&i'+se(r.index(),"Section")+"";var l=xt().navigationTooltips[r.index()];void 0!==l&&""!==l&&(i+='
      '+l+"
      "),i+=""}m("ul",e)[0].innerHTML=i;var c=m("li",m(nt)[0])[mn().C.index()];E(m("a",c),$n)}function Te(n){n.preventDefault&&_(n),gn({N:"verticalNav"});var t=k(N(this,"#fp-nav li"));hn.R(En,{destination:mn().I[t]})}function Me(n,t){var e;e=n,xt().menu&&xt().menu.length&&m(xt().menu).forEach((function(n){null!=n&&(R(m(Yn,n),$n),E(m('[data-menuanchor="'+e+'"]',n),$n))})),function(n,t){var e=m(nt)[0];xt().navigation&&null!=e&&"none"!==e.style.display&&(R(m(Yn,e),$n),E(n?m('a[href="#'+n+'"]',e):m("a",m("li",e)[t]),$n))}(n,t)}de.m={up:!0,down:!0,left:!0,right:!0},de.k=w({},de.m),hn.D(bn,(function(n){var t=n.target;(J(t,pt)||N(t,pt))&&ge.call(t,n)})),s.setRecordHistory=me,s.setAutoScrolling=we,s.test.setAutoScrolling=we,(new Date).getTime();var Ae,xe,ke,Oe,je,Le,De=(xe=!0,ke=(new Date).getTime(),Oe=!r.fullpage_api,function(n,t){var e=(new Date).getTime(),i="wheel"===n?xt().scrollingSpeed:100;return xe=Oe||e-ke>=i,Oe=!r.fullpage_api,xe&&(Ae=t(),ke=e),void 0===Ae||Ae});function Ee(n,t){if(X(xt().beforeLeave))return De(mn().N,(function(){return ne(n,t)}))}function Re(n,t,e){var i=n.item;if(null!=i){var o,r,a=function(n){var t=n.offsetHeight,e=n.offsetTop,i=e,o=e>pn.tn,r=i-y()+t,a=xt().bigSectionsDestination;return t>y()?(o||a)&&"bottom"!==a||(i=r):(o||pn.V&&null==A(n))&&(i=r),gn({tn:i}),i}(i),u={element:i,callback:t,isMovementUp:e,dtop:a,yMovement:Wt(mn().C,i),anchorLink:n.anchor,sectionIndex:n.index(),activeSlide:n.activeSlide?n.activeSlide.item:null,leavingSection:mn().C.index()+1,localIsResizing:pn.V,items:{origin:mn().C,destination:n},direction:null};if(!(mn().C.item==i&&!pn.V||xt().scrollBar&&V()===u.dtop&&!b(i,"fp-auto-height"))){if(null!=u.activeSlide&&(o=K(u.activeSlide,"data-anchor"),r=k(u.activeSlide,null)),!u.localIsResizing){var l=u.yMovement;if(void 0!==e&&(l=e?"up":"down"),u.direction=l,X(xt().beforeLeave)&&!1===Ee("beforeLeave",u))return;if(X(xt().onLeave)&&!ne("onLeave",u))return}xt().autoScrolling&&xt().continuousVertical&&void 0!==u.isMovementUp&&(!u.isMovementUp&&"up"==u.yMovement||u.isMovementUp&&"down"==u.yMovement)&&(u=function(n){gn({on:!0});var t=mn().C.item;return n.isMovementUp?H(t,on(t,Jn)):B(t,rn(t,Jn).reverse()),Kt(mn().C.item.offsetTop),function(){for(var n=m(it),t=0;t-1&&!Ge.kn)return _(n),!1},Mn:function(){Ge.xn=pn.G},onLeave:function(){clearTimeout(He),Ge.kn=!1},afterLoad:function(){Ge.kn=!1,clearTimeout(He),He=setTimeout((function(){Ge.xn=pn.G}),200)},En:function(){a.activeElement===this.An&&(this.An.blur(),Ge.kn=!1)},Tn:function(){if(xt().scrollOverflow&&Ge.xn){Ge.En();var n=Ge.Rn(mn().C.item);!n||u||c||(this.An=n,requestAnimationFrame((function(){n.focus({Pn:!0}),Ge.kn=!0}))),Ge.xn=!1}},Sn:function(){xt().scrollOverflowMacStyle&&!l&&E($t,"fp-scroll-mac"),mn().dn.forEach((function(n){if(!(n.slides&&n.slides.length||b(n.item,"fp-auto-height-responsive")&&Ne())){var t,e=It(n.item),i=Ge.wn(n.item),o=(t=n).ln?t:t.parent;if(f){var r=i?"addClass":"removeClass";vn[r](o.item,st),vn[r](n.item,st)}else E(o.item,st),E(n.item,st);n.un||(Ge.Fn(e),Ge.zn(e)),n.un=!0}}))},zn:function(n){Ge.Rn(n).addEventListener("scroll",Ge.In),n.addEventListener("wheel",Ge.Ln,{passive:!1}),n.addEventListener("keydown",Ge.Dn,{passive:!1})},Fn:function(n){var t=document.createElement("div");t.className=ct,I(n,t),t.setAttribute("tabindex","-1")},Cn:function(n){var t=m(ft,n)[0];t&&(C(t),n.removeAttribute("tabindex"))},Rn:function(n){var t=It(n);return m(ft,t)[0]||t},un:function(n){return b(n,ct)||null!=m(ft,n)[0]},bn:function(n){return n.ln&&n.activeSlide?n.activeSlide.un:n.un},wn:function(n){return Ge.Rn(n).scrollHeight>r.innerHeight},isScrolled:function(n,t){if(!pn.G)return!1;if(xt().scrollBar)return!0;var e=Ge.Rn(t);if(!xt().scrollOverflow||!b(e,ct)||b(t,"fp-noscroll")||b(It(t),"fp-noscroll"))return!0;var i=f?1:0,o=e.scrollTop,r="up"===n&&o<=0,a="down"===n&&e.scrollHeight<=Math.ceil(e.offsetHeight+o)+i,u=r||a;return u||"none"===n||(this.On=(new Date).getTime()),u},Nn:function(){this.jn=(new Date).getTime();var n=this.jn-Ge.On,t=(u||c)&&pn.J,e=pn.Z&&n>600;return t&&n>400||e},In:(Ke=0,function(n){var t=n.target.scrollTop,e="none"!==pn.Y?pn.Y:Keo?"left":"right"),l.direction=l.direction?l.direction:l.Bn,l.localIsResizing||gn({G:!1}),xt().onSlideLeave&&!l.localIsResizing&&"none"!==l.Bn&&X(xt().onSlideLeave)&&!1===ne("onSlideLeave",l)?gn({W:!1}):(E(t,$n),R(U(t),$n),ti(),l.localIsResizing||(ie(l.prevSlide),re(u)),function(n){!xt().loopHorizontal&&xt().controlArrows&&(Z(m(mt,n.section),0!==n.slideIndex),Z(m(wt,n.section),null!=A(n.destiny)))}(l),a.isActive&&!l.localIsResizing&&ce(l.slideIndex,l.slideAnchor,l.anchorLink),hn.R(zn,l),function(n,t,e){var i,o,r=t.destinyPos;if(i=t.slidesNav,o=t.slideIndex,xt().slidesNavigation&&null!=i&&(R(m(Yn,i),$n),E(m("a",m("li",i)[o]),$n)),gn({scrollX:Math.round(r.left)}),xt().css3){var a="translate3d(-"+Math.round(r.left)+"px, 0px, 0px)";s.test.Hn[t.sectionIndex]=a,T(Ht(m(ut,n)),Ut(a)),clearTimeout(qe),qe=setTimeout((function(){Qe(t)}),xt().scrollingSpeed)}else s.test.left[t.sectionIndex]=Math.round(r.left),Qt(n,Math.round(r.left),xt().scrollingSpeed,(function(){Qe(t)}))}(n,l))}function Xe(){clearTimeout(qe)}function Qe(n){n.localIsResizing||(X(xt().afterSlideLoad)&&ne("afterSlideLoad",n),gn({G:!0}),te(n.destiny),hn.R(Nn,n)),gn({W:!1})}function Je(n,t){qt(0,"internal"),void 0!==t&&gn({V:!0}),Ye(N(n,rt),n),void 0!==t&&gn({V:!1}),qt(kt().scrollingSpeed,"internal")}s.landscapeScroll=Ye,hn.D(An,(function(){hn.D(Fn,$e)}));var Ze=null,ni=null;function ti(){pn.C=null,pn.I.map((function(n){var t=b(n.item,$n);n.isActive=t,n.un=Ge.un(n.item),t&&(pn.C=n),n.slides.length&&(n.activeSlide=null,n.slides.map((function(t){var e=b(t.item,$n);t.un=Ge.un(n.item),t.isActive=e,e&&(n.activeSlide=t)})))})),function(){var n=pn.C,t=!!pn.C&&pn.C.slides.length,e=pn.C?pn.C.activeSlide:null;if(!n&&pn.I.length&&!mn().B&&Ze){var i=oi(Ze,pn.I);i&&(pn.C=i,pn.C.isActive=!0,E(pn.C.item,$n)),pn.C&&Kt(pn.C.item.offsetTop)}if(t&&!e&&ni){var o=oi(ni,pn.C.slides);o&&(pn.C.activeSlide=o,pn.C.activeSlide.isActive=!0,E(pn.C.activeSlide.item,$n)),pn.C.activeSlide&&Je(pn.C.activeSlide.item,"internal")}}()}function ei(){var n=m(xt().sectionSelector,At()),t=g(n),e=Array.from(n).map((function(n){return new ri(n)})),i=e.filter((function(n){return n.isVisible})),o=i.reduce((function(n,t){return n.concat(t.slides)}),[]);Ze=ii(pn.C),ni=ii(pn.C?pn.C.activeSlide:null),pn.P=t.length,pn.F=i.reduce((function(n,t){return n+t.slides.length}),0),pn.I=i,pn.sn=e,pn.slides=o,pn.dn=pn.I.concat(pn.slides)}function ii(n){if(!n)return null;var t=n?n.item:null,e=n.ln?pn.sn:pn.C.Wn;if(t){var i=Rt(e,t);return i?i.index():null}return null}function oi(n,t){var e,i=n-1,o=n;do{if(e=t[i]||t[o])break;i-=1,o+=1}while(i>=0||o1&&(xt().controlArrows&&function(n){var t=n.item,e=[nn(xt().controlArrowsHTML[0]),nn(xt().controlArrowsHTML[1])];B(m(rt,t)[0],e),E(e,ht),E(e[0],gt),E(e[1],"fp-next"),"#fff"!==xt().controlArrowColor&&(T(m(wt,t),{"border-color":"transparent transparent transparent "+xt().controlArrowColor}),T(m(mt,t),{"border-color":"transparent "+xt().controlArrowColor+" transparent transparent"})),xt().loopHorizontal||j(m(mt,t))}(n),xt().slidesNavigation&&function(n){var t=n.item,e=n.slides.length;P(nn('
        '),t);var i=m(vt,t)[0];E(i,"fp-"+xt().slidesNavPosition);for(var o=0;o'+se(o,"Slide",m(et,t)[o])+""),m("ul",i)[0]);T(i,{"margin-left":"-"+i.innerWidth/2+"px"});var r=n.activeSlide?n.activeSlide.index():0;E(m("a",m("li",i)[r]),$n)}(n)),i.forEach((function(n){T(n.item,{width:r+"%"}),xt().verticalCentered&&Be(n)}));var c=n.activeSlide||null;null!=c&&pn.C&&(0!==pn.C.index()||0===pn.C.index()&&0!==c.index())?Je(c.item,"internal"):E(e[0],$n)}ui.prototype=Dt.prototype,ui.prototype.constructor=ri;var fi={attributes:!1,subtree:!0,childList:!0,characterData:!0};function si(){return g(m(xt().slideSelector,At())).length!==mn().F}function vi(n){var t=si();(si()||g(m(xt().sectionSelector,At())).length!==mn().P)&&!pn.on&&(xt().observer&&ai&&ai.disconnect(),ei(),ti(),xt().anchors=[],tn(m(nt)),li(),jt(),xt().navigation&&Se(),t&&(tn(m(vt)),tn(m(pt))),mn().I.forEach((function(n){n.slides.length?t&&ci(n):Ve(n)}))),xt().observer&&ai&&m(Un)[0]&&ai.observe(m(Un)[0],fi)}hn.D(An,(function(){var n,t,e;xt().observer&&"MutationObserver"in window&&m(Un)[0]&&(n=m(Un)[0],t=fi,(e=new MutationObserver(vi)).observe(n,t),ai=e),hn.D(kn,vi)})),s.render=vi;var di=function(){var n=!1;try{var t=Object.defineProperty({},"passive",{get:function(){n=!0}});G("testPassive",null,t),Y("testPassive",null,t)}catch(n){}return function(){return n}}();function hi(){return!!di()&&{passive:!1}}var pi,gi,mi,wi,bi=(mi=(new Date).getTime(),wi=[],{Vn:function(n){var t=(n=n||r.event).wheelDelta||-n.deltaY||-n.detail,e=Math.max(-1,Math.min(1,t)),i=void 0!==n.wheelDeltaX||void 0!==n.deltaX;pi=Math.abs(n.wheelDeltaX)149&&wi.shift(),wi.push(Math.abs(t));var a=o-mi;mi=o,a>200&&(wi=[])},Un:function(){var n=ln(wi,10)>=ln(wi,70);return!!wi.length&&n&&pi},_n:function(){return gi}});function yi(){var n=xt().css3?V()+y():un(mn().I).item.offsetTop+un(mn().I).item.offsetHeight,t=Nt(n);s.test.top=-n+"px",gn({G:!1}),Qt(t.element,t.options,xt().scrollingSpeed,(function(){setTimeout((function(){gn({B:!0}),gn({G:!0})}),30)}))}function Si(){At().getBoundingClientRect().bottom>=0&&Ti()}function Ti(){var n=Nt(un(mn().I).item.offsetTop);gn({G:!1}),Qt(n.element,n.options,xt().scrollingSpeed,(function(){gn({G:!0}),gn({B:!1}),gn({Kn:!1})}))}var Mi,Ai,xi,ki=(Mi=!1,Ai={},xi={},function(n,t,e){switch(n){case"set":Ai[t]=(new Date).getTime(),xi[t]=e;break;case"isNewKeyframe":var i=(new Date).getTime();Mi=i-Ai[t]>xi[t]}return Mi});function Oi(){var n=mn().C.next();n||!xt().loopBottom&&!xt().continuousVertical||(n=mn().I[0]),null!=n?Re(n,null,!1):At().scrollHeight<$t.scrollHeight&&xt().scrollBar&&xt().scrollBeyondFullpage&&hn.R(Pn)}function ji(){var n=mn().C.prev();n||!xt().loopTop&&!xt().continuousVertical||(n=un(mn().I)),null!=n&&Re(n,null,!0)}s.moveSectionDown=Oi,s.moveSectionUp=ji;var Li=0;function Di(n){xt().autoScrolling&&(pn.G&&(n.pageYLi&&pe().m.down&&Oi()),Li=n.pageY)}function Ei(n){if(pe().m[n]){var t="down"===n?Oi:ji;xt().scrollOverflow&&Ge.bn(mn().C)?Ge.isScrolled(n,mn().C.item)&&Ge.Nn()&&t():t()}}var Ri,Pi,Fi,zi,Ii=0,Ci=0,Ni=0,Bi=0,Hi=(r.PointerEvent&&(zi={down:"pointerdown",move:"pointermove"}),zi),Wi={qn:"ontouchmove"in window?"touchmove":Hi?Hi.move:null,Gn:"ontouchstart"in window?"touchstart":Hi?Hi.down:null};function Vi(n){var t=N(n.target,Jn)||mn().C.item,e=Ge.bn(mn().C);if(Ui(n)){gn({J:!0,Z:!1}),xt().autoScrolling&&(e&&!pn.G||xt().scrollBar)&&_(n);var i=qi(n);Ni=i.y,Bi=i.x;var o=Math.abs(Ii-Ni)>r.innerHeight/100*xt().touchSensitivity,a=Math.abs(Ci-Bi)>S()/100*xt().touchSensitivity,u=m(rt,t).length&&Math.abs(Ci-Bi)>Math.abs(Ii-Ni),l=Ii>Ni?"down":"up";gn({Y:u?Ci>Bi?"right":"left":l}),u?!pn.W&&a&&(Ci>Bi?pe().m.right&&hn.R(Sn,{section:t}):pe().m.left&&hn.R(yn,{section:t})):xt().autoScrolling&&pn.G&&o&&Ei(l)}}function Ui(n){return void 0===n.pointerType||"mouse"!=n.pointerType}function _i(n){if(xt().fitToSection&&gn({q:!1}),Ui(n)){var t=qi(n);Ii=t.y,Ci=t.x}G("touchend",Ki)}function Ki(){Y("touchend",Ki),gn({J:!1})}function qi(n){var t={};return t.y=void 0!==n.pageY&&(n.pageY||n.pageX)?n.pageY:n.touches[0].pageY,t.x=void 0!==n.pageX&&(n.pageY||n.pageX)?n.pageX:n.touches[0].pageX,c&&Ui(n)&&xt().scrollBar&&void 0!==n.touches&&(t.y=n.touches[0].pageY,t.x=n.touches[0].pageX),t}function Gi(n){xt().autoScrolling&&Ui(n)&&pe().m.up&&(pn.G||_(n))}function $i(n,t){var e=null==t?mn().C.item:t,i=Rt(pn.I,e),o=m(rt,e)[0];if(!(null==o||pn.W||i.slides.length<2)){var r=i.activeSlide,a="left"===n?r.prev():r.next();if(!a){if(!xt().loopHorizontal)return;a="left"===n?un(i.slides):i.slides[0]}gn({W:!s.test.mn}),Ye(o,a.item,n)}}function Yi(n){$i("left",n)}function Xi(n){$i("right",n)}function Qi(n){var t=mn().I.filter((function(t){return t.anchor===n}))[0];if(!t){var e=void 0!==n?n-1:0;t=mn().I[e]}return t}function Ji(n){null!=n&&Ye(N(n,rt),n)}function Zi(n,t){var e=Qi(n);if(null!=e){var i=function(n,t){var e=t.slides.filter((function(t){return t.anchor===n}))[0];return null==e&&(n=void 0!==n?n:0,e=t.slides[n]),e?e.item:null}(t,e);e.anchor&&e.anchor===pn._||b(e.item,$n)?Ji(i):Re(e,(function(){Ji(i)}))}}function no(n,t){var e=Qi(n);void 0!==t?Zi(n,t):null!=e&&Re(e)}function to(){clearTimeout(Pi),$("keydown",eo),$("keyup",io)}function eo(n){clearTimeout(Pi);var t=n.keyCode,e=[37,39].indexOf(t)>-1,i=xt().autoScrolling||xt().fitToSection||e;9===t?function(n){var t=n.shiftKey,e=a.activeElement,i=lo(It(mn().C.item));function o(n){return _(n),i[0]?i[0].focus():null}if(pn.G){if(!function(n){var t=lo(a),e=t.indexOf(a.activeElement),i=t[n.shiftKey?e-1:e+1],o=N(i,et),r=N(i,Jn);return!o&&!r}(n)){e?null==N(e,".fp-section.active,.fp-section.active .fp-slide.active")&&(e=o(n)):o(n);var r=e==i[0],u=e==i[i.length-1],l=t&&r;if(l||!t&&u){_(n);var c=function(n){var t,e=n?"prevPanel":"nextPanel",i=[],o=Ct((pn.C&&pn.C.activeSlide?pn.C.activeSlide:pn.C)[e]());do{(i=lo(o.item)).length&&(t={$n:o,Yn:i[n?i.length-1:0]}),o=Ct(o[e]())}while(o&&0===i.length);return t}(l),f=c?c.$n:null;if(f){var s=f.ln?f:f.parent;hn.R(jn,{Xn:s.index()+1,slideAnchor:f.ln?0:f.index()}),Fi=c.Yn,_(n)}}}}else _(n)}(n):!sn()&&xt().keyboardScrolling&&i&&(Ri=n.ctrlKey,Pi=setTimeout((function(){!function(n){var t=n.shiftKey,e=a.activeElement,i=J(e,"video")||J(e,"audio"),o=Ge.isScrolled("up",mn().C.item),r=Ge.isScrolled("down",mn().C.item),u=[37,39].indexOf(n.keyCode)>-1;if(function(n){(function(n){return[40,38,32,33,34].indexOf(n.keyCode)>-1&&!pn.B})(n)&&!N(n.target,ft)&&n.preventDefault()}(n),pn.G||u)switch(gn({N:"keydown"}),n.keyCode){case 38:case 33:pe().k.up&&o?pn.B?hn.R(Ln,{e:n}):ji():Ge.Tn();break;case 32:if(t&&pe().k.up&&!i&&o){ji();break}case 40:case 34:if(pe().k.down&&r){if(pn.B)return;32===n.keyCode&&i||Oi()}else Ge.Tn();break;case 36:pe().k.up&&no(1);break;case 35:pe().k.down&&no(mn().I.length);break;case 37:pe().k.left&&Yi();break;case 39:pe().k.right&&Xi()}}(n)}),0))}function io(n){pn.nn&&(Ri=n.ctrlKey)}function oo(){gn({nn:!1}),Ri=!1}function ro(n){uo()}function ao(n){N(Fi,et)&&!N(Fi,it)||uo()}function uo(){Fi&&(Fi.focus(),Fi=null)}function lo(n){return[].slice.call(m('a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], summary:not([disabled]), [contenteditable]',n)).filter((function(n){return"-1"!==K(n,"tabindex")&&null!==n.offsetParent}))}s.moveSlideLeft=Yi,s.moveSlideRight=Xi,s.moveTo=no,hn.D(An,(function(){G("blur",oo),q("keydown",eo),q("keyup",io),hn.D(xn,to),hn.D(Nn,ro),hn.D(Cn,ao)}));var co=(new Date).getTime(),fo=[];function so(n){n?(function(){var n,t="";r.addEventListener?n="addEventListener":(n="attachEvent",t="on");var e="onwheel"in a.createElement("div")?"wheel":void 0!==a.onmousewheel?"mousewheel":"DOMMouseScroll",i=hi();"DOMMouseScroll"==e?a[n](t+"MozMousePixelScroll",vo,i):a[n](t+e,vo,i)}(),At().addEventListener("mousedown",ho),At().addEventListener("mouseup",po)):(a.addEventListener?($("mousewheel",vo,!1),$("wheel",vo,!1),$("MozMousePixelScroll",vo,!1)):a.detachEvent("onmousewheel",vo),At().removeEventListener("mousedown",ho),At().removeEventListener("mouseup",po))}function vo(n){var t=(new Date).getTime(),e=b(m(".fp-completely")[0],"fp-normal-scroll"),i=function(n,t){(new Date).getTime();var e=mn().B&&n.getBoundingClientRect().bottom>=0&&"up"===bi._n(),i=mn().Kn;if(i)return _(t),!1;if(mn().B){if(e){var o;if(!(i||ki("isNewKeyframe","beyondFullpage")&&bi.Un()))return(o=Nt(un(mn().I).item.offsetTop+un(mn().I).item.offsetHeight)).element.scrollTo(0,o.options),gn({Kn:!1}),_(t),!1;if(bi.Un())return e=!1,gn({Kn:!0}),gn({N:"wheel"}),Ti(),_(t),!1}else ki("set","beyondFullpage",1e3);if(!i&&!e)return!0}}(At(),n);if(pn.Z||gn({J:!1,Z:!0,Y:"none"}),!pe().m.down&&!pe().m.up)return!1;if(i)return!0;if(!1===i)return _(n),!1;if(xt().autoScrolling&&!Ri&&!e){var o=(n=n||r.event).wheelDelta||-n.deltaY||-n.detail,a=Math.max(-1,Math.min(1,o)),u=void 0!==n.wheelDeltaX||void 0!==n.deltaX,l=Math.abs(n.wheelDeltaX)0?"up":"none";fo.length>149&&fo.shift(),fo.push(Math.abs(o)),xt().scrollBar&&_(n);var f=t-co;return co=t,f>200&&(fo=[]),gn({X:c}),pn.G&&ln(fo,10)>=ln(fo,70)&&l&&(gn({N:"wheel"}),Ei(a<0?"down":"up")),!1}xt().fitToSection&&gn({q:!1})}function ho(n){var t;2==n.which&&(t=n.pageY,Li=t,At().addEventListener("mousemove",Di))}function po(n){2==n.which&&At().removeEventListener("mousemove",Di)}function go(n){n?(so(!0),function(){if(Wi.qn&&(u||c)){xt().autoScrolling&&($t.removeEventListener(Wi.qn,Gi,{passive:!1}),$t.addEventListener(Wi.qn,Gi,{passive:!1}));var n=xt().touchWrapper;n.removeEventListener(Wi.Gn,_i),n.removeEventListener(Wi.qn,Vi,{passive:!1}),n.addEventListener(Wi.Gn,_i),n.addEventListener(Wi.qn,Vi,{passive:!1})}}()):(so(!1),function(){if(Wi.qn&&(u||c)){xt().autoScrolling&&($t.removeEventListener(Wi.qn,Vi,{passive:!1}),$t.removeEventListener(Wi.qn,Gi,{passive:!1}));var n=xt().touchWrapper;n.removeEventListener(Wi.Gn,_i),n.removeEventListener(Wi.qn,Vi,{passive:!1})}}())}s.setMouseWheelScrolling=so;var mo=!0;function wo(){["mouseenter","touchstart","mouseleave","touchend"].forEach((function(n){$(n,yo,!0)}))}function bo(n,t){document["fp_"+n]=t,q(n,yo,!0)}function yo(n){var t=n.type,e=!1,i="mouseleave"===t?n.toElement||n.relatedTarget:n.target;i!=document&&i?("touchend"===t&&(mo=!1,setTimeout((function(){mo=!0}),800)),("mouseenter"!==t||mo)&&(xt().normalScrollElements.split(",").forEach((function(n){if(!e){var t=J(i,n),o=N(i,n);(t||o)&&(s.shared.Qn||go(!1),s.shared.Qn=!0,e=!0)}})),!e&&s.shared.Qn&&(go(!0),s.shared.Qn=!1))):go(!0)}function So(n,t){qt(0,"internal"),no(n,t),qt(kt().scrollingSpeed,"internal")}hn.D(An,(function(){xt().normalScrollElements&&(["mouseenter","touchstart"].forEach((function(n){bo(n,!1)})),["mouseleave","touchend"].forEach((function(n){bo(n,!0)}))),hn.D(xn,wo)})),s.silentMoveTo=So;var To,Mo,Ao=y(),xo=S(),ko=!1;function Oo(){clearTimeout(To),clearTimeout(Mo),Y("resize",jo)}function jo(){ko||(xt().autoScrolling&&!xt().scrollBar||!xt().fitToSection)&&Do(y()),pn.an&&function(){if(u)for(var n=0;n<4;n++)Mo=setTimeout((function(){window.requestAnimationFrame((function(){xt().autoScrolling&&!xt().scrollBar&&(gn({V:!0}),So(pn.C.index()+1),gn({V:!1}))}))}),200*n)}(),ko=!0,clearTimeout(To),To=setTimeout((function(){!function(){if(gn({V:!0}),Do(""),xt().autoScrolling||pn.B||function(){if(!xt().autoScrolling||xt().scrollBar){var n=.01*r.innerHeight;a.documentElement.style.setProperty("--vh","".concat(n,"px"))}}(),hn.R(kn),ti(),Ie(),u){var n=a.activeElement;if(!J(n,"textarea")&&!J(n,"input")&&!J(n,"select")){var t=y();Math.abs(t-Ao)>20*Math.max(Ao,t)/100&&(Lo(!0),Ao=t)}}else e=y(),i=S(),pn.en===e&&xo===i||(gn({en:e}),xo=i,Lo(!0));var e,i;gn({V:!1})}(),ko=!1}),400)}function Lo(n){if(!b(At(),qn)){gn({V:!0,en:y(),Jn:S()});for(var t=mn().I,e=0;e1&&Ye(o,i.activeSlide.item)}xt().scrollOverflow&&Ge.Sn();var a=mn().C.index();pn.B||a&&So(a+1),gn({V:!1}),X(xt().afterResize)&&n&&xt().afterResize.call(At(),r.innerWidth,r.innerHeight),X(xt().afterReBuild)&&!n&&xt().afterReBuild.call(At()),Q(At(),"afterRebuild")}}function Do(n){var t=""===n?"":n+"px";mn().I.forEach((function(n){T(n.item,{height:t})}))}function Eo(){var n,t,e=r.location.hash;if(e.length){var i=e.replace("#","").split("/"),o=e.indexOf("#/")>-1;n=o?"/"+i[1]:decodeURIComponent(i[0]);var a=o?i[2]:i[1];a&&a.length&&(t=decodeURIComponent(a))}return{section:n,pn:t}}function Ro(){Y("hashchange",Po)}function Po(){if(!pn.U&&!xt().lockAnchors){var n=Eo(),t=n.section,e=n.pn,i=void 0===pn._,o=void 0===pn._&&void 0===e&&!pn.W;t&&t.length&&(t&&t!==pn._&&!i||o||!pn.W&&pn.K!=e)&&hn.R(jn,{Xn:t,slideAnchor:e})}}function Fo(n){var t=n.target;N(t,xt().menu+" [data-menuanchor]")&&zo.call(t,n.e)}function zo(n){if(gn({N:"menu"}),m(xt().menu)[0]&&(xt().lockAnchors||!xt().anchors.length)){_(n);var t=N(this,"[data-menuanchor]");hn.R(Dn,{anchor:K(t,"data-menuanchor")})}}function Io(n){var t=n.target;t&&N(t,"#fp-nav a")?Te.call(t,n.e):J(t,".fp-tooltip")?ye.call(t):(J(t,dt)||null!=N(t,dt))&&ve.call(t,n.e)}s.reBuild=Lo,hn.D(An,(function(){jo(),G("resize",jo),hn.D(xn,Oo)})),s.setLockAnchors=function(n){xt().lockAnchors=n},hn.D(An,(function(){G("hashchange",Po),hn.D(xn,Ro)})),hn.D(An,(function(){q("wheel",bi.Vn,hi()),hn.D(Pn,yi),hn.D(Ln,Si)})),hn.D(An,(function(){hn.D(bn,Fo)})),hn.D(An,(function(){hn.D(bn,Io)}));var Co,No,Bo=0;function Ho(n){var t,e,i,o,r;if(!pn.V&&mn().C&&(un(mn().I),!mn().B&&!mn().Kn&&(!xt().autoScrolling||xt().scrollBar))){var a=V(),u=function(n){var t=n>Bo?"down":"up";return Bo=n,gn({tn:n}),t}(a),l=0,c=a+y()/2,f=$t.scrollHeight-y()===a,s=mn().I;if(gn({scrollY:a}),f)l=s.length-1;else if(a)for(var v=0;v=V()+y():o<=V())&&(b(mn().C.item,Xn)||(E(mn().C.item,Xn),R(U(mn().C.item),Xn))),e=(t=s[l]).item,!t.isActive){gn({U:!0});var d,h,p=mn().C.item,g=mn().C.index()+1,m=Wt(mn().C,e),w=t.anchor,S=t.index()+1,T=t.activeSlide,M={C:p,sectionIndex:S-1,anchorLink:w,element:e,leavingSection:g,direction:m,items:{origin:mn().C,destination:t}};T&&(h=T.anchor,d=T.index()),pn.G&&(E(e,$n),R(U(e),$n),X(xt().beforeLeave)&&Ee("beforeLeave",M),X(xt().onLeave)&&ne("onLeave",M),X(xt().afterLoad)&&ne("afterLoad",M),ie(p),re(t),te(e),Me(w,S-1),xt().anchors.length&&gn({_:w}),ti(),ce(d,h,w)),clearTimeout(Co),Co=setTimeout((function(){gn({U:!1})}),100)}xt().fitToSection&&pn.G&&(clearTimeout(No),No=setTimeout((function(){pn.I.filter((function(n){var t=n.item.getBoundingClientRect();return Math.round(t.bottom)===Math.round(y())||0===Math.round(t.top)})).length||ze()}),xt().fitToSectionDelay))}}function Wo(n){var t=n.items.destination.activeSlide;gn({scrollX:t?Math.round(t.offsetLeft):0})}function Vo(n){var t=xt().skipIntermediateItems,e=n.items.origin.ln?"sections":"slides",i=Math.abs(n.items.origin.index()-n.items.destination.index())>1;(!0===t||t===e)&&i&&qt(0,"internal")}function Uo(n){xt().skipIntermediateItems&&Ot("scrollingSpeed",kt().scrollingSpeed,"internal")}function _o(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){he(n,t,"k")})):(he(n,"all","k"),xt().keyboardScrolling=n)}function Ko(n){var t=n.index();void 0!==xt().anchors[t]&&n.isActive&&Me(xt().anchors[t],t),xt().menu&&xt().css3&&null!=N(m(xt().menu)[0],Un)&&m(xt().menu).forEach((function(n){$t.appendChild(n)}))}function qo(){var n,t,e=mn().C,i=mn().C.item;E(i,Xn),re(mn().C),be(),te(i),t=Qi((n=Eo()).section),n.section&&t&&(void 0===t||t.index()!==k(We))||!X(xt().afterLoad)||ne("afterLoad",{C:i,element:i,direction:null,anchorLink:e.anchor,sectionIndex:e.index(),items:{origin:mn().C,destination:mn().C}}),X(xt().afterRender)&&ne("afterRender")}function Go(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){he(n,t,"m")})):he(n,"all","m")}function $o(){var n=Eo(),t=n.section,e=n.pn;t?xt().animateAnchor?Zi(t,e):So(t,e):hn.R(wn,null)}function Yo(){ei(),ti(),xt().scrollBar=xt().scrollBar||xt().hybrid,jt(),function(){T(fn(At(),"body"),{height:"100%",position:"relative"}),E(At(),Vn),E(Yt,Gn),gn({en:y()}),R(At(),qn),li();for(var n=mn().sn,t=0;t0&&ci(e)}xt().fixedElements&&xt().css3&&m(xt().fixedElements).forEach((function(n){$t.appendChild(n)})),xt().navigation&&Se(),m('iframe[src*="youtube.com/embed/"]',At()).forEach((function(n){var t,e;e=K(t=n,"src"),t.setAttribute("src",e+(/\?/.test(e)?"&":"?")+"enablejsapi=1")})),xt().scrollOverflow&&Ge.Sn()}(),Go(!0),go(!0),we(xt().autoScrolling,"internal"),Ie(),ue(),"complete"===a.readyState&&$o(),G("load",$o),qo(),ei(),ti()}function Xo(){var n=xt().licenseKey;""===xt().licenseKey.trim()?(h("error","Fullpage.js requires a `licenseKey` option. Read about it on the following website:"),h("error","https://alvarotrigo.com/fullPage/docs/#licensekey")):xt()&&pn.Zn||a.domain.indexOf("alvarotrigo.com")>-1?n&&n.length:(h("error","Incorrect `licenseKey`. Get one for fullPage.js version 4 here:"),h("error","https://alvarotrigo.com/fullPage/pricing")),b(Yt,Gn)?h("error","Fullpage.js can only be initialized once and you are doing it multiple times!"):(xt().continuousVertical&&(xt().loopTop||xt().loopBottom)&&(xt().continuousVertical=!1,h("warn","Option `loopTop/loopBottom` is mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),!xt().scrollOverflow||!xt().scrollBar&&xt().autoScrolling||h("warn","Options scrollBar:true and autoScrolling:false are mutually exclusive with scrollOverflow:true. Sections with scrollOverflow might not work well in Firefox"),!xt().continuousVertical||!xt().scrollBar&&xt().autoScrolling||(xt().continuousVertical=!1,h("warn","Scroll bars (`scrollBar:true` or `autoScrolling:false`) are mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),v.forEach((function(n){xt()[n]&&h("warn","fullpage.js extensions require fullpage.extensions.min.js file instead of the usual fullpage.js. Requested: "+n)})),xt().anchors.forEach((function(n){var t=[].slice.call(m("[name]")).filter((function(t){return K(t,"name")&&K(t,"name").toLowerCase()==n.toLowerCase()})),e=[].slice.call(m("[id]")).filter((function(t){return K(t,"id")&&K(t,"id").toLowerCase()==n.toLowerCase()}));if(e.length||t.length){h("error","data-anchor tags can not have the same value as any `id` element on the site (or `name` element for IE).");var i=e.length?"id":"name";(e.length||t.length)&&h("error",'"'+n+'" is is being used by another element `'+i+"` property")}})))}function Qo(n,t){var e;if($t=m("body")[0],Yt=m("html")[0],Xt=m("html, body"),!b(Yt,Gn))return"touchWrapper",e="string"==typeof n?m(n)[0]:n,bt.touchWrapper=e,function(n){Mt=w({},bt,n),Tt=Object.assign({},Mt)}(t),function(n){yt=n}("string"==typeof n?m(n)[0]:n),hn.R(Tn),Xo(),s.getFullpageData=function(){return{options:xt()}},s.version="4.0.29",s.test=Object.assign(s.test,{top:"0px",hn:"translate3d(0px, 0px, 0px)",Hn:function(){for(var n=[],t=0;t-1?"".concat(n,": 0;"):"",e='\n \n "),i=un(pn.I),o=!pn.Zn||xt().credits.enabled;i&&i.item&&o&&i.item.insertAdjacentHTML("beforeend",e)})),function(){hn.D(Tn,(function(){var t,u,l;gn({Zn:(xt().licenseKey,t=xt().licenseKey,u=function(t){var e=parseInt("514").toString(16);if(!t||t.length<29||4===t.split(n[0]).length)return null;var i=["Each","for"][o()]().join(""),u=t[["split"]]("-"),l=[];u[i]((function(n,t){if(t<4){var i=function(n){var t=n[n.length-1],e=["NaN","is"][o()]().join("");return window[e](t)?r(t):function(n){return n-$n.length}(t)}(n);l.push(i);var a=r(n[i]);if(1===t){var u=["pa","dS","t","art"].join("");a=a.toString()[u](2,"0")}e+=a,0!==t&&1!==t||(e+="-")}}));var c=0,f="";return t.split("-").forEach((function(n,t){if(t<4){for(var e=0,i=0;i<4;i++)i!==l[t]&&(e+=Math.abs(r(n[i])),isNaN(n[i])||c++);var o=a(e);f+=o}})),f+=a(c),{tt:new Date(e+"T00:00"),et:e.split("-")[2]===8*($n.length-2)+"",it:f}}(t),l=function(n){var t=i[o()]().join("");return n&&0===t.indexOf(n)&&n.length===t.length}(t)||function(n){return new RegExp("^(?=.*?[A-Y])(?=.*?[a-y])(?=.*?[0-8])(?=.*?[#?!@$%^&*-]).{8,}$").test(n)}(t),(u||l)&&(u&&e<=u.tt&&u.it===t.split(n[0])[4]||l||u.et)||!1)})}));var n=["-"],t="2024-8-6".split("-"),e=new Date(t[0],t[1],t[2]),i=["se","licen","-","v3","l","gp"];function o(){return[["re","verse"].join("")]["".length]}function r(n){return n?isNaN(n)?n.charCodeAt(0)-72:n:""}function a(n){var t=72+n;return t>90&&t<97&&(t+=15),String.fromCharCode(t).toUpperCase()}}(),hn.D(Fn,Vo),hn.D(Cn,Uo),hn.D(zn,Vo),hn.D(Nn,Uo),hn.D(Mn,(function(){_o(!0)})),s.setKeyboardScrolling=_o,s.shared.nt=qo,s.setAllowScrolling=Go,s.destroy=function(n){we(!1,"internal"),Go(!0),go(!1),_o(!1),E(At(),qn),hn.R(xn),n&&(Kt(0),m("img[data-src], source[data-src], audio[data-src], iframe[data-src]",At()).forEach((function(n){cn(n,"src")})),m("img[data-srcset]").forEach((function(n){cn(n,"srcset")})),tn(m("#fp-nav, .fp-slidesNav, .fp-controlArrow")),T(Et(mn().I),{height:"","background-color":"",padding:""}),T(Et(mn().slides),{width:""}),T(At(),{height:"",position:"","-ms-touch-action":"","touch-action":""}),T(Xt,{overflow:"",height:""}),R(Yt,Gn),R($t,_n+" fp-scrollable"),$t.className.split(/\s+/).forEach((function(n){0===n.indexOf("fp-viewing")&&R($t,n)})),Et(mn().dn).forEach((function(n){xt().scrollOverflow&&Ge.Cn(n),R(n,"fp-table active fp-completely "+st);var t=K(n,"data-fp-styles");t&&n.setAttribute("style",t),b(n,Qn)&&!St&&n.removeAttribute("data-anchor")})),Vt(At()),[Zn,ut,rt].forEach((function(n){m(n,At()).forEach((function(n){C(n)}))})),T(At(),{"-webkit-transition":"none",transition:"none"}),R(At(),Vn),r.scrollTo(0,0),[Qn,tt,at].forEach((function(n){R(m("."+n),n)})))},r.fp_easings=w(r.fp_easings,{easeInOutCubic:function(n,t,e,i){return(n/=i/2)<1?e/2*n*n*n+t:e/2*((n-=2)*n*n+2)+t}}),r.jQuery&&function(n,t){n&&t?n.fn.fullpage=function(e){e=n.extend({},e,{$:n}),new t(this[0],e),Object.keys(s).forEach((function(n){xt().$.fn.fullpage[n]=s[n]}))}:h("error","jQuery is required to use the jQuery fullpage adapter!")}(r.jQuery,Qo),Qo})); +!function(n,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(n="undefined"!=typeof globalThis?globalThis:n||self).fullpage=t()}(this,(function(){"use strict";var n,t,e,i;Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(n){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),e=t.length>>>0;if("function"!=typeof n)throw new TypeError("predicate must be a function");for(var i=arguments[1],o=0;o0?1:-1)*Math.floor(Math.abs(t)):t}(n);return Math.min(Math.max(t,0),e)},function(n){var e=this,o=Object(n);if(null==n)throw new TypeError("Array.from requires an array-like object - not null or undefined");var r,a=arguments.length>1?arguments[1]:void 0;if(void 0!==a){if(!t(a))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(r=arguments[2])}for(var u,l=i(o.length),c=t(e)?Object(new e(l)):new Array(l),f=0;f0||navigator.maxTouchPoints,f=!!window.MSInputMethodContext&&!!document.documentMode,s={test:{},shared:{}},v=["parallax","scrollOverflowReset","dragAndMove","offsetSections","fadingEffect","responsiveSlides","continuousHorizontal","interlockedSlides","scrollHorizontally","resetSliders","cards","dropEffect","waterEffect"],d=(o=window.self!==window.top,function(){return o});function h(n,t){r.console&&r.console[n]&&r.console[n]("fullPage: "+t)}function p(n){return"none"!==r.getComputedStyle(n).display}function g(n){return Array.from(n).filter((function(n){return p(n)}))}function m(n,t){return(t=arguments.length>1?t:document)?t.querySelectorAll(n):null}function w(n){n=n||{};for(var t=1,e=arguments.length;t>=0,t=String(void 0!==t?t:" "),this.length>n?String(this):((n-=this.length)>t.length&&(t+=Array.apply(null,Array(n)).map((function(){return t})).join("")),t.slice(0,n)+String(this))}),window.fp_utils={$:m,deepExtend:w,hasClass:b,getWindowHeight:y,css:T,prev:M,next:A,last:x,index:k,getList:O,hide:j,show:L,isArrayOrList:D,addClass:E,removeClass:R,appendTo:P,wrap:F,wrapAll:z,unwrap:C,closest:N,after:B,before:H,insertBefore:W,getScrollTop:V,siblings:U,preventDefault:_,isFunction:X,trigger:Q,matches:J,toggle:Z,createElementFromHTML:nn,remove:tn,untilAll:en,nextAll:on,prevAll:rn,showError:h};var vn=Object.freeze({__proto__:null,showError:h,isVisible:p,o:g,$:m,deepExtend:w,hasClass:b,getWindowHeight:y,u:S,css:T,prev:M,next:A,last:x,index:k,getList:O,hide:j,show:L,isArrayOrList:D,addClass:E,removeClass:R,appendTo:P,wrap:F,wrapAll:z,l:I,unwrap:C,closest:N,after:B,before:H,insertBefore:W,getScrollTop:V,siblings:U,preventDefault:_,v:K,h:q,p:G,g:$,S:Y,isFunction:X,trigger:Q,matches:J,toggle:Z,createElementFromHTML:nn,remove:tn,untilAll:en,nextAll:on,prevAll:rn,toArray:an,T:un,M:ln,A:cn,O:fn,j:sn});function dn(n){return dn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(n){return typeof n}:function(n){return n&&"function"==typeof Symbol&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},dn(n)}var hn={L:{},D:function(n,t){var e=this;return"object"!==dn(this.L[n])&&(this.L[n]=[]),this.L[n].push(t),function(){return e.removeListener(n,t)}},removeListener:function(n,t){if("object"===dn(this.L[n])){var e=this.L[n].indexOf(t);e>-1&&this.L[n].splice(e,1)}},R:function(n){for(var t=this,e=arguments.length,i=new Array(e>1?e-1:0),o=1;o','
        '],controlArrowColor:"#fff",verticalCentered:!0,sectionsColor:[],paddingTop:0,paddingBottom:0,fixedElements:null,responsive:0,responsiveWidth:0,responsiveHeight:0,responsiveSlides:!1,parallax:!1,parallaxOptions:{type:"reveal",percentage:62,property:"translate"},cards:!1,cardsOptions:{perspective:100,fadeContent:!0,fadeBackground:!0},sectionSelector:".section",slideSelector:".slide",afterLoad:null,beforeLeave:null,onLeave:null,afterRender:null,afterResize:null,afterReBuild:null,afterSlideLoad:null,onSlideLeave:null,afterResponsive:null,onScrollOverflow:null,lazyLoading:!0,lazyLoadThreshold:0,observer:!0,scrollBeyondFullpage:!0},St=null,Tt=!1,Mt=w({},yt),At=null;function xt(n){return St}function kt(){return At||yt}function Ot(){return Mt}function jt(n,t,e){At[n]=t,"internal"!==e&&(Mt[n]=t)}function Lt(){if(!kt().anchors.length){var n=m(kt().sectionSelector.split(",").join("[data-anchor],")+"[data-anchor]",St);n.length&&n.length===m(kt().sectionSelector,St).length&&(Tt=!0,n.forEach((function(n){kt().anchors.push(K(n,"data-anchor").toString())})))}if(!kt().navigationTooltips.length){var t=m(kt().sectionSelector.split(",").join("[data-tooltip],")+"[data-tooltip]",St);t.length&&t.forEach((function(n){kt().navigationTooltips.push(K(n,"data-tooltip").toString())}))}}var Dt=function(n){this.anchor=n.anchor,this.item=n.item,this.index=n.index(),this.isLast=this.index===n.item.parentElement.querySelectorAll(n.selector).length-1,this.isFirst=!this.index,this.isActive=n.isActive},Et=function(n,t){this.parent=this.parent||null,this.selector=t,this.anchor=K(n,"data-anchor")||kt().anchors[k(n,kt().sectionSelector)],this.item=n,this.isVisible=p(n),this.isActive=b(n,Yn),this.un=b(n,ft)||null!=m(st,n)[0],this.ln=t===kt().sectionSelector,this.cn=N(n,lt)||N(n,Un),this.index=function(){return this.siblings().indexOf(this)}};function Rt(n){return n.map((function(n){return n.item}))}function Pt(n,t){return n.find((function(n){return n.item===t}))}Et.prototype.siblings=function(){return this.ln?this.isVisible?pn.I:pn.sn:this.parent?this.parent.slides:0},Et.prototype.prev=function(){var n=this.siblings(),t=(this.ln?n.indexOf(this):this.parent.slides.indexOf(this))-1;return t>=0?n[t]:null},Et.prototype.next=function(){var n=this.siblings(),t=(this.ln?n.indexOf(this):this.parent.slides.indexOf(this))+1;return ti?"up":"down"}function Ut(n){return E(n,qn)}function _t(n){return{"-webkit-transform":n,"-moz-transform":n,"-ms-transform":n,transform:n}}function Kt(n,t){t?Wt(xt()):Ut(xt()),clearTimeout(Ft),T(xt(),_t(n)),s.test.hn=n,Ft=setTimeout((function(){R(xt(),qn)}),10)}function qt(n){var t=Math.round(n);if(kt().css3&&kt().autoScrolling&&!kt().scrollBar)Kt("translate3d(0px, -"+t+"px, 0px)",!1);else if(kt().autoScrolling&&!kt().scrollBar)T(xt(),{top:-t+"px"}),s.test.top=-t+"px";else{var e=Bt(t);Ht(e.element,e.options)}}function Gt(n,t){jt("scrollingSpeed",n,t)}s.setScrollingSpeed=Gt;var $t,Yt=null,Xt=null,Qt=null;function Jt(n,t,e,i){var o,a=function(n){return n.self!=r&&b(n,rt)?n.scrollLeft:!kt().autoScrolling||kt().scrollBar?V():n.offsetTop}(n),u=t-a,l=!1,c=pn.q;gn({q:!0}),$t&&window.cancelAnimationFrame($t),$t=function(f){o||(o=f);var s=Math.floor(f-o);if(pn.q){var v=t;e&&(v=r.fp_easings[kt().easing](s,a,u,e)),s<=e&&Ht(n,v),s0,r=i>2&&i'+de(r.index(),"Section")+"";var l=kt().navigationTooltips[r.index()];void 0!==l&&""!==l&&(i+='
        '+l+"
        "),i+=""}m("ul",e)[0].innerHTML=i;var c=m("li",m(tt)[0])[mn().C.index()];E(m("a",c),Yn)}function Ae(n){n.preventDefault&&_(n),gn({N:"verticalNav"});var t=k(N(this,"#fp-nav li"));hn.R(En,{destination:mn().I[t]})}function xe(n,t){var e;e=n,kt().menu&&kt().menu.length&&m(kt().menu).forEach((function(n){null!=n&&(R(m(Xn,n),Yn),E(m('[data-menuanchor="'+e+'"]',n),Yn))})),function(n,t){var e=m(tt)[0];kt().navigation&&null!=e&&"none"!==e.style.display&&(R(m(Xn,e),Yn),E(n?m('a[href="#'+n+'"]',e):m("a",m("li",e)[t]),Yn))}(n,t)}pe.m={up:!0,down:!0,left:!0,right:!0},pe.k=w({},pe.m),hn.D(bn,(function(n){var t=n.target;(J(t,gt)||N(t,gt))&&we.call(t,n)})),s.setRecordHistory=be,s.setAutoScrolling=ye,s.test.setAutoScrolling=ye,(new Date).getTime();var ke,Oe,je,Le,De,Ee,Re=(Oe=!0,je=(new Date).getTime(),Le=!r.fullpage_api,function(n,t){var e=(new Date).getTime(),i="wheel"===n?kt().scrollingSpeed:100;return Oe=Le||e-je>=i,Le=!r.fullpage_api,Oe&&(ke=t(),je=e),void 0===ke||ke});function Pe(n,t){if(X(kt().beforeLeave))return Re(mn().N,(function(){return te(n,t)}))}function Fe(n,t,e){var i=n.item;if(null!=i){var o,r,a=function(n){var t=n.offsetHeight,e=n.offsetTop,i=e,o=e>pn.tn,r=i-y()+t,a=kt().bigSectionsDestination;return t>y()?(o||a)&&"bottom"!==a||(i=r):(o||pn.V&&null==A(n))&&(i=r),gn({tn:i}),i}(i),u={element:i,callback:t,isMovementUp:e,dtop:a,yMovement:Vt(mn().C,i),anchorLink:n.anchor,sectionIndex:n.index(),activeSlide:n.activeSlide?n.activeSlide.item:null,leavingSection:mn().C.index()+1,localIsResizing:pn.V,items:{origin:mn().C,destination:n},direction:null};if(!(mn().C.item==i&&!pn.V||kt().scrollBar&&V()===u.dtop&&!b(i,"fp-auto-height"))){if(null!=u.activeSlide&&(o=K(u.activeSlide,"data-anchor"),r=k(u.activeSlide,null)),!u.localIsResizing){var l=u.yMovement;if(void 0!==e&&(l=e?"up":"down"),u.direction=l,X(kt().beforeLeave)&&!1===Pe("beforeLeave",u))return;if(X(kt().onLeave)&&!te("onLeave",u))return}kt().autoScrolling&&kt().continuousVertical&&void 0!==u.isMovementUp&&(!u.isMovementUp&&"up"==u.yMovement||u.isMovementUp&&"down"==u.yMovement)&&(u=function(n){gn({on:!0});var t=mn().C.item;return n.isMovementUp?H(t,on(t,Zn)):B(t,rn(t,Zn).reverse()),qt(mn().C.item.offsetTop),function(){for(var n=m(ot),t=0;t-1&&!Ye.kn)return _(n),!1},Mn:function(){Ye.xn=pn.G},onLeave:function(){clearTimeout(Ve),Ye.kn=!1},afterLoad:function(){Ye.kn=!1,clearTimeout(Ve),Ve=setTimeout((function(){Ye.xn=pn.G}),200)},En:function(){a.activeElement===this.An&&(this.An.blur(),Ye.kn=!1)},Tn:function(){if(kt().scrollOverflow&&Ye.xn){Ye.En();var n=Ye.Rn(mn().C.item);!n||u||c||(this.An=n,requestAnimationFrame((function(){n.focus({Pn:!0}),Ye.kn=!0}))),Ye.xn=!1}},Sn:function(){kt().scrollOverflowMacStyle&&!l&&E(Yt,"fp-scroll-mac"),mn().dn.forEach((function(n){if(!(n.slides&&n.slides.length||b(n.item,"fp-auto-height-responsive")&&He())){var t,e=Ct(n.item),i=Ye.wn(n.item),o=(t=n).ln?t:t.parent;if(f){var r=i?"addClass":"removeClass";vn[r](o.item,vt),vn[r](n.item,vt)}else E(o.item,vt),E(n.item,vt);n.un||(Ye.Fn(e),Ye.zn(e)),n.un=!0}}))},zn:function(n){Ye.Rn(n).addEventListener("scroll",Ye.In),n.addEventListener("wheel",Ye.Ln,{passive:!1}),n.addEventListener("keydown",Ye.Dn,{passive:!1})},Fn:function(n){var t=document.createElement("div");t.className=ft,I(n,t),t.setAttribute("tabindex","-1")},Cn:function(n){var t=m(st,n)[0];t&&(C(t),n.removeAttribute("tabindex"))},Rn:function(n){var t=Ct(n);return m(st,t)[0]||t},un:function(n){return b(n,ft)||null!=m(st,n)[0]},bn:function(n){return n.ln&&n.activeSlide?n.activeSlide.un:n.un},wn:function(n){return Ye.Rn(n).scrollHeight>r.innerHeight},isScrolled:function(n,t){if(!pn.G)return!1;if(kt().scrollBar)return!0;var e=Ye.Rn(t);if(!kt().scrollOverflow||!b(e,ft)||b(t,"fp-noscroll")||b(Ct(t),"fp-noscroll"))return!0;var i=f?1:0,o=e.scrollTop,r="up"===n&&o<=0,a="down"===n&&e.scrollHeight<=Math.ceil(e.offsetHeight+o)+i,u=r||a;return u||"none"===n||(this.On=(new Date).getTime()),u},Nn:function(){this.jn=(new Date).getTime();var n=this.jn-Ye.On,t=(u||c)&&pn.J,e=pn.Z&&n>600;return t&&n>400||e},In:(Ge=0,function(n){var t=n.target.scrollTop,e="none"!==pn.Y?pn.Y:Geo?"left":"right"),l.direction=l.direction?l.direction:l.Bn,l.localIsResizing||gn({G:!1}),kt().onSlideLeave&&!l.localIsResizing&&"none"!==l.Bn&&X(kt().onSlideLeave)&&!1===te("onSlideLeave",l)?gn({W:!1}):(E(t,Yn),R(U(t),Yn),ii(),l.localIsResizing||(re(l.prevSlide),ue(u)),function(n){!kt().loopHorizontal&&kt().controlArrows&&(Z(m(wt,n.section),0!==n.slideIndex),Z(m(bt,n.section),null!=A(n.destiny)))}(l),a.isActive&&!l.localIsResizing&&se(l.slideIndex,l.slideAnchor,l.anchorLink),hn.R(zn,l),function(n,t,e){var i,o,r=t.destinyPos;if(i=t.slidesNav,o=t.slideIndex,kt().slidesNavigation&&null!=i&&(R(m(Xn,i),Yn),E(m("a",m("li",i)[o]),Yn)),gn({scrollX:Math.round(r.left)}),kt().css3){var a="translate3d(-"+Math.round(r.left)+"px, 0px, 0px)";s.test.Hn[t.sectionIndex]=a,T(Wt(m(lt,n)),_t(a)),clearTimeout($e),$e=setTimeout((function(){Ze(t)}),kt().scrollingSpeed)}else s.test.left[t.sectionIndex]=Math.round(r.left),Jt(n,Math.round(r.left),kt().scrollingSpeed,(function(){Ze(t)}))}(n,l))}function Je(){clearTimeout($e)}function Ze(n){n.localIsResizing||(X(kt().afterSlideLoad)&&te("afterSlideLoad",n),gn({G:!0}),ie(n.destiny),hn.R(Nn,n)),gn({W:!1})}function ni(n,t){Gt(0,"internal"),void 0!==t&&gn({V:!0}),Qe(N(n,at),n),void 0!==t&&gn({V:!1}),Gt(Ot().scrollingSpeed,"internal")}s.landscapeScroll=Qe,hn.D(An,(function(){hn.D(Fn,Xe)}));var ti=null,ei=null;function ii(){pn.C=null,pn.I.map((function(n){var t=b(n.item,Yn);n.isActive=t,n.un=Ye.un(n.item),t&&(pn.C=n),n.slides.length&&(n.activeSlide=null,n.slides.map((function(t){var e=b(t.item,Yn);t.un=Ye.un(n.item),t.isActive=e,e&&(n.activeSlide=t)})))})),function(){var n=pn.C,t=!!pn.C&&pn.C.slides.length,e=pn.C?pn.C.activeSlide:null;if(!n&&pn.I.length&&!mn().B&&ti){var i=ai(ti,pn.I);i&&(pn.C=i,pn.C.isActive=!0,E(pn.C.item,Yn)),pn.C&&qt(pn.C.item.offsetTop)}if(t&&!e&&ei){var o=ai(ei,pn.C.slides);o&&(pn.C.activeSlide=o,pn.C.activeSlide.isActive=!0,E(pn.C.activeSlide.item,Yn)),pn.C.activeSlide&&ni(pn.C.activeSlide.item,"internal")}}()}function oi(){var n=m(kt().sectionSelector,xt()),t=g(n),e=Array.from(n).map((function(n){return new ui(n)})),i=e.filter((function(n){return n.isVisible})),o=i.reduce((function(n,t){return n.concat(t.slides)}),[]);ti=ri(pn.C),ei=ri(pn.C?pn.C.activeSlide:null),pn.P=t.length,pn.F=i.reduce((function(n,t){return n+t.slides.length}),0),pn.I=i,pn.sn=e,pn.slides=o,pn.dn=pn.I.concat(pn.slides)}function ri(n){if(!n)return null;var t=n?n.item:null,e=n.ln?pn.sn:pn.C.Wn;if(t){var i=Pt(e,t);return i?i.index():null}return null}function ai(n,t){var e,i=n-1,o=n;do{if(e=t[i]||t[o])break;i-=1,o+=1}while(i>=0||o1&&(kt().controlArrows&&function(n){var t=n.item,e=[nn(kt().controlArrowsHTML[0]),nn(kt().controlArrowsHTML[1])];B(m(at,t)[0],e),E(e,pt),E(e[0],mt),E(e[1],"fp-next"),"#fff"!==kt().controlArrowColor&&(T(m(bt,t),{"border-color":"transparent transparent transparent "+kt().controlArrowColor}),T(m(wt,t),{"border-color":"transparent "+kt().controlArrowColor+" transparent transparent"})),kt().loopHorizontal||j(m(wt,t))}(n),kt().slidesNavigation&&function(n){var t=n.item,e=n.slides.length;P(nn('
          '),t);var i=m(dt,t)[0];E(i,"fp-"+kt().slidesNavPosition);for(var o=0;o'+de(o,"Slide",m(it,t)[o])+""),m("ul",i)[0]);T(i,{"margin-left":"-"+i.innerWidth/2+"px"});var r=n.activeSlide?n.activeSlide.index():0;E(m("a",m("li",i)[r]),Yn)}(n)),i.forEach((function(n){T(n.item,{width:r+"%"}),kt().verticalCentered&&We(n)}));var c=n.activeSlide||null;null!=c&&pn.C&&(0!==pn.C.index()||0===pn.C.index()&&0!==c.index())?ni(c.item,"internal"):E(e[0],Yn)}ci.prototype=Et.prototype,ci.prototype.constructor=ui;var vi={attributes:!1,subtree:!0,childList:!0,characterData:!0};function di(){return g(m(kt().slideSelector,xt())).length!==mn().F}function hi(n){var t=di();(di()||g(m(kt().sectionSelector,xt())).length!==mn().P)&&!pn.on&&(kt().observer&&li&&li.disconnect(),oi(),ii(),kt().anchors=[],tn(m(tt)),fi(),Lt(),kt().navigation&&Me(),t&&(tn(m(dt)),tn(m(gt))),mn().I.forEach((function(n){n.slides.length?t&&si(n):_e(n)}))),kt().observer&&li&&m(Un)[0]&&li.observe(m(Un)[0],vi)}hn.D(An,(function(){var n,t,e;kt().observer&&"MutationObserver"in window&&m(Un)[0]&&(n=m(Un)[0],t=vi,(e=new MutationObserver(hi)).observe(n,t),li=e),hn.D(kn,hi)})),s.render=hi;var pi=function(){var n=!1;try{var t=Object.defineProperty({},"passive",{get:function(){n=!0}});G("testPassive",null,t),Y("testPassive",null,t)}catch(n){}return function(){return n}}();function gi(){return!!pi()&&{passive:!1}}var mi,wi,bi,yi,Si=(bi=(new Date).getTime(),yi=[],{Vn:function(n){var t=(n=n||r.event).wheelDelta||-n.deltaY||-n.detail,e=Math.max(-1,Math.min(1,t)),i=void 0!==n.wheelDeltaX||void 0!==n.deltaX;mi=Math.abs(n.wheelDeltaX)149&&yi.shift(),yi.push(Math.abs(t));var a=o-bi;bi=o,a>200&&(yi=[])},Un:function(){var n=ln(yi,10)>=ln(yi,70);return!!yi.length&&n&&mi},_n:function(){return wi}});function Ti(){var n=kt().css3?V()+y():un(mn().I).item.offsetTop+un(mn().I).item.offsetHeight,t=Bt(n);s.test.top=-n+"px",gn({G:!1}),Jt(t.element,t.options,kt().scrollingSpeed,(function(){setTimeout((function(){gn({B:!0}),gn({G:!0})}),30)}))}function Mi(){xt().getBoundingClientRect().bottom>=0&&Ai()}function Ai(){var n=Bt(un(mn().I).item.offsetTop);gn({G:!1}),Jt(n.element,n.options,kt().scrollingSpeed,(function(){gn({G:!0}),gn({B:!1}),gn({Kn:!1})}))}var xi,ki,Oi,ji=(xi=!1,ki={},Oi={},function(n,t,e){switch(n){case"set":ki[t]=(new Date).getTime(),Oi[t]=e;break;case"isNewKeyframe":var i=(new Date).getTime();xi=i-ki[t]>Oi[t]}return xi});function Li(){var n=mn().C.next();n||!kt().loopBottom&&!kt().continuousVertical||(n=mn().I[0]),null!=n?Fe(n,null,!1):xt().scrollHeightEi&&me().m.down&&Li()),Ei=n.pageY)}function Pi(n){if(me().m[n]){var t="down"===n?Li:Di;kt().scrollOverflow&&Ye.bn(mn().C)?Ye.isScrolled(n,mn().C.item)&&Ye.Nn()&&t():t()}}var Fi,zi,Ii,Ci,Ni=0,Bi=0,Hi=0,Wi=0,Vi=(r.PointerEvent&&(Ci={down:"pointerdown",move:"pointermove"}),Ci),Ui={qn:"ontouchmove"in window?"touchmove":Vi?Vi.move:null,Gn:"ontouchstart"in window?"touchstart":Vi?Vi.down:null};function _i(n){var t=N(n.target,Zn)||mn().C.item,e=Ye.bn(mn().C);if(Ki(n)){gn({J:!0,Z:!1}),kt().autoScrolling&&(e&&!pn.G||kt().scrollBar)&&_(n);var i=$i(n);Hi=i.y,Wi=i.x;var o=Math.abs(Ni-Hi)>r.innerHeight/100*kt().touchSensitivity,a=Math.abs(Bi-Wi)>S()/100*kt().touchSensitivity,u=m(at,t).length&&Math.abs(Bi-Wi)>Math.abs(Ni-Hi),l=Ni>Hi?"down":"up";gn({Y:u?Bi>Wi?"right":"left":l}),u?!pn.W&&a&&(Bi>Wi?me().m.right&&hn.R(Sn,{section:t}):me().m.left&&hn.R(yn,{section:t})):kt().autoScrolling&&pn.G&&o&&Pi(l)}}function Ki(n){return void 0===n.pointerType||"mouse"!=n.pointerType}function qi(n){if(kt().fitToSection&&gn({q:!1}),Ki(n)){var t=$i(n);Ni=t.y,Bi=t.x}G("touchend",Gi)}function Gi(){Y("touchend",Gi),gn({J:!1})}function $i(n){var t={};return t.y=void 0!==n.pageY&&(n.pageY||n.pageX)?n.pageY:n.touches[0].pageY,t.x=void 0!==n.pageX&&(n.pageY||n.pageX)?n.pageX:n.touches[0].pageX,c&&Ki(n)&&kt().scrollBar&&void 0!==n.touches&&(t.y=n.touches[0].pageY,t.x=n.touches[0].pageX),t}function Yi(n){kt().autoScrolling&&Ki(n)&&me().m.up&&(pn.G||_(n))}function Xi(n,t){var e=null==t?mn().C.item:t,i=Pt(pn.I,e),o=m(at,e)[0];if(!(null==o||pn.W||i.slides.length<2)){var r=i.activeSlide,a="left"===n?r.prev():r.next();if(!a){if(!kt().loopHorizontal)return;a="left"===n?un(i.slides):i.slides[0]}gn({W:!s.test.mn}),Qe(o,a.item,n)}}function Qi(n){Xi("left",n)}function Ji(n){Xi("right",n)}function Zi(n){var t=mn().I.filter((function(t){return t.anchor===n}))[0];if(!t){var e=void 0!==n?n-1:0;t=mn().I[e]}return t}function no(n){null!=n&&Qe(N(n,at),n)}function to(n,t){var e=Zi(n);if(null!=e){var i=function(n,t){var e=t.slides.filter((function(t){return t.anchor===n}))[0];return null==e&&(n=void 0!==n?n:0,e=t.slides[n]),e?e.item:null}(t,e);e.anchor&&e.anchor===pn._||b(e.item,Yn)?no(i):Fe(e,(function(){no(i)}))}}function eo(n,t){var e=Zi(n);void 0!==t?to(n,t):null!=e&&Fe(e)}function io(){clearTimeout(zi),$("keydown",oo),$("keyup",ro)}function oo(n){clearTimeout(zi);var t=n.keyCode,e=[37,39].indexOf(t)>-1,i=kt().autoScrolling||kt().fitToSection||e;9===t?function(n){var t=n.shiftKey,e=a.activeElement,i=fo(Ct(mn().C.item));function o(n){return _(n),i[0]?i[0].focus():null}if(pn.G){if(!function(n){var t=fo(a),e=t.indexOf(a.activeElement),i=t[n.shiftKey?e-1:e+1],o=N(i,it),r=N(i,Zn);return!o&&!r}(n)){e?null==N(e,".fp-section.active,.fp-section.active .fp-slide.active")&&(e=o(n)):o(n);var r=e==i[0],u=e==i[i.length-1],l=t&&r;if(l||!t&&u){_(n);var c=function(n){var t,e=n?"prevPanel":"nextPanel",i=[],o=Nt((pn.C&&pn.C.activeSlide?pn.C.activeSlide:pn.C)[e]());do{(i=fo(o.item)).length&&(t={$n:o,Yn:i[n?i.length-1:0]}),o=Nt(o[e]())}while(o&&0===i.length);return t}(l),f=c?c.$n:null;if(f){var s=f.ln?f:f.parent;hn.R(jn,{Xn:s.index()+1,slideAnchor:f.ln?0:f.index()}),Ii=c.Yn,_(n)}}}}else _(n)}(n):!sn()&&kt().keyboardScrolling&&i&&(Fi=n.ctrlKey,zi=setTimeout((function(){!function(n){var t=n.shiftKey,e=a.activeElement,i=J(e,"video")||J(e,"audio"),o=Ye.isScrolled("up",mn().C.item),r=Ye.isScrolled("down",mn().C.item),u=[37,39].indexOf(n.keyCode)>-1;if(function(n){(function(n){return[40,38,32,33,34].indexOf(n.keyCode)>-1&&!pn.B})(n)&&!N(n.target,st)&&n.preventDefault()}(n),pn.G||u)switch(gn({N:"keydown"}),n.keyCode){case 38:case 33:me().k.up&&o?pn.B?hn.R(Ln,{e:n}):Di():Ye.Tn();break;case 32:if(t&&me().k.up&&!i&&o){Di();break}case 40:case 34:if(me().k.down&&r){if(pn.B)return;32===n.keyCode&&i||Li()}else Ye.Tn();break;case 36:me().k.up&&eo(1);break;case 35:me().k.down&&eo(mn().I.length);break;case 37:me().k.left&&Qi();break;case 39:me().k.right&&Ji()}}(n)}),0))}function ro(n){pn.nn&&(Fi=n.ctrlKey)}function ao(){gn({nn:!1}),Fi=!1}function uo(n){co()}function lo(n){N(Ii,it)&&!N(Ii,ot)||co()}function co(){Ii&&(Ii.focus(),Ii=null)}function fo(n){return[].slice.call(m('a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, [tabindex="0"], summary:not([disabled]), [contenteditable]',n)).filter((function(n){return"-1"!==K(n,"tabindex")&&null!==n.offsetParent}))}s.moveSlideLeft=Qi,s.moveSlideRight=Ji,s.moveTo=eo,hn.D(An,(function(){G("blur",ao),q("keydown",oo),q("keyup",ro),hn.D(xn,io),hn.D(Nn,uo),hn.D(Cn,lo)}));var so=(new Date).getTime(),vo=[];function ho(n){n?(function(){var n,t="";r.addEventListener?n="addEventListener":(n="attachEvent",t="on");var e="onwheel"in a.createElement("div")?"wheel":void 0!==a.onmousewheel?"mousewheel":"DOMMouseScroll",i=gi();"DOMMouseScroll"==e?a[n](t+"MozMousePixelScroll",po,i):a[n](t+e,po,i)}(),xt().addEventListener("mousedown",go),xt().addEventListener("mouseup",mo)):(a.addEventListener?($("mousewheel",po,!1),$("wheel",po,!1),$("MozMousePixelScroll",po,!1)):a.detachEvent("onmousewheel",po),xt().removeEventListener("mousedown",go),xt().removeEventListener("mouseup",mo))}function po(n){var t=(new Date).getTime(),e=b(m(".fp-completely")[0],"fp-normal-scroll"),i=function(n,t){(new Date).getTime();var e=mn().B&&n.getBoundingClientRect().bottom>=0&&"up"===Si._n(),i=mn().Kn;if(i)return _(t),!1;if(mn().B){if(e){var o;if(!(i||ji("isNewKeyframe","beyondFullpage")&&Si.Un()))return(o=Bt(un(mn().I).item.offsetTop+un(mn().I).item.offsetHeight)).element.scrollTo(0,o.options),gn({Kn:!1}),_(t),!1;if(Si.Un())return e=!1,gn({Kn:!0}),gn({N:"wheel"}),Ai(),_(t),!1}else ji("set","beyondFullpage",1e3);if(!i&&!e)return!0}}(xt(),n);if(pn.Z||gn({J:!1,Z:!0,Y:"none"}),!me().m.down&&!me().m.up)return!1;if(i)return!0;if(!1===i)return _(n),!1;if(kt().autoScrolling&&!Fi&&!e){var o=(n=n||r.event).wheelDelta||-n.deltaY||-n.detail,a=Math.max(-1,Math.min(1,o)),u=void 0!==n.wheelDeltaX||void 0!==n.deltaX,l=Math.abs(n.wheelDeltaX)0?"up":"none";vo.length>149&&vo.shift(),vo.push(Math.abs(o)),kt().scrollBar&&_(n);var f=t-so;return so=t,f>200&&(vo=[]),gn({X:c}),pn.G&&ln(vo,10)>=ln(vo,70)&&l&&(gn({N:"wheel"}),Pi(a<0?"down":"up")),!1}kt().fitToSection&&gn({q:!1})}function go(n){var t;2==n.which&&(t=n.pageY,Ei=t,xt().addEventListener("mousemove",Ri))}function mo(n){2==n.which&&xt().removeEventListener("mousemove",Ri)}function wo(n){n?(ho(!0),function(){if(Ui.qn&&(u||c)){kt().autoScrolling&&(Yt.removeEventListener(Ui.qn,Yi,{passive:!1}),Yt.addEventListener(Ui.qn,Yi,{passive:!1}));var n=kt().touchWrapper;n.removeEventListener(Ui.Gn,qi),n.removeEventListener(Ui.qn,_i,{passive:!1}),n.addEventListener(Ui.Gn,qi),n.addEventListener(Ui.qn,_i,{passive:!1})}}()):(ho(!1),function(){if(Ui.qn&&(u||c)){kt().autoScrolling&&(Yt.removeEventListener(Ui.qn,_i,{passive:!1}),Yt.removeEventListener(Ui.qn,Yi,{passive:!1}));var n=kt().touchWrapper;n.removeEventListener(Ui.Gn,qi),n.removeEventListener(Ui.qn,_i,{passive:!1})}}())}s.setMouseWheelScrolling=ho;var bo=!0;function yo(){["mouseenter","touchstart","mouseleave","touchend"].forEach((function(n){$(n,To,!0)}))}function So(n,t){document["fp_"+n]=t,q(n,To,!0)}function To(n){var t=n.type,e=!1,i="mouseleave"===t?n.toElement||n.relatedTarget:n.target;i!=document&&i?("touchend"===t&&(bo=!1,setTimeout((function(){bo=!0}),800)),("mouseenter"!==t||bo)&&(kt().normalScrollElements.split(",").forEach((function(n){if(!e){var t=J(i,n),o=N(i,n);(t||o)&&(s.shared.Qn||wo(!1),s.shared.Qn=!0,e=!0)}})),!e&&s.shared.Qn&&(wo(!0),s.shared.Qn=!1))):wo(!0)}function Mo(n,t){Gt(0,"internal"),eo(n,t),Gt(Ot().scrollingSpeed,"internal")}hn.D(An,(function(){kt().normalScrollElements&&(["mouseenter","touchstart"].forEach((function(n){So(n,!1)})),["mouseleave","touchend"].forEach((function(n){So(n,!0)}))),hn.D(xn,yo)})),s.silentMoveTo=Mo;var Ao,xo,ko=y(),Oo=S(),jo=!1;function Lo(){clearTimeout(Ao),clearTimeout(xo),Y("resize",Do)}function Do(){jo||(kt().autoScrolling&&!kt().scrollBar||!kt().fitToSection)&&Ro(y()),pn.an&&function(){if(u)for(var n=0;n<4;n++)xo=setTimeout((function(){window.requestAnimationFrame((function(){kt().autoScrolling&&!kt().scrollBar&&(gn({V:!0}),Mo(pn.C.index()+1),gn({V:!1}))}))}),200*n)}(),jo=!0,clearTimeout(Ao),Ao=setTimeout((function(){!function(){if(gn({V:!0}),Ro(""),kt().autoScrolling||pn.B||function(){if(!kt().autoScrolling||kt().scrollBar){var n=.01*r.innerHeight;a.documentElement.style.setProperty("--vh","".concat(n,"px"))}}(),hn.R(kn),ii(),Ne(),u){var n=a.activeElement;if(!J(n,"textarea")&&!J(n,"input")&&!J(n,"select")){var t=y();Math.abs(t-ko)>20*Math.max(ko,t)/100&&(Eo(!0),ko=t)}}else e=y(),i=S(),pn.en===e&&Oo===i||(gn({en:e}),Oo=i,Eo(!0));var e,i;gn({V:!1})}(),jo=!1}),400)}function Eo(n){if(!b(xt(),Gn)){gn({V:!0,en:y(),Jn:S()});for(var t=mn().I,e=0;e1&&Qe(o,i.activeSlide.item)}kt().scrollOverflow&&Ye.Sn();var a=mn().C.index();pn.B||a&&Mo(a+1),gn({V:!1}),X(kt().afterResize)&&n&&kt().afterResize.call(xt(),r.innerWidth,r.innerHeight),X(kt().afterReBuild)&&!n&&kt().afterReBuild.call(xt()),Q(xt(),"afterRebuild")}}function Ro(n){var t=""===n?"":n+"px";mn().I.forEach((function(n){T(n.item,{height:t})}))}function Po(){var n,t,e=r.location.hash;if(e.length){var i=e.replace("#","").split("/"),o=e.indexOf("#/")>-1;n=o?"/"+i[1]:decodeURIComponent(i[0]);var a=o?i[2]:i[1];a&&a.length&&(t=decodeURIComponent(a))}return{section:n,pn:t}}function Fo(){Y("hashchange",zo)}function zo(){if(!pn.U&&!kt().lockAnchors){var n=Po(),t=n.section,e=n.pn,i=void 0===pn._,o=void 0===pn._&&void 0===e&&!pn.W;t&&t.length&&(t&&t!==pn._&&!i||o||!pn.W&&pn.K!=e)&&hn.R(jn,{Xn:t,slideAnchor:e})}}function Io(n){var t=n.target;N(t,kt().menu+" [data-menuanchor]")&&Co.call(t,n.e)}function Co(n){if(gn({N:"menu"}),m(kt().menu)[0]&&(kt().lockAnchors||!kt().anchors.length)){_(n);var t=N(this,"[data-menuanchor]");hn.R(Dn,{anchor:K(t,"data-menuanchor")})}}function No(n){var t=n.target;t&&N(t,"#fp-nav a")?Ae.call(t,n.e):J(t,".fp-tooltip")?Te.call(t):(J(t,ht)||null!=N(t,ht))&&he.call(t,n.e)}s.reBuild=Eo,hn.D(An,(function(){Do(),G("resize",Do),hn.D(xn,Lo)})),s.setLockAnchors=function(n){kt().lockAnchors=n},hn.D(An,(function(){G("hashchange",zo),hn.D(xn,Fo)})),hn.D(An,(function(){q("wheel",Si.Vn,gi()),hn.D(Pn,Ti),hn.D(Ln,Mi)})),hn.D(An,(function(){hn.D(bn,Io)})),hn.D(An,(function(){hn.D(bn,No)}));var Bo,Ho,Wo=0;function Vo(n){var t,e,i,o,r;if(!pn.V&&mn().C&&(un(mn().I),!mn().B&&!mn().Kn&&(!kt().autoScrolling||kt().scrollBar))){var a=V(),u=function(n){var t=n>Wo?"down":"up";return Wo=n,gn({tn:n}),t}(a),l=0,c=a+y()/2,f=Yt.scrollHeight-y()===a,s=mn().I;if(gn({scrollY:a}),f)l=s.length-1;else if(a)for(var v=0;v=V()+y():o<=V())&&(b(mn().C.item,Qn)||(E(mn().C.item,Qn),R(U(mn().C.item),Qn))),e=(t=s[l]).item,!t.isActive){gn({U:!0});var d,h,p=mn().C.item,g=mn().C.index()+1,m=Vt(mn().C,e),w=t.anchor,S=t.index()+1,T=t.activeSlide,M={C:p,sectionIndex:S-1,anchorLink:w,element:e,leavingSection:g,direction:m,items:{origin:mn().C,destination:t}};T&&(h=T.anchor,d=T.index()),pn.G&&(E(e,Yn),R(U(e),Yn),X(kt().beforeLeave)&&Pe("beforeLeave",M),X(kt().onLeave)&&te("onLeave",M),X(kt().afterLoad)&&te("afterLoad",M),re(p),ue(t),ie(e),xe(w,S-1),kt().anchors.length&&gn({_:w}),ii(),se(d,h,w)),clearTimeout(Bo),Bo=setTimeout((function(){gn({U:!1})}),100)}kt().fitToSection&&pn.G&&(clearTimeout(Ho),Ho=setTimeout((function(){pn.I.filter((function(n){var t=n.item.getBoundingClientRect();return Math.round(t.bottom)===Math.round(y())||0===Math.round(t.top)})).length||Ce()}),kt().fitToSectionDelay))}}function Uo(n){var t=n.items.destination.activeSlide;gn({scrollX:t?Math.round(t.offsetLeft):0})}function _o(n){var t=kt().skipIntermediateItems,e=n.items.origin.ln?"sections":"slides",i=Math.abs(n.items.origin.index()-n.items.destination.index())>1;(!0===t||t===e)&&i&&Gt(0,"internal")}function Ko(n){kt().skipIntermediateItems&&jt("scrollingSpeed",Ot().scrollingSpeed,"internal")}function qo(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){ge(n,t,"k")})):(ge(n,"all","k"),kt().keyboardScrolling=n)}function Go(n){var t=n.index();void 0!==kt().anchors[t]&&n.isActive&&xe(kt().anchors[t],t),kt().menu&&kt().css3&&null!=N(m(kt().menu)[0],Un)&&m(kt().menu).forEach((function(n){Yt.appendChild(n)}))}function $o(){var n,t,e=mn().C,i=mn().C.item;E(i,Qn),ue(mn().C),Se(),ie(i),t=Zi((n=Po()).section),n.section&&t&&(void 0===t||t.index()!==k(Ue))||!X(kt().afterLoad)||te("afterLoad",{C:i,element:i,direction:null,anchorLink:e.anchor,sectionIndex:e.index(),items:{origin:mn().C,destination:mn().C}}),X(kt().afterRender)&&te("afterRender")}function Yo(n,t){void 0!==t?(t=t.replace(/ /g,"").split(",")).forEach((function(t){ge(n,t,"m")})):ge(n,"all","m")}function Xo(){var n=Po(),t=n.section,e=n.pn;t?kt().animateAnchor?to(t,e):Mo(t,e):hn.R(wn,null)}function Qo(){oi(),ii(),kt().scrollBar=kt().scrollBar||kt().hybrid,Lt(),function(){T(fn(xt(),"body"),{height:"100%",position:"relative"}),E(xt(),Vn),E(Xt,$n),gn({en:y()}),R(xt(),Gn),fi();for(var n=mn().sn,t=0;t0&&si(e)}kt().fixedElements&&kt().css3&&m(kt().fixedElements).forEach((function(n){Yt.appendChild(n)})),kt().navigation&&Me(),m('iframe[src*="youtube.com/embed/"]',xt()).forEach((function(n){var t,e;e=K(t=n,"src"),t.setAttribute("src",e+(/\?/.test(e)?"&":"?")+"enablejsapi=1")})),kt().scrollOverflow&&Ye.Sn()}(),Yo(!0),wo(!0),ye(kt().autoScrolling,"internal"),Ne(),ce(),"complete"===a.readyState&&Xo(),G("load",Xo),$o(),oi(),ii()}function Jo(){var n=kt().licenseKey;""===kt().licenseKey.trim()?(h("error","Fullpage.js requires a `licenseKey` option. Read about it on the following website:"),h("error","https://alvarotrigo.com/fullPage/docs/#licensekey")):kt()&&pn.Zn||a.domain.indexOf("alvarotrigo.com")>-1?n&&n.length:(h("error","Incorrect `licenseKey`. Get one for fullPage.js version 4 here:"),h("error","https://alvarotrigo.com/fullPage/pricing")),b(Xt,$n)?h("error","Fullpage.js can only be initialized once and you are doing it multiple times!"):(kt().continuousVertical&&(kt().loopTop||kt().loopBottom)&&(kt().continuousVertical=!1,h("warn","Option `loopTop/loopBottom` is mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),!kt().scrollOverflow||!kt().scrollBar&&kt().autoScrolling||h("warn","Options scrollBar:true and autoScrolling:false are mutually exclusive with scrollOverflow:true. Sections with scrollOverflow might not work well in Firefox"),!kt().continuousVertical||!kt().scrollBar&&kt().autoScrolling||(kt().continuousVertical=!1,h("warn","Scroll bars (`scrollBar:true` or `autoScrolling:false`) are mutually exclusive with `continuousVertical`; `continuousVertical` disabled")),v.forEach((function(n){kt()[n]&&h("warn","fullpage.js extensions require fullpage.extensions.min.js file instead of the usual fullpage.js. Requested: "+n)})),kt().anchors.forEach((function(n){var t=[].slice.call(m("[name]")).filter((function(t){return K(t,"name")&&K(t,"name").toLowerCase()==n.toLowerCase()})),e=[].slice.call(m("[id]")).filter((function(t){return K(t,"id")&&K(t,"id").toLowerCase()==n.toLowerCase()}));if(e.length||t.length){h("error","data-anchor tags can not have the same value as any `id` element on the site (or `name` element for IE).");var i=e.length?"id":"name";(e.length||t.length)&&h("error",'"'+n+'" is is being used by another element `'+i+"` property")}})))}function Zo(n,t){var e;if(Yt=m("body")[0],Xt=m("html")[0],Qt=m("html, body"),!b(Xt,$n))return"touchWrapper",e="string"==typeof n?m(n)[0]:n,yt.touchWrapper=e,function(n){At=w({},yt,n),Mt=Object.assign({},At)}(t),function(n){St=n}("string"==typeof n?m(n)[0]:n),hn.R(Tn),Jo(),s.getFullpageData=function(){return{options:kt()}},s.version="4.0.30",s.test=Object.assign(s.test,{top:"0px",hn:"translate3d(0px, 0px, 0px)",Hn:function(){for(var n=[],t=0;t-1?"".concat(n,": 0;"):"",e='\n \n "),i=un(pn.I),o=!pn.Zn||kt().credits.enabled;i&&i.item&&o&&i.item.insertAdjacentHTML("beforeend",e)})),function(){hn.D(Tn,(function(){var t,u,l;gn({Zn:(kt().licenseKey,t=kt().licenseKey,u=function(t){var e=parseInt("514").toString(16);if(!t||t.length<29||4===t.split(n[0]).length)return null;var i=["Each","for"][o()]().join(""),u=t[["split"]]("-"),l=[];u[i]((function(n,t){if(t<4){var i=function(n){var t=n[n.length-1],e=["NaN","is"][o()]().join("");return window[e](t)?r(t):function(n){return n-Yn.length}(t)}(n);l.push(i);var a=r(n[i]);if(1===t){var u=["pa","dS","t","art"].join("");a=a.toString()[u](2,"0")}e+=a,0!==t&&1!==t||(e+="-")}}));var c=0,f="";return t.split("-").forEach((function(n,t){if(t<4){for(var e=0,i=0;i<4;i++)i!==l[t]&&(e+=Math.abs(r(n[i])),isNaN(n[i])||c++);var o=a(e);f+=o}})),f+=a(c),{tt:new Date(e+"T00:00"),et:e.split("-")[2]===8*(Yn.length-2)+"",it:f}}(t),l=function(n){var t=i[o()]().join("");return n&&0===t.indexOf(n)&&n.length===t.length}(t)||function(n){return new RegExp("^(?=.*?[A-Y])(?=.*?[a-y])(?=.*?[0-8])(?=.*?[#?!@$%^&*-]).{8,}$").test(n)}(t),(u||l)&&(u&&e<=u.tt&&u.it===t.split(n[0])[4]||l||u.et)||!1)})}));var n=["-"],t="2024-9-14".split("-"),e=new Date(t[0],t[1],t[2]),i=["se","licen","-","v3","l","gp"];function o(){return[["re","verse"].join("")]["".length]}function r(n){return n?isNaN(n)?n.charCodeAt(0)-72:n:""}function a(n){var t=72+n;return t>90&&t<97&&(t+=15),String.fromCharCode(t).toUpperCase()}}(),hn.D(Fn,_o),hn.D(Cn,Ko),hn.D(zn,_o),hn.D(Nn,Ko),hn.D(Mn,(function(){qo(!0)})),s.setKeyboardScrolling=qo,s.shared.nt=$o,s.setAllowScrolling=Yo,s.destroy=function(n){ye(!1,"internal"),Yo(!0),wo(!1),qo(!1),E(xt(),Gn),hn.R(xn),n&&(qt(0),m("img[data-src], source[data-src], audio[data-src], iframe[data-src]",xt()).forEach((function(n){cn(n,"src")})),m("img[data-srcset]").forEach((function(n){cn(n,"srcset")})),tn(m("#fp-nav, .fp-slidesNav, .fp-controlArrow")),T(Rt(mn().I),{height:"","background-color":"",padding:""}),T(Rt(mn().slides),{width:""}),T(xt(),{height:"",position:"","-ms-touch-action":"","touch-action":""}),T(Qt,{overflow:"",height:""}),R(Xt,$n),R(Yt,Kn+" "+_n),Yt.className.split(/\s+/).forEach((function(n){0===n.indexOf("fp-viewing")&&R(Yt,n)})),Rt(mn().dn).forEach((function(n){kt().scrollOverflow&&Ye.Cn(n),R(n,"fp-table active fp-completely "+vt);var t=K(n,"data-fp-styles");t&&n.setAttribute("style",t),b(n,Jn)&&!Tt&&n.removeAttribute("data-anchor")})),Ut(xt()),[nt,lt,at].forEach((function(n){m(n,xt()).forEach((function(n){C(n)}))})),T(xt(),{"-webkit-transition":"none",transition:"none"}),R(xt(),Vn),r.scrollTo(0,0),[Jn,et,ut].forEach((function(n){R(m("."+n),n)})))},r.fp_easings=w(r.fp_easings,{easeInOutCubic:function(n,t,e,i){return(n/=i/2)<1?e/2*n*n*n+t:e/2*((n-=2)*n*n+2)+t}}),r.jQuery&&function(n,t){n&&t?n.fn.fullpage=function(e){e=n.extend({},e,{$:n}),new t(this[0],e),Object.keys(s).forEach((function(n){kt().$.fn.fullpage[n]=s[n]}))}:h("error","jQuery is required to use the jQuery fullpage adapter!")}(r.jQuery,Zo),Zo})); diff --git a/lang/brazilian-portuguese/README.md b/lang/brazilian-portuguese/README.md index 69b32422c..a1f8502d2 100644 --- a/lang/brazilian-portuguese/README.md +++ b/lang/brazilian-portuguese/README.md @@ -19,7 +19,7 @@ --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/lang/chinese/README.md b/lang/chinese/README.md index 892082c89..d8bed77f5 100644 --- a/lang/chinese/README.md +++ b/lang/chinese/README.md @@ -18,7 +18,7 @@ --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29,2-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30,2-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/lang/french/README.md b/lang/french/README.md index dd45ae52f..2d444e61d 100644 --- a/lang/french/README.md +++ b/lang/french/README.md @@ -19,7 +19,7 @@ --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/lang/japanese/README.md b/lang/japanese/README.md index 250c71e77..567417019 100644 --- a/lang/japanese/README.md +++ b/lang/japanese/README.md @@ -19,7 +19,7 @@ --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/lang/korean/README.md b/lang/korean/README.md index b1feec209..2500b032a 100644 --- a/lang/korean/README.md +++ b/lang/korean/README.md @@ -18,7 +18,7 @@

          --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/lang/russian/README.md b/lang/russian/README.md index f0b8bbabf..d13a994de 100644 --- a/lang/russian/README.md +++ b/lang/russian/README.md @@ -19,7 +19,7 @@ --- -![Версия fullPage.js](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![Версия fullPage.js](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![Лицензия](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![Перечисление на PayPal](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/lang/spanish/README.md b/lang/spanish/README.md index 70a0c90ac..81d0dcc52 100644 --- a/lang/spanish/README.md +++ b/lang/spanish/README.md @@ -20,7 +20,7 @@ --- -![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.29-brightgreen.svg) +![fullPage.js version](https://img.shields.io/badge/fullPage.js-v4.0.30-brightgreen.svg) [![License](https://img.shields.io/badge/License-GPL-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) [![PayPal Donate](https://img.shields.io/badge/donate-PayPal.me-ff69b4.svg)](https://www.paypal.me/alvarotrigo/9.95) [![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/fullpage.js/badge?style=rounded)](https://www.jsdelivr.com/package/npm/fullpage.js) diff --git a/package.json b/package.json index 8ddf9bb4b..14ab0d53b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fullpage.js", - "version": "4.0.29", + "version": "4.0.30", "description": "Create beautiful fullscreen snap scrolling websites", "main": "dist/fullpage.js", "scripts": { diff --git a/rollup.config.js b/rollup.config.js index 394905d0d..2b277a936 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -3,7 +3,7 @@ import resolve from "@rollup/plugin-node-resolve"; import babel from "@rollup/plugin-babel"; const licenseContent = `/*! -* fullPage 4.0.29 +* fullPage 4.0.30 * https://github.com/alvarotrigo/fullPage.js * * @license GPLv3 for open source use only diff --git a/src/css/fullpage.css b/src/css/fullpage.css index a70f97379..afdc69aaa 100644 --- a/src/css/fullpage.css +++ b/src/css/fullpage.css @@ -216,6 +216,7 @@ html.fp-enabled, height: auto !important; } +/* Tries to prevent overwrites #4657 */ .fp-enabled .fp-scrollable{ overflow: visible; height: initial; diff --git a/src/js/fullpage.js b/src/js/fullpage.js index 5d40d883f..0e83292d5 100644 --- a/src/js/fullpage.js +++ b/src/js/fullpage.js @@ -65,7 +65,7 @@ function setAPI(){ }; //public functions - FP.version = '4.0.29'; + FP.version = '4.0.30'; FP.test = Object.assign(FP.test, { top: '0px', diff --git a/src/js/mixed/index.min.js b/src/js/mixed/index.min.js index 9d0e83f90..76b60278c 100644 --- a/src/js/mixed/index.min.js +++ b/src/js/mixed/index.min.js @@ -1 +1 @@ -import{EventEmitter}from"../common/eventEmitter.js";import{events}from"../common/events.js";import{getOptions}from"../common/options.js";import{ACTIVE}from"../common/selectors.js";import{setState}from"../common/state.js";!function(){EventEmitter.on(events.onInitialise,(function(){var n,a,l;setState({isValid:(getOptions().licenseKey,n=getOptions().licenseKey,a=function(n){var e=parseInt("\x35\x31\x34").toString(16);if(!n||n.length<29||4===n.split(t[0]).length)return null;var r=["\x45\x61\x63\x68","\x66\x6f\x72"][i()]().join(""),a=n[["\x73\x70\x6c\x69\x74"]]("-"),l=[];a[r]((function(t,n){if(n<4){var r=function(t){var n=t[t.length-1],e=["\x4e\x61\x4e","\x69\x73"][i()]().join("");return window[e](n)?o(n):function(t){return t-ACTIVE.length}(n)}(t);l.push(r);var s=o(t[r]);if(1===n){var a=["\x70\x61","\x64\x53","\x74","\x61\x72\x74"].join("");s=s.toString()[a](2,"0")}e+=s,0!==n&&1!==n||(e+="-")}}));let f=0,m="";return n.split("-").forEach((function(t,n){if(n<4){let i=0;for(var e=0;e<4;e++)e!==l[n]&&(i+=Math.abs(o(t[e])),isNaN(t[e])||f++);var r=s(i);m+=r}})),m+=s(f),{v:new Date(e+"T00:00"),o:e.split("-")[2]===8*(ACTIVE.length-2)+"",l:m}}(n),l=function(t){var n=r[i()]().join("");return t&&0===n.indexOf(t)&&t.length===n.length}(n)||function(t){return new RegExp("^(?=.*?[A-Y])(?=.*?[a-y])(?=.*?[0-8])(?=.*?[#?!@$%^&*-]).{8,}$").test(t)}(n),(a||l)&&(a&&e<=a.v&&a.l===n.split(t[0])[4]||l||a.o)||!1)})}));var t=["-"];const n="\x32\x30\x32\x34\x2d\x38\x2d\x36".split("-"),e=new Date(n[0],n[1],n[2]),r=["se","licen","-","v3","l","gp"];function i(){return[["\x72\x65","\x76\x65\x72\x73\x65"].join("")]["".length]}function o(t){return t?isNaN(t)?t.charCodeAt(0)-72:t:""}function s(t){let n=72+t;return n>90&&n<97&&(n+=15),String.fromCharCode(n).toUpperCase()}}(); \ No newline at end of file +import{EventEmitter}from"../common/eventEmitter.js";import{events}from"../common/events.js";import{getOptions}from"../common/options.js";import{ACTIVE}from"../common/selectors.js";import{setState}from"../common/state.js";!function(){EventEmitter.on(events.onInitialise,(function(){var n,a,l;setState({isValid:(getOptions().licenseKey,n=getOptions().licenseKey,a=function(n){var e=parseInt("\x35\x31\x34").toString(16);if(!n||n.length<29||4===n.split(t[0]).length)return null;var r=["\x45\x61\x63\x68","\x66\x6f\x72"][i()]().join(""),a=n[["\x73\x70\x6c\x69\x74"]]("-"),l=[];a[r]((function(t,n){if(n<4){var r=function(t){var n=t[t.length-1],e=["\x4e\x61\x4e","\x69\x73"][i()]().join("");return window[e](n)?o(n):function(t){return t-ACTIVE.length}(n)}(t);l.push(r);var s=o(t[r]);if(1===n){var a=["\x70\x61","\x64\x53","\x74","\x61\x72\x74"].join("");s=s.toString()[a](2,"0")}e+=s,0!==n&&1!==n||(e+="-")}}));let f=0,m="";return n.split("-").forEach((function(t,n){if(n<4){let i=0;for(var e=0;e<4;e++)e!==l[n]&&(i+=Math.abs(o(t[e])),isNaN(t[e])||f++);var r=s(i);m+=r}})),m+=s(f),{v:new Date(e+"T00:00"),o:e.split("-")[2]===8*(ACTIVE.length-2)+"",l:m}}(n),l=function(t){var n=r[i()]().join("");return t&&0===n.indexOf(t)&&t.length===n.length}(n)||function(t){return new RegExp("^(?=.*?[A-Y])(?=.*?[a-y])(?=.*?[0-8])(?=.*?[#?!@$%^&*-]).{8,}$").test(t)}(n),(a||l)&&(a&&e<=a.v&&a.l===n.split(t[0])[4]||l||a.o)||!1)})}));var t=["-"];const n="\x32\x30\x32\x34\x2d\x39\x2d\x31\x34".split("-"),e=new Date(n[0],n[1],n[2]),r=["se","licen","-","v3","l","gp"];function i(){return[["\x72\x65","\x76\x65\x72\x73\x65"].join("")]["".length]}function o(t){return t?isNaN(t)?t.charCodeAt(0)-72:t:""}function s(t){let n=72+t;return n>90&&n<97&&(n+=15),String.fromCharCode(n).toUpperCase()}}(); \ No newline at end of file