@axos-web-dev/shared-components 0.0.60 → 0.0.61
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/Carousel/index.js +4 -1
- package/dist/Chevron/index.js +4 -1
- 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/FooterSiteMap/AxosBank/FooterSiteMap.js +4 -1
- package/dist/Forms/ContactUsBusiness.js +4 -1
- package/dist/Forms/EmailOnly.js +4 -1
- package/dist/Forms/RenderForm.js +4 -1
- package/dist/Forms/SuccesForm.js +4 -1
- package/dist/Hyperlink/index.js +4 -1
- package/dist/ImageLink/ImageLink.js +4 -1
- package/dist/ImageLink/ImageLinkSet.js +4 -1
- package/dist/ImageLink/index.js +4 -1
- package/dist/Modal/Modal.js +4 -1
- package/dist/SetContainer/SetContainer.js +4 -1
- 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/ContentBanner/ContentBanner.css +33 -11
- 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 +4 -1
- package/dist/main.js +20 -5
- package/package.json +1 -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
|
@@ -5,8 +5,10 @@ import "react";
|
|
|
5
5
|
import "react-use";
|
|
6
6
|
import { Chevron } from "../Chevron/index.js";
|
|
7
7
|
import { getVariant } from "../utils/getVariant.js";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import { StepItem } from "../StepItem/StepItem.js";
|
|
9
|
+
import "../StepItem/StepItem.css.js";
|
|
10
|
+
import { bs_section, bs_wrapper, svg_logo, modifier, sec_title, sec_subtitle, tablet_col, bs_image, steps_wrapper, ol, bs_btns, bs_add_details } from "./StepItemSet.css.js";
|
|
11
|
+
const StepItemSet = ({
|
|
10
12
|
id,
|
|
11
13
|
variant: fullVariant = "primary",
|
|
12
14
|
title,
|
|
@@ -17,9 +19,8 @@ const StepItemsSet = ({
|
|
|
17
19
|
additionalDetails
|
|
18
20
|
}) => {
|
|
19
21
|
const variant = getVariant(fullVariant);
|
|
20
|
-
let counter = 0;
|
|
21
22
|
return /* @__PURE__ */ jsx("section", { className: `${bs_section({ variant })}`, id: `id_${id}`, children: /* @__PURE__ */ jsxs("div", { className: `${bs_wrapper} containment`, children: [
|
|
22
|
-
/* @__PURE__ */ jsxs("div", { className: "text_center", children: [
|
|
23
|
+
title || description && /* @__PURE__ */ jsxs("div", { className: "text_center", children: [
|
|
23
24
|
/* @__PURE__ */ jsxs(
|
|
24
25
|
"svg",
|
|
25
26
|
{
|
|
@@ -49,11 +50,11 @@ const StepItemsSet = ({
|
|
|
49
50
|
]
|
|
50
51
|
}
|
|
51
52
|
),
|
|
52
|
-
/* @__PURE__ */ jsx("h2", { className: `header_1 ${sec_title({ variant })}`, children: title }),
|
|
53
|
-
/* @__PURE__ */ jsx("div", { className: sec_subtitle, children: description })
|
|
53
|
+
title && /* @__PURE__ */ jsx("h2", { className: `header_1 ${sec_title({ variant })}`, children: title }),
|
|
54
|
+
description && /* @__PURE__ */ jsx("div", { className: sec_subtitle, children: /* @__PURE__ */ jsx(Fragment, { children: description }) })
|
|
54
55
|
] }),
|
|
55
56
|
/* @__PURE__ */ jsxs("div", { className: `push_up_32 flex ${tablet_col}`, children: [
|
|
56
|
-
/* @__PURE__ */ jsx(
|
|
57
|
+
image && /* @__PURE__ */ jsx(
|
|
57
58
|
"div",
|
|
58
59
|
{
|
|
59
60
|
className: bs_image,
|
|
@@ -61,24 +62,18 @@ const StepItemsSet = ({
|
|
|
61
62
|
children: " "
|
|
62
63
|
}
|
|
63
64
|
),
|
|
64
|
-
/* @__PURE__ */ jsx("div", { className: steps_wrapper, children: /* @__PURE__ */ jsx("ol", { className: ol, children: stepItems
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
] }) }),
|
|
75
|
-
/* @__PURE__ */ jsxs("div", { className: bullet_details, children: [
|
|
76
|
-
/* @__PURE__ */ jsx("span", { className: `${bs_topic({ variant })}`, role: "heading", children: title2 }),
|
|
77
|
-
/* @__PURE__ */ jsx("span", { className: bs_copy, children: description2 })
|
|
78
|
-
] })
|
|
79
|
-
] }, id2)) }) })
|
|
65
|
+
/* @__PURE__ */ jsx("div", { className: steps_wrapper, children: /* @__PURE__ */ jsx("ol", { className: ol, children: stepItems?.map((step, index) => /* @__PURE__ */ jsx(
|
|
66
|
+
StepItem,
|
|
67
|
+
{
|
|
68
|
+
id: `id_${id}`,
|
|
69
|
+
title: step?.title,
|
|
70
|
+
description: step?.description,
|
|
71
|
+
variant: step?.variant
|
|
72
|
+
},
|
|
73
|
+
index
|
|
74
|
+
)) }) })
|
|
80
75
|
] }),
|
|
81
|
-
callToActionRow && callToActionRow
|
|
76
|
+
Array.isArray(callToActionRow) && callToActionRow?.length > 0 && /* @__PURE__ */ jsx(
|
|
82
77
|
"div",
|
|
83
78
|
{
|
|
84
79
|
className: `flex middle center push_up_32 text_center ${bs_btns}`,
|
|
@@ -109,5 +104,5 @@ const StepItemsSet = ({
|
|
|
109
104
|
] }) });
|
|
110
105
|
};
|
|
111
106
|
export {
|
|
112
|
-
|
|
107
|
+
StepItemSet
|
|
113
108
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { StepItemSet } from "./StepItemSet.js";
|
|
2
|
+
import { bs_add_details, bs_btns, bs_image, bs_section, bs_wrapper, modifier, ol, sec_subtitle, sec_title, steps_wrapper, svg_logo, tablet_col } from "./StepItemSet.css.js";
|
|
3
|
+
export {
|
|
4
|
+
StepItemSet,
|
|
5
|
+
bs_add_details,
|
|
6
|
+
bs_btns,
|
|
7
|
+
bs_image,
|
|
8
|
+
bs_section,
|
|
9
|
+
bs_wrapper,
|
|
10
|
+
modifier,
|
|
11
|
+
ol,
|
|
12
|
+
sec_subtitle,
|
|
13
|
+
sec_title,
|
|
14
|
+
steps_wrapper,
|
|
15
|
+
svg_logo,
|
|
16
|
+
tablet_col
|
|
17
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
var picker_navItem = "dmebjx0";
|
|
3
|
+
var picker_itemProduct = "dmebjx1";
|
|
4
|
+
var picker_arrow = "dmebjx2";
|
|
5
|
+
var picker_itemContent = "dmebjx3";
|
|
6
|
+
var picker_navIcon = "dmebjx4";
|
|
7
|
+
export {
|
|
8
|
+
picker_arrow,
|
|
9
|
+
picker_itemContent,
|
|
10
|
+
picker_itemProduct,
|
|
11
|
+
picker_navIcon,
|
|
12
|
+
picker_navItem
|
|
13
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { ImageInterface } from '../IconBillboard';
|
|
3
|
+
|
|
4
|
+
export interface TopicalItemProps {
|
|
5
|
+
id: string;
|
|
6
|
+
icon?: ImageInterface;
|
|
7
|
+
displayText?: string;
|
|
8
|
+
targetUrl: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const TopicalNavItem: FC<TopicalItemProps>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { picker_navItem, picker_itemContent, picker_navIcon, picker_itemProduct, picker_arrow } from "./TopicalNavItem.css.js";
|
|
3
|
+
const TopicalNavItem = ({
|
|
4
|
+
id,
|
|
5
|
+
icon,
|
|
6
|
+
displayText,
|
|
7
|
+
targetUrl
|
|
8
|
+
}) => {
|
|
9
|
+
return /* @__PURE__ */ jsxs("a", { className: picker_navItem, href: targetUrl, id: `id_${id}`, children: [
|
|
10
|
+
/* @__PURE__ */ jsxs("div", { className: picker_itemContent, children: [
|
|
11
|
+
/* @__PURE__ */ jsx(
|
|
12
|
+
"img",
|
|
13
|
+
{
|
|
14
|
+
src: icon?.src,
|
|
15
|
+
alt: "",
|
|
16
|
+
className: picker_navIcon,
|
|
17
|
+
width: 24,
|
|
18
|
+
height: 24,
|
|
19
|
+
"aria-hidden": "true"
|
|
20
|
+
}
|
|
21
|
+
),
|
|
22
|
+
/* @__PURE__ */ jsx("p", { className: picker_itemProduct, children: displayText })
|
|
23
|
+
] }),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
"svg",
|
|
26
|
+
{
|
|
27
|
+
className: picker_arrow,
|
|
28
|
+
width: "12",
|
|
29
|
+
height: "20",
|
|
30
|
+
viewBox: "0 0 12 20",
|
|
31
|
+
fill: "none",
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
children: /* @__PURE__ */ jsx(
|
|
34
|
+
"path",
|
|
35
|
+
{
|
|
36
|
+
d: "M1.76378 0.46875L11.2941 9.99908L1.76378 19.5294L0.703125 18.4687L9.17295 9.99908L0.703125 1.52941L1.76378 0.46875Z",
|
|
37
|
+
fill: "#4A5560"
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
] });
|
|
43
|
+
};
|
|
44
|
+
export {
|
|
45
|
+
TopicalNavItem
|
|
46
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { picker_arrow, picker_itemContent, picker_itemProduct, picker_navIcon, picker_navItem } from "./TopicalNavItem.css.js";
|
|
2
|
+
import { TopicalNavItem } from "./TopicalNavItem.js";
|
|
3
|
+
export {
|
|
4
|
+
TopicalNavItem,
|
|
5
|
+
picker_arrow,
|
|
6
|
+
picker_itemContent,
|
|
7
|
+
picker_itemProduct,
|
|
8
|
+
picker_navIcon,
|
|
9
|
+
picker_navItem
|
|
10
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { TopicalItemProps } from '../TopicalNavItem/TopicalNavItem';
|
|
3
|
+
|
|
4
|
+
export interface TopicalNavSetProps {
|
|
5
|
+
id: string;
|
|
6
|
+
topicalNavigationItems: TopicalItemProps[];
|
|
7
|
+
}
|
|
8
|
+
export declare const TopicalNavSet: FC<TopicalNavSetProps>;
|
|
@@ -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);
|
|
@@ -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
|
}
|
|
@@ -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
|
+
}
|