@ptcwebops/ptcw-design 4.4.8 → 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/cjs/homepage-jumbotron.cjs.entry.js +8 -4
  2. package/dist/cjs/homepage-toggled-content.cjs.entry.js +1 -1
  3. package/dist/cjs/jumbotron-sub-menu.cjs.entry.js +49 -0
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/cjs/ptc-info-tile.cjs.entry.js +1 -1
  6. package/dist/cjs/ptc-media-card.cjs.entry.js +1 -1
  7. package/dist/cjs/ptcw-design.cjs.js +1 -1
  8. package/dist/collection/collection-manifest.json +1 -0
  9. package/dist/collection/components/jumbotron-sub-menu/jumbotron-sub-menu.css +147 -0
  10. package/dist/collection/components/jumbotron-sub-menu/jumbotron-sub-menu.js +56 -0
  11. package/dist/collection/components/organism-bundles/homepage-jumbotron/homepage-jumbotron.css +6 -0
  12. package/dist/collection/components/organism-bundles/homepage-jumbotron/homepage-jumbotron.js +7 -3
  13. package/dist/collection/components/organism-bundles/homepage-toggled-content/homepage-toggled-content.js +1 -1
  14. package/dist/collection/components/ptc-info-tile/ptc-info-tile.css +1 -0
  15. package/dist/collection/components/ptc-media-card/ptc-media-card.css +13 -0
  16. package/dist/collection/stories/organisms/eSupport/AlertsPage/preview.stories.js +57 -0
  17. package/dist/collection/stories/organisms/eSupport/CustomerSupportGuide/preview.stories.js +117 -0
  18. package/dist/collection/stories/organisms/eSupport/HelpCenter/preview.stories.js +81 -0
  19. package/dist/collection/stories/organisms/eSupport/OnDemandSystemScan/preview.stories.js +27 -0
  20. package/dist/collection/stories/organisms/eSupport/ProductHomePage/preview.stories.js +32 -0
  21. package/dist/collection/stories/organisms/eSupport/PublishingTroubleshooter/preview.stories.js +44 -0
  22. package/dist/collection/stories/organisms/eSupport/SuccessPaths/Cards/preview.stories.js +122 -0
  23. package/dist/collection/stories/organisms/eSupport/SuccessPaths/CloudEngagement/preview.stories.js +59 -0
  24. package/dist/collection/stories/organisms/eSupport/SuccessPaths/DetailsPage/preview.stories.js +235 -0
  25. package/dist/custom-elements/index.d.ts +6 -0
  26. package/dist/custom-elements/index.js +58 -8
  27. package/dist/esm/homepage-jumbotron.entry.js +8 -4
  28. package/dist/esm/homepage-toggled-content.entry.js +1 -1
  29. package/dist/esm/jumbotron-sub-menu.entry.js +45 -0
  30. package/dist/esm/loader.js +1 -1
  31. package/dist/esm/ptc-info-tile.entry.js +1 -1
  32. package/dist/esm/ptc-media-card.entry.js +1 -1
  33. package/dist/esm/ptcw-design.js +1 -1
  34. package/dist/ptcw-design/p-37474449.entry.js +1 -0
  35. package/dist/ptcw-design/p-3e9214e5.entry.js +1 -0
  36. package/dist/ptcw-design/{p-a8e515f7.entry.js → p-71d983a9.entry.js} +1 -1
  37. package/dist/ptcw-design/{p-5258bcd7.entry.js → p-7fdadf0d.entry.js} +1 -1
  38. package/dist/ptcw-design/{p-dd51de0f.entry.js → p-e34f8759.entry.js} +1 -1
  39. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  40. package/dist/types/components/jumbotron-sub-menu/jumbotron-sub-menu.d.ts +10 -0
  41. package/dist/types/components.d.ts +13 -0
  42. package/package.json +1 -1
  43. package/readme.md +1 -1
  44. package/dist/ptcw-design/p-15d95a14.entry.js +0 -1
@@ -0,0 +1,235 @@
1
+ import { html } from 'lit';
2
+
3
+ export default {
4
+ title: 'Organisms/E-Support Organisms/Success Paths/Success Path Details Page'
5
+
6
+ }
7
+
8
+ const SuccessPathDetails = args => {
9
+ return html ` <ptc-spacer breakpoint="small" size="xxx-large"></ptc-spacer>
10
+ <ptc-spacer breakpoint="x-small" size="xxx-large"></ptc-spacer>
11
+
12
+ <div class="is-grid has-col-gap-md ptc-section-standard ptc-container">
13
+ <div class="is-col-12 is-col-3-lg is-col-3-md ">
14
+ <ptc-collapse-list id="filter-component" placeholder-text="Search Success Path" header="Recommended Steps" debounce-update-delay="300" class="hydrated">
15
+ <collapse-list-item allow-multi-select="true" facet-display="Plan">
16
+ <collapse-list-item category="By Technology" facet-display="Augmented Reality" facet-value="a98730df-ed96-48ad-b4d6-44da78a04351">
17
+ </collapse-list-item>
18
+ <collapse-list-item category="By Technology" facet-display="CAD" facet-value="40398f29-a804-42da-be3e-53f6f68d7b70">
19
+ </collapse-list-item>
20
+ <collapse-list-item category="By Technology" facet-display="Industrial Connectivity" facet-value="6c6a3f22-341c-4858-b7a7-39b78b18e4da">
21
+ </collapse-list-item>
22
+ <collapse-list-item category="By Technology" facet-display="Industrial Internet of Things" facet-value="2109fca4-5397-467f-b4ec-f79f1c106429">
23
+ </collapse-list-item>
24
+ <collapse-list-item category="By Technology" facet-display="Product Lifecycle Management (PLM)" facet-value="d3294e51-119a-4cb6-a647-0671b42a5867">
25
+ </collapse-list-item>
26
+ <collapse-list-item category="By Technology" facet-display="Service Lifecycle Management (SLM)" facet-value="ae21c21d-0842-4c7b-8a98-9efb7ed090df">
27
+ </collapse-list-item>
28
+ </collapse-list-item>
29
+ <collapse-list-item allow-multi-select="true" facet-display="Setup">
30
+ <collapse-list-item category="By Technology" facet-display="Augmented Reality" facet-value="a98730df-ed96-48ad-b4d6-44da78a04351">
31
+ </collapse-list-item>
32
+ <collapse-list-item category="By Technology" facet-display="CAD" facet-value="40398f29-a804-42da-be3e-53f6f68d7b70">
33
+ </collapse-list-item>
34
+ <collapse-list-item category="By Technology" facet-display="Industrial Connectivity" facet-value="6c6a3f22-341c-4858-b7a7-39b78b18e4da">
35
+ </collapse-list-item>
36
+ <collapse-list-item category="By Technology" facet-display="Industrial Internet of Things" facet-value="2109fca4-5397-467f-b4ec-f79f1c106429">
37
+ </collapse-list-item>
38
+ <collapse-list-item category="By Technology" facet-display="Product Lifecycle Management (PLM)" facet-value="d3294e51-119a-4cb6-a647-0671b42a5867">
39
+ </collapse-list-item>
40
+ <collapse-list-item category="By Technology" facet-display="Service Lifecycle Management (SLM)" facet-value="ae21c21d-0842-4c7b-8a98-9efb7ed090df">
41
+ </collapse-list-item>
42
+ </collapse-list-item>
43
+ <collapse-list-item allow-multi-select="true" facet-display="Deploy">
44
+ <collapse-list-item category="By Industry" facet-display="Aerospace and Defense" facet-value="a79dafc9-29c2-4c6d-b7b5-6c0f36f43d81">
45
+ </collapse-list-item>
46
+ <collapse-list-item category="By Industry" facet-display="Automotive" facet-value="46c1235c-8d77-4613-ae5f-8ba6a2491c50">
47
+ </collapse-list-item>
48
+ <collapse-list-item category="By Industry" facet-display="Electronics and High-Tech" facet-value="e9fc6d40-d81f-4d8b-87a3-87436d32bc81">
49
+ </collapse-list-item>
50
+ <collapse-list-item category="By Industry" facet-display="Industrial Equipment" facet-value="8195c7e5-45fe-42de-b426-84e8a7d1e3d2">
51
+ </collapse-list-item>
52
+ <collapse-list-item category="By Industry" facet-display="Life Sciences" facet-value="f27c7c4d-09e9-4ed9-b0b3-08c9f6f7fe37">
53
+ </collapse-list-item>
54
+ <collapse-list-item category="By Industry" facet-display="Oil and Gas" facet-value="8d450f80-e6fd-42aa-b704-abdf0bced254">
55
+ </collapse-list-item>
56
+ <collapse-list-item category="By Industry" facet-display="Retail and Consumer Products" facet-value="4e26f691-daf8-4e86-87e8-eb25fa8ee194">
57
+ </collapse-list-item>
58
+ <collapse-list-item category="By Industry" facet-display="Software and Technology" facet-value="0c90cd79-a61e-4512-a0f9-a3d26f3d6a51">
59
+ </collapse-list-item>
60
+ </collapse-list-item>
61
+ </ptc-collapse-list>
62
+ </div>
63
+ <div class="is-col-12 is-col-6-lg is-col-6-md ">
64
+ <div class="text-content">
65
+ <div class="content-wrapper ">
66
+ <ptc-title upperline="no-upperline" type="h1" title-weight="w-7" title-size="large" title-margin="margin-flush">
67
+ Get Familiar with Vuforia Expert Capture
68
+ </ptc-title>
69
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
70
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
71
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
72
+ Learn the basics about Vuforia Expert Capture, and the software and hardware you need to implement this technology..
73
+ </ptc-para>
74
+ <ptc-title upperline="no-upperline" type="h3" title-weight="w-7" title-size="large" title-margin="margin-flush">
75
+ 01. Learn the basics
76
+ </ptc-title>
77
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
78
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
79
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
80
+ Vuforia Expert Capture is an end-to-end solution built to empower rapid and intuitive creation of high-fidelity augmented work instructions.
81
+ These instructions provide step-by-step guidance to operators and technicians, where and when they need it— in the real-world context of their daily work environment.
82
+ Subject matter experts and authors create work instructions hands-free, using an eyewear device.
83
+ With Vuforia Editor, end users can edit the procedure they captured.
84
+ Then they can view Expert Capture procedures on eyewear devices, smartphones, tablets, and desktop or laptop computers.
85
+ </ptc-para>
86
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
87
+ Expert Capture empowers industrial enterprises to rapidly document expert knowledge
88
+ and easily scale that knowledge to new, redeployed, or remote workers as hands-on training or task guidance.
89
+ </ptc-para>
90
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
91
+ Recommended Resources
92
+ </ptc-para>
93
+ <ul>
94
+ <list-item list-type="list-green" link-href="https://www.ptc.com">Change and Configuration
95
+ Management
96
+ </list-item>
97
+ </ul>
98
+
99
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
100
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
101
+ <ptc-title upperline="no-upperline" type="h3" title-weight="w-7" title-size="large" title-margin="margin-flush">
102
+ 02. Explore features and functionality
103
+ </ptc-title>
104
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
105
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
106
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
107
+ Experts and operators use the Vuforia Capture app on an eyewear device to create augmented work instructions. They can capture hands-free, first-person, step-by-step video and images of procedures as they perform them. Using pre-configured templates that automatically create step-by-step procedures, anyone can author a procedure: no CAD data or coding required. The entire capture process is controlled by voice commands, gestures, and includes location-based steps on AR-enabled headsets.
108
+ </ptc-para>
109
+ <ptc-title upperline="no-upperline" type="h3" title-weight="w-7" title-size="large" title-margin="margin-flush">
110
+ 03. Learn the basics
111
+ </ptc-title>
112
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
113
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
114
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
115
+ Vuforia Expert Capture is an end-to-end solution built to empower rapid and intuitive creation of high-fidelity augmented work instructions.
116
+ These instructions provide step-by-step guidance to operators and technicians, where and when they need it— in the real-world context of their daily work environment.
117
+ Subject matter experts and authors create work instructions hands-free, using an eyewear device.
118
+ With Vuforia Editor, end users can edit the procedure they captured.
119
+ Then they can view Expert Capture procedures on eyewear devices, smartphones, tablets, and desktop or laptop computers.
120
+ </ptc-para>
121
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
122
+ Expert Capture empowers industrial enterprises to rapidly document expert knowledge
123
+ and easily scale that knowledge to new, redeployed, or remote workers as hands-on training or task guidance.
124
+ </ptc-para>
125
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
126
+ Recommended Resources
127
+ </ptc-para>
128
+ <ul>
129
+ <list-item list-type="list-green" link-href="https://www.ptc.com">Change and Configuration
130
+ Management
131
+ </list-item>
132
+ </ul>
133
+
134
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
135
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
136
+ <div id="basic"></div>
137
+ <ptc-title upperline="no-upperline" type="h3" title-weight="w-7" title-size="large" title-margin="margin-flush">
138
+ 04. Learn the basics
139
+ </ptc-title>
140
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
141
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
142
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
143
+ Vuforia Expert Capture is an end-to-end solution built to empower rapid and intuitive creation of high-fidelity augmented work instructions.
144
+ These instructions provide step-by-step guidance to operators and technicians, where and when they need it— in the real-world context of their daily work environment.
145
+ Subject matter experts and authors create work instructions hands-free, using an eyewear device.
146
+ With Vuforia Editor, end users can edit the procedure they captured.
147
+ Then they can view Expert Capture procedures on eyewear devices, smartphones, tablets, and desktop or laptop computers.
148
+ </ptc-para>
149
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
150
+ Expert Capture empowers industrial enterprises to rapidly document expert knowledge
151
+ and easily scale that knowledge to new, redeployed, or remote workers as hands-on training or task guidance.
152
+ </ptc-para>
153
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
154
+ Recommended Resources
155
+ </ptc-para>
156
+ <ul>
157
+ <list-item list-type="list-green" link-href="https://www.ptc.com">Change and Configuration
158
+ Management
159
+ </list-item>
160
+ </ul>
161
+
162
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
163
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
164
+ <ptc-spacer breakpoint="small" size="large"></ptc-spacer>
165
+ <ptc-spacer breakpoint="x-small" size="x-large"></ptc-spacer>
166
+ <!-- <success-path-pagination>
167
+ <ptc-link slot="prev-link"> Previous Step <ptc-spacer breakpoint="small" size="x-small"></ptc-spacer>Overview: Get Started with Vuforia Expert Capture</ptc-link >
168
+ <ptc-link slot="next-link"> Next Step <ptc-spacer breakpoint="small" size="x-small"> </ptc-spacer> Define Your Use Case</ptc-link >
169
+ </success-path-pagination> -->
170
+ <ptc-spacer breakpoint="small" size="medium"></ptc-spacer>
171
+ <ptc-spacer breakpoint="x-small" size="medium"></ptc-spacer>
172
+ <hr>
173
+ <div class="is-grid has-col is-col-12">
174
+ <div class="is-col-6">
175
+ <ptc-link slot="prev-link"> Previous Step <ptc-spacer breakpoint="small" size="x-small"></ptc-spacer>Overview: Get Started with Vuforia Expert Capture</ptc-link >
176
+ </div>
177
+ <div class="is-col-6 is-rtl">
178
+ <ptc-link slot="next-link"> Next Step <ptc-spacer breakpoint="small" size="x-small"> </ptc-spacer> Define Your Use Case</ptc-link >
179
+ </div>
180
+ </div>
181
+ <ptc-spacer breakpoint="small" size="medium"></ptc-spacer>
182
+ <ptc-spacer breakpoint="x-small" size="medium"></ptc-spacer>
183
+ <ptc-title type="h5" text-align="left" title-size="large" title-color="black" upperline="dotted" title-display="inline-block" title-height="densest" title-margin="margin-3" title-weight="w-4" is-plm-hub="false">Additional Resources</ptc-title>
184
+ <ptc-spacer breakpoint="small" size="medium"></ptc-spacer>
185
+ <ptc-spacer breakpoint="x-small" size="medium"></ptc-spacer>
186
+
187
+
188
+ <div class="is-grid">
189
+ <div class="is-col-4-lg">
190
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
191
+ Expert Capture empowers industrial enterprises to rapidly document expert knowledge
192
+ and easily scale that knowledge to new, redeployed, or remote workers as hands-on training or task guidance.
193
+ </ptc-para>
194
+ </div>
195
+ <div class="is-col-4-lg">
196
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
197
+ Expert Capture empowers industrial enterprises to rapidly document expert knowledge
198
+ and easily scale that knowledge to new, redeployed, or remote workers as hands-on training or task guidance.
199
+ </ptc-para>
200
+ </div>
201
+ <div class="is-col-4-lg">
202
+ <ptc-para title-weight="w-4" font-size="small" para-margin="margin-bottom-5" para-line-h="line-height-p">
203
+ Expert Capture empowers industrial enterprises to rapidly document expert knowledge
204
+ and easily scale that knowledge to new, redeployed, or remote workers as hands-on training or task guidance.
205
+ </ptc-para>
206
+ </div>
207
+ </div>
208
+
209
+ </div>
210
+
211
+ </div>
212
+
213
+ </div>
214
+ <div class="is-col-12 is-col-3-lg is-col-3-md">
215
+ <ptc-sticky-section>
216
+ <div class="link-wrapper is-col-12 is-col-3-lg ">
217
+ <ptc-title upperline="no-upperline" type="h5" title-weight="w-5" title-size="medium" title-margin="margin-flush">Steps on this page</ptc-title>
218
+ <ptc-spacer breakpoint="small" size="x-small"></ptc-spacer>
219
+ <ptc-link font-size="medium" font-weight="w-thin" href="#" link-area="undefined" link-title="Title attribute goes here" target="_blank" theme="simple">Learn the basics</ptc-link>
220
+ <ptc-spacer breakpoint="small" size="x-small"></ptc-spacer>
221
+ <ptc-link font-size="medium" font-weight="w-thin" href="#" link-area="undefined" link-title="Title attribute goes here" target="_blank" theme="standard-link">Explore features and functionality</ptc-link>
222
+ <ptc-spacer breakpoint="small" size="x-small"></ptc-spacer>
223
+ <ptc-link font-size="medium" font-weight="w-thin" href="#" link-area="undefined" link-title="Title attribute goes here" target="_blank" theme="standard-link">Review compatible devices</ptc-link>
224
+ <ptc-spacer breakpoint="small" size="x-small"></ptc-spacer>
225
+ <ptc-link font-size="medium" font-weight="w-thin" href="#" link-area="undefined" link-title="Title attribute goes here" target="_blank" theme="standard-link">Get familiar with 3D data</ptc-link>
226
+ </div>
227
+ </ptc-sticky-section>
228
+ </div>
229
+ </div>
230
+
231
+ <ptc-spacer breakpoint="small" size="xxx-large"></ptc-spacer>
232
+ <ptc-spacer breakpoint="x-small" size="xxx-large"></ptc-spacer>`
233
+ }
234
+
235
+ export const Preview = SuccessPathDetails.bind();
@@ -104,6 +104,12 @@ export const InnovatorToggleContainer: {
104
104
  new (): InnovatorToggleContainer;
105
105
  };
106
106
 
107
+ interface JumbotronSubMenu extends Components.JumbotronSubMenu, HTMLElement {}
108
+ export const JumbotronSubMenu: {
109
+ prototype: JumbotronSubMenu;
110
+ new (): JumbotronSubMenu;
111
+ };
112
+
107
113
  interface JumbotronSubMune extends Components.JumbotronSubMune, HTMLElement {}
108
114
  export const JumbotronSubMune: {
109
115
  prototype: JumbotronSubMune;
@@ -6670,7 +6670,7 @@ function EffectFade({
6670
6670
  });
6671
6671
  }
6672
6672
 
6673
- const homepageJumbotronCss = "@font-face{font-family:'swiper-icons';src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}.sc-homepage-jumbotron:root{--swiper-theme-color:#007aff}.swiper.sc-homepage-jumbotron,swiper-container.sc-homepage-jumbotron{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{flex-direction:column}.swiper-wrapper.sc-homepage-jumbotron{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron,.swiper-wrapper.sc-homepage-jumbotron{transform:translate3d(0px, 0, 0)}.swiper-horizontal.sc-homepage-jumbotron{touch-action:pan-y}.swiper-vertical.sc-homepage-jumbotron{touch-action:pan-x}.swiper-slide.sc-homepage-jumbotron,swiper-slide.sc-homepage-jumbotron{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank.sc-homepage-jumbotron{visibility:hidden}.swiper-autoheight.sc-homepage-jumbotron,.swiper-autoheight.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{height:auto}.swiper-autoheight.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron{align-items:flex-start;transition-property:transform, height}.swiper-backface-hidden.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron{perspective:1200px}.swiper-3d.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron{transform-style:preserve-3d}.swiper-3d.sc-homepage-jumbotron{perspective:1200px}.swiper-3d.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-cube-shadow.sc-homepage-jumbotron{transform-style:preserve-3d}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow.sc-homepage-jumbotron{background:rgba(0, 0, 0, 0.15)}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::-webkit-scrollbar{display:none}.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron{scroll-snap-align:none}.swiper-centered.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::before{content:'';flex-shrink:0;order:9999}.swiper-centered.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-lazy-preloader.sc-homepage-jumbotron{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper.sc-homepage-jumbotron:not(.swiper-watch-progress) .swiper-lazy-preloader.sc-homepage-jumbotron,swiper-container.sc-homepage-jumbotron:not(.swiper-watch-progress) .swiper-lazy-preloader.sc-homepage-jumbotron,.swiper-watch-progress.sc-homepage-jumbotron .swiper-slide-visible.sc-homepage-jumbotron .swiper-lazy-preloader.sc-homepage-jumbotron{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white.sc-homepage-jumbotron{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black.sc-homepage-jumbotron{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron::after{width:1px;height:var(--swiper-virtual-size)}.sc-homepage-jumbotron:root{--swiper-navigation-size:44px}.swiper-button-prev.sc-homepage-jumbotron,.swiper-button-next.sc-homepage-jumbotron{position:absolute;top:var(--swiper-navigation-top-offset, 50%);width:calc(var(--swiper-navigation-size) / 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size) / 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}.swiper-button-prev.swiper-button-disabled.sc-homepage-jumbotron,.swiper-button-next.swiper-button-disabled.sc-homepage-jumbotron{opacity:0.35;cursor:auto;pointer-events:none}.swiper-button-prev.swiper-button-hidden.sc-homepage-jumbotron,.swiper-button-next.swiper-button-hidden.sc-homepage-jumbotron{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled.sc-homepage-jumbotron .swiper-button-prev.sc-homepage-jumbotron,.swiper-navigation-disabled.sc-homepage-jumbotron .swiper-button-next.sc-homepage-jumbotron{display:none !important}.swiper-button-prev.sc-homepage-jumbotron:after,.swiper-button-next.sc-homepage-jumbotron:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none !important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev.sc-homepage-jumbotron,.swiper-rtl.sc-homepage-jumbotron .swiper-button-next.sc-homepage-jumbotron{left:var(--swiper-navigation-sides-offset, 10px);right:auto}.swiper-button-prev.sc-homepage-jumbotron:after,.swiper-rtl.sc-homepage-jumbotron .swiper-button-next.sc-homepage-jumbotron:after{content:'prev'}.swiper-button-next.sc-homepage-jumbotron,.swiper-rtl.sc-homepage-jumbotron .swiper-button-prev.sc-homepage-jumbotron{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-next.sc-homepage-jumbotron:after,.swiper-rtl.sc-homepage-jumbotron .swiper-button-prev.sc-homepage-jumbotron:after{content:'next'}.swiper-button-lock.sc-homepage-jumbotron{display:none}.swiper-pagination.sc-homepage-jumbotron{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}.swiper-pagination.swiper-pagination-hidden.sc-homepage-jumbotron{opacity:0}.swiper-pagination-disabled.sc-homepage-jumbotron>.swiper-pagination.sc-homepage-jumbotron,.swiper-pagination.swiper-pagination-disabled.sc-homepage-jumbotron{display:none !important}.swiper-pagination-fraction.sc-homepage-jumbotron,.swiper-pagination-custom.sc-homepage-jumbotron,.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron,.swiper-pagination-bullets.swiper-pagination-horizontal.sc-homepage-jumbotron{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active.sc-homepage-jumbotron{transform:scale(1)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-main.sc-homepage-jumbotron{transform:scale(1)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-prev.sc-homepage-jumbotron{transform:scale(0.66)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-prev-prev.sc-homepage-jumbotron{transform:scale(0.33)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-next.sc-homepage-jumbotron{transform:scale(0.66)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-next-next.sc-homepage-jumbotron{transform:scale(0.33)}.swiper-pagination-bullet.sc-homepage-jumbotron{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2)}button.swiper-pagination-bullet.sc-homepage-jumbotron{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{cursor:pointer}.swiper-pagination-bullet.sc-homepage-jumbotron:only-child{display:none !important}.swiper-pagination-bullet-active.sc-homepage-jumbotron{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.sc-homepage-jumbotron{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0px, -50%, 0)}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron{top:50%;transform:translateY(-50%);width:8px}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{display:inline-block;transition:200ms transform, 200ms top}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-horizontal.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{transition:200ms transform, 200ms left}.swiper-horizontal.swiper-rtl.sc-homepage-jumbotron>.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-horizontal.swiper-rtl.sc-homepage-jumbotron-h .swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{transition:200ms transform, 200ms right}.swiper-pagination-fraction.sc-homepage-jumbotron{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar.sc-homepage-jumbotron{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));position:absolute}.swiper-pagination-progressbar.sc-homepage-jumbotron .swiper-pagination-progressbar-fill.sc-homepage-jumbotron{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl.sc-homepage-jumbotron .swiper-pagination-progressbar.sc-homepage-jumbotron .swiper-pagination-progressbar-fill.sc-homepage-jumbotron{transform-origin:right top}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-progressbar.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-horizontal.sc-homepage-jumbotron,.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-progressbar.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-vertical.sc-homepage-jumbotron,.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock.sc-homepage-jumbotron{display:none}.swiper-scrollbar.sc-homepage-jumbotron{border-radius:var(--swiper-scrollbar-border-radius, 10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1))}.swiper-scrollbar-disabled.sc-homepage-jumbotron>.swiper-scrollbar.sc-homepage-jumbotron,.swiper-scrollbar.swiper-scrollbar-disabled.sc-homepage-jumbotron{display:none !important}.swiper-horizontal.sc-homepage-jumbotron>.swiper-scrollbar.sc-homepage-jumbotron,.swiper-scrollbar.swiper-scrollbar-horizontal.sc-homepage-jumbotron{position:absolute;left:var(--swiper-scrollbar-sides-offset, 1%);bottom:var(--swiper-scrollbar-bottom, 4px);top:var(--swiper-scrollbar-top, auto);z-index:50;height:var(--swiper-scrollbar-size, 4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))}.swiper-vertical.sc-homepage-jumbotron>.swiper-scrollbar.sc-homepage-jumbotron,.swiper-scrollbar.swiper-scrollbar-vertical.sc-homepage-jumbotron{position:absolute;left:var(--swiper-scrollbar-left, auto);right:var(--swiper-scrollbar-right, 4px);top:var(--swiper-scrollbar-sides-offset, 1%);z-index:50;width:var(--swiper-scrollbar-size, 4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))}.swiper-scrollbar-drag.sc-homepage-jumbotron{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));border-radius:var(--swiper-scrollbar-border-radius, 10px);left:0;top:0}.swiper-scrollbar-cursor-drag.sc-homepage-jumbotron{cursor:move}.swiper-scrollbar-lock.sc-homepage-jumbotron{display:none}.swiper-zoom-container.sc-homepage-jumbotron{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container.sc-homepage-jumbotron>img.sc-homepage-jumbotron,.swiper-zoom-container.sc-homepage-jumbotron>svg.sc-homepage-jumbotron,.swiper-zoom-container.sc-homepage-jumbotron>canvas.sc-homepage-jumbotron{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed.sc-homepage-jumbotron{cursor:move;touch-action:none}.swiper.sc-homepage-jumbotron .swiper-notification.sc-homepage-jumbotron,swiper-container.sc-homepage-jumbotron .swiper-notification.sc-homepage-jumbotron{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{transition-timing-function:ease-out;margin:0 auto}.swiper-grid.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{flex-wrap:wrap}.swiper-grid-column.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transition-timing-function:ease-out}.swiper-fade.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none;transition-property:opacity}.swiper-fade.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none}.swiper-fade.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-fade.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron{pointer-events:auto}.swiper-cube.sc-homepage-jumbotron{overflow:visible}.swiper-cube.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none}.swiper-cube.swiper-rtl.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transform-origin:100% 0}.swiper-cube.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron{pointer-events:auto}.swiper-cube.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-next.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-prev.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-next.sc-homepage-jumbotron+.swiper-slide.sc-homepage-jumbotron{pointer-events:auto;visibility:visible}.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube.sc-homepage-jumbotron .swiper-cube-shadow.sc-homepage-jumbotron{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:0.6;z-index:0}.swiper-cube.sc-homepage-jumbotron .swiper-cube-shadow.sc-homepage-jumbotron:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip.sc-homepage-jumbotron{overflow:visible}.swiper-flip.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none}.swiper-flip.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron{pointer-events:auto}.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform, opacity, height}.swiper-cards.sc-homepage-jumbotron{overflow:visible}.swiper-cards.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}h1.sc-homepage-jumbotron,h2.sc-homepage-jumbotron,h3.sc-homepage-jumbotron,h4.sc-homepage-jumbotron,h5.sc-homepage-jumbotron,h6.sc-homepage-jumbotron,p.sc-homepage-jumbotron,ul.sc-homepage-jumbotron,li.sc-homepage-jumbotron,ptc-subnav.sc-homepage-jumbotron,ptc-tab-list.sc-homepage-jumbotron,ptc-link.sc-homepage-jumbotron,ptc-square-card.sc-homepage-jumbotron,.hyphenate-text.sc-homepage-jumbotron,ptc-footer.sc-homepage-jumbotron{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1.sc-homepage-jumbotron,h2.sc-homepage-jumbotron,h3.sc-homepage-jumbotron,h4.sc-homepage-jumbotron,h5.sc-homepage-jumbotron,h6.sc-homepage-jumbotron,p.sc-homepage-jumbotron,ul.sc-homepage-jumbotron,li.sc-homepage-jumbotron,ptc-subnav.sc-homepage-jumbotron,ptc-tab-list.sc-homepage-jumbotron,ptc-link.sc-homepage-jumbotron,ptc-square-card.sc-homepage-jumbotron,.hyphenate-text.sc-homepage-jumbotron,ptc-footer.sc-homepage-jumbotron{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.sc-homepage-jumbotron-h{display:block;width:100%;height:auto;position:relative;overflow:hidden}ptc-jumbotron.sc-homepage-jumbotron{height:90vh}.hp-sub-title.sc-homepage-jumbotron{color:var(--color-white);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-small);font-weight:var(--ptc-font-weight-regular);line-height:var(--ptc-line-height-p)}.hp-h1.sc-homepage-jumbotron{color:var(--color-white);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xxxx-large);font-weight:var(--ptc-font-weight-extrabold);line-height:var(--ptc-line-height-densest)}.swiper-container.sc-homepage-jumbotron{position:relative;z-index:999;width:100%;height:100%;transform:translateY(-20px);max-width:1200px;margin:0 auto}.swiper-slide.sc-homepage-jumbotron{display:flex;justify-content:center;align-items:center}.swiper-button-next.sc-homepage-jumbotron,.swiper-button-prev.sc-homepage-jumbotron{color:transparent}";
6673
+ const homepageJumbotronCss = "@font-face{font-family:'swiper-icons';src:url('data:application/font-woff;charset=utf-8;base64, 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');font-weight:400;font-style:normal}.sc-homepage-jumbotron:root{--swiper-theme-color:#007aff}.swiper.sc-homepage-jumbotron,swiper-container.sc-homepage-jumbotron{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{flex-direction:column}.swiper-wrapper.sc-homepage-jumbotron{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron,.swiper-wrapper.sc-homepage-jumbotron{transform:translate3d(0px, 0, 0)}.swiper-horizontal.sc-homepage-jumbotron{touch-action:pan-y}.swiper-vertical.sc-homepage-jumbotron{touch-action:pan-x}.swiper-slide.sc-homepage-jumbotron,swiper-slide.sc-homepage-jumbotron{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank.sc-homepage-jumbotron{visibility:hidden}.swiper-autoheight.sc-homepage-jumbotron,.swiper-autoheight.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{height:auto}.swiper-autoheight.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron{align-items:flex-start;transition-property:transform, height}.swiper-backface-hidden.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron{perspective:1200px}.swiper-3d.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron{transform-style:preserve-3d}.swiper-3d.sc-homepage-jumbotron{perspective:1200px}.swiper-3d.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-cube-shadow.sc-homepage-jumbotron{transform-style:preserve-3d}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow.sc-homepage-jumbotron{background:rgba(0, 0, 0, 0.15)}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-3d.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::-webkit-scrollbar{display:none}.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron{scroll-snap-align:none}.swiper-centered.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::before{content:'';flex-shrink:0;order:9999}.swiper-centered.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron>.swiper-slide.sc-homepage-jumbotron:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-lazy-preloader.sc-homepage-jumbotron{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper.sc-homepage-jumbotron:not(.swiper-watch-progress) .swiper-lazy-preloader.sc-homepage-jumbotron,swiper-container.sc-homepage-jumbotron:not(.swiper-watch-progress) .swiper-lazy-preloader.sc-homepage-jumbotron,.swiper-watch-progress.sc-homepage-jumbotron .swiper-slide-visible.sc-homepage-jumbotron .swiper-lazy-preloader.sc-homepage-jumbotron{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white.sc-homepage-jumbotron{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black.sc-homepage-jumbotron{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical.sc-homepage-jumbotron .swiper-wrapper.sc-homepage-jumbotron::after{width:1px;height:var(--swiper-virtual-size)}.sc-homepage-jumbotron:root{--swiper-navigation-size:44px}.swiper-button-prev.sc-homepage-jumbotron,.swiper-button-next.sc-homepage-jumbotron{position:absolute;top:var(--swiper-navigation-top-offset, 50%);width:calc(var(--swiper-navigation-size) / 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size) / 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}.swiper-button-prev.swiper-button-disabled.sc-homepage-jumbotron,.swiper-button-next.swiper-button-disabled.sc-homepage-jumbotron{opacity:0.35;cursor:auto;pointer-events:none}.swiper-button-prev.swiper-button-hidden.sc-homepage-jumbotron,.swiper-button-next.swiper-button-hidden.sc-homepage-jumbotron{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled.sc-homepage-jumbotron .swiper-button-prev.sc-homepage-jumbotron,.swiper-navigation-disabled.sc-homepage-jumbotron .swiper-button-next.sc-homepage-jumbotron{display:none !important}.swiper-button-prev.sc-homepage-jumbotron:after,.swiper-button-next.sc-homepage-jumbotron:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none !important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev.sc-homepage-jumbotron,.swiper-rtl.sc-homepage-jumbotron .swiper-button-next.sc-homepage-jumbotron{left:var(--swiper-navigation-sides-offset, 10px);right:auto}.swiper-button-prev.sc-homepage-jumbotron:after,.swiper-rtl.sc-homepage-jumbotron .swiper-button-next.sc-homepage-jumbotron:after{content:'prev'}.swiper-button-next.sc-homepage-jumbotron,.swiper-rtl.sc-homepage-jumbotron .swiper-button-prev.sc-homepage-jumbotron{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-next.sc-homepage-jumbotron:after,.swiper-rtl.sc-homepage-jumbotron .swiper-button-prev.sc-homepage-jumbotron:after{content:'next'}.swiper-button-lock.sc-homepage-jumbotron{display:none}.swiper-pagination.sc-homepage-jumbotron{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}.swiper-pagination.swiper-pagination-hidden.sc-homepage-jumbotron{opacity:0}.swiper-pagination-disabled.sc-homepage-jumbotron>.swiper-pagination.sc-homepage-jumbotron,.swiper-pagination.swiper-pagination-disabled.sc-homepage-jumbotron{display:none !important}.swiper-pagination-fraction.sc-homepage-jumbotron,.swiper-pagination-custom.sc-homepage-jumbotron,.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron,.swiper-pagination-bullets.swiper-pagination-horizontal.sc-homepage-jumbotron{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active.sc-homepage-jumbotron{transform:scale(1)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-main.sc-homepage-jumbotron{transform:scale(1)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-prev.sc-homepage-jumbotron{transform:scale(0.66)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-prev-prev.sc-homepage-jumbotron{transform:scale(0.33)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-next.sc-homepage-jumbotron{transform:scale(0.66)}.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet-active-next-next.sc-homepage-jumbotron{transform:scale(0.33)}.swiper-pagination-bullet.sc-homepage-jumbotron{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2)}button.swiper-pagination-bullet.sc-homepage-jumbotron{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{cursor:pointer}.swiper-pagination-bullet.sc-homepage-jumbotron:only-child{display:none !important}.swiper-pagination-bullet-active.sc-homepage-jumbotron{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.sc-homepage-jumbotron{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0px, -50%, 0)}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron{top:50%;transform:translateY(-50%);width:8px}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{display:inline-block;transition:200ms transform, 200ms top}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-horizontal.swiper-pagination-bullets.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{transition:200ms transform, 200ms left}.swiper-horizontal.swiper-rtl.sc-homepage-jumbotron>.swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron,.swiper-horizontal.swiper-rtl.sc-homepage-jumbotron-h .swiper-pagination-bullets-dynamic.sc-homepage-jumbotron .swiper-pagination-bullet.sc-homepage-jumbotron{transition:200ms transform, 200ms right}.swiper-pagination-fraction.sc-homepage-jumbotron{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar.sc-homepage-jumbotron{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));position:absolute}.swiper-pagination-progressbar.sc-homepage-jumbotron .swiper-pagination-progressbar-fill.sc-homepage-jumbotron{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl.sc-homepage-jumbotron .swiper-pagination-progressbar.sc-homepage-jumbotron .swiper-pagination-progressbar-fill.sc-homepage-jumbotron{transform-origin:right top}.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-progressbar.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-horizontal.sc-homepage-jumbotron,.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical.sc-homepage-jumbotron>.swiper-pagination-progressbar.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-vertical.sc-homepage-jumbotron,.swiper-horizontal.sc-homepage-jumbotron>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite.sc-homepage-jumbotron{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock.sc-homepage-jumbotron{display:none}.swiper-scrollbar.sc-homepage-jumbotron{border-radius:var(--swiper-scrollbar-border-radius, 10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1))}.swiper-scrollbar-disabled.sc-homepage-jumbotron>.swiper-scrollbar.sc-homepage-jumbotron,.swiper-scrollbar.swiper-scrollbar-disabled.sc-homepage-jumbotron{display:none !important}.swiper-horizontal.sc-homepage-jumbotron>.swiper-scrollbar.sc-homepage-jumbotron,.swiper-scrollbar.swiper-scrollbar-horizontal.sc-homepage-jumbotron{position:absolute;left:var(--swiper-scrollbar-sides-offset, 1%);bottom:var(--swiper-scrollbar-bottom, 4px);top:var(--swiper-scrollbar-top, auto);z-index:50;height:var(--swiper-scrollbar-size, 4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))}.swiper-vertical.sc-homepage-jumbotron>.swiper-scrollbar.sc-homepage-jumbotron,.swiper-scrollbar.swiper-scrollbar-vertical.sc-homepage-jumbotron{position:absolute;left:var(--swiper-scrollbar-left, auto);right:var(--swiper-scrollbar-right, 4px);top:var(--swiper-scrollbar-sides-offset, 1%);z-index:50;width:var(--swiper-scrollbar-size, 4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))}.swiper-scrollbar-drag.sc-homepage-jumbotron{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));border-radius:var(--swiper-scrollbar-border-radius, 10px);left:0;top:0}.swiper-scrollbar-cursor-drag.sc-homepage-jumbotron{cursor:move}.swiper-scrollbar-lock.sc-homepage-jumbotron{display:none}.swiper-zoom-container.sc-homepage-jumbotron{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container.sc-homepage-jumbotron>img.sc-homepage-jumbotron,.swiper-zoom-container.sc-homepage-jumbotron>svg.sc-homepage-jumbotron,.swiper-zoom-container.sc-homepage-jumbotron>canvas.sc-homepage-jumbotron{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed.sc-homepage-jumbotron{cursor:move;touch-action:none}.swiper.sc-homepage-jumbotron .swiper-notification.sc-homepage-jumbotron,swiper-container.sc-homepage-jumbotron .swiper-notification.sc-homepage-jumbotron{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{transition-timing-function:ease-out;margin:0 auto}.swiper-grid.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{flex-wrap:wrap}.swiper-grid-column.sc-homepage-jumbotron>.swiper-wrapper.sc-homepage-jumbotron{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transition-timing-function:ease-out}.swiper-fade.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none;transition-property:opacity}.swiper-fade.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none}.swiper-fade.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-fade.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron{pointer-events:auto}.swiper-cube.sc-homepage-jumbotron{overflow:visible}.swiper-cube.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none}.swiper-cube.swiper-rtl.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transform-origin:100% 0}.swiper-cube.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron{pointer-events:auto}.swiper-cube.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-next.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-prev.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-next.sc-homepage-jumbotron+.swiper-slide.sc-homepage-jumbotron{pointer-events:auto;visibility:visible}.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-cube.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube.sc-homepage-jumbotron .swiper-cube-shadow.sc-homepage-jumbotron{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:0.6;z-index:0}.swiper-cube.sc-homepage-jumbotron .swiper-cube-shadow.sc-homepage-jumbotron:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip.sc-homepage-jumbotron{overflow:visible}.swiper-flip.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{pointer-events:none}.swiper-flip.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron .swiper-slide-active.sc-homepage-jumbotron{pointer-events:auto}.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-top.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-bottom.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-left.sc-homepage-jumbotron,.swiper-flip.sc-homepage-jumbotron .swiper-slide-shadow-right.sc-homepage-jumbotron{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform, opacity, height}.swiper-cards.sc-homepage-jumbotron{overflow:visible}.swiper-cards.sc-homepage-jumbotron .swiper-slide.sc-homepage-jumbotron{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}h1.sc-homepage-jumbotron,h2.sc-homepage-jumbotron,h3.sc-homepage-jumbotron,h4.sc-homepage-jumbotron,h5.sc-homepage-jumbotron,h6.sc-homepage-jumbotron,p.sc-homepage-jumbotron,ul.sc-homepage-jumbotron,li.sc-homepage-jumbotron,ptc-subnav.sc-homepage-jumbotron,ptc-tab-list.sc-homepage-jumbotron,ptc-link.sc-homepage-jumbotron,ptc-square-card.sc-homepage-jumbotron,.hyphenate-text.sc-homepage-jumbotron,ptc-footer.sc-homepage-jumbotron{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1.sc-homepage-jumbotron,h2.sc-homepage-jumbotron,h3.sc-homepage-jumbotron,h4.sc-homepage-jumbotron,h5.sc-homepage-jumbotron,h6.sc-homepage-jumbotron,p.sc-homepage-jumbotron,ul.sc-homepage-jumbotron,li.sc-homepage-jumbotron,ptc-subnav.sc-homepage-jumbotron,ptc-tab-list.sc-homepage-jumbotron,ptc-link.sc-homepage-jumbotron,ptc-square-card.sc-homepage-jumbotron,.hyphenate-text.sc-homepage-jumbotron,ptc-footer.sc-homepage-jumbotron{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.sc-homepage-jumbotron-h{display:block;width:100%;height:auto;position:relative;overflow:hidden}ptc-jumbotron.sc-homepage-jumbotron{height:90vh}.hp-sub-title.sc-homepage-jumbotron{color:var(--color-white);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-small);font-weight:var(--ptc-font-weight-regular);line-height:var(--ptc-line-height-p)}.hp-h1.sc-homepage-jumbotron{color:var(--color-white);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-xxxx-large);font-weight:var(--ptc-font-weight-extrabold);line-height:var(--ptc-line-height-densest)}.swiper-container.sc-homepage-jumbotron{position:relative;z-index:999;width:100%;height:100%;transform:translateY(-20px);max-width:1200px;margin:0 auto}@media screen and (min-width: 1200px){.swiper-wrapper.sc-homepage-jumbotron{justify-content:center}}.swiper-slide.sc-homepage-jumbotron{display:flex;justify-content:center;align-items:center}.swiper-button-next.sc-homepage-jumbotron,.swiper-button-prev.sc-homepage-jumbotron{color:transparent}";
6674
6674
 
6675
6675
  const HomepageJumbotron$1 = class extends HTMLElement$1 {
6676
6676
  constructor() {
@@ -6695,17 +6695,20 @@ const HomepageJumbotron$1 = class extends HTMLElement$1 {
6695
6695
  if (this.swiperContainerRef) {
6696
6696
  this.mySwiper = new Swiper(this.swiperContainerRef, {
6697
6697
  slidesPerView: 1,
6698
- spaceBetween: 2,
6699
- loop: true,
6698
+ //spaceBetween: 2,
6699
+ initialSlide: 0,
6700
+ loop: false,
6700
6701
  pagination: {
6701
6702
  el: '.swiper-pagination',
6702
6703
  clickable: true,
6703
6704
  },
6704
6705
  breakpoints: {
6705
6706
  768: {
6707
+ initialSlide: 0,
6706
6708
  slidesPerView: 2,
6707
6709
  },
6708
6710
  1200: {
6711
+ initialSlide: 1,
6709
6712
  slidesPerView: 3,
6710
6713
  },
6711
6714
  },
@@ -6734,9 +6737,10 @@ const HomepageJumbotron$1 = class extends HTMLElement$1 {
6734
6737
  this.activeSubTitle = activeSubTitleElement ? activeSubTitleElement.innerHTML : '';
6735
6738
  }
6736
6739
  render() {
6740
+ const tileCount = this.el.querySelectorAll('[slot^="jumbotron-tile-image-"]').length;
6737
6741
  return (h$1(Host, null, h$1("ptc-jumbotron", Object.assign({ "jumbotron-type": this.jumbotron }, (!!this.activeBgVideoSrc && { bgVideoSrc: this.activeBgVideoSrc }), (!this.bgVideoSrc && !!this.bgSrc && { bgSrc: this.bgSrc }), { "is-iframe": this.isIframe, "is-homepage": "true", "sub-title": "" //sub title is coming from slot here
6738
6742
  ,
6739
- "play-button-title": this.playBtnText, "pause-button-title": this.pauseBtnText, "button-location": "allbp-bottom-right" }), h$1("slot", { name: "breadcrumb" }), h$1("h1", { slot: "main-title", class: "hp-h1" }, this.activeMainTitle), h$1("p", { slot: "hp-sub-title", class: "hp-sub-title" }, this.activeSubTitle), h$1("slot", { name: "j-cta" })), h$1("div", { class: "swiper-container", ref: el => (this.swiperContainerRef = el) }, h$1("div", { class: "swiper-wrapper" }, Array.from({ length: 3 }, (_, index) => (h$1("div", { class: "swiper-slide", onClick: () => this.handleTileClick(index) }, h$1("ptc-info-tile", { variant: "image", link: "#test" }, h$1("div", { slot: "tile-image" }, h$1("slot", { name: `jumbotron-tile-image-${index}` })), h$1("div", { slot: "tile-title" }, h$1("slot", { name: `jumbotron-tile-title-${index}` })), h$1("div", { slot: "tile-description" }, h$1("slot", { name: `jumbotron-tile-description-${index}` }))))))), h$1("div", { class: "swiper-pagination" }))));
6743
+ "play-button-title": this.playBtnText, "pause-button-title": this.pauseBtnText, "button-location": "allbp-bottom-right" }), h$1("slot", { name: "breadcrumb" }), h$1("h1", { slot: "main-title", class: "hp-h1" }, this.activeMainTitle), h$1("p", { slot: "hp-sub-title", class: "hp-sub-title" }, this.activeSubTitle), h$1("slot", { name: "j-cta" })), h$1("div", { class: "swiper-container", ref: el => (this.swiperContainerRef = el) }, h$1("div", { class: "swiper-wrapper" }, Array.from({ length: tileCount }, (_, index) => (h$1("div", { class: "swiper-slide", onClick: () => this.handleTileClick(index) }, h$1("ptc-info-tile", { variant: "image", link: "#test" }, h$1("div", { slot: "tile-image" }, h$1("slot", { name: `jumbotron-tile-image-${index}` })), h$1("div", { slot: "tile-title" }, h$1("slot", { name: `jumbotron-tile-title-${index}` })), h$1("div", { slot: "tile-description" }, h$1("slot", { name: `jumbotron-tile-description-${index}` }))))))), h$1("div", { class: "swiper-pagination" }))));
6740
6744
  }
6741
6745
  get el() { return this; }
6742
6746
  static get style() { return homepageJumbotronCss; }
@@ -6749,7 +6753,7 @@ const HomepageToggledContent$1 = class extends HTMLElement$1 {
6749
6753
  super();
6750
6754
  this.__registerHost();
6751
6755
  this.__attachShadow();
6752
- this.colors = ['hp-blue', 'hp-green', 'hp-gray', 'hp-red', 'hp-orange'];
6756
+ this.colors = ['hp-blue', 'hp-green', 'hp-red', 'hp-gray', 'hp-orange'];
6753
6757
  this.activeTab = 0;
6754
6758
  this.dropdownOpen = false;
6755
6759
  }
@@ -6851,6 +6855,50 @@ const InnovatorToggleContainer$1 = class extends HTMLElement$1 {
6851
6855
  static get style() { return innovatorToggleContainerCss; }
6852
6856
  };
6853
6857
 
6858
+ const jumbotronSubMenuCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.menu-list{list-style:none;margin:0;padding:10px 0;display:flex;flex-direction:column;justify-content:flex-start;gap:16px}.menu-list li{margin:0}.menu-list button{color:black;text-decoration:none;border:none;background:none;cursor:pointer;position:relative;text-align:left;width:100%;padding:10px 20px}.menu-list button::after{content:\"\";position:absolute;top:0;left:8px;display:block;width:2px;height:100%;background:green;transition:transform 0.3s ease;transform:scaleX(0);transform-origin:left}.menu-list button:hover::after,.menu-list button:focus::after{transform:scaleX(1);transform-origin:left}.mobile-menu-icon{display:flex;align-items:center;cursor:pointer;font-size:18px;text-align:left;padding:10px 20px;background-color:white;border:1px solid #ddd;border-radius:4px;box-shadow:0 2px 4px rgba(0, 0, 0, 0.1)}.menu{display:block}.menu-list{display:none;flex-direction:column;background-color:white;width:100%;position:absolute;top:40px;right:0;box-shadow:0 2px 4px rgba(0, 0, 0, 0.1);border-radius:4px}.menu-list.open{display:flex}.menu-list li{margin:0}@media screen and (min-width: 768px){.menu{display:none;background-color:white;color:black;position:relative}}";
6859
+
6860
+ const JumbotronSubMenu$1 = class extends HTMLElement$1 {
6861
+ constructor() {
6862
+ super();
6863
+ this.__registerHost();
6864
+ this.__attachShadow();
6865
+ this.isOpen = false;
6866
+ this.activeItem = 0;
6867
+ }
6868
+ toggleMenu() {
6869
+ this.isOpen = !this.isOpen;
6870
+ }
6871
+ selectItem(index) {
6872
+ this.activeItem = index;
6873
+ this.isOpen = false;
6874
+ this.updateJumbotronContent(index);
6875
+ }
6876
+ updateJumbotronContent(index) {
6877
+ const jumbotron = this.el.closest('homepage-jumbotron');
6878
+ if (jumbotron) {
6879
+ jumbotron.activeTile = index; // TypeScript workaround
6880
+ }
6881
+ }
6882
+ getMenuItemContent(index) {
6883
+ const slot = this.el.querySelector(`slot[name="menu-item-${index}"]`);
6884
+ if (slot) {
6885
+ const nodes = slot.assignedNodes({ flatten: true });
6886
+ if (nodes.length > 0 && nodes[0].nodeType === Node.TEXT_NODE) {
6887
+ return nodes[0].textContent || '';
6888
+ }
6889
+ }
6890
+ return '';
6891
+ }
6892
+ render() {
6893
+ const upArrow = (h$1("svg", { xmlns: "http://www.w3.org/2000/svg", width: "15", height: "11", viewBox: "0 0 15 11", fill: "none" }, h$1("path", { d: "M13 8.5L7.34315 2.71178L1.68629 8.5", stroke: "black", "stroke-width": "3", "stroke-linecap": "round" })));
6894
+ const downArrow = (h$1("svg", { xmlns: "http://www.w3.org/2000/svg", width: "15", height: "11", viewBox: "0 0 15 11", fill: "none" }, h$1("path", { d: "M13 2.5L7.34315 8.28822L1.68629 2.5", stroke: "black", "stroke-width": "3", "stroke-linecap": "round" })));
6895
+ const menuItems = Array.from(this.el.querySelectorAll('[slot^="menu-item"]'));
6896
+ return (h$1("nav", { class: "menu" }, h$1("div", { class: "mobile-menu-icon", onClick: () => this.toggleMenu() }, this.getMenuItemContent(this.activeItem), h$1("span", null, this.isOpen ? upArrow : downArrow)), h$1("ul", { class: `menu-list ${this.isOpen ? 'open' : ''}` }, menuItems.map((_, index) => (h$1("li", null, h$1("button", { onClick: () => this.selectItem(index) }, h$1("slot", { name: `menu-item-0${index}` }))))))));
6897
+ }
6898
+ get el() { return this; }
6899
+ static get style() { return jumbotronSubMenuCss; }
6900
+ };
6901
+
6854
6902
  const jumbotronSubMuneCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.menu{display:none;background-color:transparent;color:white;position:relative}@media only screen and (min-width: 992px){.menu{display:block}}.menu-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;justify-content:flex-start;gap:32px}.menu-list li{margin:0}.menu-list a,.menu-list button{color:white;text-decoration:none;border:none;background:none;cursor:pointer;position:relative}.menu-list a{white-space:nowrap}.menu-list a::after,.menu-list button::after{content:\"\";display:block;width:100%;height:2px;background:white;transition:transform 0.3s ease;transform:scaleY(0);transform-origin:bottom}.menu-list a:hover::after,.menu-list a:focus::after,.menu-list button:hover::after,.menu-list button:focus::after{transform:scaleX(1);transform-origin:left}.mobile-menu-icon{display:none;cursor:pointer;font-size:24px;text-align:center;position:absolute;top:0;right:0}@media (max-width: 768px){.menu-list{display:none;flex-direction:column;background-color:transparent;width:100%;position:absolute;top:40px;right:0}.menu-list.open{display:flex}.mobile-menu-icon{display:block}.menu-list li{margin:10px 0}}";
6855
6903
 
6856
6904
  const JumbotronSubMune$1 = class extends HTMLElement$1 {
@@ -18143,7 +18191,7 @@ const PtcImg$1 = class extends HTMLElement$1 {
18143
18191
  static get style() { return ptcImgCss; }
18144
18192
  };
18145
18193
 
18146
- const ptcInfoTileCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}.tile{position:relative;background-color:white;border-radius:8px;overflow:hidden;box-shadow:0 4px 8px rgba(0, 0, 0, 0.1);cursor:pointer;transition:border 0.3s;max-width:360px;height:116px}.tile.image{display:flex;flex-wrap:nowrap;flex-direction:row;align-items:center;margin:0 auto}.tile.image .tile-content{border-bottom:2px solid var(--color-white);background:#FFF;height:82px}.tile.image:hover .tile-content{border-bottom:2px solid var(--Blue-6, #4795CD);background:#FFF}.tile.image:active .tile-content,.tile.image:focus .tile-content{border-bottom:2px solid var(--Blue-6, #4795CD);background:var(--Gray-1, #F6F6F6)}.tile.text{background-color:var(--color-white);border:1px solid var(--color-gray-03);width:268px}.tile.text:hover{background-color:var(--color-gray-01);border:1px solid var(--color-gray-07)}.tile img{width:120px;height:116px}.tile h3{margin:0;font-size:1.2em}.tile p{margin:0.5em 0 0;color:#666}.tile .link-overlay{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1}.tile .tile-content{padding:16px}.tile .tile-content h3{color:var(--color-blue-07);font-family:Raleway;font-size:14px;font-weight:500}.tile .tile-content p{color:var(--color-gray-10);font-family:Raleway;font-size:16px;font-weight:700;line-height:24px;}";
18194
+ const ptcInfoTileCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}.tile{position:relative;background-color:white;border-radius:8px;overflow:hidden;box-shadow:0 4px 8px rgba(0, 0, 0, 0.1);cursor:pointer;transition:border 0.3s;max-width:360px;height:116px}.tile.image{display:flex;flex-wrap:nowrap;flex-direction:row;align-items:center;margin:0 auto}.tile.image .tile-content{border-bottom:2px solid var(--color-white);background:#FFF;height:82px;text-align:left}.tile.image:hover .tile-content{border-bottom:2px solid var(--Blue-6, #4795CD);background:#FFF}.tile.image:active .tile-content,.tile.image:focus .tile-content{border-bottom:2px solid var(--Blue-6, #4795CD);background:var(--Gray-1, #F6F6F6)}.tile.text{background-color:var(--color-white);border:1px solid var(--color-gray-03);width:268px}.tile.text:hover{background-color:var(--color-gray-01);border:1px solid var(--color-gray-07)}.tile img{width:120px;height:116px}.tile h3{margin:0;font-size:1.2em}.tile p{margin:0.5em 0 0;color:#666}.tile .link-overlay{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1}.tile .tile-content{padding:16px}.tile .tile-content h3{color:var(--color-blue-07);font-family:Raleway;font-size:14px;font-weight:500}.tile .tile-content p{color:var(--color-gray-10);font-family:Raleway;font-size:16px;font-weight:700;line-height:24px;}";
18147
18195
 
18148
18196
  const PtcInfoTile$1 = class extends HTMLElement$1 {
18149
18197
  constructor() {
@@ -18424,7 +18472,7 @@ const PtcList$1 = class extends HTMLElement$1 {
18424
18472
  static get style() { return ptcListCss; }
18425
18473
  };
18426
18474
 
18427
- const ptcMediaCardCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block;position:relative;width:100%;background-size:cover;background-position:50%;background-repeat:no-repeat}:host .anchor-wrap{height:100%;width:100%;display:block;text-decoration:none;position:relative}:host video{object-fit:cover;height:100%;width:100%;z-index:0;position:absolute;left:0;right:0;top:0;bottom:0;display:none}:host(.media-card) ::slotted([slot=seo-content]){display:none}:host(.media-card) .card-wrap{display:flex;height:100%;width:100%;position:relative;z-index:1;min-height:329px;align-items:end}:host(.media-card) .card-wrap .car-content{padding:20px 30px 30px 30px}:host(.media-card) .card-wrap .car-content p,:host(.media-card) .card-wrap .car-content h3{color:#fff}:host(.media-card) .card-wrap .car-content h3{position:relative;margin-bottom:0;font-size:var(--ptc-font-size-medium);text-shadow:1px 3px 30px #000;line-height:var(--ptc-line-height-densest);display:inline}@media only screen and (min-width: 768px){:host(.media-card) .card-wrap .car-content h3{font-size:var(--ptc-font-size-large)}}:host(.media-card) .card-wrap .car-content h3::before{content:\"\";width:100%;height:3px;background-image:url(\"data:image/svg+xml,%3Csvg width='60' height='1' viewBox='0 0 60 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='1' fill='%2333A13C'/%3E%3C/svg%3E\");background-repeat:repeat;position:absolute;background-size:initial;top:-10px}:host(.media-card) .card-wrap .car-content p{text-shadow:1px 3px 30px var(--color-black);font-weight:var(--ptc-font-weight-semibold);display:block;font-size:var(--ptc-font-size-x-small)}:host(.bureau-card){height:100%;position:relative}:host(.case-study-icon){width:296px}:host(.case-study-icon) ::slotted([slot=seo-content]){display:none}:host(.case-study-icon) .case-study-img-anchor{position:relative;width:296px;height:396px;display:flex;justify-content:center;align-items:center;transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-webkit-transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-o-transition:var(--ptc-transition-medium) var(--ptc-ease-inout)}:host(.case-study-icon) .case-study-img-anchor .case-study-bg-img{display:flex;width:296px;height:396px;flex-direction:column;justify-content:center;align-items:center;border-radius:4px;object-fit:cover;position:absolute;z-index:1;box-shadow:var(--ptc-shadow-large)}:host(.case-study-icon) .case-study-img-anchor .after{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:4px;z-index:2;background:rgba(0, 0, 0, 0.5);transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-webkit-transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-o-transition:var(--ptc-transition-medium) var(--ptc-ease-inout)}:host(.case-study-icon) .case-study-img-anchor .case-study-icon-img{position:absolute;z-index:3;width:92px;height:42px;border-radius:4px;background:#FFF;padding:24px;box-shadow:0px 1px 4px 0px rgba(0, 0, 0, 0.24);transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-webkit-transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-o-transition:var(--ptc-transition-medium) var(--ptc-ease-inout)}:host(.case-study-icon) .case-study-img-anchor:hover .after{display:block;background:rgba(0, 0, 0, 0.07)}:host(.case-study-icon) .case-study-img-anchor:hover .case-study-icon-img{width:96px;height:46px}:host(.case-study-icon) .case-study-img-anchor:active .after,:host(.case-study-icon) .case-study-img-anchor:focus .after{display:block;background:rgba(0, 0, 0, 0.2)}@media (min-width: 768px){:host(.case-study-icon){width:373px}:host(.case-study-icon) .case-study-img-anchor{width:373px;height:500px}:host(.case-study-icon) .case-study-img-anchor .case-study-bg-img{width:373px;height:500px}}";
18475
+ const ptcMediaCardCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block;position:relative;width:100%;background-size:cover;background-position:50%;background-repeat:no-repeat}:host .anchor-wrap{height:100%;width:100%;display:block;text-decoration:none;position:relative}:host video{object-fit:cover;height:100%;width:100%;z-index:0;position:absolute;left:0;right:0;top:0;bottom:0;display:none}:host(.media-card) ::slotted([slot=seo-content]){display:none}:host(.media-card) .card-wrap{display:flex;height:100%;width:100%;position:relative;z-index:1;min-height:329px;align-items:end}:host(.media-card) .card-wrap .car-content{padding:20px 30px 30px 30px}:host(.media-card) .card-wrap .car-content p,:host(.media-card) .card-wrap .car-content h3{color:#fff}:host(.media-card) .card-wrap .car-content h3{position:relative;margin-bottom:0;font-size:var(--ptc-font-size-medium);text-shadow:1px 3px 30px #000;line-height:var(--ptc-line-height-densest);display:inline}@media only screen and (min-width: 768px){:host(.media-card) .card-wrap .car-content h3{font-size:var(--ptc-font-size-large)}}:host(.media-card) .card-wrap .car-content h3::before{content:\"\";width:100%;height:3px;background-image:url(\"data:image/svg+xml,%3Csvg width='60' height='1' viewBox='0 0 60 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='1' fill='%2333A13C'/%3E%3C/svg%3E\");background-repeat:repeat;position:absolute;background-size:initial;top:-10px}:host(.media-card) .card-wrap .car-content p{text-shadow:1px 3px 30px var(--color-black);font-weight:var(--ptc-font-weight-semibold);display:block;font-size:var(--ptc-font-size-x-small)}:host(.bureau-card){height:100%;position:relative}:host(.case-study-icon){width:296px}:host(.case-study-icon) ::slotted([slot=seo-content]){display:none}:host(.case-study-icon) .case-study-img-anchor{position:relative;width:296px;height:396px;display:flex;justify-content:center;align-items:center;transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-webkit-transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-o-transition:var(--ptc-transition-medium) var(--ptc-ease-inout)}:host(.case-study-icon) .case-study-img-anchor .case-study-bg-img{display:flex;width:296px;height:396px;flex-direction:column;justify-content:center;align-items:center;border-radius:4px;object-fit:cover;position:absolute;z-index:1;box-shadow:var(--ptc-shadow-large)}:host(.case-study-icon) .case-study-img-anchor .after{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:4px;z-index:2;background:rgba(0, 0, 0, 0.5);transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-webkit-transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-o-transition:var(--ptc-transition-medium) var(--ptc-ease-inout)}:host(.case-study-icon) .case-study-img-anchor .case-study-icon-img{position:absolute;z-index:3;width:92px;height:42px;border-radius:4px;background:#FFF;padding:24px;box-shadow:0px 1px 4px 0px rgba(0, 0, 0, 0.24);transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-webkit-transition:var(--ptc-transition-medium) var(--ptc-ease-inout);-o-transition:var(--ptc-transition-medium) var(--ptc-ease-inout)}:host(.case-study-icon) .case-study-img-anchor:hover .after{display:block;background:rgba(0, 0, 0, 0.07)}:host(.case-study-icon) .case-study-img-anchor:hover .case-study-icon-img{width:96px;height:46px}:host(.case-study-icon) .case-study-img-anchor:active,:host(.case-study-icon) .case-study-img-anchor:focus{transition:none !important;-webkit-transition:none !important;-o-transition:none !important}:host(.case-study-icon) .case-study-img-anchor:active .after,:host(.case-study-icon) .case-study-img-anchor:focus .after{display:block;background:rgba(0, 0, 0, 0.2);transition:none !important;-webkit-transition:none !important;-o-transition:none !important}:host(.case-study-icon) .case-study-img-anchor:active .case-study-icon-img,:host(.case-study-icon) .case-study-img-anchor:focus .case-study-icon-img{transition:none !important;-webkit-transition:none !important;-o-transition:none !important}@media (min-width: 768px){:host(.case-study-icon){width:373px}:host(.case-study-icon) .case-study-img-anchor{width:373px;height:500px}:host(.case-study-icon) .case-study-img-anchor .case-study-bg-img{width:373px;height:500px}}";
18428
18476
 
18429
18477
  const PtcMediaCard$1 = class extends HTMLElement$1 {
18430
18478
  constructor() {
@@ -28630,6 +28678,7 @@ const HomepageJumbotron = /*@__PURE__*/proxyCustomElement(HomepageJumbotron$1, [
28630
28678
  const HomepageToggledContent = /*@__PURE__*/proxyCustomElement(HomepageToggledContent$1, [1,"homepage-toggled-content",{"activeTab":[32],"dropdownOpen":[32]}]);
28631
28679
  const IconAsset = /*@__PURE__*/proxyCustomElement(IconAsset$1, [2,"icon-asset",{"name":[1],"size":[1],"type":[1],"spin":[1],"pulse":[1],"color":[1],"isMobileSelect":[4,"is-mobile-select"],"injectedStyle":[1,"injected-style"]}]);
28632
28680
  const InnovatorToggleContainer = /*@__PURE__*/proxyCustomElement(InnovatorToggleContainer$1, [1,"innovator-toggle-container",{"sectionTitle":[1,"section-title"],"description":[1],"backgroundImage":[1,"background-image"]}]);
28681
+ const JumbotronSubMenu = /*@__PURE__*/proxyCustomElement(JumbotronSubMenu$1, [1,"jumbotron-sub-menu",{"isOpen":[32],"activeItem":[32]}]);
28633
28682
  const JumbotronSubMune = /*@__PURE__*/proxyCustomElement(JumbotronSubMune$1, [1,"jumbotron-sub-mune",{"items":[1],"isOpen":[32],"activeItem":[32]}]);
28634
28683
  const ListItem = /*@__PURE__*/proxyCustomElement(ListItem$2, [1,"list-item",{"listType":[1,"list-type"],"linkHref":[1,"link-href"],"flushBefore":[4,"flush-before"],"linkTarget":[1,"link-target"],"hasBeforeHomeIcon":[4,"has-before-home-icon"],"color":[1],"styles":[1],"ariaLabel":[1,"aria-label"]}]);
28635
28684
  const MaxWidthContainer = /*@__PURE__*/proxyCustomElement(MaxWidthContainer$1, [1,"max-width-container",{"maxWidthP":[2,"max-width-p"],"maxWidth":[2,"max-width"],"breakpoint":[2],"contentAlign":[1,"content-align"],"styles":[1]}]);
@@ -28788,6 +28837,7 @@ const defineCustomElements = (opts) => {
28788
28837
  HomepageToggledContent,
28789
28838
  IconAsset,
28790
28839
  InnovatorToggleContainer,
28840
+ JumbotronSubMenu,
28791
28841
  JumbotronSubMune,
28792
28842
  ListItem,
28793
28843
  MaxWidthContainer,
@@ -28934,4 +28984,4 @@ const defineCustomElements = (opts) => {
28934
28984
  }
28935
28985
  };
28936
28986
 
28937
- export { AcademicFormTest, AuthorListingExample, BundleExample, BundleJumbotronExample, DropdownItem, DynamicBoxBundle, EmbeddedForm, FeaturedList, FlTabContent, FlTabHeader, FlTabImage, FooterForm, HomepageClickableTab, HomepageJumbotron, HomepageToggledContent, IconAsset, InnovatorToggleContainer, JumbotronSubMune, ListItem, MaxWidthContainer, MostPopularNews, MyComponent, NewsSearchResult, PtcAccordion, PtcAccordionItem, PtcAnnouncement, PtcBackToTop, PtcBackgroundVideo, PtcBadge, PtcBioCard, PtcBreadcrumb, PtcBrightcovVideo, PtcButton, PtcCard, PtcCardBottom, PtcCardContent, PtcCardWrapper, PtcCaseStudiesSlider, PtcCheckbox, PtcCheckboxGroup, PtcCloseIcon, PtcCollapseList, PtcContainer, PtcDataLookup, PtcDate, PtcDropdown, PtcDynamicCard, PtcEllipsisDropdown, PtcEmbeddedQuiz, PtcFeaturedList, PtcFilterDropdown, PtcFilterLevelTheater, PtcFilterTag, PtcFooter, PtcForm, PtcFormCheckbox, PtcFormRadioButton, PtcFormRadioGroup, PtcHero, PtcHeroFooterCta, PtcHomepageImageFeature, PtcHomepageVideoBackground, PtcIconCard, PtcIconComponent, PtcIconList, PtcIconMinimize, PtcImageDownloadStrip, PtcImg, PtcInfoTile, PtcJumbotron, PtcLink, PtcList, PtcMediaCard, PtcMinimizedNav, PtcMobileSelect, PtcModal, PtcModalQuiz, PtcMultiSelect, PtcNavCard, PtcNavLink, PtcNavPills, PtcNavSlider, PtcNavSubmenu, PtcNavTile, PtcNews, PtcOfficeLocationCard, PtcOfficeLocations, PtcOverlay, PtcPagenation, PtcPara, PtcPicture, PtcPodcastCard, PtcPreferanceCenterForm, PtcPreloaderSection, PtcPreviousUrl, PtcPricingAddOnCard, PtcPricingAddOnSection, PtcPricingBlock, PtcPricingPackagingTable, PtcPricingTabs, PtcProductCard, PtcProductCategory, PtcProductDropdown, PtcProductHighlightCard, PtcProductList, PtcProductSidebar, PtcProgressBar, PtcQuote, PtcReadmore, PtcReadmoreChar, PtcReadmoreV2, PtcRelatedCardRail, PtcResponsiveWrapper, PtcSearchField, PtcSelect, PtcSeoTitle, PtcShoppingCart, PtcShowcaseCard, PtcSkeleton, PtcSlitCard, PtcSocialIconsFooter, PtcSocialShare, PtcSpacer, PtcSpan, PtcSquareCard, PtcStickyIcons, PtcStickySection, PtcStickyTitle, PtcSubnav, PtcSubnavCard, PtcSvgBtn, PtcTab, PtcTabList, PtcTabs, PtcTextCopyWithBackground, PtcTextfield, PtcTheaterVideo, PtcTheaterVideoModal, PtcTheaterVideoPlaylist, PtcTitle, PtcTooltip, PtcTooltipV2, PtcTwoColumnMedia, PtcValueLedCard, PtcValueLedContent, PtcValueLedContentHighlight, PtcValueLedIntro, PtcValueLedLayout, PtcValueLedSpeedBump, PtcValuePropCard, PtcWhitePaper, SequentialBundle, SequentialBundleExample, TabContent, TabHeader, defineCustomElements };
28987
+ export { AcademicFormTest, AuthorListingExample, BundleExample, BundleJumbotronExample, DropdownItem, DynamicBoxBundle, EmbeddedForm, FeaturedList, FlTabContent, FlTabHeader, FlTabImage, FooterForm, HomepageClickableTab, HomepageJumbotron, HomepageToggledContent, IconAsset, InnovatorToggleContainer, JumbotronSubMenu, JumbotronSubMune, ListItem, MaxWidthContainer, MostPopularNews, MyComponent, NewsSearchResult, PtcAccordion, PtcAccordionItem, PtcAnnouncement, PtcBackToTop, PtcBackgroundVideo, PtcBadge, PtcBioCard, PtcBreadcrumb, PtcBrightcovVideo, PtcButton, PtcCard, PtcCardBottom, PtcCardContent, PtcCardWrapper, PtcCaseStudiesSlider, PtcCheckbox, PtcCheckboxGroup, PtcCloseIcon, PtcCollapseList, PtcContainer, PtcDataLookup, PtcDate, PtcDropdown, PtcDynamicCard, PtcEllipsisDropdown, PtcEmbeddedQuiz, PtcFeaturedList, PtcFilterDropdown, PtcFilterLevelTheater, PtcFilterTag, PtcFooter, PtcForm, PtcFormCheckbox, PtcFormRadioButton, PtcFormRadioGroup, PtcHero, PtcHeroFooterCta, PtcHomepageImageFeature, PtcHomepageVideoBackground, PtcIconCard, PtcIconComponent, PtcIconList, PtcIconMinimize, PtcImageDownloadStrip, PtcImg, PtcInfoTile, PtcJumbotron, PtcLink, PtcList, PtcMediaCard, PtcMinimizedNav, PtcMobileSelect, PtcModal, PtcModalQuiz, PtcMultiSelect, PtcNavCard, PtcNavLink, PtcNavPills, PtcNavSlider, PtcNavSubmenu, PtcNavTile, PtcNews, PtcOfficeLocationCard, PtcOfficeLocations, PtcOverlay, PtcPagenation, PtcPara, PtcPicture, PtcPodcastCard, PtcPreferanceCenterForm, PtcPreloaderSection, PtcPreviousUrl, PtcPricingAddOnCard, PtcPricingAddOnSection, PtcPricingBlock, PtcPricingPackagingTable, PtcPricingTabs, PtcProductCard, PtcProductCategory, PtcProductDropdown, PtcProductHighlightCard, PtcProductList, PtcProductSidebar, PtcProgressBar, PtcQuote, PtcReadmore, PtcReadmoreChar, PtcReadmoreV2, PtcRelatedCardRail, PtcResponsiveWrapper, PtcSearchField, PtcSelect, PtcSeoTitle, PtcShoppingCart, PtcShowcaseCard, PtcSkeleton, PtcSlitCard, PtcSocialIconsFooter, PtcSocialShare, PtcSpacer, PtcSpan, PtcSquareCard, PtcStickyIcons, PtcStickySection, PtcStickyTitle, PtcSubnav, PtcSubnavCard, PtcSvgBtn, PtcTab, PtcTabList, PtcTabs, PtcTextCopyWithBackground, PtcTextfield, PtcTheaterVideo, PtcTheaterVideoModal, PtcTheaterVideoPlaylist, PtcTitle, PtcTooltip, PtcTooltipV2, PtcTwoColumnMedia, PtcValueLedCard, PtcValueLedContent, PtcValueLedContentHighlight, PtcValueLedIntro, PtcValueLedLayout, PtcValueLedSpeedBump, PtcValuePropCard, PtcWhitePaper, SequentialBundle, SequentialBundleExample, TabContent, TabHeader, defineCustomElements };