{"version":3,"names":["transformHeaderOnScroll","target","threshold","document","documentElement","scrollTop","body","classList","add","remove","elements","header","querySelector","headerPseudo","menuTrigger","window","addEventListener","trigger","toggle","querySelectorAll","forEach","radio","checked","parentElement","event","nav","dropDown","contains","selector","offset","multiple","callback","entries","entry","isIntersecting","observer","IntersectionObserver","el","observe","tooltipTriggerList","map","tooltipTriggerEl","bootstrap","Tooltip","btn","tooltip","getInstance","navigator","clipboard","writeText","location","href","setAttribute","show"],"sources":["header.js","app.js","animateOnScroll.js","join.js"],"sourcesContent":["/**\n* @param {Element} element target element\n* @param {Number} threshold distance threshold in pixels\n*/\nexport function transformHeaderOnScroll(target, threshold) {\n const scrollTop = document.documentElement.scrollTop || document.body.scrollTop;\n if (scrollTop >= threshold) {\n target.classList.add(\"scrolledHeader\");\n } else {\n target.classList.remove(\"scrolledHeader\");\n }\n}\n\n/**\n* @param {Element} target target element\n* @param {Element} trigger trigger element\n*/\nexport function toggleMobileMenu(target, trigger) {\n target.classList.toggle('activeMenu');\n trigger.classList.toggle('isActive');\n}","//import SmoothScroll from 'smooth-scroll';\n/* import Rellax from 'rellax'; */\nimport { transformHeaderOnScroll, toggleMobileMenu } from \"./header.js\"\nimport { joinRadio } from \"./join.js\"\n/* import Plyr from 'plyr'; */\nimport animateOnScroll from \"./animateOnScroll\";\n\n//Init Rellax\n/* new Rellax('.rellax'); */\n\n//Init SmoothScroll\n/* new SmoothScroll('a[href*=\"#\"], a.scroll, li.scroll', {\n //header: '[data-scroll-header]'\n speed: 50,\n}); */\n\nconst header = document.querySelector(\"header\");\nconst headerPseudo = document.querySelector(\".hero-person-wrapper\");\nconst threshold = 40;\nconst menuTrigger = document.querySelector('.hamburger');\n\n//Init Header Scroll Animation Event\nif (header && threshold) window.addEventListener('scroll', function () { transformHeaderOnScroll(header, threshold); } );\nif (headerPseudo && threshold) window.addEventListener('scroll', function () { transformHeaderOnScroll(headerPseudo, threshold); } );\n\n//Init Mobile Menu Event\nif (menuTrigger && header) menuTrigger.addEventListener('click', function () { toggleMobileMenu(header, menuTrigger); });\njoinRadio();\n\n//Closes mobile menu when link with class scroll is clicked\nif (document.querySelectorAll('.scroll')) {\n const scrollNav = document.querySelectorAll('.scroll a');\n scrollNav.forEach(function (nav) {\n nav.addEventListener(\"click\", () => { \n\n //If child submenu is active remove active class\n if (document.querySelectorAll('.menu-item-has-children.active')) {\n document.querySelectorAll('.menu-item-has-children.active').forEach(function (dropDown) {\n dropDown.classList.remove('active');\n });\n }\n //If mobile menu is active toggle activeMenu and isActive classes\n if (header.classList.contains('activeMenu')) {\n header.classList.toggle('activeMenu');\n menuTrigger.classList.toggle('isActive');\n }\n });\n });\n}\n\n// Sub Menu for Mobile\n/* let plusIcon = ''\n\ndocument.querySelectorAll('.menu-item-has-children a').forEach(function (menu) {\n if (menu.parentElement.classList.contains('menu-item-has-children')) {\n menu.insertAdjacentHTML('beforebegin', plusIcon);\n }\n});\n\ndocument.querySelectorAll('.dropIcon').forEach(function (icon) {\n icon.addEventListener(\"click\", () => {\n if (icon.parentElement.classList.contains('active')) {\n icon.parentElement.classList.remove('active');\n } else {\n icon.parentElement.classList.add('active');\n }\n });\n}); */\n\n//global video player plugin\n/* window.addEventListener('DOMContentLoaded', () => {\n\tconst players = Array.from(document.querySelectorAll('.js-player')).map((p) => new Plyr(p, {\n\t\tclickToPlay: true,\n\t\tposter: p.dataset.plyrPoster,\n\t\tcontrols: ['play-large'],\n\t\tyoutube: {\n\t\t\tnoCookie: false\n\t\t},\n\t\tfullscreen: {\n\t\t\tenabled: true,\n\t\t\tfallback: true,\n\t\t\tiosNative: true\n\t\t}\n\t}));\n\tplayers.forEach((player) => {\n\t\tplayer.on('ended', function () {\n\t\t\tplayer.stop();\n\t\t});\n\t});\n}); */\n\nanimateOnScroll([\n { selector: \".fade-in\", offset: 0.25, multiple: true },\n { selector: \".underline-slide-in-left\", offset: 0.25, multiple: true }\n]);\n\nconst tooltipTriggerList = document.querySelectorAll('[data-bs-toggle=\"tooltip\"]')\nconst tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))\n\ndocument.querySelectorAll('.copy-btn').forEach((btn) => {\n\tbtn.addEventListener(\"click\", () => {\n const tooltip = bootstrap.Tooltip.getInstance(btn);\n\t\tnavigator.clipboard.writeText(window.location.href);\n\t\tbtn.setAttribute('data-bs-original-title', 'Copied');\n\t\ttooltip.show();\n\t\tbtn.setAttribute('data-bs-original-title', 'Copy to clipboard');\n\t});\n});","export default function (elements) {\n window.addEventListener(\"load\", () => {\n const callback = (entries) => {\n entries.forEach((entry) => {\n if (entry.isIntersecting) {\n entry.target.classList.add(\"animate\");\n }\n });\n };\n \n const observer = (threshold) => {\n return new IntersectionObserver(callback, {\n threshold: [threshold]\n });\n };\n \n elements.forEach((el) => {\n if (document.querySelector(el.selector)) {\n if (el.multiple) {\n document.querySelectorAll(el.selector).forEach(multiple => {\n observer(el.offset).observe(multiple);\n })\n } else {\n observer(el.offset).observe(document.querySelector(el.selector));\n }\n }\n });\n });\n}","export function joinRadio(){\n document.querySelectorAll('.iAM .gchoice input[type=\"radio\"]').forEach(function (radio) { \n // Find Radio that is Checked add Class\n if (radio.checked == true) {\n radio.parentElement.classList.toggle('checked')\n }\n // On Click Toggle Class\n radio.addEventListener(\"click\", event => {\n //console.log(event)\n document.querySelector('.iAM .gchoice.checked').classList.remove('checked');\n radio.parentElement.classList.toggle('checked') \n })\n })\n}"],"mappings":"mIAIO,SAASA,EAAwBC,EAAQC,IAC1BC,SAASC,gBAAgBC,WAAaF,SAASG,KAAKD,YACrDH,EACbD,EAAOM,UAAUC,IAAI,kBAErBP,EAAOM,UAAUE,OAAO,iBAE/B,CCKD,IChByBC,EDgBnBC,EAASR,SAASS,cAAc,UAChCC,EAAeV,SAASS,cAAc,wBAEtCE,EAAcX,SAASS,cAAc,eAGvCD,GAAqBI,OAAOC,iBAAiB,UAAU,WAAchB,EAAwBW,EAJ/E,GAIoG,IAClHE,GAA2BE,OAAOC,iBAAiB,UAAU,WAAchB,EAAwBa,EALrF,GAKgH,IAG9HC,GAAeH,GAAQG,EAAYE,iBAAiB,SAAS,WDT1D,IAAkCC,ICS+DH,EAARH,EDRrFJ,UAAUW,OAAO,cACxBD,EAAQV,UAAUW,OAAO,WCO0F,IEzBnHf,SAASgB,iBAAiB,qCAAqCC,SAAQ,SAAUC,GAExD,GAAjBA,EAAMC,SACND,EAAME,cAAchB,UAAUW,OAAO,WAGzCG,EAAML,iBAAiB,SAAS,SAAAQ,GAE5BrB,SAASS,cAAc,yBAAyBL,UAAUE,OAAO,WACjEY,EAAME,cAAchB,UAAUW,OAAO,U,OFoB7Cf,SAASgB,iBAAiB,aACRhB,SAASgB,iBAAiB,aAClCC,SAAQ,SAAUK,GACxBA,EAAIT,iBAAiB,SAAS,WAGtBb,SAASgB,iBAAiB,mCAC1BhB,SAASgB,iBAAiB,kCAAkCC,SAAQ,SAAUM,GAC1EA,EAASnB,UAAUE,OAAO,S,IAI9BE,EAAOJ,UAAUoB,SAAS,gBAC1BhB,EAAOJ,UAAUW,OAAO,cACxBJ,EAAYP,UAAUW,OAAO,Y,OC5CpBR,ED2FT,CACZ,CAAEkB,SAAU,WAAYC,OAAQ,IAAMC,UAAU,GAChD,CAAEF,SAAU,2BAA4BC,OAAQ,IAAMC,UAAU,IC5FhEf,OAAOC,iBAAiB,QAAQ,WAC5B,IAAMe,EAAW,SAACC,GACdA,EAAQZ,SAAQ,SAACa,GACTA,EAAMC,gBACND,EAAMhC,OAAOM,UAAUC,IAAI,U,KAKjC2B,EAAW,SAACjC,GACd,OAAO,IAAIkC,qBAAqBL,EAAU,CACtC7B,UAAW,CAACA,I,EAIpBQ,EAASU,SAAQ,SAACiB,GACVlC,SAASS,cAAcyB,EAAGT,YACtBS,EAAGP,SACH3B,SAASgB,iBAAiBkB,EAAGT,UAAUR,SAAQ,SAAAU,GAC3CK,EAASE,EAAGR,QAAQS,QAAQR,E,IAGhCK,EAASE,EAAGR,QAAQS,QAAQnC,SAASS,cAAcyB,EAAGT,W,ODyE1E,I,EAAMW,EAAqBpC,SAASgB,iBAAiB,+B,EAC7BoB,E,knBAAoBC,KAAI,SAAAC,GAAgB,OAAI,IAAIC,UAAUC,QAAQF,EAA1B,IAEhEtC,SAASgB,iBAAiB,aAAaC,SAAQ,SAACwB,GAC/CA,EAAI5B,iBAAiB,SAAS,WACvB,IAAM6B,EAAUH,UAAUC,QAAQG,YAAYF,GACpDG,UAAUC,UAAUC,UAAUlC,OAAOmC,SAASC,MAC9CP,EAAIQ,aAAa,yBAA0B,UAC3CP,EAAQQ,OACRT,EAAIQ,aAAa,yBAA0B,oB,GAE5C,G"}