landing-page-gem 0.3.4 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 678b0fde8bc1da80f8f2fbc71e2a1025b5332b94f429349af01f8fe005a5db3a
4
- data.tar.gz: 60dfbff2ead5960f934c42a9ada83c1348237e9f7c3e653908beffeec99aa305
3
+ metadata.gz: eb14d759e5cff5cba38e6c98b7b086ea0819ae4796d40a345c18b1fe65856331
4
+ data.tar.gz: 2f975b4af1bbcba33eb913d0c92cde5333d21c7cd9eb10a5af9cc651e50d42ef
5
5
  SHA512:
6
- metadata.gz: efb3d7d58efbb27de2227acb9217d291df46681e003b6ba0917c489518b2790735e5884c2f333d7af360d7d267fc7332a59b38cf76e1ecc6bcca5188876cd322
7
- data.tar.gz: 6a4a2c95752840ed7293bcea89888a986731b1b056c582cbd6f3fc2db170be0bb853c33cda61d07f073e6e65f3e32e58b36f88be7938cce5b4645fb4c0c0f692
6
+ metadata.gz: 1175a1ad565f67849d303c3b022c11512efc9c0e4ab639a6d7f67caae1869d9993265481114540204408cec80f756ebe6b58e87142d9ea256abc6f4bb2e002d2
7
+ data.tar.gz: eed6ab948d30238802ec0fcccbe59c941a01300261d25ae1b9af2d62a42a8f93d3383664ee9398f83ef4c311185e8112c92e40ad76af48af6e58e3a03640c9a7
data/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  A Jekyll Gem theme for KCC landing-pages/micro-sites.
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/landing-page-gem.svg)](https://badge.fury.io/rb/landing-page-gem)
6
+
7
+ - <https://rubygems.org/gems/landing-page-gem>
8
+
9
+ -----
10
+
5
11
 
6
12
  ## Installation
7
13
 
data/_config.yml CHANGED
@@ -1,14 +1,16 @@
1
1
  #### ANY CHANGE TO THIS FILE REQUIRES THE BUILD-COMMAND TO BE RESTARTED ####
2
2
  title: "KCC"
3
3
  site_name: Veterans
4
- public-url: "http://www.kcc.edu"
4
+ public-url: "https://subdomain.kcc.edu"
5
5
  url: 'URL is needed for robots.txt to work properly' ## NO TRAILING SLASHES!!/<--nope
6
6
  port: 3000
7
- # contact_phone: 815-802-8888
7
+ ## contact_phone: 815-802-8888 ### Set to phone number in the `815-802-8888` format or `false` to remove the phone number from navbar. ###
8
8
  timezone: America/Chicago
9
9
  google-tag_key: Google Tag Manager key goes here
10
10
  theme_config: true
11
11
  humans_file: true
12
+ custom_site_js: false
13
+ custom_site_styling: false
12
14
  permalink: pretty
13
15
  description: > # this means to ignore newlines until "baseurl:"
14
16
  # Delete this comment and place description on this line
@@ -4,7 +4,11 @@
4
4
  <div class="col-lg-6 footer__mobile--margin-bottom">
5
5
  <div class="row">
6
6
  <div class="col-lg-12 text-center">
7
- <a href="{{ site.public-url }}" class="footer-link"><h5 class="typography__footer-heading">{{ site.public-url | replace: "https://", "" | replace: "http://", "" }}</h5></a>
7
+ <a href="{{ site.public-url }}" class="footer-link">
8
+ <h5 class="typography__footer-heading{% if site.public-url.size > 25 %} typography__footer-heading--long{% endif %}">
9
+ {{ site.public-url | replace: "https://", "" | replace: "http://", "" }}
10
+ </h5>
11
+ </a>
8
12
  </div>
9
13
  </div>
10
14
  <div class="row">
@@ -1 +1 @@
1
- ed6ff804ce7d6c85546d
1
+ dee6efa10ec9f94482a3
@@ -3,8 +3,7 @@
3
3
  <div class="row">
4
4
  <div class="col-xl-8 header__bg positioning__offset-global-nav" {% if page.background_image %}style="background-image: url('{{ page.background_image }}');"{% endif %}>
5
5
  <div class="row positioning__heading--row">
6
- <div class="col-5">&nbsp;</div>
7
- <div class="col-7 positioning__col--offset text-center">
6
+ <div class="col-8 offset-4 positioning__col--offset text-center">
8
7
  <h2 class="typography__register--h2 typography--text-shadow">{{ page.main_heading }}</h2>
9
8
  <h3 class="typography__register--h3 typography--text-shadow">{{ page.sub_heading }}</h3>
10
9
  </div>
@@ -114,8 +114,10 @@
114
114
  </svg>
115
115
  </a>
116
116
  <span class="typography__phone--span">
117
+ {% if site.contact_phone != false %}
117
118
  <a class="links__phone--span"
118
119
  href="tel:+1{% if site.contact_phone %}{{ site.contact_phone | remove: '-' }}{% else %}8158028508{% endif %}">
119
120
  {% if site.contact_phone %}{{ site.contact_phone }}{% else %}815-802-8508{% endif %}</a>
121
+ {% endif %}
120
122
  </span>
121
123
  </nav>
@@ -3,11 +3,21 @@
3
3
  <!-- preconnect to the Eurostile typekit font -->
4
4
  <link rel="preconnect" href="https://use.typekit.net">
5
5
  <!-- Google fonts -->
6
- <link rel="preconnect" href="https://fonts.gstatic.com">
6
+ <link rel="preconnect" href="https://fonts.googleapis.com">
7
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
7
8
  <!-- Google Cusom Search -->
8
9
  <link rel="preconnect" href="https://clients1.google.com">
9
10
  <link rel="preconnect" href="https://www.google.com">
10
11
  <!-- Custom theme JS -->
11
- <link rel="preconnect" as="script" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.bundle.js">
12
+ <link rel="preload" as="script" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.bundle.js">
13
+ <link rel="preload" as="style" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.css">
14
+ {% if site.custom_site_js == true %}
12
15
  <link rel="preconnect" as="script" href="{{page.baseurl}}assets/js/dist/main{% if site.data.hash %}.{{ site.data.hash }}{% endif %}.bundle.js">
16
+ {% endif %}
17
+ {% if site.custom_site_styling == true %}
18
+ <link rel="preload" as="style" href="{{page.baseurl}}assets/js/dist/main{% if site.data.hash %}.{{ site.data.hash }}{% endif %}.css">
19
+ {% endif %}
20
+ {% if page.background_image %}
21
+ <link rel="preload" as="image" href="{{ page.background_image }}">
22
+ {% endif %}
13
23
  <!-- End of preconnects -->
@@ -1,6 +1,6 @@
1
1
 
2
2
  <!-- custom compiled and minified javascript -->
3
3
  <script src="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.bundle.js" defer></script>
4
- {% if site.custom_js == true %}
4
+ {% if site.custom_site_js == true %}
5
5
  <script src="{{ page.baseurl }}assets/js/dist/main.{% if site.data.hash %}{{ site.data.hash }}.{% endif %}bundle.js" defer></script>
6
6
  {% endif %}
@@ -1,7 +1,7 @@
1
1
  {%- if jekyll.environment == "production" or jekyll.environment == "publish" -%}
2
2
  <!-- Custom CSS for the KCC Theme -->
3
3
  <link rel="stylesheet" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.css">
4
- {%- if site.custom_styling == true -%}
4
+ {%- if site.custom_site_styling == true -%}
5
5
  <!-- Link to this site's main stylesheet -->
6
6
  <link rel="stylesheet" href="{{page.baseurl}}assets/js/dist/main{% if site.data.hash %}.{{ site.data.hash }}{% endif %}.css">
7
7
  {% endif %}
@@ -0,0 +1 @@
1
+ !function(){var t,n,e={397:function(t,n,e){var r={"./footerDate":[6909,909],"./footerDate.js":[6909,909],"./landingPage":[6321,321],"./landingPage.js":[6321,321],"./lazyLoad":[1582,582],"./lazyLoad.js":[1582,582],"./loadClarusCorpScript":[1289,289],"./loadClarusCorpScript.js":[1289,289],"./main":[4358],"./main.js":[4358],"./test":[5315,315],"./test.js":[5315,315]};function o(t){if(!e.o(r,t))return Promise.resolve().then((function(){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}));var n=r[t],o=n[0];return Promise.all(n.slice(1).map(e.e)).then((function(){return e(o)}))}o.keys=function(){return Object.keys(r)},o.id=397,t.exports=o},4358:function(t,n,e){"use strict";function r(t){e(397)("./".concat(t)).then((function(t){(0,t.default)()}))}e.r(n),e(6992),e(1539),e(8674),e(8783),e(3948),e(4916),e(4765),document.addEventListener("DOMContentLoaded",(function(){Promise.resolve().then((function(){-1!==window.location.hostname.search(/\.kcc\.edu/)&&r("loadClarusCorpScript")})).then((function(){document.querySelector("img[data-src]")&&r("lazyLoad")})).then((function(){return r("footerDate")})).then((function(){document.querySelector('a[href="#page-top"]')&&r("landingPage")}))}))},3099:function(t){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},6077:function(t,n,e){var r=e(111);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},1223:function(t,n,e){var r=e(5112),o=e(30),i=e(3070),c=r("unscopables"),u=Array.prototype;null==u[c]&&i.f(u,c,{configurable:!0,value:o(null)}),t.exports=function(t){u[c][t]=!0}},5787:function(t){t.exports=function(t,n,e){if(!(t instanceof n))throw TypeError("Incorrect "+(e?e+" ":"")+"invocation");return t}},9670:function(t,n,e){var r=e(111);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},1318:function(t,n,e){var r=e(5656),o=e(7466),i=e(1400),c=function(t){return function(n,e,c){var u,a=r(n),f=o(a.length),s=i(c,f);if(t&&e!=e){for(;f>s;)if((u=a[s++])!=u)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===e)return t||s||0;return!t&&-1}};t.exports={includes:c(!0),indexOf:c(!1)}},7072:function(t,n,e){var r=e(5112)("iterator"),o=!1;try{var i=0,c={next:function(){return{done:!!i++}},return:function(){o=!0}};c[r]=function(){return this},Array.from(c,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!o)return!1;var e=!1;try{var i={};i[r]=function(){return{next:function(){return{done:e=!0}}}},t(i)}catch(t){}return e}},4326:function(t){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},648:function(t,n,e){var r=e(1694),o=e(4326),i=e(5112)("toStringTag"),c="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var n,e,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?e:c?o(n):"Object"==(r=o(n))&&"function"==typeof n.callee?"Arguments":r}},9920:function(t,n,e){var r=e(6656),o=e(3887),i=e(1236),c=e(3070);t.exports=function(t,n){for(var e=o(n),u=c.f,a=i.f,f=0;f<e.length;f++){var s=e[f];r(t,s)||u(t,s,a(n,s))}}},8544:function(t,n,e){var r=e(7293);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4994:function(t,n,e){"use strict";var r=e(3383).IteratorPrototype,o=e(30),i=e(9114),c=e(8003),u=e(7497),a=function(){return this};t.exports=function(t,n,e){var f=n+" Iterator";return t.prototype=o(r,{next:i(1,e)}),c(t,f,!1,!0),u[f]=a,t}},8880:function(t,n,e){var r=e(9781),o=e(3070),i=e(9114);t.exports=r?function(t,n,e){return o.f(t,n,i(1,e))}:function(t,n,e){return t[n]=e,t}},9114:function(t){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},654:function(t,n,e){"use strict";var r=e(2109),o=e(4994),i=e(9518),c=e(7674),u=e(8003),a=e(8880),f=e(1320),s=e(5112),l=e(1913),p=e(7497),v=e(3383),d=v.IteratorPrototype,h=v.BUGGY_SAFARI_ITERATORS,y=s("iterator"),g="keys",x="values",m="entries",b=function(){return this};t.exports=function(t,n,e,s,v,w,S){o(e,n,s);var j,O,E,T=function(t){if(t===v&&k)return k;if(!h&&t in A)return A[t];switch(t){case g:case x:case m:return function(){return new e(this,t)}}return function(){return new e(this)}},P=n+" Iterator",I=!1,A=t.prototype,L=A[y]||A["@@iterator"]||v&&A[v],k=!h&&L||T(v),_="Array"==n&&A.entries||L;if(_&&(j=i(_.call(new t)),d!==Object.prototype&&j.next&&(l||i(j)===d||(c?c(j,d):"function"!=typeof j[y]&&a(j,y,b)),u(j,P,!0,!0),l&&(p[P]=b))),v==x&&L&&L.name!==x&&(I=!0,k=function(){return L.call(this)}),l&&!S||A[y]===k||a(A,y,k),p[n]=k,v)if(O={values:T(x),keys:w?k:T(g),entries:T(m)},S)for(E in O)(h||I||!(E in A))&&f(A,E,O[E]);else r({target:n,proto:!0,forced:h||I},O);return O}},9781:function(t,n,e){var r=e(7293);t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:function(t,n,e){var r=e(7854),o=e(111),i=r.document,c=o(i)&&o(i.createElement);t.exports=function(t){return c?i.createElement(t):{}}},8324:function(t){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},7871:function(t){t.exports="object"==typeof window},1528:function(t,n,e){var r=e(8113),o=e(7854);t.exports=/ipad|iphone|ipod/i.test(r)&&void 0!==o.Pebble},6833:function(t,n,e){var r=e(8113);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},5268:function(t,n,e){var r=e(4326),o=e(7854);t.exports="process"==r(o.process)},1036:function(t,n,e){var r=e(8113);t.exports=/web0s(?!.*chrome)/i.test(r)},8113:function(t,n,e){var r=e(5005);t.exports=r("navigator","userAgent")||""},7392:function(t,n,e){var r,o,i=e(7854),c=e(8113),u=i.process,a=i.Deno,f=u&&u.versions||a&&a.version,s=f&&f.v8;s?o=(r=s.split("."))[0]<4?1:r[0]+r[1]:c&&(!(r=c.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=c.match(/Chrome\/(\d+)/))&&(o=r[1]),t.exports=o&&+o},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(t,n,e){var r=e(7854),o=e(1236).f,i=e(8880),c=e(1320),u=e(3505),a=e(9920),f=e(4705);t.exports=function(t,n){var e,s,l,p,v,d=t.target,h=t.global,y=t.stat;if(e=h?r:y?r[d]||u(d,{}):(r[d]||{}).prototype)for(s in n){if(p=n[s],l=t.noTargetGet?(v=o(e,s))&&v.value:e[s],!f(h?s:d+(y?".":"#")+s,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;a(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),c(e,s,p,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},7007:function(t,n,e){"use strict";e(4916);var r=e(1320),o=e(2261),i=e(7293),c=e(5112),u=e(8880),a=c("species"),f=RegExp.prototype;t.exports=function(t,n,e,s){var l=c(t),p=!i((function(){var n={};return n[l]=function(){return 7},7!=""[t](n)})),v=p&&!i((function(){var n=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[a]=function(){return e},e.flags="",e[l]=/./[l]),e.exec=function(){return n=!0,null},e[l](""),!n}));if(!p||!v||e){var d=/./[l],h=n(l,""[t],(function(t,n,e,r,i){var c=n.exec;return c===o||c===f.exec?p&&!i?{done:!0,value:d.call(n,e,r)}:{done:!0,value:t.call(e,n,r)}:{done:!1}}));r(String.prototype,t,h[0]),r(f,l,h[1])}s&&u(f[l],"sham",!0)}},9974:function(t,n,e){var r=e(3099);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 0:return function(){return t.call(n)};case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,o){return t.call(n,e,r,o)}}return function(){return t.apply(n,arguments)}}},5005:function(t,n,e){var r=e(7854),o=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,n){return arguments.length<2?o(r[t]):r[t]&&r[t][n]}},1246:function(t,n,e){var r=e(648),o=e(7497),i=e(5112)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},7854:function(t,n,e){var r=function(t){return t&&t.Math==Math&&t};t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},6656:function(t,n,e){var r=e(7908),o={}.hasOwnProperty;t.exports=Object.hasOwn||function(t,n){return o.call(r(t),n)}},3501:function(t){t.exports={}},842:function(t,n,e){var r=e(7854);t.exports=function(t,n){var e=r.console;e&&e.error&&(1===arguments.length?e.error(t):e.error(t,n))}},490:function(t,n,e){var r=e(5005);t.exports=r("document","documentElement")},4664:function(t,n,e){var r=e(9781),o=e(7293),i=e(317);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,n,e){var r=e(7293),o=e(4326),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},2788:function(t,n,e){var r=e(5465),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},9909:function(t,n,e){var r,o,i,c=e(8536),u=e(7854),a=e(111),f=e(8880),s=e(6656),l=e(5465),p=e(6200),v=e(3501),d="Object already initialized",h=u.WeakMap;if(c||l.state){var y=l.state||(l.state=new h),g=y.get,x=y.has,m=y.set;r=function(t,n){if(x.call(y,t))throw new TypeError(d);return n.facade=t,m.call(y,t,n),n},o=function(t){return g.call(y,t)||{}},i=function(t){return x.call(y,t)}}else{var b=p("state");v[b]=!0,r=function(t,n){if(s(t,b))throw new TypeError(d);return n.facade=t,f(t,b,n),n},o=function(t){return s(t,b)?t[b]:{}},i=function(t){return s(t,b)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(n){var e;if(!a(n)||(e=o(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return e}}}},7659:function(t,n,e){var r=e(5112),o=e(7497),i=r("iterator"),c=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||c[i]===t)}},4705:function(t,n,e){var r=e(7293),o=/#|\.prototype\./,i=function(t,n){var e=u[c(t)];return e==f||e!=a&&("function"==typeof n?r(n):!!n)},c=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},u=i.data={},a=i.NATIVE="N",f=i.POLYFILL="P";t.exports=i},111:function(t){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},1913:function(t){t.exports=!1},2190:function(t,n,e){var r=e(5005),o=e(3307);t.exports=o?function(t){return"symbol"==typeof t}:function(t){var n=r("Symbol");return"function"==typeof n&&Object(t)instanceof n}},408:function(t,n,e){var r=e(9670),o=e(7659),i=e(7466),c=e(9974),u=e(1246),a=e(9212),f=function(t,n){this.stopped=t,this.result=n};t.exports=function(t,n,e){var s,l,p,v,d,h,y,g=e&&e.that,x=!(!e||!e.AS_ENTRIES),m=!(!e||!e.IS_ITERATOR),b=!(!e||!e.INTERRUPTED),w=c(n,g,1+x+b),S=function(t){return s&&a(s),new f(!0,t)},j=function(t){return x?(r(t),b?w(t[0],t[1],S):w(t[0],t[1])):b?w(t,S):w(t)};if(m)s=t;else{if("function"!=typeof(l=u(t)))throw TypeError("Target is not iterable");if(o(l)){for(p=0,v=i(t.length);v>p;p++)if((d=j(t[p]))&&d instanceof f)return d;return new f(!1)}s=l.call(t)}for(h=s.next;!(y=h.call(s)).done;){try{d=j(y.value)}catch(t){throw a(s),t}if("object"==typeof d&&d&&d instanceof f)return d}return new f(!1)}},9212:function(t,n,e){var r=e(9670);t.exports=function(t){var n=t.return;if(void 0!==n)return r(n.call(t)).value}},3383:function(t,n,e){"use strict";var r,o,i,c=e(7293),u=e(9518),a=e(8880),f=e(6656),s=e(5112),l=e(1913),p=s("iterator"),v=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):v=!0);var d=null==r||c((function(){var t={};return r[p].call(t)!==t}));d&&(r={}),l&&!d||f(r,p)||a(r,p,(function(){return this})),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:v}},7497:function(t){t.exports={}},5948:function(t,n,e){var r,o,i,c,u,a,f,s,l=e(7854),p=e(1236).f,v=e(261).set,d=e(6833),h=e(1528),y=e(1036),g=e(5268),x=l.MutationObserver||l.WebKitMutationObserver,m=l.document,b=l.process,w=l.Promise,S=p(l,"queueMicrotask"),j=S&&S.value;j||(r=function(){var t,n;for(g&&(t=b.domain)&&t.exit();o;){n=o.fn,o=o.next;try{n()}catch(t){throw o?c():i=void 0,t}}i=void 0,t&&t.enter()},d||g||y||!x||!m?!h&&w&&w.resolve?((f=w.resolve(void 0)).constructor=w,s=f.then,c=function(){s.call(f,r)}):c=g?function(){b.nextTick(r)}:function(){v.call(l,r)}:(u=!0,a=m.createTextNode(""),new x(r).observe(a,{characterData:!0}),c=function(){a.data=u=!u})),t.exports=j||function(t){var n={fn:t,next:void 0};i&&(i.next=n),o||(o=n,c()),i=n}},3366:function(t,n,e){var r=e(7854);t.exports=r.Promise},133:function(t,n,e){var r=e(7392),o=e(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:function(t,n,e){var r=e(7854),o=e(2788),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},8523:function(t,n,e){"use strict";var r=e(3099),o=function(t){var n,e;this.promise=new t((function(t,r){if(void 0!==n||void 0!==e)throw TypeError("Bad Promise constructor");n=t,e=r})),this.resolve=r(n),this.reject=r(e)};t.exports.f=function(t){return new o(t)}},30:function(t,n,e){var r,o=e(9670),i=e(6048),c=e(748),u=e(3501),a=e(490),f=e(317),s=e(6200)("IE_PROTO"),l=function(){},p=function(t){return"<script>"+t+"<\/script>"},v=function(t){t.write(p("")),t.close();var n=t.parentWindow.Object;return t=null,n},d=function(){try{r=new ActiveXObject("htmlfile")}catch(t){}var t,n;d="undefined"!=typeof document?document.domain&&r?v(r):((n=f("iframe")).style.display="none",a.appendChild(n),n.src=String("javascript:"),(t=n.contentWindow.document).open(),t.write(p("document.F=Object")),t.close(),t.F):v(r);for(var e=c.length;e--;)delete d.prototype[c[e]];return d()};u[s]=!0,t.exports=Object.create||function(t,n){var e;return null!==t?(l.prototype=o(t),e=new l,l.prototype=null,e[s]=t):e=d(),void 0===n?e:i(e,n)}},6048:function(t,n,e){var r=e(9781),o=e(3070),i=e(9670),c=e(1956);t.exports=r?Object.defineProperties:function(t,n){i(t);for(var e,r=c(n),u=r.length,a=0;u>a;)o.f(t,e=r[a++],n[e]);return t}},3070:function(t,n,e){var r=e(9781),o=e(4664),i=e(9670),c=e(4948),u=Object.defineProperty;n.f=r?u:function(t,n,e){if(i(t),n=c(n),i(e),o)try{return u(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported");return"value"in e&&(t[n]=e.value),t}},1236:function(t,n,e){var r=e(9781),o=e(5296),i=e(9114),c=e(5656),u=e(4948),a=e(6656),f=e(4664),s=Object.getOwnPropertyDescriptor;n.f=r?s:function(t,n){if(t=c(t),n=u(n),f)try{return s(t,n)}catch(t){}if(a(t,n))return i(!o.f.call(t,n),t[n])}},8006:function(t,n,e){var r=e(6324),o=e(748).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},5181:function(t,n){n.f=Object.getOwnPropertySymbols},9518:function(t,n,e){var r=e(6656),o=e(7908),i=e(6200),c=e(8544),u=i("IE_PROTO"),a=Object.prototype;t.exports=c?Object.getPrototypeOf:function(t){return t=o(t),r(t,u)?t[u]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},6324:function(t,n,e){var r=e(6656),o=e(5656),i=e(1318).indexOf,c=e(3501);t.exports=function(t,n){var e,u=o(t),a=0,f=[];for(e in u)!r(c,e)&&r(u,e)&&f.push(e);for(;n.length>a;)r(u,e=n[a++])&&(~i(f,e)||f.push(e));return f}},1956:function(t,n,e){var r=e(6324),o=e(748);t.exports=Object.keys||function(t){return r(t,o)}},5296:function(t,n){"use strict";var e={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!e.call({1:2},1);n.f=o?function(t){var n=r(this,t);return!!n&&n.enumerable}:e},7674:function(t,n,e){var r=e(9670),o=e(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,n=!1,e={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(e,[]),n=e instanceof Array}catch(t){}return function(e,i){return r(e),o(i),n?t.call(e,i):e.__proto__=i,e}}():void 0)},288:function(t,n,e){"use strict";var r=e(1694),o=e(648);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(t,n,e){var r=e(111);t.exports=function(t,n){var e,o;if("string"===n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;if("function"==typeof(e=t.valueOf)&&!r(o=e.call(t)))return o;if("string"!==n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},3887:function(t,n,e){var r=e(5005),o=e(8006),i=e(5181),c=e(9670);t.exports=r("Reflect","ownKeys")||function(t){var n=o.f(c(t)),e=i.f;return e?n.concat(e(t)):n}},2534:function(t){t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},9478:function(t,n,e){var r=e(9670),o=e(111),i=e(8523);t.exports=function(t,n){if(r(t),o(n)&&n.constructor===t)return n;var e=i.f(t);return(0,e.resolve)(n),e.promise}},2248:function(t,n,e){var r=e(1320);t.exports=function(t,n,e){for(var o in n)r(t,o,n[o],e);return t}},1320:function(t,n,e){var r=e(7854),o=e(8880),i=e(6656),c=e(3505),u=e(2788),a=e(9909),f=a.get,s=a.enforce,l=String(String).split("String");(t.exports=function(t,n,e,u){var a,f=!!u&&!!u.unsafe,p=!!u&&!!u.enumerable,v=!!u&&!!u.noTargetGet;"function"==typeof e&&("string"!=typeof n||i(e,"name")||o(e,"name",n),(a=s(e)).source||(a.source=l.join("string"==typeof n?n:""))),t!==r?(f?!v&&t[n]&&(p=!0):delete t[n],p?t[n]=e:o(t,n,e)):p?t[n]=e:c(n,e)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||u(this)}))},7651:function(t,n,e){var r=e(4326),o=e(2261);t.exports=function(t,n){var e=t.exec;if("function"==typeof e){var i=e.call(t,n);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,n)}},2261:function(t,n,e){"use strict";var r,o,i=e(1340),c=e(7066),u=e(2999),a=e(2309),f=e(30),s=e(9909).get,l=e(9441),p=e(8173),v=RegExp.prototype.exec,d=a("native-string-replace",String.prototype.replace),h=v,y=(r=/a/,o=/b*/g,v.call(r,"a"),v.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),g=u.UNSUPPORTED_Y||u.BROKEN_CARET,x=void 0!==/()??/.exec("")[1];(y||x||g||l||p)&&(h=function(t){var n,e,r,o,u,a,l,p=this,m=s(p),b=i(t),w=m.raw;if(w)return w.lastIndex=p.lastIndex,n=h.call(w,b),p.lastIndex=w.lastIndex,n;var S=m.groups,j=g&&p.sticky,O=c.call(p),E=p.source,T=0,P=b;if(j&&(-1===(O=O.replace("y","")).indexOf("g")&&(O+="g"),P=b.slice(p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b.charAt(p.lastIndex-1))&&(E="(?: "+E+")",P=" "+P,T++),e=new RegExp("^(?:"+E+")",O)),x&&(e=new RegExp("^"+E+"$(?!\\s)",O)),y&&(r=p.lastIndex),o=v.call(j?e:p,P),j?o?(o.input=o.input.slice(T),o[0]=o[0].slice(T),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:y&&o&&(p.lastIndex=p.global?o.index+o[0].length:r),x&&o&&o.length>1&&d.call(o[0],e,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(o[u]=void 0)})),o&&S)for(o.groups=a=f(null),u=0;u<S.length;u++)a[(l=S[u])[0]]=o[l[1]];return o}),t.exports=h},7066:function(t,n,e){"use strict";var r=e(9670);t.exports=function(){var t=r(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.dotAll&&(n+="s"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},2999:function(t,n,e){var r=e(7293),o=e(7854).RegExp;n.UNSUPPORTED_Y=r((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),n.BROKEN_CARET=r((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},9441:function(t,n,e){var r=e(7293),o=e(7854).RegExp;t.exports=r((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},8173:function(t,n,e){var r=e(7293),o=e(7854).RegExp;t.exports=r((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},4488:function(t){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},1150:function(t){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},3505:function(t,n,e){var r=e(7854);t.exports=function(t,n){try{Object.defineProperty(r,t,{value:n,configurable:!0,writable:!0})}catch(e){r[t]=n}return n}},6340:function(t,n,e){"use strict";var r=e(5005),o=e(3070),i=e(5112),c=e(9781),u=i("species");t.exports=function(t){var n=r(t),e=o.f;c&&n&&!n[u]&&e(n,u,{configurable:!0,get:function(){return this}})}},8003:function(t,n,e){var r=e(3070).f,o=e(6656),i=e(5112)("toStringTag");t.exports=function(t,n,e){t&&!o(t=e?t:t.prototype,i)&&r(t,i,{configurable:!0,value:n})}},6200:function(t,n,e){var r=e(2309),o=e(9711),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,n,e){var r=e(7854),o=e(3505),i="__core-js_shared__",c=r[i]||o(i,{});t.exports=c},2309:function(t,n,e){var r=e(1913),o=e(5465);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.16.2",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(t,n,e){var r=e(9670),o=e(3099),i=e(5112)("species");t.exports=function(t,n){var e,c=r(t).constructor;return void 0===c||null==(e=r(c)[i])?n:o(e)}},8710:function(t,n,e){var r=e(9958),o=e(1340),i=e(4488),c=function(t){return function(n,e){var c,u,a=o(i(n)),f=r(e),s=a.length;return f<0||f>=s?t?"":void 0:(c=a.charCodeAt(f))<55296||c>56319||f+1===s||(u=a.charCodeAt(f+1))<56320||u>57343?t?a.charAt(f):c:t?a.slice(f,f+2):u-56320+(c-55296<<10)+65536}};t.exports={codeAt:c(!1),charAt:c(!0)}},261:function(t,n,e){var r,o,i,c,u=e(7854),a=e(7293),f=e(9974),s=e(490),l=e(317),p=e(6833),v=e(5268),d=u.setImmediate,h=u.clearImmediate,y=u.process,g=u.MessageChannel,x=u.Dispatch,m=0,b={};try{r=u.location}catch(t){}var w=function(t){if(b.hasOwnProperty(t)){var n=b[t];delete b[t],n()}},S=function(t){return function(){w(t)}},j=function(t){w(t.data)},O=function(t){u.postMessage(String(t),r.protocol+"//"+r.host)};d&&h||(d=function(t){for(var n=[],e=arguments.length,r=1;e>r;)n.push(arguments[r++]);return b[++m]=function(){("function"==typeof t?t:Function(t)).apply(void 0,n)},o(m),m},h=function(t){delete b[t]},v?o=function(t){y.nextTick(S(t))}:x&&x.now?o=function(t){x.now(S(t))}:g&&!p?(c=(i=new g).port2,i.port1.onmessage=j,o=f(c.postMessage,c,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts&&r&&"file:"!==r.protocol&&!a(O)?(o=O,u.addEventListener("message",j,!1)):o="onreadystatechange"in l("script")?function(t){s.appendChild(l("script")).onreadystatechange=function(){s.removeChild(this),w(t)}}:function(t){setTimeout(S(t),0)}),t.exports={set:d,clear:h}},1400:function(t,n,e){var r=e(9958),o=Math.max,i=Math.min;t.exports=function(t,n){var e=r(t);return e<0?o(e+n,0):i(e,n)}},5656:function(t,n,e){var r=e(8361),o=e(4488);t.exports=function(t){return r(o(t))}},9958:function(t){var n=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:n)(t)}},7466:function(t,n,e){var r=e(9958),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},7908:function(t,n,e){var r=e(4488);t.exports=function(t){return Object(r(t))}},7593:function(t,n,e){var r=e(111),o=e(2190),i=e(2140),c=e(5112)("toPrimitive");t.exports=function(t,n){if(!r(t)||o(t))return t;var e,u=t[c];if(void 0!==u){if(void 0===n&&(n="default"),e=u.call(t,n),!r(e)||o(e))return e;throw TypeError("Can't convert object to primitive value")}return void 0===n&&(n="number"),i(t,n)}},4948:function(t,n,e){var r=e(7593),o=e(2190);t.exports=function(t){var n=r(t,"string");return o(n)?n:String(n)}},1694:function(t,n,e){var r={};r[e(5112)("toStringTag")]="z",t.exports="[object z]"===String(r)},1340:function(t,n,e){var r=e(2190);t.exports=function(t){if(r(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)}},9711:function(t){var n=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+e).toString(36)}},3307:function(t,n,e){var r=e(133);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:function(t,n,e){var r=e(7854),o=e(2309),i=e(6656),c=e(9711),u=e(133),a=e(3307),f=o("wks"),s=r.Symbol,l=a?s:s&&s.withoutSetter||c;t.exports=function(t){return i(f,t)&&(u||"string"==typeof f[t])||(u&&i(s,t)?f[t]=s[t]:f[t]=l("Symbol."+t)),f[t]}},6992:function(t,n,e){"use strict";var r=e(5656),o=e(1223),i=e(7497),c=e(9909),u=e(654),a="Array Iterator",f=c.set,s=c.getterFor(a);t.exports=u(Array,"Array",(function(t,n){f(this,{type:a,target:r(t),index:0,kind:n})}),(function(){var t=s(this),n=t.target,e=t.kind,r=t.index++;return!n||r>=n.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:r,done:!1}:"values"==e?{value:n[r],done:!1}:{value:[r,n[r]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},1539:function(t,n,e){var r=e(1694),o=e(1320),i=e(288);r||o(Object.prototype,"toString",i,{unsafe:!0})},8674:function(t,n,e){"use strict";var r,o,i,c,u=e(2109),a=e(1913),f=e(7854),s=e(5005),l=e(3366),p=e(1320),v=e(2248),d=e(7674),h=e(8003),y=e(6340),g=e(111),x=e(3099),m=e(5787),b=e(2788),w=e(408),S=e(7072),j=e(6707),O=e(261).set,E=e(5948),T=e(9478),P=e(842),I=e(8523),A=e(2534),L=e(9909),k=e(4705),_=e(5112),R=e(7871),C=e(5268),M=e(7392),N=_("species"),D="Promise",F=L.get,G=L.set,U=L.getterFor(D),z=l&&l.prototype,V=l,B=z,q=f.TypeError,H=f.document,W=f.process,Y=I.f,K=Y,$=!!(H&&H.createEvent&&f.dispatchEvent),X="function"==typeof PromiseRejectionEvent,J="unhandledrejection",Q=!1,Z=k(D,(function(){var t=b(V),n=t!==String(V);if(!n&&66===M)return!0;if(a&&!B.finally)return!0;if(M>=51&&/native code/.test(t))return!1;var e=new V((function(t){t(1)})),r=function(t){t((function(){}),(function(){}))};return(e.constructor={})[N]=r,!(Q=e.then((function(){}))instanceof r)||!n&&R&&!X})),tt=Z||!S((function(t){V.all(t).catch((function(){}))})),nt=function(t){var n;return!(!g(t)||"function"!=typeof(n=t.then))&&n},et=function(t,n){if(!t.notified){t.notified=!0;var e=t.reactions;E((function(){for(var r=t.value,o=1==t.state,i=0;e.length>i;){var c,u,a,f=e[i++],s=o?f.ok:f.fail,l=f.resolve,p=f.reject,v=f.domain;try{s?(o||(2===t.rejection&&ct(t),t.rejection=1),!0===s?c=r:(v&&v.enter(),c=s(r),v&&(v.exit(),a=!0)),c===f.promise?p(q("Promise-chain cycle")):(u=nt(c))?u.call(c,l,p):l(c)):p(r)}catch(t){v&&!a&&v.exit(),p(t)}}t.reactions=[],t.notified=!1,n&&!t.rejection&&ot(t)}))}},rt=function(t,n,e){var r,o;$?((r=H.createEvent("Event")).promise=n,r.reason=e,r.initEvent(t,!1,!0),f.dispatchEvent(r)):r={promise:n,reason:e},!X&&(o=f["on"+t])?o(r):t===J&&P("Unhandled promise rejection",e)},ot=function(t){O.call(f,(function(){var n,e=t.facade,r=t.value;if(it(t)&&(n=A((function(){C?W.emit("unhandledRejection",r,e):rt(J,e,r)})),t.rejection=C||it(t)?2:1,n.error))throw n.value}))},it=function(t){return 1!==t.rejection&&!t.parent},ct=function(t){O.call(f,(function(){var n=t.facade;C?W.emit("rejectionHandled",n):rt("rejectionhandled",n,t.value)}))},ut=function(t,n,e){return function(r){t(n,r,e)}},at=function(t,n,e){t.done||(t.done=!0,e&&(t=e),t.value=n,t.state=2,et(t,!0))},ft=function(t,n,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===n)throw q("Promise can't be resolved itself");var r=nt(n);r?E((function(){var e={done:!1};try{r.call(n,ut(ft,e,t),ut(at,e,t))}catch(n){at(e,n,t)}})):(t.value=n,t.state=1,et(t,!1))}catch(n){at({done:!1},n,t)}}};if(Z&&(B=(V=function(t){m(this,V,D),x(t),r.call(this);var n=F(this);try{t(ut(ft,n),ut(at,n))}catch(t){at(n,t)}}).prototype,(r=function(t){G(this,{type:D,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=v(B,{then:function(t,n){var e=U(this),r=Y(j(this,V));return r.ok="function"!=typeof t||t,r.fail="function"==typeof n&&n,r.domain=C?W.domain:void 0,e.parent=!0,e.reactions.push(r),0!=e.state&&et(e,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r,n=F(t);this.promise=t,this.resolve=ut(ft,n),this.reject=ut(at,n)},I.f=Y=function(t){return t===V||t===i?new o(t):K(t)},!a&&"function"==typeof l&&z!==Object.prototype)){c=z.then,Q||(p(z,"then",(function(t,n){var e=this;return new V((function(t,n){c.call(e,t,n)})).then(t,n)}),{unsafe:!0}),p(z,"catch",B.catch,{unsafe:!0}));try{delete z.constructor}catch(t){}d&&d(z,B)}u({global:!0,wrap:!0,forced:Z},{Promise:V}),h(V,D,!1,!0),y(D),i=s(D),u({target:D,stat:!0,forced:Z},{reject:function(t){var n=Y(this);return n.reject.call(void 0,t),n.promise}}),u({target:D,stat:!0,forced:a||Z},{resolve:function(t){return T(a&&this===i?V:this,t)}}),u({target:D,stat:!0,forced:tt},{all:function(t){var n=this,e=Y(n),r=e.resolve,o=e.reject,i=A((function(){var e=x(n.resolve),i=[],c=0,u=1;w(t,(function(t){var a=c++,f=!1;i.push(void 0),u++,e.call(n,t).then((function(t){f||(f=!0,i[a]=t,--u||r(i))}),o)})),--u||r(i)}));return i.error&&o(i.value),e.promise},race:function(t){var n=this,e=Y(n),r=e.reject,o=A((function(){var o=x(n.resolve);w(t,(function(t){o.call(n,t).then(e.resolve,r)}))}));return o.error&&r(o.value),e.promise}})},4916:function(t,n,e){"use strict";var r=e(2109),o=e(2261);r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},8783:function(t,n,e){"use strict";var r=e(8710).charAt,o=e(1340),i=e(9909),c=e(654),u="String Iterator",a=i.set,f=i.getterFor(u);c(String,"String",(function(t){a(this,{type:u,string:o(t),index:0})}),(function(){var t,n=f(this),e=n.string,o=n.index;return o>=e.length?{value:void 0,done:!0}:(t=r(e,o),n.index+=t.length,{value:t,done:!1})}))},4765:function(t,n,e){"use strict";var r=e(7007),o=e(9670),i=e(4488),c=e(1150),u=e(1340),a=e(7651);r("search",(function(t,n,e){return[function(n){var e=i(this),r=null==n?void 0:n[t];return void 0!==r?r.call(n,e):new RegExp(n)[t](u(e))},function(t){var r=o(this),i=u(t),f=e(n,r,i);if(f.done)return f.value;var s=r.lastIndex;c(s,0)||(r.lastIndex=0);var l=a(r,i);return c(r.lastIndex,s)||(r.lastIndex=s),null===l?-1:l.index}]}))},3948:function(t,n,e){var r=e(7854),o=e(8324),i=e(6992),c=e(8880),u=e(5112),a=u("iterator"),f=u("toStringTag"),s=i.values;for(var l in o){var p=r[l],v=p&&p.prototype;if(v){if(v[a]!==s)try{c(v,a,s)}catch(t){v[a]=s}if(v[f]||c(v,f,l),o[l])for(var d in i)if(v[d]!==i[d])try{c(v,d,i[d])}catch(t){v[d]=i[d]}}}}},r={};function o(t){var n=r[t];if(void 0!==n)return n.exports;var i=r[t]={exports:{}};return e[t](i,i.exports,o),i.exports}o.m=e,o.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(n,{a:n}),n},o.d=function(t,n){for(var e in n)o.o(n,e)&&!o.o(t,e)&&Object.defineProperty(t,e,{enumerable:!0,get:n[e]})},o.f={},o.e=function(t){return Promise.all(Object.keys(o.f).reduce((function(n,e){return o.f[e](t,n),n}),[]))},o.u=function(t){return t+"."+o.h()+".bundle.js"},o.miniCssF=function(t){},o.h=function(){return"dee6efa10ec9f94482a3"},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},t={},n="landing-page-gem:",o.l=function(e,r,i,c){if(t[e])t[e].push(r);else{var u,a;if(void 0!==i)for(var f=document.getElementsByTagName("script"),s=0;s<f.length;s++){var l=f[s];if(l.getAttribute("src")==e||l.getAttribute("data-webpack")==n+i){u=l;break}}u||(a=!0,(u=document.createElement("script")).charset="utf-8",u.timeout=120,o.nc&&u.setAttribute("nonce",o.nc),u.setAttribute("data-webpack",n+i),u.src=e),t[e]=[r];var p=function(n,r){u.onerror=u.onload=null,clearTimeout(v);var o=t[e];if(delete t[e],u.parentNode&&u.parentNode.removeChild(u),o&&o.forEach((function(t){return t(r)})),n)return n(r)},v=setTimeout(p.bind(null,void 0,{type:"timeout",target:u}),12e4);u.onerror=p.bind(null,u.onerror),u.onload=p.bind(null,u.onload),a&&document.head.appendChild(u)}},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.p="/assets/js/dist/",function(){var t={771:0};o.f.j=function(n,e){var r=o.o(t,n)?t[n]:void 0;if(0!==r)if(r)e.push(r[2]);else{var i=new Promise((function(e,o){r=t[n]=[e,o]}));e.push(r[2]=i);var c=o.p+o.u(n),u=new Error;o.l(c,(function(e){if(o.o(t,n)&&(0!==(r=t[n])&&(t[n]=void 0),r)){var i=e&&("load"===e.type?"missing":e.type),c=e&&e.target&&e.target.src;u.message="Loading chunk "+n+" failed.\n("+i+": "+c+")",u.name="ChunkLoadError",u.type=i,u.request=c,r[1](u)}}),"chunk-"+n,n)}};var n=function(n,e){var r,i,c=e[0],u=e[1],a=e[2],f=0;for(r in u)o.o(u,r)&&(o.m[r]=u[r]);for(a&&a(o),n&&n(e);f<c.length;f++)i=c[f],o.o(t,i)&&t[i]&&t[i][0](),t[c[f]]=0},e=self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[];e.forEach(n.bind(null,0)),e.push=n.bind(null,e.push.bind(e))}(),o(4358)}();
@@ -0,0 +1 @@
1
+ .navbar-brand{margin-right:0}@media screen and (min-width: 768px){.navbar-brand{margin-right:1rem}}.btn{vertical-align:baseline}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.editor-link{display:none}.cms-editor-active .editor-link{display:block}.editor-button{display:none}.cms-editor-active .editor-button{display:inline-block}.targetx__wrapper{margin-top:-35px;z-index:-1}p.supportInfo{display:none}@media screen and (min-width: 1200px){.wForm form>div.oneField{margin-top:0 !important}}@media screen and (min-width: 1800px){.wForm form>div.oneField{margin-top:10px !important}}.wFormContainer{padding-left:5px !important;padding-right:5px !important}@media screen and (min-width: 1600px){.wFormContainer{padding:1rem 2rem !important}}#tfa_11::before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}@media screen and (min-width: 1800px){#tfa_775-D{margin-top:5px !important}}.oneField.field-container-D{max-width:100%}#submit_button{background-color:#0051a7 !important;border-color:#003773 !important;font-family:"Open Sans",sans-serif !important;font-weight:400 !important;font-size:1.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}#submit_button:hover{background-color:#022b55 !important;border-color:#021e3d !important}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-bottom:-56px;margin-top:60px;padding-bottom:40px;padding-top:40px;width:100%;border-top-color:rgba(0,0,0,.15);border-top-style:solid;border-top-width:thin}a.footer-link{color:#0f3b63}a.footer-link:hover{text-decoration:none !important;color:#c61f48}.footer-heading{transition-property:color;transition-timing-function:ease;transition-duration:.3s}.footer-icons{background-color:#c61f48;border-radius:50%;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;height:33px;margin:4px;padding:2px;width:33px}@media screen and (min-width: 360px){.footer-icons{height:40px;margin:5px;width:40px}}@media screen and (min-width: 412px){.footer-icons{height:50px;width:50px}}a.footer-social-links,a.footer-social-links .footer-icons{text-decoration:none !important}a.footer-social-links:hover .footer-icons{text-decoration:none !important;background-color:#0f3b63}.footer__mobile--margin-bottom{margin-bottom:20px}@media screen and (min-width: 992px){.footer__mobile--margin-bottom{margin-bottom:0}}.footer__svg--logo{height:36px;max-width:100%}.header__bg{background-image:url("/assets/img/banner-bg.jpg");background-size:cover;background-position:center;background-repeat:no-repeat;height:55%;height:55vh}@media screen and (min-width: 1200px){.header__bg{height:auto}}html{background-color:#b8babc}body{overflow-x:hidden}.links__darker-link{color:#006ce0}.links__phone--span{color:#fff;position:relative;text-decoration:none}.links__phone--span:visited{color:#fff}.links__phone--span:hover,.links__phone--span:focus{color:#fff;text-decoration:none}.links__phone--span:focus:after,.links__phone--span:hover:after{opacity:1;transform:translateY(-0.2em)}.links__phone--span:after{background-color:#f99e1b;bottom:-0.325rem;content:"";display:block;height:.1875rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:100%}.svg__fill--blue{fill:#0f3b63}.svg__fill--white{fill:#fff}.svg{height:100px;width:100px}.svg--none{fill:none}.svg--blue{fill:#0f3b63}.svg--red{fill:#c61f48}.svg--max-width{max-width:100%}.svg__button{height:48px;width:48px}.svg--fill-none{fill:none}.svg--fill-white{fill:#fff}.svg--fill-blue{fill:#0f3b63}.svg--fill-green{fill:#00a14b}.svg__earn-more{transform:scale(1.35)}.svg__fill--bright-red{fill:#c81f49}.svg__fill--red-shadow{fill:#8f0f28}body{font-size:1rem}.typography__nav-heading{color:#0f3b63;display:inline;font-family:"Eurostile",sans-serif;font-size:1.5rem;font-style:italic;font-weight:700;text-transform:uppercase;transition-property:color;transition-timing-function:ease;transition-duration:.4s}.typography__nav-heading:hover,.typography__nav-heading:focus{color:#c61f48}.typography__nav-heading--smaller{font-size:1.25rem}@media screen and (min-width: 360px){.typography__nav-heading{font-size:1.8rem}.typography__nav-heading--smaller{font-size:1.5rem}}@media screen and (min-width: 410px){.typography__nav-heading{font-size:2rem}}@media screen and (min-width: 576px){.typography__nav-heading{font-size:2.3rem}}@media screen and (min-width: 768px){.typography__nav-heading{font-size:2.4rem}}@media screen and (min-width: 1500px){.typography__nav-heading{font-size:2.6rem}}.typography__footer-heading{font-family:"Roboto",sans-serif;font-size:1.95rem;font-weight:900}@media screen and (min-width: 360px){.typography__footer-heading{font-size:2.2rem}}@media screen and (min-width: 375px){.typography__footer-heading{font-size:2.4rem}}@media screen and (min-width: 410px){.typography__footer-heading{font-size:2.6rem}}.typography__footer-heading--long{font-size:1.75rem}@media screen and (min-width: 360px){.typography__footer-heading--long{font-size:1.75rem}}@media screen and (min-width: 375px){.typography__footer-heading--long{font-size:2rem}}@media screen and (min-width: 410px){.typography__footer-heading--long{font-size:2.2rem}}.typography__h2{color:#555;font-family:"Roboto",sans-serif;font-size:2rem;font-weight:500}.typography__h3{color:#0f3b63;font-family:"Roboto",sans-serif;font-size:1.75rem;font-weight:600}.typography__h4{color:#c61f48;font-family:"Roboto",sans-serif;font-size:1.7rem;font-weight:600}.typography__h5{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.5rem}.typography__h6{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.4rem}.typography__phone--span{color:#fff;font-family:"Oswald",sans-serif;font-size:1.3rem;font-weight:400;letter-spacing:.07rem;white-space:nowrap}@media screen and (min-width: 768px){.typography__phone--span{font-size:1.45rem}}@media screen and (min-width: 1024px){.typography__phone--span{font-size:1.5rem}}p,ul:not(.navbar-nav),ol{color:#555;font-family:"Open Sans",sans-serif;font-size:1rem}h1 sup,h2 sup,h3 sup,h4 sup,h5 sup,h6 sup{font-size:45% !important;top:-1em;font-weight:normal}.typography__register--h2{color:#fff;font-family:eurostile,sans-serif;font-size:2rem;font-weight:500;letter-spacing:.03rem;position:relative;top:30%;margin-bottom:-10px}@media screen and (min-width: 360px){.typography__register--h2{font-size:2.2rem}}@media screen and (min-width: 400px){.typography__register--h2{font-size:2.4rem}}@media screen and (min-width: 768px){.typography__register--h2{font-size:4rem}}@media screen and (min-width: 1200px){.typography__register--h2{font-size:4.5rem}}@media screen and (min-width: 1800px){.typography__register--h2{font-size:6.6rem}}.typography__register--h3{color:#fff;font-family:eurostile,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.03rem;position:relative;top:31%}@media screen and (min-width: 400px){.typography__register--h3{font-size:1.6rem;top:30.5%}}@media screen and (min-width: 768px){.typography__register--h3{font-size:2.5rem;top:30%}}@media screen and (min-width: 1200px){.typography__register--h3{font-size:2.6rem;top:30%}}@media screen and (min-width: 1800px){.typography__register--h3{font-size:2.7rem;top:30%}}.typography__register--caption{bottom:15px;color:#fff;filter:drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));font-family:"Oswald",sans-serif;font-size:1rem;font-weight:500;letter-spacing:.07rem;position:absolute;right:25px}@media screen and (min-width: 768px){.typography__register--caption{font-size:1.1rem}}@media screen and (min-width: 1000px){.typography__register--caption{font-size:1.2rem}}.typography__register-h4{font-family:"Oswald",sans-serif;font-size:1.6rem}@media screen and (min-width: 768px){.typography__register-h4{font-size:2rem}}@media screen and (min-width: 1200px){.typography__register-h4{font-size:2rem}}@media screen and (min-width: 1800px){.typography__register-h4{font-size:2.3rem}}.typography__larger-p{font-size:1.2rem}.typography__register--thank-you{color:#0f3b63;font-family:"Eurostile",sans-serif;font-size:2rem}.typography__register--thank-you--message{color:#c61f48;font-family:"Saira","sans-serif";font-weight:700;font-size:1.4rem}@media screen and (min-width: 768px){.typography__register--thank-you{font-size:2.4rem;margin-left:100px;margin-top:-10px}.typography__register--thank-you--message{font-size:1.6rem;margin-left:95px}}@media screen and (min-width: 1200px){.typography__register--thank-you{font-size:2.6rem}}@media screen and (min-width: 1800px){.typography__register--thank-you{font-size:3rem;margin-top:-15px}}.typography--text-shadow{text-shadow:0 0 10px rgba(0,0,0,.75)}.benefits__typography--h5{color:#c61f48;font-family:"Oswald",sans-serif;font-size:2rem;font-weight:700;letter-spacing:.03rem}.benefits__typography--h5--mb{margin-bottom:40px}@media screen and (min-width: 768px){.benefits__typography--h5{font-size:2.8rem}}@media screen and (min-width: 992px){.benefits__typography--h5--mb{margin-bottom:60px}}.benefits__testimonials--mb{margin-bottom:40px}@media screen and (min-width: 1200px){.benefits__testimonials--mb{margin-bottom:0}}.benefits__typography--h5--black{color:#000;font-family:"Oswald",sans-serif;font-size:2rem;font-weight:400;letter-spacing:.03rem;margin-bottom:60px}@media screen and (min-width: 768px){.benefits__typography--h5--black{font-size:2.1rem}}@media screen and (min-width: 1200px){.benefits__typography-h5--black{font-size:3rem}}.benefits__typography--student-p{font-family:"Open Sans",sans-serif;color:#000;font-weight:600;font-size:1.15rem;margin-top:15px;margin-bottom:.5rem}@media screen and (min-width: 1200px){.benefits__typography--student-p--larger{font-size:1.3rem}}.benefits__typography--img-cap{font-family:"Open Sans",sans-serif;font-size:1.35rem;font-weight:600;display:block}.benefits__typography-itransfer{font-size:1.7rem;font-weight:600;line-height:1;position:absolute;top:4rem;margin-left:-20px}@media screen and (min-width: 400px){.benefits__typography-itransfer{font-size:1.8rem}}@media screen and (min-width: 768px){.benefits__typography-itransfer{font-size:1.9rem}}.benefits__typography--h6{color:#c61f48;font-family:"Saira","sans-serif";font-weight:700;font-size:2rem;letter-spacing:.03rem}.benefits__check-svg{margin-top:-60px;width:80px}.benefits__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.benefits__first-section--marg{margin-top:15px;background-color:#ccdde1;padding-bottom:25px;padding-top:25px}@media screen and (min-width: 1200px){.benefits__first-section--marg{margin-top:15px}}.benefits__section--marg{margin-top:35px}@media screen and (min-width: 1200px){.benefits__section--marg{margin-top:65px}}.benefits__row--pad{margin-top:25px}@media screen and (min-width: 1200px){.benefits__row--pad{margin-top:0}}.benefits__itransfer-img{width:120px;margin-top:40px}@media screen and (min-width: 400px){.benefits__itransfer-img{width:140px}}@media screen and (min-width: 768px){.benefits__itransfer-img{width:150px}}@media screen and (min-width: 992px){.benefits__itransfer-img{margin-top:20px;width:160px}}.benefits__idfpr-img{width:330px}@media screen and (max-width: 992px){.benefits__idfpr-img{margin-bottom:15px;margin-top:40px}}.benefits__iccb-img{width:250px}@media screen and (max-width: 992px){.benefits__iccb-img{margin-top:15px}}.benefits__accredited--card{background-color:#0f3b63;padding-bottom:25px;padding-left:10px;padding-right:10px;padding-top:15px;width:90%}@media screen and (min-width: 400px){.benefits__accredited--card{width:75%}}@media screen and (min-width: 768px){.benefits__accredited--card{width:50%}}@media screen and (min-width: 992px){.benefits__accredited--card{width:100%}}@media screen and (min-width: 1200px){.benefits__accredited--card{width:75%}}.benefits__accredited--span-l{color:#fff;font-size:2.1rem;font-weight:bolder;display:block;line-height:1;margin-top:-10px;margin-bottom:5px}.benefits__accredited--span-s{color:#fff;font-size:1.1rem;font-style:italic;line-height:.5;font-weight:600;letter-spacing:-0.04rem}.benefits__accredited--span--source{display:block}.benefits__borders--circle-img{border:3px solid #fff;filter:drop-shadow(5px 5px 12px #b1b1b1);width:50%}@media screen and (min-width: 768px){.benefits__borders--circle-img{width:100%}}#page-top::before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}.breadcrumbs{background-color:transparent;border-bottom-color:rgba(0,0,0,.25);border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-style:solid;border-bottom-width:thin;margin-bottom:1.5rem}.breadcrumbs--margin-top{margin-top:125px}.breadcrumbs--home{vertical-align:bottom}.breadcrumbs--home--house{fill:none;stroke:#666;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10}.breadcrumbs--home--border{fill:none}.breadcrumb-item+.breadcrumb-item::before{content:url("/assets/img/keyboard_arrow_right.svg");opacity:.5}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.error__main{min-height:50vh}@media screen and (min-width: 992px){.error__main{min-height:65vh}}.nav-landing{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:5px;padding-left:5%;padding-top:5px;width:100%;z-index:1031}.nav-landing__kcc-logo{margin-left:5px;width:190px}@media screen and (min-width: 360px){.nav-landing__kcc-logo{width:220px}}@media screen and (min-width: 375px){.nav-landing__kcc-logo{width:230px}}@media screen and (min-width: 410px){.nav-landing__kcc-logo{width:255px}}@media screen and (min-width: 488px){.nav-landing__kcc-logo{width:260px}}@media screen and (min-width: 576px){.nav-landing__kcc-logo{width:300px}}@media screen and (min-width: 768px){.nav-landing__kcc-logo{width:320px}}@media screen and (min-width: 992px)and (max-width: 1100px){.nav-landing__kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width: 1100px){.nav-landing__kcc-logo{margin-left:-25px;width:340px}}.nav-landing__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width: 360px){.nav-landing__kcc-logo-inverse{width:60px}}@media screen and (min-width: 410px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width: 488px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width: 576px){.nav-landing__kcc-logo-inverse{width:73px}}@media screen and (min-width: 768px){.nav-landing__kcc-logo-inverse{width:80px}}@media screen and (min-width: 992px){.nav-landing__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width: 1100px){.nav-landing__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width: 1300px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width: 1400px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-40px}}.nav-landing__navbar-brand{margin-left:-10px}@media screen and (min-width: 410px){.nav-landing__navbar-brand{margin-left:-15px}}@media screen and (min-width: 488px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width: 576px){.nav-landing__navbar-brand{margin-left:-25px}}@media screen and (min-width: 768px){.nav-landing__navbar-brand{margin-left:-35px}}@media screen and (min-width: 992px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width: 1000px){.nav-landing__navbar-brand{margin-left:-18px}}@media screen and (min-width: 1080px){.nav-landing__navbar-brand{margin-left:-22px}}@media screen and (min-width: 1200px){.nav-landing__navbar-brand{margin-left:-2.5%}}@media screen and (min-width: 1600px){.nav-landing__navbar-brand{margin-left:-3%}}@media screen and (min-width: 1900px){.nav-landing__navbar-brand{margin-left:-3.25%}}@media screen and (min-width: 2000px){.nav-landing__navbar-brand{margin-left:-3.5%}}.positioning__offset-global-nav{margin-top:60px}.positioning__form--margins{margin-top:15px;padding-left:5px;padding-right:5px}@media screen and (min-width: 992px){.positioning__form--margins{margin-top:60px}}.positioning__heading--row{margin-top:35%}@media screen and (min-width: 768px){.positioning__heading--row{margin-top:26%}}@media screen and (min-width: 1200px){.positioning__heading--row{margin-top:35%}}@media screen and (min-width: 1800px){.positioning__heading--row{margin-top:25%}}.positioning__col--offset{margin-right:-25px}@media screen and (min-width: 768px){.positioning__col--offset{margin-right:-45px}}.thank-you__check-mark{height:75px;position:relative;top:-1rem;width:75px}.thank-you__main{min-height:50vh}@media screen and (min-width: 768px){.thank-you__check-mark{position:static}}@media screen and (min-width: 992px){.thank-you__main{min-height:65vh}}
@@ -2,8 +2,8 @@ const GET_STARTED_BUTTON_QUERYSELECTOR = 'a[href="#page-top"]'; // call-to-acti
2
2
  const FIRST_NAME_INPUT_QUERYSELECTOR = '.inputWrapper input[placeholder="First Name"]'; // First Name <input> element from the TargetX form in landing pages
3
3
  // Custom JS to scroll the user to the top of the page & focus the first field (First Name input) of the form
4
4
 
5
- function selectInputEl(inputElQuerySelctorString) {
6
- const inputEl = document.querySelector(inputElQuerySelctorString);
5
+ function selectInputEl(inputElQuerySelectorString) {
6
+ const inputEl = document.querySelector(inputElQuerySelectorString);
7
7
 
8
8
  return inputEl.select();
9
9
  }
@@ -7,14 +7,20 @@ function loadModule(module) {
7
7
  });
8
8
  }
9
9
 
10
- window.addEventListener('load', () => {
11
- const onHomepage = window.location.pathname == '/';
12
-
13
- loadModule('footerDate');
14
- onHomepage ? loadModule('landingPage') : null;
15
- });
16
-
17
10
  document.addEventListener('DOMContentLoaded', () => {
18
- window.location.hostname.search(/\.kcc\.edu/) !== -1 ? loadModule('loadClarusCorpScript') : null;
19
- document.querySelector('img[data-src]') ? loadModule('lazyLoad'): null;
11
+
12
+ Promise.resolve()
13
+ .then(() => {
14
+ if ( window.location.hostname.search(/\.kcc\.edu/) !== -1 ) {
15
+ loadModule('loadClarusCorpScript');
16
+ }})
17
+ .then(() => {
18
+ if ( document.querySelector('img[data-src]') ) {
19
+ loadModule('lazyLoad');
20
+ }})
21
+ .then(() => loadModule('footerDate'))
22
+ .then(() => {
23
+ if ( document.querySelector('a[href="#page-top"]') ) {
24
+ loadModule('landingPage');
25
+ }})
20
26
  });
@@ -1,4 +1,8 @@
1
-
1
+ // HTML and BODY element style rules
2
2
  html {
3
3
  background-color: $color-grey-bg;
4
+ }
5
+
6
+ body {
7
+ overflow-x: hidden;
4
8
  }
@@ -86,6 +86,29 @@ body {
86
86
  }
87
87
  }
88
88
 
89
+ .typography__footer-heading--long {
90
+ font-size: 1.75rem;
91
+ }
92
+
93
+ @media screen and (min-width: 360px) {
94
+ .typography__footer-heading--long {
95
+ font-size:1.75rem
96
+ }
97
+ }
98
+
99
+ @media screen and (min-width: 375px) {
100
+ .typography__footer-heading--long {
101
+ font-size:2rem
102
+ }
103
+ }
104
+
105
+ @media screen and (min-width: 410px) {
106
+ .typography__footer-heading--long {
107
+ font-size:2.2rem
108
+ }
109
+ }
110
+
111
+
89
112
  // Content Headings
90
113
  .typography__h2 {
91
114
  color: $color-grey-heading;
@@ -160,7 +183,7 @@ h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup { // Make superscripts within hea
160
183
  .typography__register--h2 {
161
184
  color: $white;
162
185
  font-family: eurostile, sans-serif;
163
- font-size: 2.4rem;
186
+ font-size: 2rem;
164
187
  font-weight: $font-weight-boldish;
165
188
  letter-spacing: .03rem;
166
189
  position: relative;
@@ -168,34 +191,40 @@ h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup { // Make superscripts within hea
168
191
  margin-bottom: -10px;
169
192
  }
170
193
 
194
+ @media screen and (min-width: 360px) {
195
+ .typography__register--h2 {
196
+ font-size:2.2rem
197
+ }
198
+ }
199
+
171
200
  @media screen and (min-width: 400px) {
172
201
  .typography__register--h2 {
173
- font-size: 3rem;
202
+ font-size:2.4rem
174
203
  }
175
204
  }
176
205
 
177
206
  @media screen and (min-width: 768px) {
178
207
  .typography__register--h2 {
179
- font-size: 5.2rem;
208
+ font-size:4rem
180
209
  }
181
210
  }
182
211
 
183
212
  @media screen and (min-width: 1200px) {
184
213
  .typography__register--h2 {
185
- font-size: 6rem;
214
+ font-size: 4.5rem;
186
215
  }
187
216
  }
188
217
 
189
218
  @media screen and (min-width: 1800px) {
190
219
  .typography__register--h2 {
191
- font-size: 6.6rem;
220
+ font-size:6.6rem
192
221
  }
193
222
  }
194
223
 
195
224
  .typography__register--h3 {
196
225
  color: $white;
197
226
  font-family: eurostile, sans-serif;
198
- font-size: 1.2rem;
227
+ font-size: 1.4rem;
199
228
  font-weight: $font-weight-boldish;
200
229
  letter-spacing: .03rem;
201
230
  position: relative;
@@ -204,7 +233,7 @@ h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup { // Make superscripts within hea
204
233
 
205
234
  @media screen and (min-width: 400px) {
206
235
  .typography__register--h3 {
207
- font-size: 1.45rem;
236
+ font-size: 1.6rem;
208
237
  top: 30.5%;
209
238
  }
210
239
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: landing-page-gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - wdzajicek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-25 00:00:00.000000000 Z
11
+ date: 2021-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -82,13 +82,13 @@ files:
82
82
  - assets/img/schedule.svg
83
83
  - assets/img/support.svg
84
84
  - assets/img/zippia.png
85
- - assets/js/dist/289.ed6ff804ce7d6c85546d.bundle.js
86
- - assets/js/dist/315.ed6ff804ce7d6c85546d.bundle.js
87
- - assets/js/dist/321.ed6ff804ce7d6c85546d.bundle.js
88
- - assets/js/dist/582.ed6ff804ce7d6c85546d.bundle.js
89
- - assets/js/dist/909.ed6ff804ce7d6c85546d.bundle.js
90
- - assets/js/dist/kcc-landing-page.ed6ff804ce7d6c85546d.bundle.js
91
- - assets/js/dist/kcc-landing-page.ed6ff804ce7d6c85546d.css
85
+ - assets/js/dist/289.dee6efa10ec9f94482a3.bundle.js
86
+ - assets/js/dist/315.dee6efa10ec9f94482a3.bundle.js
87
+ - assets/js/dist/321.dee6efa10ec9f94482a3.bundle.js
88
+ - assets/js/dist/582.dee6efa10ec9f94482a3.bundle.js
89
+ - assets/js/dist/909.dee6efa10ec9f94482a3.bundle.js
90
+ - assets/js/dist/kcc-landing-page.dee6efa10ec9f94482a3.bundle.js
91
+ - assets/js/dist/kcc-landing-page.dee6efa10ec9f94482a3.css
92
92
  - assets/js/src/footerDate.js
93
93
  - assets/js/src/landingPage.js
94
94
  - assets/js/src/lazyLoad.js
@@ -1 +0,0 @@
1
- !function(){var t,n,e={397:function(t,n,e){var r={"./footerDate":[6909,909],"./footerDate.js":[6909,909],"./landingPage":[6321,321],"./landingPage.js":[6321,321],"./lazyLoad":[1582,582],"./lazyLoad.js":[1582,582],"./loadClarusCorpScript":[1289,289],"./loadClarusCorpScript.js":[1289,289],"./main":[4358],"./main.js":[4358],"./test":[5315,315],"./test.js":[5315,315]};function o(t){if(!e.o(r,t))return Promise.resolve().then((function(){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}));var n=r[t],o=n[0];return Promise.all(n.slice(1).map(e.e)).then((function(){return e(o)}))}o.keys=function(){return Object.keys(r)},o.id=397,t.exports=o},4358:function(t,n,e){"use strict";function r(t){e(397)("./".concat(t)).then((function(t){(0,t.default)()}))}e.r(n),e(6992),e(1539),e(8674),e(8783),e(3948),e(4916),e(4765),window.addEventListener("load",(function(){var t="/"==window.location.pathname;r("footerDate"),t&&r("landingPage")})),document.addEventListener("DOMContentLoaded",(function(){-1!==window.location.hostname.search(/\.kcc\.edu/)&&r("loadClarusCorpScript"),document.querySelector("img[data-src]")&&r("lazyLoad")}))},3099:function(t){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},6077:function(t,n,e){var r=e(111);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},1223:function(t,n,e){var r=e(5112),o=e(30),i=e(3070),c=r("unscopables"),u=Array.prototype;null==u[c]&&i.f(u,c,{configurable:!0,value:o(null)}),t.exports=function(t){u[c][t]=!0}},5787:function(t){t.exports=function(t,n,e){if(!(t instanceof n))throw TypeError("Incorrect "+(e?e+" ":"")+"invocation");return t}},9670:function(t,n,e){var r=e(111);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},1318:function(t,n,e){var r=e(5656),o=e(7466),i=e(1400),c=function(t){return function(n,e,c){var u,a=r(n),f=o(a.length),s=i(c,f);if(t&&e!=e){for(;f>s;)if((u=a[s++])!=u)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===e)return t||s||0;return!t&&-1}};t.exports={includes:c(!0),indexOf:c(!1)}},7072:function(t,n,e){var r=e(5112)("iterator"),o=!1;try{var i=0,c={next:function(){return{done:!!i++}},return:function(){o=!0}};c[r]=function(){return this},Array.from(c,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!o)return!1;var e=!1;try{var i={};i[r]=function(){return{next:function(){return{done:e=!0}}}},t(i)}catch(t){}return e}},4326:function(t){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},648:function(t,n,e){var r=e(1694),o=e(4326),i=e(5112)("toStringTag"),c="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var n,e,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?e:c?o(n):"Object"==(r=o(n))&&"function"==typeof n.callee?"Arguments":r}},9920:function(t,n,e){var r=e(6656),o=e(3887),i=e(1236),c=e(3070);t.exports=function(t,n){for(var e=o(n),u=c.f,a=i.f,f=0;f<e.length;f++){var s=e[f];r(t,s)||u(t,s,a(n,s))}}},8544:function(t,n,e){var r=e(7293);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4994:function(t,n,e){"use strict";var r=e(3383).IteratorPrototype,o=e(30),i=e(9114),c=e(8003),u=e(7497),a=function(){return this};t.exports=function(t,n,e){var f=n+" Iterator";return t.prototype=o(r,{next:i(1,e)}),c(t,f,!1,!0),u[f]=a,t}},8880:function(t,n,e){var r=e(9781),o=e(3070),i=e(9114);t.exports=r?function(t,n,e){return o.f(t,n,i(1,e))}:function(t,n,e){return t[n]=e,t}},9114:function(t){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},654:function(t,n,e){"use strict";var r=e(2109),o=e(4994),i=e(9518),c=e(7674),u=e(8003),a=e(8880),f=e(1320),s=e(5112),l=e(1913),p=e(7497),v=e(3383),d=v.IteratorPrototype,h=v.BUGGY_SAFARI_ITERATORS,y=s("iterator"),g="keys",x="values",m="entries",b=function(){return this};t.exports=function(t,n,e,s,v,w,j){o(e,n,s);var S,O,E,T=function(t){if(t===v&&k)return k;if(!h&&t in A)return A[t];switch(t){case g:case x:case m:return function(){return new e(this,t)}}return function(){return new e(this)}},P=n+" Iterator",I=!1,A=t.prototype,L=A[y]||A["@@iterator"]||v&&A[v],k=!h&&L||T(v),_="Array"==n&&A.entries||L;if(_&&(S=i(_.call(new t)),d!==Object.prototype&&S.next&&(l||i(S)===d||(c?c(S,d):"function"!=typeof S[y]&&a(S,y,b)),u(S,P,!0,!0),l&&(p[P]=b))),v==x&&L&&L.name!==x&&(I=!0,k=function(){return L.call(this)}),l&&!j||A[y]===k||a(A,y,k),p[n]=k,v)if(O={values:T(x),keys:w?k:T(g),entries:T(m)},j)for(E in O)(h||I||!(E in A))&&f(A,E,O[E]);else r({target:n,proto:!0,forced:h||I},O);return O}},9781:function(t,n,e){var r=e(7293);t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:function(t,n,e){var r=e(7854),o=e(111),i=r.document,c=o(i)&&o(i.createElement);t.exports=function(t){return c?i.createElement(t):{}}},8324:function(t){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},7871:function(t){t.exports="object"==typeof window},1528:function(t,n,e){var r=e(8113),o=e(7854);t.exports=/ipad|iphone|ipod/i.test(r)&&void 0!==o.Pebble},6833:function(t,n,e){var r=e(8113);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},5268:function(t,n,e){var r=e(4326),o=e(7854);t.exports="process"==r(o.process)},1036:function(t,n,e){var r=e(8113);t.exports=/web0s(?!.*chrome)/i.test(r)},8113:function(t,n,e){var r=e(5005);t.exports=r("navigator","userAgent")||""},7392:function(t,n,e){var r,o,i=e(7854),c=e(8113),u=i.process,a=i.Deno,f=u&&u.versions||a&&a.version,s=f&&f.v8;s?o=(r=s.split("."))[0]<4?1:r[0]+r[1]:c&&(!(r=c.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=c.match(/Chrome\/(\d+)/))&&(o=r[1]),t.exports=o&&+o},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(t,n,e){var r=e(7854),o=e(1236).f,i=e(8880),c=e(1320),u=e(3505),a=e(9920),f=e(4705);t.exports=function(t,n){var e,s,l,p,v,d=t.target,h=t.global,y=t.stat;if(e=h?r:y?r[d]||u(d,{}):(r[d]||{}).prototype)for(s in n){if(p=n[s],l=t.noTargetGet?(v=o(e,s))&&v.value:e[s],!f(h?s:d+(y?".":"#")+s,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;a(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),c(e,s,p,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},7007:function(t,n,e){"use strict";e(4916);var r=e(1320),o=e(2261),i=e(7293),c=e(5112),u=e(8880),a=c("species"),f=RegExp.prototype;t.exports=function(t,n,e,s){var l=c(t),p=!i((function(){var n={};return n[l]=function(){return 7},7!=""[t](n)})),v=p&&!i((function(){var n=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[a]=function(){return e},e.flags="",e[l]=/./[l]),e.exec=function(){return n=!0,null},e[l](""),!n}));if(!p||!v||e){var d=/./[l],h=n(l,""[t],(function(t,n,e,r,i){var c=n.exec;return c===o||c===f.exec?p&&!i?{done:!0,value:d.call(n,e,r)}:{done:!0,value:t.call(e,n,r)}:{done:!1}}));r(String.prototype,t,h[0]),r(f,l,h[1])}s&&u(f[l],"sham",!0)}},9974:function(t,n,e){var r=e(3099);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 0:return function(){return t.call(n)};case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,o){return t.call(n,e,r,o)}}return function(){return t.apply(n,arguments)}}},5005:function(t,n,e){var r=e(7854),o=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,n){return arguments.length<2?o(r[t]):r[t]&&r[t][n]}},1246:function(t,n,e){var r=e(648),o=e(7497),i=e(5112)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},7854:function(t,n,e){var r=function(t){return t&&t.Math==Math&&t};t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},6656:function(t,n,e){var r=e(7908),o={}.hasOwnProperty;t.exports=Object.hasOwn||function(t,n){return o.call(r(t),n)}},3501:function(t){t.exports={}},842:function(t,n,e){var r=e(7854);t.exports=function(t,n){var e=r.console;e&&e.error&&(1===arguments.length?e.error(t):e.error(t,n))}},490:function(t,n,e){var r=e(5005);t.exports=r("document","documentElement")},4664:function(t,n,e){var r=e(9781),o=e(7293),i=e(317);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,n,e){var r=e(7293),o=e(4326),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},2788:function(t,n,e){var r=e(5465),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},9909:function(t,n,e){var r,o,i,c=e(8536),u=e(7854),a=e(111),f=e(8880),s=e(6656),l=e(5465),p=e(6200),v=e(3501),d="Object already initialized",h=u.WeakMap;if(c||l.state){var y=l.state||(l.state=new h),g=y.get,x=y.has,m=y.set;r=function(t,n){if(x.call(y,t))throw new TypeError(d);return n.facade=t,m.call(y,t,n),n},o=function(t){return g.call(y,t)||{}},i=function(t){return x.call(y,t)}}else{var b=p("state");v[b]=!0,r=function(t,n){if(s(t,b))throw new TypeError(d);return n.facade=t,f(t,b,n),n},o=function(t){return s(t,b)?t[b]:{}},i=function(t){return s(t,b)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(n){var e;if(!a(n)||(e=o(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return e}}}},7659:function(t,n,e){var r=e(5112),o=e(7497),i=r("iterator"),c=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||c[i]===t)}},4705:function(t,n,e){var r=e(7293),o=/#|\.prototype\./,i=function(t,n){var e=u[c(t)];return e==f||e!=a&&("function"==typeof n?r(n):!!n)},c=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},u=i.data={},a=i.NATIVE="N",f=i.POLYFILL="P";t.exports=i},111:function(t){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},1913:function(t){t.exports=!1},2190:function(t,n,e){var r=e(5005),o=e(3307);t.exports=o?function(t){return"symbol"==typeof t}:function(t){var n=r("Symbol");return"function"==typeof n&&Object(t)instanceof n}},408:function(t,n,e){var r=e(9670),o=e(7659),i=e(7466),c=e(9974),u=e(1246),a=e(9212),f=function(t,n){this.stopped=t,this.result=n};t.exports=function(t,n,e){var s,l,p,v,d,h,y,g=e&&e.that,x=!(!e||!e.AS_ENTRIES),m=!(!e||!e.IS_ITERATOR),b=!(!e||!e.INTERRUPTED),w=c(n,g,1+x+b),j=function(t){return s&&a(s),new f(!0,t)},S=function(t){return x?(r(t),b?w(t[0],t[1],j):w(t[0],t[1])):b?w(t,j):w(t)};if(m)s=t;else{if("function"!=typeof(l=u(t)))throw TypeError("Target is not iterable");if(o(l)){for(p=0,v=i(t.length);v>p;p++)if((d=S(t[p]))&&d instanceof f)return d;return new f(!1)}s=l.call(t)}for(h=s.next;!(y=h.call(s)).done;){try{d=S(y.value)}catch(t){throw a(s),t}if("object"==typeof d&&d&&d instanceof f)return d}return new f(!1)}},9212:function(t,n,e){var r=e(9670);t.exports=function(t){var n=t.return;if(void 0!==n)return r(n.call(t)).value}},3383:function(t,n,e){"use strict";var r,o,i,c=e(7293),u=e(9518),a=e(8880),f=e(6656),s=e(5112),l=e(1913),p=s("iterator"),v=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):v=!0);var d=null==r||c((function(){var t={};return r[p].call(t)!==t}));d&&(r={}),l&&!d||f(r,p)||a(r,p,(function(){return this})),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:v}},7497:function(t){t.exports={}},5948:function(t,n,e){var r,o,i,c,u,a,f,s,l=e(7854),p=e(1236).f,v=e(261).set,d=e(6833),h=e(1528),y=e(1036),g=e(5268),x=l.MutationObserver||l.WebKitMutationObserver,m=l.document,b=l.process,w=l.Promise,j=p(l,"queueMicrotask"),S=j&&j.value;S||(r=function(){var t,n;for(g&&(t=b.domain)&&t.exit();o;){n=o.fn,o=o.next;try{n()}catch(t){throw o?c():i=void 0,t}}i=void 0,t&&t.enter()},d||g||y||!x||!m?!h&&w&&w.resolve?((f=w.resolve(void 0)).constructor=w,s=f.then,c=function(){s.call(f,r)}):c=g?function(){b.nextTick(r)}:function(){v.call(l,r)}:(u=!0,a=m.createTextNode(""),new x(r).observe(a,{characterData:!0}),c=function(){a.data=u=!u})),t.exports=S||function(t){var n={fn:t,next:void 0};i&&(i.next=n),o||(o=n,c()),i=n}},3366:function(t,n,e){var r=e(7854);t.exports=r.Promise},133:function(t,n,e){var r=e(7392),o=e(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:function(t,n,e){var r=e(7854),o=e(2788),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},8523:function(t,n,e){"use strict";var r=e(3099),o=function(t){var n,e;this.promise=new t((function(t,r){if(void 0!==n||void 0!==e)throw TypeError("Bad Promise constructor");n=t,e=r})),this.resolve=r(n),this.reject=r(e)};t.exports.f=function(t){return new o(t)}},30:function(t,n,e){var r,o=e(9670),i=e(6048),c=e(748),u=e(3501),a=e(490),f=e(317),s=e(6200)("IE_PROTO"),l=function(){},p=function(t){return"<script>"+t+"<\/script>"},v=function(t){t.write(p("")),t.close();var n=t.parentWindow.Object;return t=null,n},d=function(){try{r=new ActiveXObject("htmlfile")}catch(t){}var t,n;d="undefined"!=typeof document?document.domain&&r?v(r):((n=f("iframe")).style.display="none",a.appendChild(n),n.src=String("javascript:"),(t=n.contentWindow.document).open(),t.write(p("document.F=Object")),t.close(),t.F):v(r);for(var e=c.length;e--;)delete d.prototype[c[e]];return d()};u[s]=!0,t.exports=Object.create||function(t,n){var e;return null!==t?(l.prototype=o(t),e=new l,l.prototype=null,e[s]=t):e=d(),void 0===n?e:i(e,n)}},6048:function(t,n,e){var r=e(9781),o=e(3070),i=e(9670),c=e(1956);t.exports=r?Object.defineProperties:function(t,n){i(t);for(var e,r=c(n),u=r.length,a=0;u>a;)o.f(t,e=r[a++],n[e]);return t}},3070:function(t,n,e){var r=e(9781),o=e(4664),i=e(9670),c=e(4948),u=Object.defineProperty;n.f=r?u:function(t,n,e){if(i(t),n=c(n),i(e),o)try{return u(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported");return"value"in e&&(t[n]=e.value),t}},1236:function(t,n,e){var r=e(9781),o=e(5296),i=e(9114),c=e(5656),u=e(4948),a=e(6656),f=e(4664),s=Object.getOwnPropertyDescriptor;n.f=r?s:function(t,n){if(t=c(t),n=u(n),f)try{return s(t,n)}catch(t){}if(a(t,n))return i(!o.f.call(t,n),t[n])}},8006:function(t,n,e){var r=e(6324),o=e(748).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},5181:function(t,n){n.f=Object.getOwnPropertySymbols},9518:function(t,n,e){var r=e(6656),o=e(7908),i=e(6200),c=e(8544),u=i("IE_PROTO"),a=Object.prototype;t.exports=c?Object.getPrototypeOf:function(t){return t=o(t),r(t,u)?t[u]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},6324:function(t,n,e){var r=e(6656),o=e(5656),i=e(1318).indexOf,c=e(3501);t.exports=function(t,n){var e,u=o(t),a=0,f=[];for(e in u)!r(c,e)&&r(u,e)&&f.push(e);for(;n.length>a;)r(u,e=n[a++])&&(~i(f,e)||f.push(e));return f}},1956:function(t,n,e){var r=e(6324),o=e(748);t.exports=Object.keys||function(t){return r(t,o)}},5296:function(t,n){"use strict";var e={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!e.call({1:2},1);n.f=o?function(t){var n=r(this,t);return!!n&&n.enumerable}:e},7674:function(t,n,e){var r=e(9670),o=e(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,n=!1,e={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(e,[]),n=e instanceof Array}catch(t){}return function(e,i){return r(e),o(i),n?t.call(e,i):e.__proto__=i,e}}():void 0)},288:function(t,n,e){"use strict";var r=e(1694),o=e(648);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(t,n,e){var r=e(111);t.exports=function(t,n){var e,o;if("string"===n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;if("function"==typeof(e=t.valueOf)&&!r(o=e.call(t)))return o;if("string"!==n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},3887:function(t,n,e){var r=e(5005),o=e(8006),i=e(5181),c=e(9670);t.exports=r("Reflect","ownKeys")||function(t){var n=o.f(c(t)),e=i.f;return e?n.concat(e(t)):n}},2534:function(t){t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},9478:function(t,n,e){var r=e(9670),o=e(111),i=e(8523);t.exports=function(t,n){if(r(t),o(n)&&n.constructor===t)return n;var e=i.f(t);return(0,e.resolve)(n),e.promise}},2248:function(t,n,e){var r=e(1320);t.exports=function(t,n,e){for(var o in n)r(t,o,n[o],e);return t}},1320:function(t,n,e){var r=e(7854),o=e(8880),i=e(6656),c=e(3505),u=e(2788),a=e(9909),f=a.get,s=a.enforce,l=String(String).split("String");(t.exports=function(t,n,e,u){var a,f=!!u&&!!u.unsafe,p=!!u&&!!u.enumerable,v=!!u&&!!u.noTargetGet;"function"==typeof e&&("string"!=typeof n||i(e,"name")||o(e,"name",n),(a=s(e)).source||(a.source=l.join("string"==typeof n?n:""))),t!==r?(f?!v&&t[n]&&(p=!0):delete t[n],p?t[n]=e:o(t,n,e)):p?t[n]=e:c(n,e)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||u(this)}))},7651:function(t,n,e){var r=e(4326),o=e(2261);t.exports=function(t,n){var e=t.exec;if("function"==typeof e){var i=e.call(t,n);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,n)}},2261:function(t,n,e){"use strict";var r,o,i=e(1340),c=e(7066),u=e(2999),a=e(2309),f=e(30),s=e(9909).get,l=e(9441),p=e(8173),v=RegExp.prototype.exec,d=a("native-string-replace",String.prototype.replace),h=v,y=(r=/a/,o=/b*/g,v.call(r,"a"),v.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),g=u.UNSUPPORTED_Y||u.BROKEN_CARET,x=void 0!==/()??/.exec("")[1];(y||x||g||l||p)&&(h=function(t){var n,e,r,o,u,a,l,p=this,m=s(p),b=i(t),w=m.raw;if(w)return w.lastIndex=p.lastIndex,n=h.call(w,b),p.lastIndex=w.lastIndex,n;var j=m.groups,S=g&&p.sticky,O=c.call(p),E=p.source,T=0,P=b;if(S&&(-1===(O=O.replace("y","")).indexOf("g")&&(O+="g"),P=b.slice(p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b.charAt(p.lastIndex-1))&&(E="(?: "+E+")",P=" "+P,T++),e=new RegExp("^(?:"+E+")",O)),x&&(e=new RegExp("^"+E+"$(?!\\s)",O)),y&&(r=p.lastIndex),o=v.call(S?e:p,P),S?o?(o.input=o.input.slice(T),o[0]=o[0].slice(T),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:y&&o&&(p.lastIndex=p.global?o.index+o[0].length:r),x&&o&&o.length>1&&d.call(o[0],e,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(o[u]=void 0)})),o&&j)for(o.groups=a=f(null),u=0;u<j.length;u++)a[(l=j[u])[0]]=o[l[1]];return o}),t.exports=h},7066:function(t,n,e){"use strict";var r=e(9670);t.exports=function(){var t=r(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.dotAll&&(n+="s"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},2999:function(t,n,e){var r=e(7293),o=e(7854).RegExp;n.UNSUPPORTED_Y=r((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),n.BROKEN_CARET=r((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},9441:function(t,n,e){var r=e(7293),o=e(7854).RegExp;t.exports=r((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},8173:function(t,n,e){var r=e(7293),o=e(7854).RegExp;t.exports=r((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},4488:function(t){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},1150:function(t){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},3505:function(t,n,e){var r=e(7854);t.exports=function(t,n){try{Object.defineProperty(r,t,{value:n,configurable:!0,writable:!0})}catch(e){r[t]=n}return n}},6340:function(t,n,e){"use strict";var r=e(5005),o=e(3070),i=e(5112),c=e(9781),u=i("species");t.exports=function(t){var n=r(t),e=o.f;c&&n&&!n[u]&&e(n,u,{configurable:!0,get:function(){return this}})}},8003:function(t,n,e){var r=e(3070).f,o=e(6656),i=e(5112)("toStringTag");t.exports=function(t,n,e){t&&!o(t=e?t:t.prototype,i)&&r(t,i,{configurable:!0,value:n})}},6200:function(t,n,e){var r=e(2309),o=e(9711),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,n,e){var r=e(7854),o=e(3505),i="__core-js_shared__",c=r[i]||o(i,{});t.exports=c},2309:function(t,n,e){var r=e(1913),o=e(5465);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.16.2",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(t,n,e){var r=e(9670),o=e(3099),i=e(5112)("species");t.exports=function(t,n){var e,c=r(t).constructor;return void 0===c||null==(e=r(c)[i])?n:o(e)}},8710:function(t,n,e){var r=e(9958),o=e(1340),i=e(4488),c=function(t){return function(n,e){var c,u,a=o(i(n)),f=r(e),s=a.length;return f<0||f>=s?t?"":void 0:(c=a.charCodeAt(f))<55296||c>56319||f+1===s||(u=a.charCodeAt(f+1))<56320||u>57343?t?a.charAt(f):c:t?a.slice(f,f+2):u-56320+(c-55296<<10)+65536}};t.exports={codeAt:c(!1),charAt:c(!0)}},261:function(t,n,e){var r,o,i,c,u=e(7854),a=e(7293),f=e(9974),s=e(490),l=e(317),p=e(6833),v=e(5268),d=u.setImmediate,h=u.clearImmediate,y=u.process,g=u.MessageChannel,x=u.Dispatch,m=0,b={};try{r=u.location}catch(t){}var w=function(t){if(b.hasOwnProperty(t)){var n=b[t];delete b[t],n()}},j=function(t){return function(){w(t)}},S=function(t){w(t.data)},O=function(t){u.postMessage(String(t),r.protocol+"//"+r.host)};d&&h||(d=function(t){for(var n=[],e=arguments.length,r=1;e>r;)n.push(arguments[r++]);return b[++m]=function(){("function"==typeof t?t:Function(t)).apply(void 0,n)},o(m),m},h=function(t){delete b[t]},v?o=function(t){y.nextTick(j(t))}:x&&x.now?o=function(t){x.now(j(t))}:g&&!p?(c=(i=new g).port2,i.port1.onmessage=S,o=f(c.postMessage,c,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts&&r&&"file:"!==r.protocol&&!a(O)?(o=O,u.addEventListener("message",S,!1)):o="onreadystatechange"in l("script")?function(t){s.appendChild(l("script")).onreadystatechange=function(){s.removeChild(this),w(t)}}:function(t){setTimeout(j(t),0)}),t.exports={set:d,clear:h}},1400:function(t,n,e){var r=e(9958),o=Math.max,i=Math.min;t.exports=function(t,n){var e=r(t);return e<0?o(e+n,0):i(e,n)}},5656:function(t,n,e){var r=e(8361),o=e(4488);t.exports=function(t){return r(o(t))}},9958:function(t){var n=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:n)(t)}},7466:function(t,n,e){var r=e(9958),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},7908:function(t,n,e){var r=e(4488);t.exports=function(t){return Object(r(t))}},7593:function(t,n,e){var r=e(111),o=e(2190),i=e(2140),c=e(5112)("toPrimitive");t.exports=function(t,n){if(!r(t)||o(t))return t;var e,u=t[c];if(void 0!==u){if(void 0===n&&(n="default"),e=u.call(t,n),!r(e)||o(e))return e;throw TypeError("Can't convert object to primitive value")}return void 0===n&&(n="number"),i(t,n)}},4948:function(t,n,e){var r=e(7593),o=e(2190);t.exports=function(t){var n=r(t,"string");return o(n)?n:String(n)}},1694:function(t,n,e){var r={};r[e(5112)("toStringTag")]="z",t.exports="[object z]"===String(r)},1340:function(t,n,e){var r=e(2190);t.exports=function(t){if(r(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)}},9711:function(t){var n=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+e).toString(36)}},3307:function(t,n,e){var r=e(133);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:function(t,n,e){var r=e(7854),o=e(2309),i=e(6656),c=e(9711),u=e(133),a=e(3307),f=o("wks"),s=r.Symbol,l=a?s:s&&s.withoutSetter||c;t.exports=function(t){return i(f,t)&&(u||"string"==typeof f[t])||(u&&i(s,t)?f[t]=s[t]:f[t]=l("Symbol."+t)),f[t]}},6992:function(t,n,e){"use strict";var r=e(5656),o=e(1223),i=e(7497),c=e(9909),u=e(654),a="Array Iterator",f=c.set,s=c.getterFor(a);t.exports=u(Array,"Array",(function(t,n){f(this,{type:a,target:r(t),index:0,kind:n})}),(function(){var t=s(this),n=t.target,e=t.kind,r=t.index++;return!n||r>=n.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:r,done:!1}:"values"==e?{value:n[r],done:!1}:{value:[r,n[r]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},1539:function(t,n,e){var r=e(1694),o=e(1320),i=e(288);r||o(Object.prototype,"toString",i,{unsafe:!0})},8674:function(t,n,e){"use strict";var r,o,i,c,u=e(2109),a=e(1913),f=e(7854),s=e(5005),l=e(3366),p=e(1320),v=e(2248),d=e(7674),h=e(8003),y=e(6340),g=e(111),x=e(3099),m=e(5787),b=e(2788),w=e(408),j=e(7072),S=e(6707),O=e(261).set,E=e(5948),T=e(9478),P=e(842),I=e(8523),A=e(2534),L=e(9909),k=e(4705),_=e(5112),R=e(7871),C=e(5268),M=e(7392),N=_("species"),D="Promise",F=L.get,G=L.set,U=L.getterFor(D),z=l&&l.prototype,V=l,B=z,q=f.TypeError,H=f.document,W=f.process,Y=I.f,K=Y,$=!!(H&&H.createEvent&&f.dispatchEvent),X="function"==typeof PromiseRejectionEvent,J="unhandledrejection",Q=!1,Z=k(D,(function(){var t=b(V),n=t!==String(V);if(!n&&66===M)return!0;if(a&&!B.finally)return!0;if(M>=51&&/native code/.test(t))return!1;var e=new V((function(t){t(1)})),r=function(t){t((function(){}),(function(){}))};return(e.constructor={})[N]=r,!(Q=e.then((function(){}))instanceof r)||!n&&R&&!X})),tt=Z||!j((function(t){V.all(t).catch((function(){}))})),nt=function(t){var n;return!(!g(t)||"function"!=typeof(n=t.then))&&n},et=function(t,n){if(!t.notified){t.notified=!0;var e=t.reactions;E((function(){for(var r=t.value,o=1==t.state,i=0;e.length>i;){var c,u,a,f=e[i++],s=o?f.ok:f.fail,l=f.resolve,p=f.reject,v=f.domain;try{s?(o||(2===t.rejection&&ct(t),t.rejection=1),!0===s?c=r:(v&&v.enter(),c=s(r),v&&(v.exit(),a=!0)),c===f.promise?p(q("Promise-chain cycle")):(u=nt(c))?u.call(c,l,p):l(c)):p(r)}catch(t){v&&!a&&v.exit(),p(t)}}t.reactions=[],t.notified=!1,n&&!t.rejection&&ot(t)}))}},rt=function(t,n,e){var r,o;$?((r=H.createEvent("Event")).promise=n,r.reason=e,r.initEvent(t,!1,!0),f.dispatchEvent(r)):r={promise:n,reason:e},!X&&(o=f["on"+t])?o(r):t===J&&P("Unhandled promise rejection",e)},ot=function(t){O.call(f,(function(){var n,e=t.facade,r=t.value;if(it(t)&&(n=A((function(){C?W.emit("unhandledRejection",r,e):rt(J,e,r)})),t.rejection=C||it(t)?2:1,n.error))throw n.value}))},it=function(t){return 1!==t.rejection&&!t.parent},ct=function(t){O.call(f,(function(){var n=t.facade;C?W.emit("rejectionHandled",n):rt("rejectionhandled",n,t.value)}))},ut=function(t,n,e){return function(r){t(n,r,e)}},at=function(t,n,e){t.done||(t.done=!0,e&&(t=e),t.value=n,t.state=2,et(t,!0))},ft=function(t,n,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===n)throw q("Promise can't be resolved itself");var r=nt(n);r?E((function(){var e={done:!1};try{r.call(n,ut(ft,e,t),ut(at,e,t))}catch(n){at(e,n,t)}})):(t.value=n,t.state=1,et(t,!1))}catch(n){at({done:!1},n,t)}}};if(Z&&(B=(V=function(t){m(this,V,D),x(t),r.call(this);var n=F(this);try{t(ut(ft,n),ut(at,n))}catch(t){at(n,t)}}).prototype,(r=function(t){G(this,{type:D,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=v(B,{then:function(t,n){var e=U(this),r=Y(S(this,V));return r.ok="function"!=typeof t||t,r.fail="function"==typeof n&&n,r.domain=C?W.domain:void 0,e.parent=!0,e.reactions.push(r),0!=e.state&&et(e,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r,n=F(t);this.promise=t,this.resolve=ut(ft,n),this.reject=ut(at,n)},I.f=Y=function(t){return t===V||t===i?new o(t):K(t)},!a&&"function"==typeof l&&z!==Object.prototype)){c=z.then,Q||(p(z,"then",(function(t,n){var e=this;return new V((function(t,n){c.call(e,t,n)})).then(t,n)}),{unsafe:!0}),p(z,"catch",B.catch,{unsafe:!0}));try{delete z.constructor}catch(t){}d&&d(z,B)}u({global:!0,wrap:!0,forced:Z},{Promise:V}),h(V,D,!1,!0),y(D),i=s(D),u({target:D,stat:!0,forced:Z},{reject:function(t){var n=Y(this);return n.reject.call(void 0,t),n.promise}}),u({target:D,stat:!0,forced:a||Z},{resolve:function(t){return T(a&&this===i?V:this,t)}}),u({target:D,stat:!0,forced:tt},{all:function(t){var n=this,e=Y(n),r=e.resolve,o=e.reject,i=A((function(){var e=x(n.resolve),i=[],c=0,u=1;w(t,(function(t){var a=c++,f=!1;i.push(void 0),u++,e.call(n,t).then((function(t){f||(f=!0,i[a]=t,--u||r(i))}),o)})),--u||r(i)}));return i.error&&o(i.value),e.promise},race:function(t){var n=this,e=Y(n),r=e.reject,o=A((function(){var o=x(n.resolve);w(t,(function(t){o.call(n,t).then(e.resolve,r)}))}));return o.error&&r(o.value),e.promise}})},4916:function(t,n,e){"use strict";var r=e(2109),o=e(2261);r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},8783:function(t,n,e){"use strict";var r=e(8710).charAt,o=e(1340),i=e(9909),c=e(654),u="String Iterator",a=i.set,f=i.getterFor(u);c(String,"String",(function(t){a(this,{type:u,string:o(t),index:0})}),(function(){var t,n=f(this),e=n.string,o=n.index;return o>=e.length?{value:void 0,done:!0}:(t=r(e,o),n.index+=t.length,{value:t,done:!1})}))},4765:function(t,n,e){"use strict";var r=e(7007),o=e(9670),i=e(4488),c=e(1150),u=e(1340),a=e(7651);r("search",(function(t,n,e){return[function(n){var e=i(this),r=null==n?void 0:n[t];return void 0!==r?r.call(n,e):new RegExp(n)[t](u(e))},function(t){var r=o(this),i=u(t),f=e(n,r,i);if(f.done)return f.value;var s=r.lastIndex;c(s,0)||(r.lastIndex=0);var l=a(r,i);return c(r.lastIndex,s)||(r.lastIndex=s),null===l?-1:l.index}]}))},3948:function(t,n,e){var r=e(7854),o=e(8324),i=e(6992),c=e(8880),u=e(5112),a=u("iterator"),f=u("toStringTag"),s=i.values;for(var l in o){var p=r[l],v=p&&p.prototype;if(v){if(v[a]!==s)try{c(v,a,s)}catch(t){v[a]=s}if(v[f]||c(v,f,l),o[l])for(var d in i)if(v[d]!==i[d])try{c(v,d,i[d])}catch(t){v[d]=i[d]}}}}},r={};function o(t){var n=r[t];if(void 0!==n)return n.exports;var i=r[t]={exports:{}};return e[t](i,i.exports,o),i.exports}o.m=e,o.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return o.d(n,{a:n}),n},o.d=function(t,n){for(var e in n)o.o(n,e)&&!o.o(t,e)&&Object.defineProperty(t,e,{enumerable:!0,get:n[e]})},o.f={},o.e=function(t){return Promise.all(Object.keys(o.f).reduce((function(n,e){return o.f[e](t,n),n}),[]))},o.u=function(t){return t+"."+o.h()+".bundle.js"},o.miniCssF=function(t){},o.h=function(){return"ed6ff804ce7d6c85546d"},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},t={},n="landing-page-gem:",o.l=function(e,r,i,c){if(t[e])t[e].push(r);else{var u,a;if(void 0!==i)for(var f=document.getElementsByTagName("script"),s=0;s<f.length;s++){var l=f[s];if(l.getAttribute("src")==e||l.getAttribute("data-webpack")==n+i){u=l;break}}u||(a=!0,(u=document.createElement("script")).charset="utf-8",u.timeout=120,o.nc&&u.setAttribute("nonce",o.nc),u.setAttribute("data-webpack",n+i),u.src=e),t[e]=[r];var p=function(n,r){u.onerror=u.onload=null,clearTimeout(v);var o=t[e];if(delete t[e],u.parentNode&&u.parentNode.removeChild(u),o&&o.forEach((function(t){return t(r)})),n)return n(r)},v=setTimeout(p.bind(null,void 0,{type:"timeout",target:u}),12e4);u.onerror=p.bind(null,u.onerror),u.onload=p.bind(null,u.onload),a&&document.head.appendChild(u)}},o.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.p="/assets/js/dist/",function(){var t={771:0};o.f.j=function(n,e){var r=o.o(t,n)?t[n]:void 0;if(0!==r)if(r)e.push(r[2]);else{var i=new Promise((function(e,o){r=t[n]=[e,o]}));e.push(r[2]=i);var c=o.p+o.u(n),u=new Error;o.l(c,(function(e){if(o.o(t,n)&&(0!==(r=t[n])&&(t[n]=void 0),r)){var i=e&&("load"===e.type?"missing":e.type),c=e&&e.target&&e.target.src;u.message="Loading chunk "+n+" failed.\n("+i+": "+c+")",u.name="ChunkLoadError",u.type=i,u.request=c,r[1](u)}}),"chunk-"+n,n)}};var n=function(n,e){var r,i,c=e[0],u=e[1],a=e[2],f=0;for(r in u)o.o(u,r)&&(o.m[r]=u[r]);for(a&&a(o),n&&n(e);f<c.length;f++)i=c[f],o.o(t,i)&&t[i]&&t[i][0](),t[c[f]]=0},e=self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[];e.forEach(n.bind(null,0)),e.push=n.bind(null,e.push.bind(e))}(),o(4358)}();
@@ -1 +0,0 @@
1
- .navbar-brand{margin-right:0}@media screen and (min-width: 768px){.navbar-brand{margin-right:1rem}}.btn{vertical-align:baseline}.btn-primary{background-color:#0051a7;border-color:#003773}.btn-primary:hover{background-color:#022b55;border-color:#021e3d}.editor-link{display:none}.cms-editor-active .editor-link{display:block}.editor-button{display:none}.cms-editor-active .editor-button{display:inline-block}.targetx__wrapper{margin-top:-35px;z-index:-1}p.supportInfo{display:none}@media screen and (min-width: 1200px){.wForm form>div.oneField{margin-top:0 !important}}@media screen and (min-width: 1800px){.wForm form>div.oneField{margin-top:10px !important}}.wFormContainer{padding-left:5px !important;padding-right:5px !important}@media screen and (min-width: 1600px){.wFormContainer{padding:1rem 2rem !important}}#tfa_11::before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}@media screen and (min-width: 1800px){#tfa_775-D{margin-top:5px !important}}.oneField.field-container-D{max-width:100%}#submit_button{background-color:#0051a7 !important;border-color:#003773 !important;font-family:"Open Sans",sans-serif !important;font-weight:400 !important;font-size:1.25rem !important;padding-top:.5rem !important;padding-bottom:.5rem !important;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}#submit_button:hover{background-color:#022b55 !important;border-color:#021e3d !important}.footer__margin{margin-top:20px}.footer{background-color:#f8f9fa;margin-bottom:-56px;margin-top:60px;padding-bottom:40px;padding-top:40px;width:100%;border-top-color:rgba(0,0,0,.15);border-top-style:solid;border-top-width:thin}a.footer-link{color:#0f3b63}a.footer-link:hover{text-decoration:none !important;color:#c61f48}.footer-heading{transition-property:color;transition-timing-function:ease;transition-duration:.3s}.footer-icons{background-color:#c61f48;border-radius:50%;transition-property:background-color;transition-timing-function:ease;transition-duration:.3s;height:33px;margin:4px;padding:2px;width:33px}@media screen and (min-width: 360px){.footer-icons{height:40px;margin:5px;width:40px}}@media screen and (min-width: 412px){.footer-icons{height:50px;width:50px}}a.footer-social-links,a.footer-social-links .footer-icons{text-decoration:none !important}a.footer-social-links:hover .footer-icons{text-decoration:none !important;background-color:#0f3b63}.footer__mobile--margin-bottom{margin-bottom:20px}@media screen and (min-width: 992px){.footer__mobile--margin-bottom{margin-bottom:0}}.footer__svg--logo{height:36px;max-width:100%}.header__bg{background-image:url("/assets/img/banner-bg.jpg");background-size:cover;background-position:center;background-repeat:no-repeat;height:55%;height:55vh}@media screen and (min-width: 1200px){.header__bg{height:auto}}html{background-color:#b8babc}.links__darker-link{color:#006ce0}.links__phone--span{color:#fff;position:relative;text-decoration:none}.links__phone--span:visited{color:#fff}.links__phone--span:hover,.links__phone--span:focus{color:#fff;text-decoration:none}.links__phone--span:focus:after,.links__phone--span:hover:after{opacity:1;transform:translateY(-0.2em)}.links__phone--span:after{background-color:#f99e1b;bottom:-0.325rem;content:"";display:block;height:.1875rem;opacity:0;position:absolute;transition:opacity .3s,transform .3s;width:100%}.svg__fill--blue{fill:#0f3b63}.svg__fill--white{fill:#fff}.svg{height:100px;width:100px}.svg--none{fill:none}.svg--blue{fill:#0f3b63}.svg--red{fill:#c61f48}.svg--max-width{max-width:100%}.svg__button{height:48px;width:48px}.svg--fill-none{fill:none}.svg--fill-white{fill:#fff}.svg--fill-blue{fill:#0f3b63}.svg--fill-green{fill:#00a14b}.svg__earn-more{transform:scale(1.35)}.svg__fill--bright-red{fill:#c81f49}.svg__fill--red-shadow{fill:#8f0f28}body{font-size:1rem}.typography__nav-heading{color:#0f3b63;display:inline;font-family:"Eurostile",sans-serif;font-size:1.5rem;font-style:italic;font-weight:700;text-transform:uppercase;transition-property:color;transition-timing-function:ease;transition-duration:.4s}.typography__nav-heading:hover,.typography__nav-heading:focus{color:#c61f48}.typography__nav-heading--smaller{font-size:1.25rem}@media screen and (min-width: 360px){.typography__nav-heading{font-size:1.8rem}.typography__nav-heading--smaller{font-size:1.5rem}}@media screen and (min-width: 410px){.typography__nav-heading{font-size:2rem}}@media screen and (min-width: 576px){.typography__nav-heading{font-size:2.3rem}}@media screen and (min-width: 768px){.typography__nav-heading{font-size:2.4rem}}@media screen and (min-width: 1500px){.typography__nav-heading{font-size:2.6rem}}.typography__footer-heading{font-family:"Roboto",sans-serif;font-size:1.95rem;font-weight:900}@media screen and (min-width: 360px){.typography__footer-heading{font-size:2.2rem}}@media screen and (min-width: 375px){.typography__footer-heading{font-size:2.4rem}}@media screen and (min-width: 410px){.typography__footer-heading{font-size:2.6rem}}.typography__h2{color:#555;font-family:"Roboto",sans-serif;font-size:2rem;font-weight:500}.typography__h3{color:#0f3b63;font-family:"Roboto",sans-serif;font-size:1.75rem;font-weight:600}.typography__h4{color:#c61f48;font-family:"Roboto",sans-serif;font-size:1.7rem;font-weight:600}.typography__h5{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.5rem}.typography__h6{color:#555;font-family:"Roboto",sans-serif;font-weight:700;font-size:1.4rem}.typography__phone--span{color:#fff;font-family:"Oswald",sans-serif;font-size:1.3rem;font-weight:400;letter-spacing:.07rem;white-space:nowrap}@media screen and (min-width: 768px){.typography__phone--span{font-size:1.45rem}}@media screen and (min-width: 1024px){.typography__phone--span{font-size:1.5rem}}p,ul:not(.navbar-nav),ol{color:#555;font-family:"Open Sans",sans-serif;font-size:1rem}h1 sup,h2 sup,h3 sup,h4 sup,h5 sup,h6 sup{font-size:45% !important;top:-1em;font-weight:normal}.typography__register--h2{color:#fff;font-family:eurostile,sans-serif;font-size:2.4rem;font-weight:500;letter-spacing:.03rem;position:relative;top:30%;margin-bottom:-10px}@media screen and (min-width: 400px){.typography__register--h2{font-size:3rem}}@media screen and (min-width: 768px){.typography__register--h2{font-size:5.2rem}}@media screen and (min-width: 1200px){.typography__register--h2{font-size:6rem}}@media screen and (min-width: 1800px){.typography__register--h2{font-size:6.6rem}}.typography__register--h3{color:#fff;font-family:eurostile,sans-serif;font-size:1.2rem;font-weight:500;letter-spacing:.03rem;position:relative;top:31%}@media screen and (min-width: 400px){.typography__register--h3{font-size:1.45rem;top:30.5%}}@media screen and (min-width: 768px){.typography__register--h3{font-size:2.5rem;top:30%}}@media screen and (min-width: 1200px){.typography__register--h3{font-size:2.6rem;top:30%}}@media screen and (min-width: 1800px){.typography__register--h3{font-size:2.7rem;top:30%}}.typography__register--caption{bottom:15px;color:#fff;filter:drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));font-family:"Oswald",sans-serif;font-size:1rem;font-weight:500;letter-spacing:.07rem;position:absolute;right:25px}@media screen and (min-width: 768px){.typography__register--caption{font-size:1.1rem}}@media screen and (min-width: 1000px){.typography__register--caption{font-size:1.2rem}}.typography__register-h4{font-family:"Oswald",sans-serif;font-size:1.6rem}@media screen and (min-width: 768px){.typography__register-h4{font-size:2rem}}@media screen and (min-width: 1200px){.typography__register-h4{font-size:2rem}}@media screen and (min-width: 1800px){.typography__register-h4{font-size:2.3rem}}.typography__larger-p{font-size:1.2rem}.typography__register--thank-you{color:#0f3b63;font-family:"Eurostile",sans-serif;font-size:2rem}.typography__register--thank-you--message{color:#c61f48;font-family:"Saira","sans-serif";font-weight:700;font-size:1.4rem}@media screen and (min-width: 768px){.typography__register--thank-you{font-size:2.4rem;margin-left:100px;margin-top:-10px}.typography__register--thank-you--message{font-size:1.6rem;margin-left:95px}}@media screen and (min-width: 1200px){.typography__register--thank-you{font-size:2.6rem}}@media screen and (min-width: 1800px){.typography__register--thank-you{font-size:3rem;margin-top:-15px}}.typography--text-shadow{text-shadow:0 0 10px rgba(0,0,0,.75)}.benefits__typography--h5{color:#c61f48;font-family:"Oswald",sans-serif;font-size:2rem;font-weight:700;letter-spacing:.03rem}.benefits__typography--h5--mb{margin-bottom:40px}@media screen and (min-width: 768px){.benefits__typography--h5{font-size:2.8rem}}@media screen and (min-width: 992px){.benefits__typography--h5--mb{margin-bottom:60px}}.benefits__testimonials--mb{margin-bottom:40px}@media screen and (min-width: 1200px){.benefits__testimonials--mb{margin-bottom:0}}.benefits__typography--h5--black{color:#000;font-family:"Oswald",sans-serif;font-size:2rem;font-weight:400;letter-spacing:.03rem;margin-bottom:60px}@media screen and (min-width: 768px){.benefits__typography--h5--black{font-size:2.1rem}}@media screen and (min-width: 1200px){.benefits__typography-h5--black{font-size:3rem}}.benefits__typography--student-p{font-family:"Open Sans",sans-serif;color:#000;font-weight:600;font-size:1.15rem;margin-top:15px;margin-bottom:.5rem}@media screen and (min-width: 1200px){.benefits__typography--student-p--larger{font-size:1.3rem}}.benefits__typography--img-cap{font-family:"Open Sans",sans-serif;font-size:1.35rem;font-weight:600;display:block}.benefits__typography-itransfer{font-size:1.7rem;font-weight:600;line-height:1;position:absolute;top:4rem;margin-left:-20px}@media screen and (min-width: 400px){.benefits__typography-itransfer{font-size:1.8rem}}@media screen and (min-width: 768px){.benefits__typography-itransfer{font-size:1.9rem}}.benefits__typography--h6{color:#c61f48;font-family:"Saira","sans-serif";font-weight:700;font-size:2rem;letter-spacing:.03rem}.benefits__check-svg{margin-top:-60px;width:80px}.benefits__blue-section{background-color:#ccdde1;padding-bottom:25px;padding-top:25px}.benefits__first-section--marg{margin-top:15px;background-color:#ccdde1;padding-bottom:25px;padding-top:25px}@media screen and (min-width: 1200px){.benefits__first-section--marg{margin-top:15px}}.benefits__section--marg{margin-top:35px}@media screen and (min-width: 1200px){.benefits__section--marg{margin-top:65px}}.benefits__row--pad{margin-top:25px}@media screen and (min-width: 1200px){.benefits__row--pad{margin-top:0}}.benefits__itransfer-img{width:120px;margin-top:40px}@media screen and (min-width: 400px){.benefits__itransfer-img{width:140px}}@media screen and (min-width: 768px){.benefits__itransfer-img{width:150px}}@media screen and (min-width: 992px){.benefits__itransfer-img{margin-top:20px;width:160px}}.benefits__idfpr-img{width:330px}@media screen and (max-width: 992px){.benefits__idfpr-img{margin-bottom:15px;margin-top:40px}}.benefits__iccb-img{width:250px}@media screen and (max-width: 992px){.benefits__iccb-img{margin-top:15px}}.benefits__accredited--card{background-color:#0f3b63;padding-bottom:25px;padding-left:10px;padding-right:10px;padding-top:15px;width:90%}@media screen and (min-width: 400px){.benefits__accredited--card{width:75%}}@media screen and (min-width: 768px){.benefits__accredited--card{width:50%}}@media screen and (min-width: 992px){.benefits__accredited--card{width:100%}}@media screen and (min-width: 1200px){.benefits__accredited--card{width:75%}}.benefits__accredited--span-l{color:#fff;font-size:2.1rem;font-weight:bolder;display:block;line-height:1;margin-top:-10px;margin-bottom:5px}.benefits__accredited--span-s{color:#fff;font-size:1.1rem;font-style:italic;line-height:.5;font-weight:600;letter-spacing:-0.04rem}.benefits__accredited--span--source{display:block}.benefits__borders--circle-img{border:3px solid #fff;filter:drop-shadow(5px 5px 12px #b1b1b1);width:50%}@media screen and (min-width: 768px){.benefits__borders--circle-img{width:100%}}#page-top::before{display:block;content:" ";margin-top:-60px;height:60px;visibility:hidden;pointer-events:none}.breadcrumbs{background-color:transparent;border-bottom-color:rgba(0,0,0,.25);border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-style:solid;border-bottom-width:thin;margin-bottom:1.5rem}.breadcrumbs--margin-top{margin-top:125px}.breadcrumbs--home{vertical-align:bottom}.breadcrumbs--home--house{fill:none;stroke:#666;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10}.breadcrumbs--home--border{fill:none}.breadcrumb-item+.breadcrumb-item::before{content:url("/assets/img/keyboard_arrow_right.svg");opacity:.5}.error__main-heading{color:#c61f48;font-weight:700}.error__sub-heading{color:#0f3b63;font-weight:700}.error__main{min-height:50vh}@media screen and (min-width: 992px){.error__main{min-height:65vh}}.nav-landing{background-color:#c61f48;height:56px;margin-left:0;margin-right:0;max-width:100%;min-width:100%;padding-bottom:5px;padding-left:5%;padding-top:5px;width:100%;z-index:1031}.nav-landing__kcc-logo{margin-left:5px;width:190px}@media screen and (min-width: 360px){.nav-landing__kcc-logo{width:220px}}@media screen and (min-width: 375px){.nav-landing__kcc-logo{width:230px}}@media screen and (min-width: 410px){.nav-landing__kcc-logo{width:255px}}@media screen and (min-width: 488px){.nav-landing__kcc-logo{width:260px}}@media screen and (min-width: 576px){.nav-landing__kcc-logo{width:300px}}@media screen and (min-width: 768px){.nav-landing__kcc-logo{width:320px}}@media screen and (min-width: 992px)and (max-width: 1100px){.nav-landing__kcc-logo{margin-left:-25px;width:310px}}@media screen and (min-width: 1100px){.nav-landing__kcc-logo{margin-left:-25px;width:340px}}.nav-landing__kcc-logo-inverse{margin-left:-3px;width:50px;margin-right:-10px}@media screen and (min-width: 360px){.nav-landing__kcc-logo-inverse{width:60px}}@media screen and (min-width: 410px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width: 488px){.nav-landing__kcc-logo-inverse{width:68px}}@media screen and (min-width: 576px){.nav-landing__kcc-logo-inverse{width:73px}}@media screen and (min-width: 768px){.nav-landing__kcc-logo-inverse{width:80px}}@media screen and (min-width: 992px){.nav-landing__kcc-logo-inverse{width:80px;margin-left:-30px;margin-right:20px}}@media screen and (min-width: 1100px){.nav-landing__kcc-logo-inverse{width:85px;margin-right:15px}}@media screen and (min-width: 1300px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-35px}}@media screen and (min-width: 1400px){.nav-landing__kcc-logo-inverse{width:85px;margin-left:-40px}}.nav-landing__navbar-brand{margin-left:-10px}@media screen and (min-width: 410px){.nav-landing__navbar-brand{margin-left:-15px}}@media screen and (min-width: 488px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width: 576px){.nav-landing__navbar-brand{margin-left:-25px}}@media screen and (min-width: 768px){.nav-landing__navbar-brand{margin-left:-35px}}@media screen and (min-width: 992px){.nav-landing__navbar-brand{margin-left:-20px}}@media screen and (min-width: 1000px){.nav-landing__navbar-brand{margin-left:-18px}}@media screen and (min-width: 1080px){.nav-landing__navbar-brand{margin-left:-22px}}@media screen and (min-width: 1200px){.nav-landing__navbar-brand{margin-left:-2.5%}}@media screen and (min-width: 1600px){.nav-landing__navbar-brand{margin-left:-3%}}@media screen and (min-width: 1900px){.nav-landing__navbar-brand{margin-left:-3.25%}}@media screen and (min-width: 2000px){.nav-landing__navbar-brand{margin-left:-3.5%}}.positioning__offset-global-nav{margin-top:60px}.positioning__form--margins{margin-top:15px;padding-left:5px;padding-right:5px}@media screen and (min-width: 992px){.positioning__form--margins{margin-top:60px}}.positioning__heading--row{margin-top:35%}@media screen and (min-width: 768px){.positioning__heading--row{margin-top:26%}}@media screen and (min-width: 1200px){.positioning__heading--row{margin-top:35%}}@media screen and (min-width: 1800px){.positioning__heading--row{margin-top:25%}}.positioning__col--offset{margin-right:-25px}@media screen and (min-width: 768px){.positioning__col--offset{margin-right:-45px}}.thank-you__check-mark{height:75px;position:relative;top:-1rem;width:75px}.thank-you__main{min-height:50vh}@media screen and (min-width: 768px){.thank-you__check-mark{position:static}}@media screen and (min-width: 992px){.thank-you__main{min-height:65vh}}