@axos-web-dev/shared-components 0.0.60 → 0.0.62
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.
- package/dist/Calculators/Calculator.d.ts +13 -0
- package/dist/Calculators/Calculator.js +119 -0
- package/dist/Calculators/calculator.css.d.ts +42 -0
- package/dist/Calculators/calculator.css.js +11 -0
- package/dist/Calculators/calculators.d.ts +7 -0
- package/dist/Calculators/calculators.js +83 -0
- package/dist/Calculators/index.d.ts +2 -0
- package/dist/Calculators/index.js +7 -0
- package/dist/Carousel/index.js +16 -11
- package/dist/Chevron/index.js +17 -12
- package/dist/ContentBanner/ContentBanner.css.d.ts +7 -2
- package/dist/ContentBanner/ContentBanner.css.js +10 -6
- package/dist/ContentBanner/ContentBanner.interface.d.ts +7 -3
- package/dist/ContentBanner/index.js +8 -3
- package/dist/ExecutiveBio/ExecutiveBio.css.d.ts +24 -128
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +17 -12
- package/dist/Forms/ContactUsBusiness.js +11 -6
- package/dist/Forms/EmailOnly.js +12 -7
- package/dist/Forms/RenderForm.js +7 -2
- package/dist/Forms/SuccesForm.js +7 -2
- package/dist/Hyperlink/index.js +17 -12
- package/dist/ImageLink/ImageLink.js +17 -12
- package/dist/ImageLink/ImageLinkSet.js +17 -12
- package/dist/ImageLink/index.js +17 -12
- package/dist/Modal/Modal.js +18 -13
- package/dist/SetContainer/SetContainer.js +17 -12
- package/dist/StepItem/StepItem.css.d.ts +99 -0
- package/dist/StepItem/StepItem.css.js +21 -0
- package/dist/StepItem/StepItem.d.ts +10 -0
- package/dist/{StepItems/StepItems.js → StepItem/StepItem.js} +9 -9
- package/dist/StepItem/index.d.ts +2 -0
- package/dist/StepItem/index.js +12 -0
- package/dist/StepItemSet/StepItemSet.css.d.ts +61 -0
- package/dist/StepItemSet/StepItemSet.css.js +30 -0
- package/dist/StepItemSet/StepItemSet.d.ts +17 -0
- package/dist/{StepItems/StepItemsSet.js → StepItemSet/StepItemSet.js} +20 -25
- package/dist/StepItemSet/index.d.ts +2 -0
- package/dist/StepItemSet/index.js +17 -0
- package/dist/TopicalNavItem/TopicalNavItem.css.d.ts +5 -0
- package/dist/TopicalNavItem/TopicalNavItem.css.js +13 -0
- package/dist/TopicalNavItem/TopicalNavItem.d.ts +10 -0
- package/dist/TopicalNavItem/TopicalNavItem.js +46 -0
- package/dist/TopicalNavItem/index.d.ts +2 -0
- package/dist/TopicalNavItem/index.js +10 -0
- package/dist/TopicalNavSet/TopicalNavSet.css.d.ts +3 -0
- package/dist/TopicalNavSet/TopicalNavSet.css.js +9 -0
- package/dist/TopicalNavSet/TopicalNavSet.d.ts +8 -0
- package/dist/TopicalNavSet/TopicalNavSet.js +21 -0
- package/dist/TopicalNavSet/index.d.ts +2 -0
- package/dist/TopicalNavSet/index.js +8 -0
- package/dist/assets/AwardsBanner/AwardsBanner.css +3 -0
- package/dist/assets/AwardsItem/AwardsItem.css +9 -3
- package/dist/assets/Calculators/calculator.css +47 -0
- package/dist/assets/ContentBanner/ContentBanner.css +33 -11
- package/dist/assets/ExecutiveBio/ExecutiveBio.css +28 -100
- package/dist/assets/StepItem/StepItem.css +144 -0
- package/dist/assets/StepItemSet/StepItemSet.css +119 -0
- package/dist/assets/TopicalNavItem/TopicalNavItem.css +102 -0
- package/dist/assets/TopicalNavSet/TopicalNavSet.css +21 -0
- package/dist/main.d.ts +6 -2
- package/dist/main.js +27 -7
- package/package.json +3 -1
- package/dist/StepItems/StepItems.css.d.ts +0 -132
- package/dist/StepItems/StepItems.css.js +0 -45
- package/dist/StepItems/StepItems.d.ts +0 -3
- package/dist/StepItems/StepItems.interface.d.ts +0 -21
- package/dist/StepItems/StepItems.interface.js +0 -1
- package/dist/StepItems/StepItemsSet.d.ts +0 -3
- package/dist/StepItems/index.d.ts +0 -4
- package/dist/StepItems/index.js +0 -26
- package/dist/assets/StepItems/StepItems.css +0 -249
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx, Fragment } from "react/jsx-runtime";
|
|
2
|
+
import { picker_section, picker_container, picker_orient } from "./TopicalNavSet.css.js";
|
|
3
|
+
import { TopicalNavItem } from "../TopicalNavItem/TopicalNavItem.js";
|
|
4
|
+
const TopicalNavSet = ({
|
|
5
|
+
id,
|
|
6
|
+
topicalNavigationItems
|
|
7
|
+
}) => {
|
|
8
|
+
return /* @__PURE__ */ jsx("nav", { className: picker_section, children: /* @__PURE__ */ jsx("div", { className: picker_container, children: /* @__PURE__ */ jsx("div", { className: `${picker_orient} flex`, children: topicalNavigationItems?.map((nav, index) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
|
|
9
|
+
TopicalNavItem,
|
|
10
|
+
{
|
|
11
|
+
id: `id_${id}`,
|
|
12
|
+
icon: { src: nav?.icon?.src || "" },
|
|
13
|
+
displayText: nav?.displayText,
|
|
14
|
+
targetUrl: nav?.targetUrl
|
|
15
|
+
},
|
|
16
|
+
index
|
|
17
|
+
) })) }) }) });
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
TopicalNavSet
|
|
21
|
+
};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
text-align: center;
|
|
5
5
|
padding: 4px 0;
|
|
6
6
|
}
|
|
7
|
-
._16tnqb20
|
|
7
|
+
._16tnqb20::after {
|
|
8
8
|
content: "";
|
|
9
9
|
position: absolute;
|
|
10
10
|
background-color: #bdbdbd;
|
|
@@ -14,6 +14,12 @@
|
|
|
14
14
|
top: 50%;
|
|
15
15
|
transform: translateY(-50%);
|
|
16
16
|
}
|
|
17
|
+
._16tnqb20:first-child::after {
|
|
18
|
+
display: none;
|
|
19
|
+
}
|
|
20
|
+
._16tnqb20 > img {
|
|
21
|
+
display: inline-block;
|
|
22
|
+
}
|
|
17
23
|
._16tnqb21 {
|
|
18
24
|
color: #ddd;
|
|
19
25
|
font-size: 12px;
|
|
@@ -27,10 +33,10 @@
|
|
|
27
33
|
margin-bottom: 2px;
|
|
28
34
|
}
|
|
29
35
|
@media (max-width: 1023px) {
|
|
30
|
-
._16tnqb20
|
|
36
|
+
._16tnqb20 {
|
|
31
37
|
padding-top: 18px;
|
|
32
38
|
}
|
|
33
|
-
._16tnqb20
|
|
39
|
+
._16tnqb20::after {
|
|
34
40
|
left: 50%;
|
|
35
41
|
top: 0;
|
|
36
42
|
-webkit-transform: translateX(-50%) rotate(90deg);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.iois7n0 {
|
|
2
|
+
margin: 1.5em 0;
|
|
3
|
+
font: 400 16px / 1.3 var(--main-font-family);
|
|
4
|
+
}
|
|
5
|
+
.iois7n1 {
|
|
6
|
+
background: var(--_1073cm81);
|
|
7
|
+
color: var(--_1073cm82);
|
|
8
|
+
}
|
|
9
|
+
.iois7n2 {
|
|
10
|
+
background: var(--_1073cm88);
|
|
11
|
+
color: var(--_1073cm89);
|
|
12
|
+
}
|
|
13
|
+
.iois7n3 {
|
|
14
|
+
background: var(--_1073cm8f);
|
|
15
|
+
color: var(--_1073cm8g);
|
|
16
|
+
}
|
|
17
|
+
.iois7n4 {
|
|
18
|
+
background: var(--_1073cm8m);
|
|
19
|
+
color: var(--_1073cm8n);
|
|
20
|
+
}
|
|
21
|
+
.iois7n5 {
|
|
22
|
+
font: 600 2.5rem / 1.25 var(--header-font-family);
|
|
23
|
+
}
|
|
24
|
+
.iois7n6 {
|
|
25
|
+
background: var(--_1073cm84);
|
|
26
|
+
background-clip: text;
|
|
27
|
+
-webkit-text-fill-color: transparent;
|
|
28
|
+
text-shadow: 0px 0px #00000000;
|
|
29
|
+
}
|
|
30
|
+
.iois7n7 {
|
|
31
|
+
background: var(--_1073cm8b);
|
|
32
|
+
background-clip: text;
|
|
33
|
+
-webkit-text-fill-color: transparent;
|
|
34
|
+
text-shadow: 0px 0px #00000000;
|
|
35
|
+
}
|
|
36
|
+
.iois7n8 {
|
|
37
|
+
color: var(--_1073cm8h);
|
|
38
|
+
}
|
|
39
|
+
.iois7n9 {
|
|
40
|
+
color: var(--_1073cm8o);
|
|
41
|
+
}
|
|
42
|
+
@media screen and (max-width:768px) {
|
|
43
|
+
.iois7n5 {
|
|
44
|
+
font-size: 28px;
|
|
45
|
+
line-height: 1.29;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -14,6 +14,12 @@
|
|
|
14
14
|
background: var(--_1073cm8m);
|
|
15
15
|
color: var(--_1073cm8n);
|
|
16
16
|
}
|
|
17
|
+
._1bwl51g5 {
|
|
18
|
+
display: block;
|
|
19
|
+
font: 700 18px / 1.3 var(--main-font-family);
|
|
20
|
+
margin-bottom: 8px;
|
|
21
|
+
letter-spacing: .2px;
|
|
22
|
+
}
|
|
17
23
|
._1bwl51g6 {
|
|
18
24
|
background: var(--_1073cm84);
|
|
19
25
|
background-clip: text;
|
|
@@ -21,48 +27,64 @@
|
|
|
21
27
|
text-shadow: 0px 0px #00000000;
|
|
22
28
|
}
|
|
23
29
|
._1bwl51g7 {
|
|
24
|
-
|
|
30
|
+
background: var(--_1073cm8b);
|
|
31
|
+
background-clip: text;
|
|
32
|
+
-webkit-text-fill-color: transparent;
|
|
33
|
+
text-shadow: 0px 0px #00000000;
|
|
25
34
|
}
|
|
26
35
|
._1bwl51g8 {
|
|
27
|
-
color: var(--
|
|
36
|
+
color: var(--_1073cm8k);
|
|
28
37
|
}
|
|
29
38
|
._1bwl51g9 {
|
|
30
|
-
color: var(--
|
|
39
|
+
color: var(--_1073cm8n);
|
|
31
40
|
}
|
|
32
41
|
._1bwl51ga {
|
|
42
|
+
margin-bottom: 24px;
|
|
43
|
+
}
|
|
44
|
+
._1bwl51gb {
|
|
33
45
|
padding-top: 80px;
|
|
34
46
|
padding-bottom: 80px;
|
|
35
47
|
}
|
|
36
|
-
.
|
|
48
|
+
._1bwl51gc {
|
|
49
|
+
padding-top: 32px;
|
|
50
|
+
padding-bottom: 32px;
|
|
51
|
+
}
|
|
52
|
+
._1bwl51gd {
|
|
37
53
|
margin-top: 9px;
|
|
38
54
|
}
|
|
39
|
-
.
|
|
55
|
+
._1bwl51gd p {
|
|
40
56
|
font: 400 1rem/1.5 var(--main-font-family);
|
|
41
57
|
}
|
|
42
|
-
.
|
|
58
|
+
._1bwl51gd > * + * {
|
|
43
59
|
margin-top: 10px;
|
|
44
60
|
}
|
|
45
|
-
.
|
|
61
|
+
._1bwl51ge {
|
|
46
62
|
align-items: center;
|
|
47
63
|
display: flex;
|
|
48
64
|
justify-content: center;
|
|
49
65
|
margin-top: 1.5rem;
|
|
50
66
|
gap: 48px;
|
|
51
67
|
}
|
|
52
|
-
.
|
|
68
|
+
._1bwl51gf {
|
|
53
69
|
margin-left: 48px;
|
|
54
70
|
}
|
|
55
71
|
@media screen and (max-width:1023px) {
|
|
56
|
-
.
|
|
72
|
+
._1bwl51gb {
|
|
57
73
|
padding-top: 48px;
|
|
58
74
|
padding-bottom: 48px;
|
|
59
75
|
}
|
|
60
|
-
.
|
|
76
|
+
._1bwl51ge {
|
|
61
77
|
flex-direction: column;
|
|
62
78
|
gap: 16px;
|
|
63
79
|
}
|
|
64
|
-
.
|
|
80
|
+
._1bwl51gf {
|
|
65
81
|
margin-top: 24px;
|
|
66
82
|
margin-left: 0;
|
|
67
83
|
}
|
|
84
|
+
}
|
|
85
|
+
@media screen and (max-width:768px) {
|
|
86
|
+
._1bwl51gc {
|
|
87
|
+
padding-top: 24px;
|
|
88
|
+
padding-bottom: 24px;
|
|
89
|
+
}
|
|
68
90
|
}
|
|
@@ -35,28 +35,16 @@
|
|
|
35
35
|
background: var(--_1073cm8m);
|
|
36
36
|
color: var(--_1073cm8n);
|
|
37
37
|
}
|
|
38
|
-
.
|
|
38
|
+
.txcb8d6 {
|
|
39
39
|
color: var(--_1073cm83);
|
|
40
40
|
}
|
|
41
|
-
.
|
|
42
|
-
color: var(--_1073cm83);
|
|
43
|
-
}
|
|
44
|
-
._1073cm80 .txcb8d7 {
|
|
45
|
-
color: var(--_1073cm8a);
|
|
46
|
-
}
|
|
47
|
-
._1es6o1h0 .txcb8d7 {
|
|
41
|
+
.txcb8d7 {
|
|
48
42
|
color: var(--_1073cm8a);
|
|
49
43
|
}
|
|
50
|
-
.
|
|
51
|
-
color: var(--_1073cm8h);
|
|
52
|
-
}
|
|
53
|
-
._1es6o1h0 .txcb8d8 {
|
|
44
|
+
.txcb8d8 {
|
|
54
45
|
color: var(--_1073cm8h);
|
|
55
46
|
}
|
|
56
|
-
.
|
|
57
|
-
color: var(--_1073cm8o);
|
|
58
|
-
}
|
|
59
|
-
._1es6o1h0 .txcb8d9 {
|
|
47
|
+
.txcb8d9 {
|
|
60
48
|
color: var(--_1073cm8o);
|
|
61
49
|
}
|
|
62
50
|
.txcb8da {
|
|
@@ -66,52 +54,28 @@
|
|
|
66
54
|
line-height: 1.29;
|
|
67
55
|
margin-top: 10px;
|
|
68
56
|
}
|
|
69
|
-
.
|
|
70
|
-
color: var(--_1073cm83);
|
|
71
|
-
}
|
|
72
|
-
._1es6o1h0 .txcb8db {
|
|
57
|
+
.txcb8db {
|
|
73
58
|
color: var(--_1073cm83);
|
|
74
59
|
}
|
|
75
|
-
.
|
|
76
|
-
color: var(--_1073cm8a);
|
|
77
|
-
}
|
|
78
|
-
._1es6o1h0 .txcb8dc {
|
|
60
|
+
.txcb8dc {
|
|
79
61
|
color: var(--_1073cm8a);
|
|
80
62
|
}
|
|
81
|
-
.
|
|
63
|
+
.txcb8dd {
|
|
82
64
|
color: var(--_1073cm8g);
|
|
83
65
|
}
|
|
84
|
-
.
|
|
85
|
-
color: var(--_1073cm8g);
|
|
86
|
-
}
|
|
87
|
-
._1073cm80 .txcb8de {
|
|
88
|
-
color: var(--_1073cm8n);
|
|
89
|
-
}
|
|
90
|
-
._1es6o1h0 .txcb8de {
|
|
66
|
+
.txcb8de {
|
|
91
67
|
color: var(--_1073cm8n);
|
|
92
68
|
}
|
|
93
|
-
.
|
|
94
|
-
fill: var(--_1073cm83);
|
|
95
|
-
}
|
|
96
|
-
._1es6o1h0 .txcb8dg {
|
|
69
|
+
.txcb8dg {
|
|
97
70
|
fill: var(--_1073cm83);
|
|
98
71
|
}
|
|
99
|
-
.
|
|
72
|
+
.txcb8dh {
|
|
100
73
|
fill: var(--_1073cm8a);
|
|
101
74
|
}
|
|
102
|
-
.
|
|
103
|
-
fill: var(--_1073cm8a);
|
|
104
|
-
}
|
|
105
|
-
._1073cm80 .txcb8di {
|
|
75
|
+
.txcb8di {
|
|
106
76
|
fill: var(--_1073cm8h);
|
|
107
77
|
}
|
|
108
|
-
.
|
|
109
|
-
fill: var(--_1073cm8h);
|
|
110
|
-
}
|
|
111
|
-
._1073cm80 .txcb8dj {
|
|
112
|
-
fill: var(--_1073cm8o);
|
|
113
|
-
}
|
|
114
|
-
._1es6o1h0 .txcb8dj {
|
|
78
|
+
.txcb8dj {
|
|
115
79
|
fill: var(--_1073cm8o);
|
|
116
80
|
}
|
|
117
81
|
.txcb8dk {
|
|
@@ -148,29 +112,17 @@
|
|
|
148
112
|
text-decoration: none;
|
|
149
113
|
font-weight: 600;
|
|
150
114
|
}
|
|
151
|
-
.
|
|
152
|
-
color: #0062B3;
|
|
153
|
-
}
|
|
154
|
-
._1es6o1h0 .txcb8dp {
|
|
115
|
+
.txcb8dp {
|
|
155
116
|
color: #0062B3;
|
|
156
117
|
}
|
|
157
|
-
.
|
|
118
|
+
.txcb8dq {
|
|
158
119
|
color: #0062B3;
|
|
159
120
|
}
|
|
160
|
-
.
|
|
161
|
-
color:
|
|
162
|
-
}
|
|
163
|
-
._1073cm80 .txcb8dr {
|
|
164
|
-
color: #fff;
|
|
165
|
-
}
|
|
166
|
-
._1es6o1h0 .txcb8dr {
|
|
167
|
-
color: #fff;
|
|
168
|
-
}
|
|
169
|
-
._1073cm80 .txcb8ds {
|
|
170
|
-
color: #FAA74A;
|
|
121
|
+
.txcb8dr {
|
|
122
|
+
color: var(--_1073cm8h);
|
|
171
123
|
}
|
|
172
|
-
.
|
|
173
|
-
color:
|
|
124
|
+
.txcb8ds {
|
|
125
|
+
color: var(--_1073cm8o);
|
|
174
126
|
}
|
|
175
127
|
.txcb8do a {
|
|
176
128
|
text-decoration: none;
|
|
@@ -209,53 +161,29 @@ $.txcb8dl + .txcb8du {
|
|
|
209
161
|
padding-bottom: 56px;
|
|
210
162
|
margin-top: 0;
|
|
211
163
|
}
|
|
212
|
-
.
|
|
164
|
+
.txcb8d12 {
|
|
213
165
|
background: var(--_1073cm81);
|
|
214
166
|
}
|
|
215
|
-
.
|
|
216
|
-
background: var(--_1073cm81);
|
|
217
|
-
}
|
|
218
|
-
._1073cm80 .txcb8d13 {
|
|
167
|
+
.txcb8d13 {
|
|
219
168
|
background: var(--_1073cm88);
|
|
220
169
|
}
|
|
221
|
-
.
|
|
222
|
-
background: var(--_1073cm88);
|
|
223
|
-
}
|
|
224
|
-
._1073cm80 .txcb8d14 {
|
|
170
|
+
.txcb8d14 {
|
|
225
171
|
background: var(--_1073cm8f);
|
|
226
172
|
}
|
|
227
|
-
.
|
|
228
|
-
background: #1E262F;
|
|
229
|
-
}
|
|
230
|
-
._1073cm80 .txcb8d15 {
|
|
173
|
+
.txcb8d15 {
|
|
231
174
|
background: var(--_1073cm8m);
|
|
232
175
|
}
|
|
233
|
-
.
|
|
234
|
-
background: #1E262F;
|
|
235
|
-
}
|
|
236
|
-
._1073cm80 .txcb8d17 {
|
|
176
|
+
.txcb8d17 {
|
|
237
177
|
color: var(--_1073cm83);
|
|
238
178
|
}
|
|
239
|
-
.
|
|
240
|
-
color: var(--_1073cm83);
|
|
241
|
-
}
|
|
242
|
-
._1073cm80 .txcb8d18 {
|
|
179
|
+
.txcb8d18 {
|
|
243
180
|
color: var(--_1073cm8a);
|
|
244
181
|
}
|
|
245
|
-
.
|
|
246
|
-
color: var(--
|
|
247
|
-
}
|
|
248
|
-
._1073cm80 .txcb8d19 {
|
|
249
|
-
color: #1E3860;
|
|
250
|
-
}
|
|
251
|
-
._1es6o1h0 .txcb8d19 {
|
|
252
|
-
color: #1E262F;
|
|
253
|
-
}
|
|
254
|
-
._1073cm80 .txcb8d1a {
|
|
255
|
-
color: #1E3860;
|
|
182
|
+
.txcb8d19 {
|
|
183
|
+
color: var(--_1073cm8h);
|
|
256
184
|
}
|
|
257
|
-
.
|
|
258
|
-
color:
|
|
185
|
+
.txcb8d1a {
|
|
186
|
+
color: var(--_1073cm8o);
|
|
259
187
|
}
|
|
260
188
|
.txcb8d1b {
|
|
261
189
|
position: relative;
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
._1y8r7dk0 {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
4
|
+
._1y8r7dk0:first-child > :first-child::before {
|
|
5
|
+
height: calc(100% - 31px);
|
|
6
|
+
bottom: 0;
|
|
7
|
+
}
|
|
8
|
+
._1y8r7dk0:last-child > :first-child::before {
|
|
9
|
+
top: 0;
|
|
10
|
+
height: 65px;
|
|
11
|
+
}
|
|
12
|
+
._1y8r7dk1 {
|
|
13
|
+
position: relative;
|
|
14
|
+
isolation: isolate;
|
|
15
|
+
}
|
|
16
|
+
._1y8r7dk1::before {
|
|
17
|
+
content: "";
|
|
18
|
+
position: absolute;
|
|
19
|
+
height: 100%;
|
|
20
|
+
border-left: 1px dashed transparent;
|
|
21
|
+
left: 7px;
|
|
22
|
+
z-index: -1;
|
|
23
|
+
}
|
|
24
|
+
._1y8r7dk2 {
|
|
25
|
+
border-color: var(--_1073cm82);
|
|
26
|
+
}
|
|
27
|
+
._1y8r7dk3 {
|
|
28
|
+
border-color: var(--_1073cm89);
|
|
29
|
+
}
|
|
30
|
+
._1y8r7dk4 {
|
|
31
|
+
border-color: var(--_1073cm8g);
|
|
32
|
+
}
|
|
33
|
+
._1y8r7dk5 {
|
|
34
|
+
border-color: var(--_1073cm8n);
|
|
35
|
+
}
|
|
36
|
+
._1y8r7dk6 {
|
|
37
|
+
border: 4px solid transparent;
|
|
38
|
+
border-radius: 50%;
|
|
39
|
+
height: 7px;
|
|
40
|
+
width: 7px;
|
|
41
|
+
box-sizing: content-box;
|
|
42
|
+
}
|
|
43
|
+
._1073cm80 ._1y8r7dk7 {
|
|
44
|
+
border-color: #4D85B0;
|
|
45
|
+
background: var(--_1073cm81);
|
|
46
|
+
}
|
|
47
|
+
._1es6o1h0 ._1y8r7dk7 {
|
|
48
|
+
border-color: #4A5560;
|
|
49
|
+
background: var(--_1073cm81);
|
|
50
|
+
}
|
|
51
|
+
._1073cm80 ._1y8r7dk8 {
|
|
52
|
+
border-color: #4D85B0;
|
|
53
|
+
background: var(--_1073cm88);
|
|
54
|
+
}
|
|
55
|
+
._1es6o1h0 ._1y8r7dk8 {
|
|
56
|
+
border-color: #4A5560;
|
|
57
|
+
background: var(--_1073cm88);
|
|
58
|
+
}
|
|
59
|
+
._1073cm80 ._1y8r7dk9 {
|
|
60
|
+
border-color: #FAA74A;
|
|
61
|
+
background: #1E3860;
|
|
62
|
+
}
|
|
63
|
+
._1es6o1h0 ._1y8r7dk9 {
|
|
64
|
+
border-color: #FAA74A;
|
|
65
|
+
background: var(--_1073cm8f);
|
|
66
|
+
}
|
|
67
|
+
._1073cm80 ._1y8r7dka {
|
|
68
|
+
border-color: #FAA74A;
|
|
69
|
+
background: #1E3860;
|
|
70
|
+
}
|
|
71
|
+
._1es6o1h0 ._1y8r7dka {
|
|
72
|
+
border-color: #FAA74A;
|
|
73
|
+
background: var(--_1073cm8m);
|
|
74
|
+
}
|
|
75
|
+
._1y8r7dkb {
|
|
76
|
+
font: 500 60px/1.13 var(--header-font-family);
|
|
77
|
+
letter-spacing: 0.2px;
|
|
78
|
+
height: 72px;
|
|
79
|
+
width: 72px;
|
|
80
|
+
margin-left: 16px;
|
|
81
|
+
}
|
|
82
|
+
._1y8r7dkc {
|
|
83
|
+
color: var(--_1073cm83);
|
|
84
|
+
}
|
|
85
|
+
._1y8r7dkd {
|
|
86
|
+
color: var(--_1073cm8a);
|
|
87
|
+
}
|
|
88
|
+
._1y8r7dke {
|
|
89
|
+
color: var(--_1073cm8h);
|
|
90
|
+
}
|
|
91
|
+
._1y8r7dkf {
|
|
92
|
+
color: var(--_1073cm8o);
|
|
93
|
+
}
|
|
94
|
+
._1y8r7dkg {
|
|
95
|
+
flex: 1 1 0%;
|
|
96
|
+
margin-left: 24px;
|
|
97
|
+
}
|
|
98
|
+
._1y8r7dkh {
|
|
99
|
+
font: 600 24px/1.33 var(--header-font-family);
|
|
100
|
+
letter-spacing: 0.2px;
|
|
101
|
+
display: block;
|
|
102
|
+
}
|
|
103
|
+
._1y8r7dki {
|
|
104
|
+
color: var(--_1073cm83);
|
|
105
|
+
}
|
|
106
|
+
._1y8r7dkj {
|
|
107
|
+
color: var(--_1073cm8a);
|
|
108
|
+
}
|
|
109
|
+
._1y8r7dkk {
|
|
110
|
+
color: var(--_1073cm8h);
|
|
111
|
+
}
|
|
112
|
+
._1y8r7dkl {
|
|
113
|
+
color: var(--_1073cm8o);
|
|
114
|
+
}
|
|
115
|
+
._1y8r7dkm {
|
|
116
|
+
margin-top: 8px;
|
|
117
|
+
display: block;
|
|
118
|
+
}
|
|
119
|
+
._1y8r7dkm > * {
|
|
120
|
+
font: 400 16px/1.5 var(--main-font-family);
|
|
121
|
+
}
|
|
122
|
+
@media screen and (max-width:1023px) {
|
|
123
|
+
._1y8r7dk1::before {
|
|
124
|
+
display: none;
|
|
125
|
+
}
|
|
126
|
+
._1y8r7dk6 {
|
|
127
|
+
display: none;
|
|
128
|
+
}
|
|
129
|
+
._1y8r7dkb {
|
|
130
|
+
height: 52px;
|
|
131
|
+
width: 52px;
|
|
132
|
+
font-size: 40px;
|
|
133
|
+
line-height: 1.25;
|
|
134
|
+
margin-left: 0px;
|
|
135
|
+
}
|
|
136
|
+
._1y8r7dkh {
|
|
137
|
+
font-size: 18px;
|
|
138
|
+
line-height: 1.77;
|
|
139
|
+
}
|
|
140
|
+
._1y8r7dkm {
|
|
141
|
+
font-size: 14px;
|
|
142
|
+
line-height: 1.5;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
._18par6f0 {
|
|
2
|
+
padding-bottom: 48px;
|
|
3
|
+
padding-top: 48px;
|
|
4
|
+
}
|
|
5
|
+
._18par6f1 {
|
|
6
|
+
background: var(--_1073cm81);
|
|
7
|
+
color: var(--_1073cm82);
|
|
8
|
+
}
|
|
9
|
+
._18par6f2 {
|
|
10
|
+
background: var(--_1073cm88);
|
|
11
|
+
color: var(--_1073cm82);
|
|
12
|
+
}
|
|
13
|
+
._18par6f3 {
|
|
14
|
+
background: var(--_1073cm8f);
|
|
15
|
+
color: var(--_1073cm82);
|
|
16
|
+
}
|
|
17
|
+
._18par6f4 {
|
|
18
|
+
background: var(--_1073cm8m);
|
|
19
|
+
color: var(--_1073cm82);
|
|
20
|
+
}
|
|
21
|
+
._18par6f6 {
|
|
22
|
+
margin-bottom: 16px;
|
|
23
|
+
}
|
|
24
|
+
._18par6f8 {
|
|
25
|
+
fill: #1E3860;
|
|
26
|
+
}
|
|
27
|
+
._18par6f9 {
|
|
28
|
+
fill: #1E3860;
|
|
29
|
+
}
|
|
30
|
+
._18par6fa {
|
|
31
|
+
fill: #FFF;
|
|
32
|
+
}
|
|
33
|
+
._18par6fb {
|
|
34
|
+
fill: #FFF;
|
|
35
|
+
}
|
|
36
|
+
._18par6fd {
|
|
37
|
+
color: var(--_1073cm83);
|
|
38
|
+
}
|
|
39
|
+
._18par6fe {
|
|
40
|
+
color: var(--_1073cm8a);
|
|
41
|
+
}
|
|
42
|
+
._18par6ff {
|
|
43
|
+
color: var(--_1073cm8h);
|
|
44
|
+
}
|
|
45
|
+
._18par6fg {
|
|
46
|
+
color: var(--_1073cm8o);
|
|
47
|
+
}
|
|
48
|
+
._18par6fh {
|
|
49
|
+
margin-top: 16px;
|
|
50
|
+
text-align: center;
|
|
51
|
+
}
|
|
52
|
+
._18par6fh p {
|
|
53
|
+
font-size: 1rem;
|
|
54
|
+
line-height: 1.5;
|
|
55
|
+
}
|
|
56
|
+
._18par6fj {
|
|
57
|
+
min-height: 378px;
|
|
58
|
+
width: 48%;
|
|
59
|
+
background-position: center center;
|
|
60
|
+
background-size: cover;
|
|
61
|
+
}
|
|
62
|
+
._18par6fk {
|
|
63
|
+
padding: 27px 48px;
|
|
64
|
+
flex: 1 1 0%;
|
|
65
|
+
}
|
|
66
|
+
._18par6fl {
|
|
67
|
+
padding: 0;
|
|
68
|
+
list-style: none;
|
|
69
|
+
margin: 0;
|
|
70
|
+
}
|
|
71
|
+
._18par6fl > li + li > :first-child > :first-child {
|
|
72
|
+
padding-top: 24px;
|
|
73
|
+
}
|
|
74
|
+
._18par6fl > li + li > :last-child {
|
|
75
|
+
padding-top: 24px;
|
|
76
|
+
}
|
|
77
|
+
._18par6fm > * + * {
|
|
78
|
+
margin-left: 48px;
|
|
79
|
+
}
|
|
80
|
+
._18par6fn {
|
|
81
|
+
margin-left: auto;
|
|
82
|
+
margin-right: auto;
|
|
83
|
+
text-align: center;
|
|
84
|
+
max-width: 800px;
|
|
85
|
+
}
|
|
86
|
+
@media screen and (min-width:1024px) {
|
|
87
|
+
._18par6f5 {
|
|
88
|
+
width: min(1392px,calc(100% - 48px));
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
@media screen and (max-width:1280px) {
|
|
92
|
+
._18par6fk {
|
|
93
|
+
padding-left: 24px;
|
|
94
|
+
padding-right: 0;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
@media screen and (max-width:1023px) {
|
|
98
|
+
._18par6fi {
|
|
99
|
+
flex-direction: column;
|
|
100
|
+
margin-top: 24px;
|
|
101
|
+
}
|
|
102
|
+
._18par6fj {
|
|
103
|
+
width: 100%;
|
|
104
|
+
min-height: 183px;
|
|
105
|
+
aspect-ratio: 16 / 9;
|
|
106
|
+
}
|
|
107
|
+
._18par6fk {
|
|
108
|
+
padding: 0px;
|
|
109
|
+
margin-top: 24px;
|
|
110
|
+
}
|
|
111
|
+
._18par6fm {
|
|
112
|
+
flex-direction: column;
|
|
113
|
+
margin-top: 24px;
|
|
114
|
+
}
|
|
115
|
+
._18par6fm > * + * {
|
|
116
|
+
margin-left: 0px;
|
|
117
|
+
margin-top: 24px;
|
|
118
|
+
}
|
|
119
|
+
}
|