landing-page-gem 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +44 -0
  4. data/_config.yml +43 -0
  5. data/_includes/benefits.html +123 -0
  6. data/_includes/body.html +12 -0
  7. data/_includes/bottom-action-call.html +10 -0
  8. data/_includes/breadcrumbs.html +16 -0
  9. data/_includes/document-head.html +21 -0
  10. data/_includes/foot.html +3 -0
  11. data/_includes/footer.html +271 -0
  12. data/_includes/hash/landing.yml +1 -0
  13. data/_includes/header.html +28 -0
  14. data/_includes/navbar.html +121 -0
  15. data/_includes/preconnect.html +13 -0
  16. data/_includes/scripts/custom-theme.html +3 -0
  17. data/_includes/scripts/google-noscript.html +9 -0
  18. data/_includes/scripts/google-tag.html +23 -0
  19. data/_includes/scripts/vendor-cdn.html +3 -0
  20. data/_includes/styles/fonts.html +4 -0
  21. data/_includes/styles/main.html +8 -0
  22. data/_includes/styles/vendor.html +3 -0
  23. data/_includes/svg/check-mark.html +16 -0
  24. data/_includes/svg/check.html +13 -0
  25. data/_includes/svg/check_circle-24px.html +13 -0
  26. data/_includes/svg/earn-more.html +30 -0
  27. data/_includes/svg/email-24px.html +13 -0
  28. data/_includes/svg/endorsements-icon.html +15 -0
  29. data/_includes/svg/flexible-icon.html +30 -0
  30. data/_includes/svg/free-classes.html +36 -0
  31. data/_includes/svg/goals.html +21 -0
  32. data/_includes/svg/kcc-copy.html +62 -0
  33. data/_includes/svg/kcc.html +65 -0
  34. data/_includes/svg/kcc.svg +59 -0
  35. data/_includes/svg/love.html +13 -0
  36. data/_includes/svg/place-24px.html +13 -0
  37. data/_includes/svg/save-money.html +26 -0
  38. data/_includes/targetx-form.html +363 -0
  39. data/_includes/targetx-head.html +47 -0
  40. data/_layouts/landing.html +15 -0
  41. data/assets/css/content.scss +14 -0
  42. data/assets/img/DSC_8724_4x3.jpg +0 -0
  43. data/assets/img/banner-bg.jpg +0 -0
  44. data/assets/img/culture.svg +31 -0
  45. data/assets/img/d-daun2.jpg +0 -0
  46. data/assets/img/itransfer.png +0 -0
  47. data/assets/img/miguel2.jpg +0 -0
  48. data/assets/img/placeholder_16to9.jpg +0 -0
  49. data/assets/img/placeholder_4by3.jpg +0 -0
  50. data/assets/img/placeholder_square.jpg +0 -0
  51. data/assets/img/schedule.svg +42 -0
  52. data/assets/img/support.svg +12 -0
  53. data/assets/img/zippia.png +0 -0
  54. data/assets/js/dist/315.b82f3c2bb153940ebd76.bundle.js +1 -0
  55. data/assets/js/dist/321.b82f3c2bb153940ebd76.bundle.js +1 -0
  56. data/assets/js/dist/582.b82f3c2bb153940ebd76.bundle.js +1 -0
  57. data/assets/js/dist/909.b82f3c2bb153940ebd76.bundle.js +1 -0
  58. data/assets/js/dist/kcc-landing-page.b82f3c2bb153940ebd76.bundle.js +1 -0
  59. data/assets/js/dist/kcc-landing-page.b82f3c2bb153940ebd76.css +1 -0
  60. data/assets/js/src/footerDate.js +7 -0
  61. data/assets/js/src/landingPage.js +38 -0
  62. data/assets/js/src/lazyLoad.js +11 -0
  63. data/assets/js/src/main.js +19 -0
  64. data/assets/js/src/test.js +5 -0
  65. data/assets/scss/0-tools/_bootstrap-overrides.scss +26 -0
  66. data/assets/scss/0-tools/_cloudcannon.scss +17 -0
  67. data/assets/scss/0-tools/_content.scss +40 -0
  68. data/assets/scss/0-tools/_targetx-overrides.scss +76 -0
  69. data/assets/scss/0-tools/_vars.scss +79 -0
  70. data/assets/scss/1-base/_footer.scss +84 -0
  71. data/assets/scss/1-base/_header.scss +18 -0
  72. data/assets/scss/1-base/_html.scss +4 -0
  73. data/assets/scss/1-base/_links.scss +39 -0
  74. data/assets/scss/1-base/_svg.scss +57 -0
  75. data/assets/scss/1-base/_typography.scss +320 -0
  76. data/assets/scss/2-modules/_benefits.scss +270 -0
  77. data/assets/scss/2-modules/_breadcrumbs.scss +32 -0
  78. data/assets/scss/2-modules/_error.scss +20 -0
  79. data/assets/scss/2-modules/_nav-landing.scss +203 -0
  80. data/assets/scss/3-layout/_positioning.scss +50 -0
  81. data/assets/scss/3-layout/_thank-you.scss +24 -0
  82. data/assets/scss/inline.scss +3 -0
  83. data/assets/scss/main.scss +21 -0
  84. metadata +139 -0
@@ -0,0 +1,47 @@
1
+ <!-- TargetX FORM -->
2
+ <!-- FORM: HEAD SECTION -->
3
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4
+ <script type="text/javascript">
5
+ document.addEventListener("DOMContentLoaded", function(){
6
+ const FORM_TIME_START = Math.floor((new Date).getTime()/1000);
7
+ let formElement = document.getElementById("tfa_0");
8
+ if (null === formElement) {
9
+ formElement = document.getElementById("0");
10
+ }
11
+ let appendJsTimerElement = function(){
12
+ let formTimeDiff = Math.floor((new Date).getTime()/1000) - FORM_TIME_START;
13
+ let cumulatedTimeElement = document.getElementById("tfa_dbCumulatedTime");
14
+ if (null !== cumulatedTimeElement) {
15
+ let cumulatedTime = parseInt(cumulatedTimeElement.value);
16
+ if (null !== cumulatedTime && cumulatedTime > 0) {
17
+ formTimeDiff += cumulatedTime;
18
+ }
19
+ }
20
+ let jsTimeInput = document.createElement("input");
21
+ jsTimeInput.setAttribute("type", "hidden");
22
+ jsTimeInput.setAttribute("value", formTimeDiff.toString());
23
+ jsTimeInput.setAttribute("name", "tfa_dbElapsedJsTime");
24
+ jsTimeInput.setAttribute("id", "tfa_dbElapsedJsTime");
25
+ jsTimeInput.setAttribute("autocomplete", "off");
26
+ if (null !== formElement) {
27
+ formElement.appendChild(jsTimeInput);
28
+ }
29
+ };
30
+ if (null !== formElement) {
31
+ if(formElement.addEventListener){
32
+ formElement.addEventListener('submit', appendJsTimerElement, false);
33
+ } else if(formElement.attachEvent){
34
+ formElement.attachEvent('onsubmit', appendJsTimerElement);
35
+ }
36
+ }
37
+ });
38
+ </script>
39
+ <link href="https://kcc.tfaforms.net/dist/form-builder/5.0.0/wforms-layout.css?v=548-1" rel="stylesheet" type="text/css" />
40
+ <link href="https://kcc.tfaforms.net/uploads/themes/theme-7.css" rel="stylesheet" type="text/css" />
41
+ <link href="https://kcc.tfaforms.net/dist/form-builder/5.0.0/wforms-jsonly.css?v=548-1" rel="alternate stylesheet" title="This stylesheet activated by javascript" type="text/css" />
42
+ <script type="text/javascript" src="https://kcc.tfaforms.net/wForms/3.11/js/wforms.js?v=548-1"></script>
43
+ <script type="text/javascript">
44
+ wFORMS.behaviors.prefill.skip = false;
45
+ </script>
46
+ <script type="text/javascript" src="https://kcc.tfaforms.net/wForms/3.11/js/localization-en_US.js?v=548-1"></script>
47
+ <!-- END FORM: HEAD SECTION -->
@@ -0,0 +1,15 @@
1
+ {% include document-head.html %}
2
+ {% include styles/fonts.html %}
3
+ {% include scripts/google-tag.html %}
4
+ {% if page.url == '/' %}
5
+ {% include targetx-head.html %}{% endif %}
6
+ {% include styles/vendor.html %}
7
+ {% include styles/main.html %}
8
+ {% include body.html %}
9
+ {% include scripts/google-noscript.html %}
10
+ {% include navbar.html %}
11
+ {{ content }}
12
+ {% include footer.html %}
13
+ {% include scripts/vendor-cdn.html %}
14
+ {% include scripts/custom-theme.html %}
15
+ {% include foot.html %}
@@ -0,0 +1,14 @@
1
+ ---
2
+ ---
3
+ /*
4
+ // Custom styling for use in the CloudCannon editing interfaces.
5
+ // Selectors must consist of 1-element & 1-class.
6
+ // Must be a CSS file with fully expanded CSS--no minification.
7
+ //
8
+ // Example:
9
+ // p.text-center {
10
+ // text-align: center;
11
+ // }
12
+ // */
13
+ @import '0-tools/vars';
14
+ @import '0-tools/content'
Binary file
Binary file
@@ -0,0 +1,31 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 190 100">
2
+ <rect fill="none" width="190" height="100"/>
3
+ <g>
4
+ <path fill="#003057" d="M73.6,59.2c2.4,2.3,3.6,5.5,3.5,8.7c-0.1,1.8,0,3.7,0,5.7c0,1,0,1.8,0,2.7v4.7H18.3v-4.7c0-1,0-1.9,0-2.9
5
+ c0-2.5,0-5.1,0.1-7.7c0.3-2.3,1.3-4.4,2.9-6c4-4.1,9.1-7,14.7-8.4c-4.6-5.4-6.4-12.6-4.8-19.6c2-7.4,8.7-12.6,16.4-12.6h0.1
6
+ c0.7,0,1.4,0.1,2.2,0.2c9.4,1.3,16,9.9,14.7,19.3c-0.5,4.7-2.3,9.1-5.3,12.7C64.7,52.6,69.7,55.3,73.6,59.2z M72.5,67.7
7
+ c0.1-2-0.7-3.9-2.2-5.3c-3.6-3.4-8-5.7-12.8-6.8c-0.1,0-0.2,0-0.4,0c-0.5,0-1.1,0.2-1.5,0.5c-2.4,1.5-5.1,2.3-7.9,2.4
8
+ c-2.8-0.1-5.6-0.9-7.9-2.4c-0.4-0.3-0.9-0.4-1.4-0.5H38c-5,1.1-9.6,3.6-13.2,7.2c-0.9,0.9-1.5,1.9-1.7,3.1c-0.1,3.4,0,6.8,0,10.3
9
+ h49.3C72.4,73.3,72.4,70.5,72.5,67.7z M60.1,36.3c0,0,0-0.1,0-0.1c0-6.8-5.5-12.4-12.4-12.4c-5.6,0-10.4,3.8-11.9,9.1
10
+ c-1.4,6.9,1.3,14.1,7.1,18.2c1.4,1,3.1,1.5,4.8,1.5c1.8,0,3.5-0.6,5-1.7c4.2-3.1,6.9-7.8,7.3-13.1C60,37.4,60.1,36.9,60.1,36.3z"
11
+ />
12
+ <g>
13
+ <path fill="#003057" d="M168.2,59.2c2.4,2.3,3.6,5.5,3.5,8.7c-0.1,1.8,0,3.7,0,5.7c0,1,0,1.8,0,2.7v4.7h-58.8v-4.7
14
+ c0-1,0-1.9,0-2.9c0-2.5,0-5.1,0.1-7.7c0.3-2.3,1.3-4.4,2.9-6c4-4.1,9.1-7,14.7-8.4c-4.6-5.4-6.4-12.6-4.8-19.6
15
+ c2-7.4,8.7-12.6,16.4-12.6h0.1c0.7,0,1.4,0.1,2.2,0.2c9.4,1.3,16,9.9,14.7,19.3c-0.5,4.7-2.3,9.1-5.3,12.7
16
+ C159.3,52.6,164.2,55.3,168.2,59.2z M167,67.7c0.1-2-0.7-3.9-2.2-5.3c-3.6-3.4-8-5.7-12.8-6.8c-0.1,0-0.3,0-0.4,0
17
+ c-0.5,0-1.1,0.2-1.5,0.5c-2.4,1.5-5.1,2.3-7.9,2.4c-2.8-0.1-5.6-0.9-7.9-2.4c-0.4-0.3-0.9-0.4-1.4-0.5h-0.3
18
+ c-5,1.1-9.6,3.6-13.2,7.2c-0.9,0.8-1.5,1.9-1.7,3.1c-0.1,3.4,0,6.8,0,10.3H167C167,73.3,166.9,70.5,167,67.7z M154.6,36.3
19
+ c0,0,0-0.1,0-0.1c0-6.8-5.5-12.4-12.4-12.4c-5.6,0-10.4,3.8-11.9,9.1c-1.4,6.9,1.3,14.1,7.1,18.2c1.4,1,3.1,1.5,4.8,1.5
20
+ c1.8,0,3.5-0.6,5-1.7c4.2-3.1,6.9-7.8,7.3-13.1C154.5,37.4,154.6,36.9,154.6,36.3z"/>
21
+ <path fill="#7A8FA7" d="M164.8,62.4c1.4,1.4,2.2,3.3,2.2,5.3c-0.1,2.8,0,5.6,0,8.5h-49.3c0-3.5-0.1-6.9,0-10.3
22
+ c0.2-1.2,0.8-2.3,1.7-3.1c3.6-3.6,8.2-6.1,13.2-7.2h0.3c0.5,0.1,1,0.2,1.4,0.5c2.4,1.5,5.1,2.4,7.9,2.4c2.8-0.1,5.6-0.9,7.9-2.4
23
+ c0.5-0.3,1-0.4,1.5-0.5c0.1,0,0.3,0,0.4,0C156.9,56.7,161.3,59.1,164.8,62.4z"/>
24
+ <path fill="#7A8FA7" d="M154.6,36.2c0,0,0,0.1,0,0.1c0,0.5-0.1,1.1-0.1,1.6c-0.4,5.2-3,10-7.3,13.1c-1.4,1.1-3.2,1.7-5,1.7
25
+ c-1.7,0-3.4-0.6-4.8-1.5c-5.7-4.1-8.5-11.3-7.1-18.2c1.5-5.4,6.3-9.1,11.9-9.1C149,23.8,154.6,29.4,154.6,36.2z"/>
26
+ </g>
27
+ <path fill="#003057" d="M124.4,73.6v7.3H65.6v-7.6c0-2.5,0-5.1,0.1-7.7c0.3-2.3,1.3-4.4,2.9-6c4-4.1,9.1-7,14.7-8.4
28
+ c-4.6-5.4-6.4-12.7-4.8-19.6c2-7.4,8.7-12.6,16.4-12.6h0.1c0.7,0,1.4,0.1,2.2,0.1c9.4,1.3,16,9.9,14.7,19.3
29
+ c-0.5,4.7-2.3,9.1-5.3,12.7c5.4,1.3,10.3,4,14.3,7.9c2.4,2.3,3.6,5.5,3.5,8.7C124.4,69.8,124.4,71.6,124.4,73.6z"/>
30
+ </g>
31
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,42 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
2
+ <rect fill="none" width="150" height="150"/>
3
+ <path fill="#003057" d="M112.9,28.3c-0.2,0-0.3,0-0.5,0H97.6l0.3-2.2c0-3.1-2.6-5.7-5.7-5.7h-6.5c-0.5-4.6-5.2-8.2-10.9-8.2
4
+ c-5.7,0-10.3,3.6-10.9,8.2h-6.5c-3.2,0-5.7,2.5-5.7,5.7l0.3,2.2H37.6c-0.2,0-0.5,0-0.9,0c-1.7,0.3-4.6,1.6-4.6,6.9v96.6
5
+ c0,2.6,0.7,4.2,1.6,5.1s2.1,1.4,3,1.5l76.2,0c1.8-0.3,4.8-1.4,4.8-6.7V35.2C117.7,29.7,114.7,28.5,112.9,28.3z M74.9,15.3
6
+ c1.4,0,2.6,1.2,2.6,2.6c0,1.3-0.9,2.3-2.1,2.6c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0-0.5,0c-1.2-0.2-2.1-1.3-2.1-2.6
7
+ C72.3,16.4,73.5,15.3,74.9,15.3z M112,126.1c0,5.2-3,6.4-4.8,6.6v0.1H42.4v-0.2c-1.8-0.3-4.6-1.5-4.6-6.7V41c0-5.3,2.8-6.7,4.6-6.9
8
+ c0.3,0,0.6,0,0.9,0h9.7l0.5,3.3c0,3.1,2.5,5.7,5.7,5.7h31.5c3.1,0,5.7-2.5,5.7-5.7l0.5-3.3h10c0.1,0,0.3,0,0.5,0
9
+ c1.7,0.2,4.8,1.4,4.8,6.9V126.1z"/>
10
+ <g>
11
+ <g>
12
+ <path fill="#003057" d="M103.4,119.6c0,1.7-1.4,3-3.1,3H66.6c-1.7,0-3.1-1.4-3.1-3l0,0c0-1.7,1.4-3,3.1-3h33.7
13
+ C102,116.6,103.4,117.9,103.4,119.6L103.4,119.6z"/>
14
+ <path fill="#003057" d="M55.9,114.5l-4.4,6.3l-2.5-1.7c-0.8-0.5-1.8-0.3-2.3,0.4c-0.5,0.8-0.3,1.8,0.4,2.3c6.3,4.4,4.2,5,11.5-5.4
15
+ c0.5-0.8,0.3-1.8-0.4-2.3C57.4,113.6,56.4,113.8,55.9,114.5z"/>
16
+ </g>
17
+ <g>
18
+ <path fill="#003057" d="M103.4,103.5c0,1.7-1.4,3-3.1,3H66.6c-1.7,0-3.1-1.4-3.1-3l0,0c0-1.7,1.4-3,3.1-3h33.7
19
+ C102,100.5,103.4,101.9,103.4,103.5L103.4,103.5z"/>
20
+ <path fill="#003057" d="M55.9,98.5l-4.4,6.3L49,103c-0.8-0.5-1.8-0.3-2.3,0.4c-0.5,0.8-0.3,1.8,0.4,2.3c6.3,4.4,4.2,5,11.5-5.4
21
+ c0.5-0.8,0.3-1.8-0.4-2.3C57.4,97.5,56.4,97.7,55.9,98.5z"/>
22
+ </g>
23
+ <g>
24
+ <path fill="#003057" d="M103.4,87.4c0,1.7-1.4,3-3.1,3H66.6c-1.7,0-3.1-1.4-3.1-3l0,0c0-1.7,1.4-3,3.1-3h33.7
25
+ C102,84.4,103.4,85.8,103.4,87.4L103.4,87.4z"/>
26
+ <path fill="#003057" d="M55.9,82.4l-4.4,6.3L49,86.9c-0.8-0.5-1.8-0.3-2.3,0.4c-0.5,0.8-0.3,1.8,0.4,2.3c6.3,4.4,4.2,5,11.5-5.4
27
+ c0.5-0.8,0.3-1.8-0.4-2.3C57.4,81.4,56.4,81.6,55.9,82.4z"/>
28
+ </g>
29
+ <g>
30
+ <path fill="#003057" d="M103.4,71.4c0,1.7-1.4,3-3.1,3H66.6c-1.7,0-3.1-1.4-3.1-3l0,0c0-1.7,1.4-3,3.1-3h33.7
31
+ C102,68.3,103.4,69.7,103.4,71.4L103.4,71.4z"/>
32
+ <path fill="#003057" d="M55.9,66.3l-4.4,6.3L49,70.9c-0.8-0.5-1.8-0.3-2.3,0.4c-0.5,0.8-0.3,1.8,0.4,2.3c6.3,4.4,4.2,5,11.5-5.4
33
+ c0.5-0.8,0.3-1.8-0.4-2.3C57.4,65.4,56.4,65.5,55.9,66.3z"/>
34
+ </g>
35
+ <g>
36
+ <path fill="#003057" d="M103.4,55.3c0,1.7-1.4,3-3.1,3H66.6c-1.7,0-3.1-1.4-3.1-3l0,0c0-1.7,1.4-3,3.1-3h33.7
37
+ C102,52.3,103.4,53.6,103.4,55.3L103.4,55.3z"/>
38
+ <path fill="#003057" d="M55.9,50.2l-4.4,6.3L49,54.8c-0.8-0.5-1.8-0.3-2.3,0.4c-0.5,0.8-0.3,1.8,0.4,2.3c6.3,4.4,4.2,5,11.5-5.4
39
+ c0.5-0.8,0.3-1.8-0.4-2.3C57.4,49.3,56.4,49.5,55.9,50.2z"/>
40
+ </g>
41
+ </g>
42
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
2
+ <g>
3
+ <path fill="#003057" d="M115.8,104.7c-2.8,2.9-23.6,20.9-26.7,22.2c-2.7,1.1-26.6,2-36.2,0.8c-3-0.4-8.9-2-13.6-3.3
4
+ c-4.1-1.1-6.3-1.7-7.3-1.8c-2.1-0.2-11.8-0.1-13.9-0.1V95.1c2,0,11.1,0.2,14-0.3c1.6-0.3,3.3-1.3,5.5-2.6c3.1-1.9,7-4.2,10.6-4.2
5
+ c5.7,0,10.2,1.9,12.4,2.9c1.2,0.5,2.9,1.3,4.4,2.1c2.2,1.1,4.2,2.1,5.8,2.7c2.4,0.8,7.2,0.8,13.4,0.7c1.3,0,2.5-0.1,3.4-0.1
6
+ c3.1,0,6.5,2,6.5,4.8c0,2.7-1.5,7-5.5,7H63.8c-1.3,0-2.3,1-2.3,2.3c0,1.3,1,2.3,2.3,2.3h24.9c6.5,0,10-5.9,10.1-11.4
7
+ c3.9-2.3,14.1-8.5,15.6-9.9c0.7-0.6,1.5-1.5,2.4-2.5c1.8-2.1,4.4-4.9,6.7-5.9c3.3-1.4,7.4-0.6,8.2,0.2
8
+ C130.4,86.3,118.6,101.7,115.8,104.7"/>
9
+ <path fill="#003057" d="M103.2,22.1c-12.4,0-16.9,14.8-16.9,14.8s-4.5-14.8-17-14.8c-9.4,0-20.1,7.4-16.1,24.3
10
+ c4,16.9,33,37.9,33,37.9s0.1-0.1,0.1-0.2c0,0.1,0.1,0.1,0.1,0.1s29-21,32.9-37.9C123.3,29.5,112.6,22.1,103.2,22.1"/>
11
+ </g>
12
+ </svg>
Binary file
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[]).push([[315],{5315:function(e,n,a){a.r(n),n.default=function(){console.log("Test")}}}]);
@@ -0,0 +1 @@
1
+ (self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[]).push([[321],{6321:function(e,t,n){"use strict";function r(e){return Math.floor(e.getBoundingClientRect().top)}function a(e){var t=e.target.getAttribute("href").replace(/^#/,""),n=document.getElementById(t),a=r(n);e.preventDefault(),window.scrollBy({top:a,left:0,behavior:"smooth"});var c=setInterval((function(){var e=window.innerHeight+window.pageYOffset>=document.body.offsetHeight-2;(0===r(n)||e)&&('.inputWrapper input[placeholder="First Name"]',document.querySelector('.inputWrapper input[placeholder="First Name"]').select(),clearInterval(c))}),100)}n.r(t),n(4916),n(5306),t.default=function(){document.querySelector('a[href="#page-top"]').addEventListener("click",a)}},1530:function(e,t,n){"use strict";var r=n(8710).charAt;e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},7007:function(e,t,n){"use strict";n(4916);var r=n(1320),a=n(2261),c=n(7293),l=n(5112),i=n(8880),o=l("species"),u=RegExp.prototype;e.exports=function(e,t,n,s){var f=l(e),p=!c((function(){var t={};return t[f]=function(){return 7},7!=""[e](t)})),d=p&&!c((function(){var t=!1,n=/a/;return"split"===e&&((n={}).constructor={},n.constructor[o]=function(){return n},n.flags="",n[f]=/./[f]),n.exec=function(){return t=!0,null},n[f](""),!t}));if(!p||!d||n){var v=/./[f],g=t(f,""[e],(function(e,t,n,r,c){var l=t.exec;return l===a||l===u.exec?p&&!c?{done:!0,value:v.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}}));r(String.prototype,e,g[0]),r(u,f,g[1])}s&&i(u[f],"sham",!0)}},647:function(e,t,n){var r=n(7908),a=Math.floor,c="".replace,l=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,i=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,n,o,u,s){var f=n+e.length,p=o.length,d=i;return void 0!==u&&(u=r(u),d=l),c.call(s,d,(function(r,c){var l;switch(c.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,n);case"'":return t.slice(f);case"<":l=u[c.slice(1,-1)];break;default:var i=+c;if(0===i)return r;if(i>p){var s=a(i/10);return 0===s?r:s<=p?void 0===o[s-1]?c.charAt(1):o[s-1]+c.charAt(1):r}l=o[i-1]}return void 0===l?"":l}))}},7651:function(e,t,n){var r=n(4326),a=n(2261);e.exports=function(e,t){var n=e.exec;if("function"==typeof n){var c=n.call(e,t);if("object"!=typeof c)throw TypeError("RegExp exec method returned something other than an Object or null");return c}if("RegExp"!==r(e))throw TypeError("RegExp#exec called on incompatible receiver");return a.call(e,t)}},2261:function(e,t,n){"use strict";var r,a,c=n(1340),l=n(7066),i=n(2999),o=n(2309),u=n(30),s=n(9909).get,f=n(9441),p=n(8173),d=RegExp.prototype.exec,v=o("native-string-replace",String.prototype.replace),g=d,x=(r=/a/,a=/b*/g,d.call(r,"a"),d.call(a,"a"),0!==r.lastIndex||0!==a.lastIndex),h=i.UNSUPPORTED_Y||i.BROKEN_CARET,y=void 0!==/()??/.exec("")[1];(x||y||h||f||p)&&(g=function(e){var t,n,r,a,i,o,f,p=this,I=s(p),b=c(e),E=I.raw;if(E)return E.lastIndex=p.lastIndex,t=g.call(E,b),p.lastIndex=E.lastIndex,t;var m=I.groups,R=h&&p.sticky,$=l.call(p),w=p.source,k=0,A=b;if(R&&(-1===($=$.replace("y","")).indexOf("g")&&($+="g"),A=b.slice(p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b.charAt(p.lastIndex-1))&&(w="(?: "+w+")",A=" "+A,k++),n=new RegExp("^(?:"+w+")",$)),y&&(n=new RegExp("^"+w+"$(?!\\s)",$)),x&&(r=p.lastIndex),a=d.call(R?n:p,A),R?a?(a.input=a.input.slice(k),a[0]=a[0].slice(k),a.index=p.lastIndex,p.lastIndex+=a[0].length):p.lastIndex=0:x&&a&&(p.lastIndex=p.global?a.index+a[0].length:r),y&&a&&a.length>1&&v.call(a[0],n,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(a[i]=void 0)})),a&&m)for(a.groups=o=u(null),i=0;i<m.length;i++)o[(f=m[i])[0]]=a[f[1]];return a}),e.exports=g},7066:function(e,t,n){"use strict";var r=n(9670);e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},2999:function(e,t,n){var r=n(7293),a=n(7854).RegExp;t.UNSUPPORTED_Y=r((function(){var e=a("a","y");return e.lastIndex=2,null!=e.exec("abcd")})),t.BROKEN_CARET=r((function(){var e=a("^r","gy");return e.lastIndex=2,null!=e.exec("str")}))},9441:function(e,t,n){var r=n(7293),a=n(7854).RegExp;e.exports=r((function(){var e=a(".","s");return!(e.dotAll&&e.exec("\n")&&"s"===e.flags)}))},8173:function(e,t,n){var r=n(7293),a=n(7854).RegExp;e.exports=r((function(){var e=a("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}))},4916:function(e,t,n){"use strict";var r=n(2109),a=n(2261);r({target:"RegExp",proto:!0,forced:/./.exec!==a},{exec:a})},5306:function(e,t,n){"use strict";var r=n(7007),a=n(7293),c=n(9670),l=n(9958),i=n(7466),o=n(1340),u=n(4488),s=n(1530),f=n(647),p=n(7651),d=n(5112)("replace"),v=Math.max,g=Math.min,x="$0"==="a".replace(/./,"$0"),h=!!/./[d]&&""===/./[d]("a","$0");r("replace",(function(e,t,n){var r=h?"$":"$0";return[function(e,n){var r=u(this),a=null==e?void 0:e[d];return void 0!==a?a.call(e,r,n):t.call(o(r),e,n)},function(e,a){var u=c(this),d=o(e);if("string"==typeof a&&-1===a.indexOf(r)&&-1===a.indexOf("$<")){var x=n(t,u,d,a);if(x.done)return x.value}var h="function"==typeof a;h||(a=o(a));var y=u.global;if(y){var I=u.unicode;u.lastIndex=0}for(var b=[];;){var E=p(u,d);if(null===E)break;if(b.push(E),!y)break;""===o(E[0])&&(u.lastIndex=s(d,i(u.lastIndex),I))}for(var m,R="",$=0,w=0;w<b.length;w++){E=b[w];for(var k=o(E[0]),A=v(g(l(E.index),d.length),0),O=[],_=1;_<E.length;_++)O.push(void 0===(m=E[_])?m:String(m));var S=E.groups;if(h){var C=[k].concat(O,A,d);void 0!==S&&C.push(S);var N=o(a.apply(void 0,C))}else N=f(k,d,A,O,S,a);A>=$&&(R+=d.slice($,A)+N,$=A+k.length)}return R+d.slice($)}]}),!!a((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}))||!x||h)}}]);
@@ -0,0 +1 @@
1
+ (self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[]).push([[582],{1582:function(t,r,n){"use strict";function e(t,r){(null==r||r>t.length)&&(r=t.length);for(var n=0,e=new Array(r);n<r;n++)e[n]=t[n];return e}n.r(r),n(4747),n(2526),n(1817),n(1539),n(2165),n(6992),n(8783),n(3948),n(1038),n(7042),n(8309),r.default=function(){var t;(t=document.querySelectorAll("img[data-src]"),function(t){if(Array.isArray(t))return e(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,r){if(t){if("string"==typeof t)return e(t,r);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?e(t,r):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).forEach((function(t){t.setAttribute("src",t.getAttribute("data-src")),t.onload=function(){return t.removeAttribute("data-src")}}))}},8533:function(t,r,n){"use strict";var e=n(2092).forEach,o=n(9341)("forEach");t.exports=o?[].forEach:function(t){return e(this,t,arguments.length>1?arguments[1]:void 0)}},8457:function(t,r,n){"use strict";var e=n(9974),o=n(7908),i=n(3411),c=n(7659),u=n(7466),a=n(6135),f=n(1246);t.exports=function(t){var r,n,s,l,p,y,v=o(t),h="function"==typeof this?this:Array,d=arguments.length,g=d>1?arguments[1]:void 0,b=void 0!==g,m=f(v),w=0;if(b&&(g=e(g,d>2?arguments[2]:void 0,2)),null==m||h==Array&&c(m))for(n=new h(r=u(v.length));r>w;w++)y=b?g(v[w],w):v[w],a(n,w,y);else for(p=(l=m.call(v)).next,n=new h;!(s=p.call(l)).done;w++)y=b?i(l,g,[s.value,w],!0):s.value,a(n,w,y);return n.length=w,n}},2092:function(t,r,n){var e=n(9974),o=n(8361),i=n(7908),c=n(7466),u=n(5417),a=[].push,f=function(t){var r=1==t,n=2==t,f=3==t,s=4==t,l=6==t,p=7==t,y=5==t||l;return function(v,h,d,g){for(var b,m,w=i(v),S=o(w),A=e(h,d,3),O=c(S.length),x=0,j=g||u,E=r?j(v,O):n||p?j(v,0):void 0;O>x;x++)if((y||x in S)&&(m=A(b=S[x],x,w),t))if(r)E[x]=m;else if(m)switch(t){case 3:return!0;case 5:return b;case 6:return x;case 2:a.call(E,b)}else switch(t){case 4:return!1;case 7:a.call(E,b)}return l?-1:f||s?s:E}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},1194:function(t,r,n){var e=n(7293),o=n(5112),i=n(7392),c=o("species");t.exports=function(t){return i>=51||!e((function(){var r=[];return(r.constructor={})[c]=function(){return{foo:1}},1!==r[t](Boolean).foo}))}},9341:function(t,r,n){"use strict";var e=n(7293);t.exports=function(t,r){var n=[][t];return!!n&&e((function(){n.call(null,r||function(){throw 1},1)}))}},7475:function(t,r,n){var e=n(111),o=n(3157),i=n(5112)("species");t.exports=function(t){var r;return o(t)&&("function"!=typeof(r=t.constructor)||r!==Array&&!o(r.prototype)?e(r)&&null===(r=r[i])&&(r=void 0):r=void 0),void 0===r?Array:r}},5417:function(t,r,n){var e=n(7475);t.exports=function(t,r){return new(e(t))(0===r?0:r)}},3411:function(t,r,n){var e=n(9670),o=n(9212);t.exports=function(t,r,n,i){try{return i?r(e(n)[0],n[1]):r(n)}catch(r){throw o(t),r}}},6135:function(t,r,n){"use strict";var e=n(4948),o=n(3070),i=n(9114);t.exports=function(t,r,n){var c=e(r);c in t?o.f(t,c,i(0,n)):t[c]=n}},7235:function(t,r,n){var e=n(857),o=n(6656),i=n(6061),c=n(3070).f;t.exports=function(t){var r=e.Symbol||(e.Symbol={});o(r,t)||c(r,t,{value:i.f(t)})}},3157:function(t,r,n){var e=n(4326);t.exports=Array.isArray||function(t){return"Array"==e(t)}},1156:function(t,r,n){var e=n(5656),o=n(8006).f,i={}.toString,c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return c&&"[object Window]"==i.call(t)?function(t){try{return o(t)}catch(t){return c.slice()}}(t):o(e(t))}},857:function(t,r,n){var e=n(7854);t.exports=e},6061:function(t,r,n){var e=n(5112);r.f=e},1038:function(t,r,n){var e=n(2109),o=n(8457);e({target:"Array",stat:!0,forced:!n(7072)((function(t){Array.from(t)}))},{from:o})},7042:function(t,r,n){"use strict";var e=n(2109),o=n(111),i=n(3157),c=n(1400),u=n(7466),a=n(5656),f=n(6135),s=n(5112),l=n(1194)("slice"),p=s("species"),y=[].slice,v=Math.max;e({target:"Array",proto:!0,forced:!l},{slice:function(t,r){var n,e,s,l=a(this),h=u(l.length),d=c(t,h),g=c(void 0===r?h:r,h);if(i(l)&&("function"!=typeof(n=l.constructor)||n!==Array&&!i(n.prototype)?o(n)&&null===(n=n[p])&&(n=void 0):n=void 0,n===Array||void 0===n))return y.call(l,d,g);for(e=new(void 0===n?Array:n)(v(g-d,0)),s=0;d<g;d++,s++)d in l&&f(e,s,l[d]);return e.length=s,e}})},8309:function(t,r,n){var e=n(9781),o=n(3070).f,i=Function.prototype,c=i.toString,u=/^\s*function ([^ (]*)/,a="name";e&&!(a in i)&&o(i,a,{configurable:!0,get:function(){try{return c.call(this).match(u)[1]}catch(t){return""}}})},1817:function(t,r,n){"use strict";var e=n(2109),o=n(9781),i=n(7854),c=n(6656),u=n(111),a=n(3070).f,f=n(9920),s=i.Symbol;if(o&&"function"==typeof s&&(!("description"in s.prototype)||void 0!==s().description)){var l={},p=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:String(arguments[0]),r=this instanceof p?new s(t):void 0===t?s():s(t);return""===t&&(l[r]=!0),r};f(p,s);var y=p.prototype=s.prototype;y.constructor=p;var v=y.toString,h="Symbol(test)"==String(s("test")),d=/^Symbol\((.*)\)[^)]+$/;a(y,"description",{configurable:!0,get:function(){var t=u(this)?this.valueOf():this,r=v.call(t);if(c(l,t))return"";var n=h?r.slice(7,-1):r.replace(d,"$1");return""===n?void 0:n}}),e({global:!0,forced:!0},{Symbol:p})}},2165:function(t,r,n){n(7235)("iterator")},2526:function(t,r,n){"use strict";var e=n(2109),o=n(7854),i=n(5005),c=n(1913),u=n(9781),a=n(133),f=n(7293),s=n(6656),l=n(3157),p=n(111),y=n(2190),v=n(9670),h=n(7908),d=n(5656),g=n(4948),b=n(1340),m=n(9114),w=n(30),S=n(1956),A=n(8006),O=n(1156),x=n(5181),j=n(1236),E=n(3070),P=n(5296),k=n(8880),I=n(1320),N=n(2309),C=n(6200),_=n(3501),F=n(9711),T=n(5112),$=n(6061),J=n(7235),M=n(8003),q=n(9909),B=n(2092).forEach,D=C("hidden"),Q="Symbol",R=T("toPrimitive"),U=q.set,W=q.getterFor(Q),z=Object.prototype,G=o.Symbol,H=i("JSON","stringify"),K=j.f,L=E.f,V=O.f,X=P.f,Y=N("symbols"),Z=N("op-symbols"),tt=N("string-to-symbol-registry"),rt=N("symbol-to-string-registry"),nt=N("wks"),et=o.QObject,ot=!et||!et.prototype||!et.prototype.findChild,it=u&&f((function(){return 7!=w(L({},"a",{get:function(){return L(this,"a",{value:7}).a}})).a}))?function(t,r,n){var e=K(z,r);e&&delete z[r],L(t,r,n),e&&t!==z&&L(z,r,e)}:L,ct=function(t,r){var n=Y[t]=w(G.prototype);return U(n,{type:Q,tag:t,description:r}),u||(n.description=r),n},ut=function(t,r,n){t===z&&ut(Z,r,n),v(t);var e=g(r);return v(n),s(Y,e)?(n.enumerable?(s(t,D)&&t[D][e]&&(t[D][e]=!1),n=w(n,{enumerable:m(0,!1)})):(s(t,D)||L(t,D,m(1,{})),t[D][e]=!0),it(t,e,n)):L(t,e,n)},at=function(t,r){v(t);var n=d(r),e=S(n).concat(pt(n));return B(e,(function(r){u&&!ft.call(n,r)||ut(t,r,n[r])})),t},ft=function(t){var r=g(t),n=X.call(this,r);return!(this===z&&s(Y,r)&&!s(Z,r))&&(!(n||!s(this,r)||!s(Y,r)||s(this,D)&&this[D][r])||n)},st=function(t,r){var n=d(t),e=g(r);if(n!==z||!s(Y,e)||s(Z,e)){var o=K(n,e);return!o||!s(Y,e)||s(n,D)&&n[D][e]||(o.enumerable=!0),o}},lt=function(t){var r=V(d(t)),n=[];return B(r,(function(t){s(Y,t)||s(_,t)||n.push(t)})),n},pt=function(t){var r=t===z,n=V(r?Z:d(t)),e=[];return B(n,(function(t){!s(Y,t)||r&&!s(z,t)||e.push(Y[t])})),e};a||(I((G=function(){if(this instanceof G)throw TypeError("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?b(arguments[0]):void 0,r=F(t),n=function(t){this===z&&n.call(Z,t),s(this,D)&&s(this[D],r)&&(this[D][r]=!1),it(this,r,m(1,t))};return u&&ot&&it(z,r,{configurable:!0,set:n}),ct(r,t)}).prototype,"toString",(function(){return W(this).tag})),I(G,"withoutSetter",(function(t){return ct(F(t),t)})),P.f=ft,E.f=ut,j.f=st,A.f=O.f=lt,x.f=pt,$.f=function(t){return ct(T(t),t)},u&&(L(G.prototype,"description",{configurable:!0,get:function(){return W(this).description}}),c||I(z,"propertyIsEnumerable",ft,{unsafe:!0}))),e({global:!0,wrap:!0,forced:!a,sham:!a},{Symbol:G}),B(S(nt),(function(t){J(t)})),e({target:Q,stat:!0,forced:!a},{for:function(t){var r=b(t);if(s(tt,r))return tt[r];var n=G(r);return tt[r]=n,rt[n]=r,n},keyFor:function(t){if(!y(t))throw TypeError(t+" is not a symbol");if(s(rt,t))return rt[t]},useSetter:function(){ot=!0},useSimple:function(){ot=!1}}),e({target:"Object",stat:!0,forced:!a,sham:!u},{create:function(t,r){return void 0===r?w(t):at(w(t),r)},defineProperty:ut,defineProperties:at,getOwnPropertyDescriptor:st}),e({target:"Object",stat:!0,forced:!a},{getOwnPropertyNames:lt,getOwnPropertySymbols:pt}),e({target:"Object",stat:!0,forced:f((function(){x.f(1)}))},{getOwnPropertySymbols:function(t){return x.f(h(t))}}),H&&e({target:"JSON",stat:!0,forced:!a||f((function(){var t=G();return"[null]"!=H([t])||"{}"!=H({a:t})||"{}"!=H(Object(t))}))},{stringify:function(t,r,n){for(var e,o=[t],i=1;arguments.length>i;)o.push(arguments[i++]);if(e=r,(p(r)||void 0!==t)&&!y(t))return l(r)||(r=function(t,r){if("function"==typeof e&&(r=e.call(this,t,r)),!y(r))return r}),o[1]=r,H.apply(null,o)}}),G.prototype[R]||k(G.prototype,R,G.prototype.valueOf),M(G,Q),_[D]=!0},4747:function(t,r,n){var e=n(7854),o=n(8324),i=n(8533),c=n(8880);for(var u in o){var a=e[u],f=a&&a.prototype;if(f&&f.forEach!==i)try{c(f,"forEach",i)}catch(t){f.forEach=i}}}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunklanding_page_gem=self.webpackChunklanding_page_gem||[]).push([[909],{6909:function(e,n,a){a.r(n),n.default=function(){var e=(new Date).getFullYear();document.getElementById("currentYear").innerHTML=e}}}]);
@@ -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],"./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),window.addEventListener("load",(function(){var t="/"==window.location.pathname;r("footerDate"),t&&r("landingPage")})),document.addEventListener("DOMContentLoaded",(function(){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",m="values",b="entries",x=function(){return this};t.exports=function(t,n,e,s,v,w,j){o(e,n,s);var S,O,T,E=function(t){if(t===v&&_)return _;if(!h&&t in A)return A[t];switch(t){case g:case m:case b:return function(){return new e(this,t)}}return function(){return new e(this)}},P=n+" Iterator",L=!1,A=t.prototype,k=A[y]||A["@@iterator"]||v&&A[v],_=!h&&k||E(v),M="Array"==n&&A.entries||k;if(M&&(S=i(M.call(new t)),d!==Object.prototype&&S.next&&(l||i(S)===d||(c?c(S,d):"function"!=typeof S[y]&&a(S,y,x)),u(S,P,!0,!0),l&&(p[P]=x))),v==m&&k&&k.name!==m&&(L=!0,_=function(){return k.call(this)}),l&&!j||A[y]===_||a(A,y,_),p[n]=_,v)if(O={values:E(m),keys:w?_:E(g),entries:E(b)},j)for(T in O)(h||L||!(T in A))&&f(A,T,O[T]);else r({target:n,proto:!0,forced:h||L},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}}},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,m=y.has,b=y.set;r=function(t,n){if(m.call(y,t))throw new TypeError(d);return n.facade=t,b.call(y,t,n),n},o=function(t){return g.call(y,t)||{}},i=function(t){return m.call(y,t)}}else{var x=p("state");v[x]=!0,r=function(t,n){if(s(t,x))throw new TypeError(d);return n.facade=t,f(t,x,n),n},o=function(t){return s(t,x)?t[x]:{}},i=function(t){return s(t,x)}}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,m=!(!e||!e.AS_ENTRIES),b=!(!e||!e.IS_ITERATOR),x=!(!e||!e.INTERRUPTED),w=c(n,g,1+m+x),j=function(t){return s&&a(s),new f(!0,t)},S=function(t){return m?(r(t),x?w(t[0],t[1],j):w(t[0],t[1])):x?w(t,j):w(t)};if(b)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),m=l.MutationObserver||l.WebKitMutationObserver,b=l.document,x=l.process,w=l.Promise,j=p(l,"queueMicrotask"),S=j&&j.value;S||(r=function(){var t,n;for(g&&(t=x.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||!m||!b?!h&&w&&w.resolve?((f=w.resolve(void 0)).constructor=w,s=f.then,c=function(){s.call(f,r)}):c=g?function(){x.nextTick(r)}:function(){v.call(l,r)}:(u=!0,a=b.createTextNode(""),new m(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)}))},4488:function(t){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},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,m=u.Dispatch,b=0,x={};try{r=u.location}catch(t){}var w=function(t){if(x.hasOwnProperty(t)){var n=x[t];delete x[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 x[++b]=function(){("function"==typeof t?t:Function(t)).apply(void 0,n)},o(b),b},h=function(t){delete x[t]},v?o=function(t){y.nextTick(j(t))}:m&&m.now?o=function(t){m.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),m=e(3099),b=e(5787),x=e(2788),w=e(408),j=e(7072),S=e(6707),O=e(261).set,T=e(5948),E=e(9478),P=e(842),L=e(8523),A=e(2534),k=e(9909),_=e(4705),M=e(5112),C=e(7871),I=e(5268),R=e(7392),D=M("species"),F="Promise",N=k.get,G=k.set,z=k.getterFor(F),V=l&&l.prototype,U=l,q=V,B=f.TypeError,H=f.document,W=f.process,Y=L.f,K=Y,X=!!(H&&H.createEvent&&f.dispatchEvent),J="function"==typeof PromiseRejectionEvent,Q="unhandledrejection",Z=!1,$=_(F,(function(){var t=x(U),n=t!==String(U);if(!n&&66===R)return!0;if(a&&!q.finally)return!0;if(R>=51&&/native code/.test(t))return!1;var e=new U((function(t){t(1)})),r=function(t){t((function(){}),(function(){}))};return(e.constructor={})[D]=r,!(Z=e.then((function(){}))instanceof r)||!n&&C&&!J})),tt=$||!j((function(t){U.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;T((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(B("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;X?((r=H.createEvent("Event")).promise=n,r.reason=e,r.initEvent(t,!1,!0),f.dispatchEvent(r)):r={promise:n,reason:e},!J&&(o=f["on"+t])?o(r):t===Q&&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(){I?W.emit("unhandledRejection",r,e):rt(Q,e,r)})),t.rejection=I||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;I?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 B("Promise can't be resolved itself");var r=nt(n);r?T((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($&&(q=(U=function(t){b(this,U,F),m(t),r.call(this);var n=N(this);try{t(ut(ft,n),ut(at,n))}catch(t){at(n,t)}}).prototype,(r=function(t){G(this,{type:F,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=v(q,{then:function(t,n){var e=z(this),r=Y(S(this,U));return r.ok="function"!=typeof t||t,r.fail="function"==typeof n&&n,r.domain=I?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=N(t);this.promise=t,this.resolve=ut(ft,n),this.reject=ut(at,n)},L.f=Y=function(t){return t===U||t===i?new o(t):K(t)},!a&&"function"==typeof l&&V!==Object.prototype)){c=V.then,Z||(p(V,"then",(function(t,n){var e=this;return new U((function(t,n){c.call(e,t,n)})).then(t,n)}),{unsafe:!0}),p(V,"catch",q.catch,{unsafe:!0}));try{delete V.constructor}catch(t){}d&&d(V,q)}u({global:!0,wrap:!0,forced:$},{Promise:U}),h(U,F,!1,!0),y(F),i=s(F),u({target:F,stat:!0,forced:$},{reject:function(t){var n=Y(this);return n.reject.call(void 0,t),n.promise}}),u({target:F,stat:!0,forced:a||$},{resolve:function(t){return E(a&&this===i?U:this,t)}}),u({target:F,stat:!0,forced:tt},{all:function(t){var n=this,e=Y(n),r=e.resolve,o=e.reject,i=A((function(){var e=m(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=m(n.resolve);w(t,(function(t){o.call(n,t).then(e.resolve,r)}))}));return o.error&&r(o.value),e.promise}})},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})}))},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"b82f3c2bb153940ebd76"},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}.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}}.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}}
@@ -0,0 +1,7 @@
1
+ // Sets copyright year
2
+ function footerDate() {
3
+ const fullYear = new Date().getFullYear();
4
+
5
+ document.getElementById('currentYear').innerHTML = fullYear;
6
+ }
7
+ export default footerDate;
@@ -0,0 +1,38 @@
1
+ const GET_STARTED_BUTTON_QUERYSELECTOR = 'a[href="#page-top"]'; // call-to-action Button at the bottom of landing pages
2
+ const FIRST_NAME_INPUT_QUERYSELECTOR = '.inputWrapper input[placeholder="First Name"]'; // First Name <input> element from the TargetX form in landing pages
3
+ // Custom JS to scroll the user to the top of the page & focus the first field (First Name input) of the form
4
+
5
+ function selectInputEl(inputElQuerySelctorString) {
6
+ const inputEl = document.querySelector(inputElQuerySelctorString);
7
+
8
+ return inputEl.select();
9
+ }
10
+
11
+ function distanceToTop(el) {
12
+ return Math.floor(el.getBoundingClientRect().top);
13
+ }
14
+
15
+ function clickHandler(e) {
16
+ const targetId = e.target.getAttribute('href').replace(/^#/, '');
17
+ const targetEl = document.getElementById(targetId);
18
+ const originalTop = distanceToTop(targetEl);
19
+
20
+ e.preventDefault();
21
+ window.scrollBy({ top: originalTop, left: 0, behavior: 'smooth' });
22
+
23
+ const checkIfDone = setInterval(() => {
24
+ const atBottom = window.innerHeight + window.pageYOffset >= document.body.offsetHeight - 2;
25
+ if (distanceToTop(targetEl) === 0 || atBottom) {
26
+ selectInputEl(FIRST_NAME_INPUT_QUERYSELECTOR);
27
+ clearInterval(checkIfDone);
28
+ }
29
+ }, 100);
30
+ }
31
+
32
+ function landingPage() {
33
+ const button = document.querySelector(GET_STARTED_BUTTON_QUERYSELECTOR);
34
+
35
+ button.addEventListener('click', clickHandler);
36
+ }
37
+
38
+ export default landingPage;
@@ -0,0 +1,11 @@
1
+ // Lazy load images
2
+ // ex. <img src="/path/to/small-placeholder_image.png" data-src="/path/to/actual_image.jpg" alt="You better not leave it blank">
3
+ function lazyLoad() {
4
+ const lazyLoadImages = document.querySelectorAll('img[data-src]');
5
+
6
+ [...lazyLoadImages].forEach( img => {
7
+ img.setAttribute('src', img.getAttribute('data-src'));
8
+ img.onload = () => img.removeAttribute('data-src');
9
+ });
10
+ }
11
+ export default lazyLoad;
@@ -0,0 +1,19 @@
1
+ import '../../scss/main.scss';
2
+ // import test from './test';
3
+
4
+ function loadModule(module) {
5
+ import(`./${module}`).then(({default: module}) => {
6
+ module();
7
+ });
8
+ }
9
+
10
+ window.addEventListener('load', () => {
11
+ const onHomepage = window.location.pathname == '/';
12
+
13
+ loadModule('footerDate');
14
+ onHomepage ? loadModule('landingPage'): null;
15
+ });
16
+
17
+ document.addEventListener('DOMContentLoaded', () => {
18
+ document.querySelector('img[data-src]') ? loadModule('lazyLoad'): null;
19
+ });
@@ -0,0 +1,5 @@
1
+ function test() {
2
+ console.log(`Test`);
3
+ }
4
+
5
+ export default test;
@@ -0,0 +1,26 @@
1
+ // Overrides AND additions/extensions to Bootstrap 4's styling
2
+ .navbar-brand {
3
+ margin-right: 0;
4
+ }
5
+
6
+ @media screen and (min-width: 768px) {
7
+ .navbar-brand {
8
+ margin-right: 1rem;
9
+ }
10
+ }
11
+
12
+ .btn {
13
+ vertical-align: baseline; // Needed so Google Translate's injected <font> tags don't mess with font's alignment in the page
14
+ }
15
+
16
+
17
+ .btn-primary {
18
+ background-color: $btn-primary-bg;
19
+ border-color: $btn-primary-border;
20
+ }
21
+
22
+ .btn-primary:hover {
23
+ background-color: $btn-hover-bg;
24
+ border-color: $btn-hover-border;
25
+ }
26
+
@@ -0,0 +1,17 @@
1
+ // Specific classes for the CloudCannon editor/interface.
2
+ // Make things visible in CloudCannon but not the live sight...
3
+ .editor-link {
4
+ display: none;
5
+ }
6
+
7
+ .cms-editor-active .editor-link {
8
+ display: block;
9
+ }
10
+
11
+ .editor-button {
12
+ display: none;
13
+ }
14
+
15
+ .cms-editor-active .editor-button {
16
+ display: inline-block;
17
+ }
@@ -0,0 +1,40 @@
1
+ // Rules for custom styles in CloudCannon.
2
+ // Must have both 1-element and 1-class selector.
3
+ // Must be fully-expanded (not compressed) CSS file
4
+ img.float-image-left {
5
+ float: left;
6
+ max-width: 100%;
7
+ height: auto;
8
+ margin: 10px;
9
+ }
10
+
11
+ img.float-image-right {
12
+ float: right;
13
+ max-width: 100%;
14
+ height: auto;
15
+ margin: 10px;
16
+ }
17
+
18
+ img.no-float {
19
+ float: none;
20
+ }
21
+
22
+ img.center-image {
23
+ margin-left: auto;
24
+ margin-right: auto;
25
+ max-width: 100%;
26
+ height: auto;
27
+ margin: 10px;
28
+ }
29
+
30
+ p.align-left {
31
+ text-align: left;
32
+ }
33
+
34
+ p.align-right {
35
+ text-align: right;
36
+ }
37
+
38
+ p.center-this-text {
39
+ text-align: center;
40
+ }
@@ -0,0 +1,76 @@
1
+ // Target-X/FormAssembly STYLE OVERRIDES
2
+ // ================================================================================ //
3
+ //
4
+ // FormAssembly uses some `!important`'s and they are needed where used
5
+ //
6
+ // ================================================================================ //
7
+
8
+ .targetx__wrapper {
9
+ margin-top: -35px;
10
+ z-index: -1;
11
+ }
12
+
13
+ // STYLE OVERRIDES TO TARGETX's STYLESHEET:
14
+ // ========================================
15
+
16
+ p.supportInfo {
17
+ display: none; // Hides an empty paragraph that just makes the form longer
18
+ }
19
+
20
+ @media screen and (min-width: 1200px) {
21
+ .wForm form > div.oneField {
22
+ margin-top: 0 !important; // Makes the spacing between form questions tighter/closer-together
23
+ }
24
+ }
25
+
26
+ @media screen and (min-width: 1800px) {
27
+ .wForm form > div.oneField {
28
+ margin-top: 10px !important; // Makes the spacing between form questions tighter/closer-together
29
+ }
30
+ }
31
+
32
+ .wFormContainer {
33
+ padding-left: 5px !important;
34
+ padding-right: 5px !important;
35
+ }
36
+
37
+ @media screen and (min-width: 1600px) {
38
+ .wFormContainer {
39
+ padding: 1rem 2rem !important;
40
+ }
41
+ }
42
+
43
+ #tfa_11::before {
44
+ display: block;
45
+ content: " ";
46
+ margin-top: -60px;
47
+ height: 60px;
48
+ visibility: hidden;
49
+ pointer-events: none;
50
+ }
51
+
52
+ @media screen and (min-width: 1800px) {
53
+ #tfa_775-D {
54
+ margin-top: 5px !important;
55
+ }
56
+ }
57
+
58
+ .oneField.field-container-D { // Keeps dropdown selection boxes from going wider than other element's in the form
59
+ max-width: 100%;
60
+ }
61
+
62
+ // Submit buttons always have the following ID.
63
+ #submit_button { // YES, the `!important`'s are actually needed!
64
+ background-color: #0051a7 !important;
65
+ border-color: #003773 !important;
66
+ font-family: $font-family-paragraph !important;
67
+ font-weight: 400 !important;
68
+ font-size: 1.25rem !important;
69
+ padding-top: 0.5rem !important;
70
+ padding-bottom: 0.5rem !important;
71
+ transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; // Same transitioning on buttons used in Bootstrap 4 styling
72
+ &:hover {
73
+ background-color: #022b55 !important;
74
+ border-color: #021e3d !important;
75
+ }
76
+ }