@cntrl-site/components 1.0.7-alpha.1 → 1.0.7-alpha.10
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/Components/TestimonialGrid/TestimonialGrid.d.ts +9 -15
- package/dist/Components/TestimonialGrid/TestimonialGridComponent.d.ts +6 -7
- package/dist/Components/TestimonialSingle/TestimonialSingle.d.ts +12 -27
- package/dist/Components/TestimonialSingle/TestimonialSingleComponent.d.ts +12 -43
- package/dist/components.css +1 -1
- package/dist/index.js +850 -443
- package/dist/index.mjs +3920 -3140
- package/dist/types/SchemaV1.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,21 +3,17 @@ type TestimonialsProps = {
|
|
|
3
3
|
settings: TestimonialsSettings;
|
|
4
4
|
content?: TestimonialsItem[];
|
|
5
5
|
isEditor?: boolean;
|
|
6
|
+
isPreviewMode?: boolean;
|
|
6
7
|
} & CommonComponentProps;
|
|
7
|
-
export declare const Testimonials: ({ settings, content, isEditor }: TestimonialsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const Testimonials: ({ settings, content, isEditor, isPreviewMode }: TestimonialsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export type TestimonialsItem = {
|
|
9
|
-
|
|
10
|
+
logo?: {
|
|
10
11
|
url?: string;
|
|
11
12
|
name?: string;
|
|
12
13
|
objectFit?: 'cover' | 'contain';
|
|
13
14
|
};
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
name?: string;
|
|
17
|
-
objectFit?: 'cover' | 'contain';
|
|
18
|
-
};
|
|
19
|
-
text: any[];
|
|
20
|
-
caption: any[];
|
|
15
|
+
text?: any[];
|
|
16
|
+
caption?: any[];
|
|
21
17
|
};
|
|
22
18
|
type Padding = {
|
|
23
19
|
top: number;
|
|
@@ -26,23 +22,21 @@ type Padding = {
|
|
|
26
22
|
left: number;
|
|
27
23
|
};
|
|
28
24
|
type TestimonialsSettings = {
|
|
29
|
-
type: 'A' | 'B';
|
|
30
25
|
autoplay: 'on' | 'off';
|
|
31
26
|
speed: number;
|
|
27
|
+
align: 'start' | 'center' | 'end';
|
|
32
28
|
direction: 'left' | 'right';
|
|
33
29
|
pauseOnHover: 'on' | 'off';
|
|
34
30
|
gap: number;
|
|
35
31
|
cardWidth: number;
|
|
36
|
-
cardHeight: number;
|
|
37
32
|
corners: number;
|
|
38
33
|
stroke: number;
|
|
39
34
|
strokeColor: string;
|
|
40
35
|
bgColor: string;
|
|
41
36
|
padding: Padding;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
textMinHeight: number;
|
|
37
|
+
logoMarginTop: number;
|
|
38
|
+
logoWidth: number;
|
|
39
|
+
logoHeight: number;
|
|
46
40
|
captionMarginTop: number;
|
|
47
41
|
styles: TestimonialsStyles;
|
|
48
42
|
};
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { ComponentSchemaV1 } from '../../types/SchemaV1';
|
|
2
2
|
export declare const TestimonialGridComponent: {
|
|
3
|
-
element: ({ settings, content, isEditor }: {
|
|
3
|
+
element: ({ settings, content, isEditor, isPreviewMode }: {
|
|
4
4
|
settings: {
|
|
5
|
-
type: "A" | "B";
|
|
6
5
|
autoplay: "on" | "off";
|
|
7
6
|
speed: number;
|
|
7
|
+
align: "start" | "center" | "end";
|
|
8
8
|
direction: "left" | "right";
|
|
9
9
|
pauseOnHover: "on" | "off";
|
|
10
10
|
gap: number;
|
|
11
11
|
cardWidth: number;
|
|
12
|
-
cardHeight: number;
|
|
13
12
|
corners: number;
|
|
14
13
|
stroke: number;
|
|
15
14
|
strokeColor: string;
|
|
@@ -20,10 +19,9 @@ export declare const TestimonialGridComponent: {
|
|
|
20
19
|
bottom: number;
|
|
21
20
|
left: number;
|
|
22
21
|
};
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
textMinHeight: number;
|
|
22
|
+
logoMarginTop: number;
|
|
23
|
+
logoWidth: number;
|
|
24
|
+
logoHeight: number;
|
|
27
25
|
captionMarginTop: number;
|
|
28
26
|
styles: {
|
|
29
27
|
text: {
|
|
@@ -78,6 +76,7 @@ export declare const TestimonialGridComponent: {
|
|
|
78
76
|
};
|
|
79
77
|
content?: import('./TestimonialGrid').TestimonialsItem[];
|
|
80
78
|
isEditor?: boolean;
|
|
79
|
+
isPreviewMode?: boolean;
|
|
81
80
|
} & import('../props').CommonComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
82
81
|
id: string;
|
|
83
82
|
name: string;
|
|
@@ -3,49 +3,35 @@ type TestimonialsProps = {
|
|
|
3
3
|
settings: TestimonialsSettings;
|
|
4
4
|
content?: TestimonialsItem[];
|
|
5
5
|
isEditor?: boolean;
|
|
6
|
+
isPreviewMode?: boolean;
|
|
6
7
|
} & CommonComponentProps;
|
|
7
|
-
export declare const TestimonialSingle: ({ settings, content, isEditor }: TestimonialsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const TestimonialSingle: ({ settings, content, isEditor, isPreviewMode }: TestimonialsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export type TestimonialsItem = {
|
|
9
10
|
image?: {
|
|
10
11
|
url?: string;
|
|
11
12
|
name?: string;
|
|
12
13
|
objectFit?: 'cover' | 'contain';
|
|
13
14
|
};
|
|
14
|
-
icon?: {
|
|
15
|
-
url?: string;
|
|
16
|
-
name?: string;
|
|
17
|
-
objectFit?: 'cover' | 'contain';
|
|
18
|
-
};
|
|
19
15
|
text: any[];
|
|
20
|
-
imageCaption?: any[];
|
|
21
16
|
caption: any[];
|
|
22
17
|
};
|
|
23
|
-
type Padding = {
|
|
24
|
-
top: number;
|
|
25
|
-
right: number;
|
|
26
|
-
bottom: number;
|
|
27
|
-
left: number;
|
|
28
|
-
};
|
|
29
18
|
type TestimonialsSettings = {
|
|
30
19
|
autoplay: 'on' | 'off';
|
|
31
|
-
|
|
20
|
+
delay: number;
|
|
21
|
+
align: 'start' | 'center' | 'end';
|
|
32
22
|
width: number;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
23
|
+
imageMarginTop?: number;
|
|
24
|
+
imageWidth?: number;
|
|
25
|
+
imageHeight?: number;
|
|
36
26
|
textMarginTop?: number;
|
|
37
|
-
textMinHeight?: number;
|
|
38
27
|
captionMarginTop?: number;
|
|
39
|
-
padding: Padding;
|
|
40
28
|
styles: TestimonialsStyles;
|
|
29
|
+
controlsColor: string;
|
|
30
|
+
controlsHoverColor: string;
|
|
31
|
+
controlsWidth?: number;
|
|
41
32
|
controls: {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
align: 'top-center' | 'top-left' | 'top-right' | 'bottom-center' | 'bottom-left' | 'bottom-right' | 'center-center' | 'center-left' | 'center-right';
|
|
45
|
-
gap: number;
|
|
46
|
-
scale: number;
|
|
47
|
-
color: string;
|
|
48
|
-
hover: string;
|
|
33
|
+
mode?: 'On' | 'Off';
|
|
34
|
+
icon?: string | null;
|
|
49
35
|
};
|
|
50
36
|
};
|
|
51
37
|
type CaptionStyles = {
|
|
@@ -73,7 +59,6 @@ type CaptionStyles = {
|
|
|
73
59
|
color: string;
|
|
74
60
|
};
|
|
75
61
|
type TestimonialsStyles = {
|
|
76
|
-
imageCaption?: CaptionStyles;
|
|
77
62
|
text: CaptionStyles;
|
|
78
63
|
caption: CaptionStyles;
|
|
79
64
|
};
|
|
@@ -1,47 +1,17 @@
|
|
|
1
1
|
import { ComponentSchemaV1 } from '../../types/SchemaV1';
|
|
2
2
|
export declare const TestimonialSingleComponent: {
|
|
3
|
-
element: ({ settings, content, isEditor }: {
|
|
3
|
+
element: ({ settings, content, isEditor, isPreviewMode }: {
|
|
4
4
|
settings: {
|
|
5
5
|
autoplay: "on" | "off";
|
|
6
|
-
|
|
6
|
+
delay: number;
|
|
7
|
+
align: "start" | "center" | "end";
|
|
7
8
|
width: number;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
imageMarginTop?: number;
|
|
10
|
+
imageWidth?: number;
|
|
11
|
+
imageHeight?: number;
|
|
11
12
|
textMarginTop?: number;
|
|
12
|
-
textMinHeight?: number;
|
|
13
13
|
captionMarginTop?: number;
|
|
14
|
-
padding: {
|
|
15
|
-
top: number;
|
|
16
|
-
right: number;
|
|
17
|
-
bottom: number;
|
|
18
|
-
left: number;
|
|
19
|
-
};
|
|
20
14
|
styles: {
|
|
21
|
-
imageCaption?: {
|
|
22
|
-
fontSettings: {
|
|
23
|
-
fontFamily: string;
|
|
24
|
-
fontWeight: number;
|
|
25
|
-
fontStyle: string;
|
|
26
|
-
};
|
|
27
|
-
widthSettings: {
|
|
28
|
-
width: number;
|
|
29
|
-
sizing: "auto" | "manual";
|
|
30
|
-
};
|
|
31
|
-
letterSpacing: number;
|
|
32
|
-
textAlign: "left" | "center" | "right";
|
|
33
|
-
wordSpacing: number;
|
|
34
|
-
fontSizeLineHeight: {
|
|
35
|
-
fontSize: number;
|
|
36
|
-
lineHeight: number;
|
|
37
|
-
};
|
|
38
|
-
textAppearance: {
|
|
39
|
-
textTransform: "none" | "uppercase" | "lowercase";
|
|
40
|
-
textDecoration: "none" | "underline";
|
|
41
|
-
fontVariant: "normal" | "small-caps";
|
|
42
|
-
};
|
|
43
|
-
color: string;
|
|
44
|
-
};
|
|
45
15
|
text: {
|
|
46
16
|
fontSettings: {
|
|
47
17
|
fontFamily: string;
|
|
@@ -91,18 +61,17 @@ export declare const TestimonialSingleComponent: {
|
|
|
91
61
|
color: string;
|
|
92
62
|
};
|
|
93
63
|
};
|
|
64
|
+
controlsColor: string;
|
|
65
|
+
controlsHoverColor: string;
|
|
66
|
+
controlsWidth?: number;
|
|
94
67
|
controls: {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
align: "top-center" | "top-left" | "top-right" | "bottom-center" | "bottom-left" | "bottom-right" | "center-center" | "center-left" | "center-right";
|
|
98
|
-
gap: number;
|
|
99
|
-
scale: number;
|
|
100
|
-
color: string;
|
|
101
|
-
hover: string;
|
|
68
|
+
mode?: "On" | "Off";
|
|
69
|
+
icon?: string | null;
|
|
102
70
|
};
|
|
103
71
|
};
|
|
104
72
|
content?: import('./TestimonialSingle').TestimonialsItem[];
|
|
105
73
|
isEditor?: boolean;
|
|
74
|
+
isPreviewMode?: boolean;
|
|
106
75
|
} & import('../props').CommonComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
107
76
|
id: string;
|
|
108
77
|
name: string;
|
package/dist/components.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ControlSlider-module__wrapper___sHEkd{position:relative;width:100%;height:100%}.ControlSlider-module__wrapper___sHEkd:hover .ControlSlider-module__hoverArrow___A-dOH{opacity:1!important}.ControlSlider-module__slider___R3i9-{width:100%;height:100%}.ControlSlider-module__sliderItems___1MgPL{display:flex;overflow:hidden;width:100%;height:100%;transition:transform .3s ease-in-out}.ControlSlider-module__sliderItem___QQSkR{width:100%;height:100%;display:flex;position:relative}.ControlSlider-module__sliderImage___9hRl-{width:100%;height:100%;object-fit:cover}.ControlSlider-module__arrow___05ghY{position:absolute;display:flex;align-items:center;justify-content:center;border:none;background-color:transparent;top:50%;left:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);z-index:1;transform:translate3d(-50%,-50%,0);padding:0;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.ControlSlider-module__arrow___05ghY.ControlSlider-module__arrowVertical___tBfVN{left:50%;top:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);transform:translate3d(-50%,-50%,0)}.ControlSlider-module__nextArrow___-30Yc{left:unset;right:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);transform:translate3d(50%,-50%,0)}.ControlSlider-module__nextArrow___-30Yc.ControlSlider-module__arrowVertical___tBfVN{left:50%;right:unset;top:unset;bottom:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);transform:translate3d(-50%,50%,0)}.ControlSlider-module__arrowInner___aEra3{all:unset;cursor:pointer;width:100%;height:100%}.ControlSlider-module__arrowInner___aEra3:hover .ControlSlider-module__arrowIcon___S4ztF path{fill:var(--arrow-hover-color)!important}.ControlSlider-module__arrowImg___2dwJW{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.ControlSlider-module__arrowIcon___S4ztF{width:100%;height:100%;overflow:visible}.ControlSlider-module__arrowIcon___S4ztF path{transition:fill .15s ease-in-out}.ControlSlider-module__mirror___brd6U{transform:translate(-50%,-50%) scaleX(-1)!important}.ControlSlider-module__arrowVertical___tBfVN.ControlSlider-module__mirror___brd6U{transform:translate(-50%,-50%) scaleY(-1)!important}.ControlSlider-module__hoverArrow___A-dOH{opacity:0;transition:opacity .15s ease-in-out}.ControlSlider-module__hoverArrow___A-dOH:hover{opacity:1}.ControlSlider-module__pagination___bicLF{position:absolute;z-index:1;border-radius:50%}.ControlSlider-module__paginationInner___bT-P-{display:flex;gap:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);padding-top:calc(var(--is-editor, 0) * .6944444444vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * .6944444444vw);padding-bottom:calc(var(--is-editor, 0) * .6944444444vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * .6944444444vw);padding-left:calc(var(--is-editor, 0) * 1.25vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.25vw);padding-right:calc(var(--is-editor, 0) * 1.25vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.25vw);border-radius:calc(var(--is-editor, 0) * 2.3611111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.3611111111vw)}.ControlSlider-module__paginationVertical___zYqKw{flex-direction:column}.ControlSlider-module__paginationItem___nTRbk{all:unset;flex-shrink:0;position:relative;width:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);height:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);cursor:pointer}.ControlSlider-module__paginationItem___nTRbk:hover .ControlSlider-module__dot___p1Qun{background-color:var(--pagination-hover-color)!important}.ControlSlider-module__dot___p1Qun{border-radius:50%;scale:.5;transition:background-color .3s ease-in-out,transform .3s ease-in-out;width:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);height:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw)}.ControlSlider-module__activeDot___LHFaj{transform:scale(2)}.ControlSlider-module__paginationInsideBottom___R3FWn{bottom:0;left:50%;transform:translate3d(-50%,0,0)}.ControlSlider-module__paginationInsideTop___V-qb-{left:50%;transform:translate3d(-50%,0,0);top:0}.ControlSlider-module__paginationOutsideBottom___14w8D{left:50%;transform:translate3d(-50%,0,0);bottom:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationOutsideTop___SCLqB{left:50%;transform:translate3d(-50%,0,0);top:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationInsideLeft___yOBRZ{top:50%;transform:translate3d(0,-50%,0);left:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationInsideRight___Rtt3o{top:50%;transform:translate3d(0,-50%,0);right:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationOutsideLeft___lahaw{top:50%;transform:translate3d(0,-50%,0);left:calc(var(--is-editor, 0) * -5.4861111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -5.4861111111vw)}.ControlSlider-module__paginationOutsideRight___EtuQa{top:50%;transform:translate3d(0,-50%,0);right:calc(var(--is-editor, 0) * -5.4861111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -5.4861111111vw)}.ControlSlider-module__imgWrapper___UjEgB,.ControlSlider-module__wrapperInner___DLAWV{width:100%;height:100%}.ControlSlider-module__captionBlock___dJ6-j{pointer-events:none;position:absolute;top:0;z-index:1;left:0;right:0;bottom:0}.ControlSlider-module__captionTextWrapper___HFlpf{position:relative;width:100%;height:100%}.ControlSlider-module__captionText___uGBVc{pointer-events:none;max-width:100%;transition-property:opacity;transition-timing-function:ease-in-out;position:absolute;display:inline-block;white-space:pre-wrap;overflow-wrap:break-word;opacity:0}.ControlSlider-module__captionText___uGBVc.ControlSlider-module__active___WZK4G{opacity:1}.ControlSlider-module__withPointerEvents___t-18M{pointer-events:auto}.ControlSlider-module__absolute___KxmYB{position:absolute}.ControlSlider-module__topLeftAlignment___zjnGM{top:0;left:0}.ControlSlider-module__topCenterAlignment___gD1xW{top:0;left:50%;transform:translate(-50%)}.ControlSlider-module__topRightAlignment___NMapS{top:0;right:0}.ControlSlider-module__middleLeftAlignment___OnUrY{top:50%;transform:translateY(-50%);left:0}.ControlSlider-module__middleCenterAlignment___Tdkl0{top:50%;transform:translate(-50%,-50%);left:50%}.ControlSlider-module__middleRightAlignment___wEbfX{top:50%;transform:translateY(-50%);right:0}.ControlSlider-module__bottomLeftAlignment___cTP2-{bottom:0;left:0}.ControlSlider-module__bottomCenterAlignment___c54fB{bottom:0;left:50%;transform:translate(-50%)}.ControlSlider-module__bottomRightAlignment___kEwrz{bottom:0;right:0}.ControlSlider-module__clickOverlay___DZA28{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.ControlSlider-module__contain___pLyq7{object-fit:contain}.ControlSlider-module__cover___KdDat{object-fit:cover}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}.RichTextRenderer-module__link___BWeZ2{color:var(--link-color);cursor:pointer;pointer-events:auto;transition:color .2s ease}.RichTextRenderer-module__link___BWeZ2:hover{color:var(--link-hover-color)}.SvgImage-module__svg___q3xE-{width:100%;height:100%;color:transparent;display:inline-block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:var(--fill);transition:background-color .2s;-webkit-mask:var(--svg) no-repeat center/contain;mask:var(--svg) no-repeat center/contain}.SvgImage-module__svg___q3xE-:hover{background-color:var(--hover-fill)}.SvgImage-module__img___VsTm-{width:100%;height:100%;object-fit:contain}.ImageRevealSlider-module__imageRevealSlider___UE5Ob{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.ImageRevealSlider-module__image___Qjt-e{display:block;width:100%;height:100%;object-fit:cover;position:relative;-webkit-user-select:none;user-select:none;pointer-events:none}.ImageRevealSlider-module__link___N-iLG{width:100%;height:100%;display:block}.ImageRevealSlider-module__cursor___2U03d{position:absolute;top:0;left:0;pointer-events:none;width:32px;height:32px}.LightBox-module__hidden___9s-9x{display:none}.LightBox-module__heroImage___sTxNF{width:100%;height:100%;cursor:pointer;object-fit:cover}.LightBox-module__background___rm9ml{position:fixed;z-index:9997;top:0;left:0;right:0;bottom:0;width:100%;height:100%}.LightBox-module__editor___4ACaY{width:var(--cntrl-article-width)!important;margin-left:auto;margin-right:auto}.LightBox-module__contentStyle___Bgnsq{position:fixed;z-index:9999;top:0;left:0;right:0;bottom:0;overflow:hidden;background:transparent;box-sizing:border-box}.LightBox-module__imageStyle___tLIlB{position:relative;display:block;cursor:pointer;background-color:transparent;max-width:100%;max-height:100%;width:auto;height:auto}.LightBox-module__imgWrapper___LuFUp{position:relative;display:flex;width:100%;height:100%;overflow:hidden;box-sizing:border-box}.LightBox-module__contain___8-yaS{object-fit:contain;max-width:100%;max-height:100%}.LightBox-module__cover___hNvOG{width:100%;height:100%;object-fit:cover}.LightBox-module__caption___b6L2I{z-index:9999;position:absolute;display:flex}.LightBox-module__captionTextInner___rCGNH{position:relative}.LightBox-module__lightboxSplide___XFuWC.splide,.LightBox-module__lightboxSplide___XFuWC .splide__track{height:100%}.LightBox-module__arrow___iz38X{position:absolute;display:flex;align-items:center;justify-content:center;cursor:pointer;border:none;background-color:transparent;top:50%;z-index:1;transform:translate(-50%,-50%);padding:0;left:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.LightBox-module__arrow___iz38X.LightBox-module__arrowVertical___Zfz81{left:50%;top:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);transform:translate(-50%,-50%)}.LightBox-module__nextArrow___zkAQN{left:unset;right:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);transform:translate(50%,-50%)}.LightBox-module__nextArrow___zkAQN.LightBox-module__arrowVertical___Zfz81{left:50%;right:unset;top:unset;bottom:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);transform:translate(-50%,50%)}.LightBox-module__arrowInner___p48sW{all:unset;cursor:pointer;width:100%;height:100%}.LightBox-module__arrowInner___p48sW:hover .LightBox-module__arrowIcon___3VaFf path{fill:var(--arrow-hover-color)!important}.LightBox-module__arrowImg___pNV88{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.LightBox-module__arrowIcon___3VaFf{width:100%;height:100%;overflow:visible}.LightBox-module__arrowIcon___3VaFf path{transition:fill .15s ease-in-out}.LightBox-module__mirror___pjeXc{transform:translate(-50%,-50%) scaleX(-1)!important}.LightBox-module__arrowVertical___Zfz81.LightBox-module__mirror___pjeXc{transform:translate(-50%,-50%) scaleY(-1)!important}.LightBox-module__thumbsWrapper___GB-nU{height:auto;width:auto;max-height:100vh;max-width:100%;overflow:auto;position:absolute;top:0;-webkit-overflow-scrolling:touch}.LightBox-module__thumbsWrapper___GB-nU::-webkit-scrollbar{padding:10px;scrollbar-width:none}.LightBox-module__thumbsContainerVertical___wttk5{flex-direction:column;display:flex}.LightBox-module__thumbsContainer___osSma{display:flex;pointer-events:none}.LightBox-module__thumbsAlignStart___MO6tY{align-items:flex-start}.LightBox-module__thumbsAlignCenter___Q4sUx{align-items:center}.LightBox-module__thumbsAlignEnd___p4y9R{align-items:flex-end}.LightBox-module__thumbItem___HvnF3{all:unset;display:inline-flex;align-items:center;justify-content:center;pointer-events:all;flex:0 0 auto;cursor:pointer;overflow:hidden}.LightBox-module__thumbItem___HvnF3:hover{opacity:var(--thumb-hover)!important}.LightBox-module__thumbsContainerVertical___wttk5 .LightBox-module__thumbItem___HvnF3{flex:1 1 auto}.LightBox-module__closeButton___g2khP{all:unset;cursor:pointer;position:absolute;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}@keyframes LightBox-module__lbFadeIn___P8mx0{0%{opacity:0}to{opacity:1}}.LightBox-module__fadeIn___0m5GW{animation-name:LightBox-module__lbFadeIn___P8mx0}@keyframes LightBox-module__lbSlideInLeft___ygsXZ{0%{transform:translate(-100%)}to{transform:translate(0)}}@keyframes LightBox-module__lbSlideInRight___w2YKV{0%{transform:translate(100%)}to{transform:translate(0)}}@keyframes LightBox-module__lbSlideInTop___W7CSQ{0%{transform:translateY(-100%)}to{transform:translateY(0)}}@keyframes LightBox-module__lbSlideInBottom___7kiT2{0%{transform:translateY(100%)}to{transform:translateY(0)}}.LightBox-module__slideInLeft___gPYwC{animation-name:LightBox-module__lbSlideInLeft___ygsXZ}.LightBox-module__slideInRight___S-pPp{animation-name:LightBox-module__lbSlideInRight___w2YKV}.LightBox-module__slideInTop___DFdAj{animation-name:LightBox-module__lbSlideInTop___W7CSQ}.LightBox-module__slideInBottom___m27kZ{animation-name:LightBox-module__lbSlideInBottom___7kiT2}@keyframes LightBox-module__lbFadeOut___MhEeN{0%{opacity:1}to{opacity:0}}.LightBox-module__fadeOut___55qBR{animation-name:LightBox-module__lbFadeOut___MhEeN!important}@keyframes LightBox-module__lbSlideOutLeft___xM4sO{0%{transform:translate(0)}to{transform:translate(-100%)}}@keyframes LightBox-module__lbSlideOutRight___Jppgj{0%{transform:translate(0)}to{transform:translate(100%)}}@keyframes LightBox-module__lbSlideOutTop___pvscE{0%{transform:translateY(0)}to{transform:translateY(-100%)}}@keyframes LightBox-module__lbSlideOutBottom___oFjPG{0%{transform:translateY(0)}to{transform:translateY(100%)}}.LightBox-module__slideOutLeft___NvU7P{animation-name:LightBox-module__lbSlideOutLeft___xM4sO!important}.LightBox-module__slideOutRight___SK7eC{animation-name:LightBox-module__lbSlideOutRight___Jppgj!important}.LightBox-module__slideOutTop___Vgg0z{animation-name:LightBox-module__lbSlideOutTop___pvscE!important}.LightBox-module__slideOutBottom___nJ0Ef{animation-name:LightBox-module__lbSlideOutBottom___oFjPG!important}.LightBox-module__lightboxSplide___XFuWC.splide--fade .LightBox-module__scaleSlide___vZriG{opacity:0!important;transform:var(--position-transform, none) scale(.9)!important;transition:opacity var(--splide-speed, .5s) ease,transform var(--splide-speed, .5s) ease!important}.LightBox-module__lightboxSplide___XFuWC.splide--fade .splide__slide.is-active .LightBox-module__scaleSlide___vZriG{opacity:1!important;transform:var(--position-transform, none) scale(1)!important}.LightBox-module__lightboxSplide___XFuWC.splide--fade .splide__slide:not(.is-active) .LightBox-module__scaleSlide___vZriG{opacity:0!important;transform:var(--position-transform, none) scale(1.1)!important}.Testimonials-module__gradientCorners___vR7wC{width:100%;position:absolute;top:0;left:0;z-index:1;pointer-events:none}.Testimonials-module__gradientCorners___vR7wC:before{content:"";position:absolute;top:0;left:0;width:15%;height:100%;background:linear-gradient(90deg,var(--gradient-color) 15%,rgba(255,255,255,0) 100%)}.Testimonials-module__gradientCorners___vR7wC:after{content:"";position:absolute;top:0;right:0;width:15%;height:100%;background:linear-gradient(270deg,var(--gradient-color) 15%,rgba(255,255,255,0) 100%)}.Testimonials-module__marqueeWrapper___CwgXx{overflow:hidden;width:100%;height:100%}.Testimonials-module__marqueeTrack___0eRvh{display:flex;flex-direction:row;width:max-content;will-change:transform;backface-visibility:hidden;transform:translateZ(0)}.Testimonials-module__marqueeSet___Zz-mH{display:flex;flex-direction:row;flex:0 0 auto}.Testimonials-module__wrapper___MSG51{position:relative;width:100%;height:100%;order:1}.Testimonials-module__wrapper___MSG51 .splide__slide{margin-left:calc(var(--card-gap) / 2);margin-right:calc(var(--card-gap) / 2)}.Testimonials-module__wrapper___MSG51 .splide{height:100%}.Testimonials-module__wrapper___MSG51 .splide__track{height:100%;overflow:hidden}.Testimonials-module__wrapper___MSG51 .splide__list{display:flex}.Testimonials-module__wrapper___MSG51.Testimonials-module__wrapperDropShadow___k2nhD .splide{overflow-x:clip}.Testimonials-module__wrapper___MSG51.Testimonials-module__wrapperDropShadow___k2nhD .splide__track{overflow:visible}.Testimonials-module__wrapper___MSG51.Testimonials-module__alignLeft___ti6X0{margin-right:auto}.Testimonials-module__wrapper___MSG51.Testimonials-module__alignCenter___PVCHv{margin-left:auto;margin-right:auto}.Testimonials-module__wrapper___MSG51.Testimonials-module__alignRight___7QujQ{margin-left:auto}.Testimonials-module__wrapper___MSG51:hover .Testimonials-module__hoverArrow___eH7J8{opacity:1!important}.Testimonials-module__cover___8N6A3{position:absolute;width:100%;height:100%;top:0;left:0}.Testimonials-module__elementsOverlay___ar14y{position:relative;top:0;right:0;bottom:0;left:0}.Testimonials-module__image___fqDvN{position:absolute;top:0;left:0;width:100%;height:100%}.Testimonials-module__controls___p15-M{position:relative;display:flex;width:100%}.Testimonials-module__arrow___9jgFw{position:relative;display:flex;align-items:center;justify-content:center;border:none;background-color:transparent;z-index:1;padding:0;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.Testimonials-module__nextArrow___O1ekY{left:unset}.Testimonials-module__nextArrow___O1ekY.Testimonials-module__arrowVertical___OTj2L{right:unset;top:unset}.Testimonials-module__arrowInner___4cg-4{all:unset;cursor:pointer;width:100%;height:100%}.Testimonials-module__arrowInner___4cg-4:hover .Testimonials-module__arrowIcon___BWGLX path{fill:var(--arrow-hover-color)!important}.Testimonials-module__arrowImg___5FJKq{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.Testimonials-module__arrowIcon___BWGLX{width:100%;height:100%}.Testimonials-module__arrowIcon___BWGLX path{transition:fill .15s ease-in-out}.Testimonials-module__mirror___NDRag{transform:translate(-50%,-50%) scaleX(-1)!important}.Testimonials-module__arrowVertical___OTj2L.Testimonials-module__mirror___NDRag{transform:translate(-50%,-50%) scaleY(-1)!important}.Testimonials-module__hoverArrow___eH7J8{opacity:0;transition:opacity .15s ease-in-out}.Testimonials-module__hoverArrow___eH7J8:hover{opacity:1}.Testimonials-module__control___ORbH3{position:relative;z-index:2}.Testimonials-module__control___ORbH3:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;min-height:20px;pointer-events:auto;z-index:10}.Testimonials-module__container___Hxc4p{overflow-x:clip;display:flex;height:100%;width:100%}.Testimonials-module__gradientCorners___MClb-{width:100%;position:absolute;top:0;left:0;z-index:1;pointer-events:none}.Testimonials-module__gradientCorners___MClb-:before{content:"";position:absolute;top:0;left:0;width:15%;height:100%;background:linear-gradient(90deg,var(--gradient-color) 15%,rgba(255,255,255,0) 100%)}.Testimonials-module__gradientCorners___MClb-:after{content:"";position:absolute;top:0;right:0;width:15%;height:100%;background:linear-gradient(270deg,var(--gradient-color) 15%,rgba(255,255,255,0) 100%)}.Testimonials-module__wrapper___uBekx{position:relative;width:100%;height:100%;order:1}.Testimonials-module__wrapper___uBekx .splide__slide{margin-left:calc(var(--card-gap) / 2);margin-right:calc(var(--card-gap) / 2)}.Testimonials-module__wrapper___uBekx .splide{height:100%}.Testimonials-module__wrapper___uBekx .splide__track{height:100%;overflow:hidden}.Testimonials-module__wrapper___uBekx .splide__list{display:flex}.Testimonials-module__wrapper___uBekx.Testimonials-module__wrapperDropShadow___kRFsK .splide{overflow-x:clip}.Testimonials-module__wrapper___uBekx.Testimonials-module__wrapperDropShadow___kRFsK .splide__track{overflow:visible}.Testimonials-module__wrapper___uBekx.Testimonials-module__alignLeft___bh77T{margin-right:auto}.Testimonials-module__wrapper___uBekx.Testimonials-module__alignCenter___PXvD6{margin-left:auto;margin-right:auto}.Testimonials-module__wrapper___uBekx.Testimonials-module__alignRight___ZEP-b{margin-left:auto}.Testimonials-module__wrapper___uBekx:hover .Testimonials-module__hoverArrow___WAGFq{opacity:1!important}.Testimonials-module__cover___ZvEoE{position:absolute;width:100%;height:100%;top:0;left:0}.Testimonials-module__elementsOverlay___5I51C{position:relative;top:0;right:0;bottom:0;left:0}.Testimonials-module__image___afGk-{position:absolute;top:0;left:0;width:100%;height:100%}.Testimonials-module__icon___Cpw7E{width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.Testimonials-module__controls___W8bgx{position:relative;display:flex;width:100%}.Testimonials-module__arrow___7-oep{position:relative;display:flex;align-items:center;justify-content:center;border:none;background-color:transparent;z-index:1;padding:0;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.Testimonials-module__nextArrow___Sko-w{left:unset}.Testimonials-module__nextArrow___Sko-w.Testimonials-module__arrowVertical___zjcEk{right:unset;top:unset}.Testimonials-module__arrowInner___YX29M{all:unset;cursor:pointer;width:100%;height:100%}.Testimonials-module__arrowInner___YX29M:hover .Testimonials-module__arrowIcon___ro9aw path{fill:var(--arrow-hover-color)!important}.Testimonials-module__arrowImg___uA7a-{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.Testimonials-module__arrowIcon___ro9aw{width:100%;height:100%}.Testimonials-module__arrowIcon___ro9aw path{transition:fill .15s ease-in-out}.Testimonials-module__mirror___Kadn2{transform:translate(-50%,-50%) scaleX(-1)!important}.Testimonials-module__arrowVertical___zjcEk.Testimonials-module__mirror___Kadn2{transform:translate(-50%,-50%) scaleY(-1)!important}.Testimonials-module__hoverArrow___WAGFq{opacity:0;transition:opacity .15s ease-in-out}.Testimonials-module__hoverArrow___WAGFq:hover{opacity:1}.Testimonials-module__control___DktvH{position:relative;z-index:2}.Testimonials-module__control___DktvH:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;min-height:20px;pointer-events:auto;z-index:10}
|
|
1
|
+
.ControlSlider-module__wrapper___sHEkd{position:relative;width:100%;height:100%}.ControlSlider-module__wrapper___sHEkd:hover .ControlSlider-module__hoverArrow___A-dOH{opacity:1!important}.ControlSlider-module__slider___R3i9-{width:100%;height:100%}.ControlSlider-module__sliderItems___1MgPL{display:flex;overflow:hidden;width:100%;height:100%;transition:transform .3s ease-in-out}.ControlSlider-module__sliderItem___QQSkR{width:100%;height:100%;display:flex;position:relative}.ControlSlider-module__sliderImage___9hRl-{width:100%;height:100%;object-fit:cover}.ControlSlider-module__arrow___05ghY{position:absolute;display:flex;align-items:center;justify-content:center;border:none;background-color:transparent;top:50%;left:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);z-index:1;transform:translate3d(-50%,-50%,0);padding:0;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.ControlSlider-module__arrow___05ghY.ControlSlider-module__arrowVertical___tBfVN{left:50%;top:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);transform:translate3d(-50%,-50%,0)}.ControlSlider-module__nextArrow___-30Yc{left:unset;right:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);transform:translate3d(50%,-50%,0)}.ControlSlider-module__nextArrow___-30Yc.ControlSlider-module__arrowVertical___tBfVN{left:50%;right:unset;top:unset;bottom:calc(var(--is-editor, 0) * -1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -1.3888888889vw);transform:translate3d(-50%,50%,0)}.ControlSlider-module__arrowInner___aEra3{all:unset;cursor:pointer;width:100%;height:100%}.ControlSlider-module__arrowInner___aEra3:hover .ControlSlider-module__arrowIcon___S4ztF path{fill:var(--arrow-hover-color)!important}.ControlSlider-module__arrowImg___2dwJW{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.ControlSlider-module__arrowIcon___S4ztF{width:100%;height:100%;overflow:visible}.ControlSlider-module__arrowIcon___S4ztF path{transition:fill .15s ease-in-out}.ControlSlider-module__mirror___brd6U{transform:translate(-50%,-50%) scaleX(-1)!important}.ControlSlider-module__arrowVertical___tBfVN.ControlSlider-module__mirror___brd6U{transform:translate(-50%,-50%) scaleY(-1)!important}.ControlSlider-module__hoverArrow___A-dOH{opacity:0;transition:opacity .15s ease-in-out}.ControlSlider-module__hoverArrow___A-dOH:hover{opacity:1}.ControlSlider-module__pagination___bicLF{position:absolute;z-index:1;border-radius:50%}.ControlSlider-module__paginationInner___bT-P-{display:flex;gap:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);padding-top:calc(var(--is-editor, 0) * .6944444444vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * .6944444444vw);padding-bottom:calc(var(--is-editor, 0) * .6944444444vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * .6944444444vw);padding-left:calc(var(--is-editor, 0) * 1.25vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.25vw);padding-right:calc(var(--is-editor, 0) * 1.25vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.25vw);border-radius:calc(var(--is-editor, 0) * 2.3611111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.3611111111vw)}.ControlSlider-module__paginationVertical___zYqKw{flex-direction:column}.ControlSlider-module__paginationItem___nTRbk{all:unset;flex-shrink:0;position:relative;width:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);height:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);cursor:pointer}.ControlSlider-module__paginationItem___nTRbk:hover .ControlSlider-module__dot___p1Qun{background-color:var(--pagination-hover-color)!important}.ControlSlider-module__dot___p1Qun{border-radius:50%;scale:.5;transition:background-color .3s ease-in-out,transform .3s ease-in-out;width:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw);height:calc(var(--is-editor, 0) * 1.1111111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.1111111111vw)}.ControlSlider-module__activeDot___LHFaj{transform:scale(2)}.ControlSlider-module__paginationInsideBottom___R3FWn{bottom:0;left:50%;transform:translate3d(-50%,0,0)}.ControlSlider-module__paginationInsideTop___V-qb-{left:50%;transform:translate3d(-50%,0,0);top:0}.ControlSlider-module__paginationOutsideBottom___14w8D{left:50%;transform:translate3d(-50%,0,0);bottom:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationOutsideTop___SCLqB{left:50%;transform:translate3d(-50%,0,0);top:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationInsideLeft___yOBRZ{top:50%;transform:translate3d(0,-50%,0);left:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationInsideRight___Rtt3o{top:50%;transform:translate3d(0,-50%,0);right:calc(var(--is-editor, 0) * -2.4305555556vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -2.4305555556vw)}.ControlSlider-module__paginationOutsideLeft___lahaw{top:50%;transform:translate3d(0,-50%,0);left:calc(var(--is-editor, 0) * -5.4861111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -5.4861111111vw)}.ControlSlider-module__paginationOutsideRight___EtuQa{top:50%;transform:translate3d(0,-50%,0);right:calc(var(--is-editor, 0) * -5.4861111111vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * -5.4861111111vw)}.ControlSlider-module__imgWrapper___UjEgB,.ControlSlider-module__wrapperInner___DLAWV{width:100%;height:100%}.ControlSlider-module__captionBlock___dJ6-j{pointer-events:none;position:absolute;top:0;z-index:1;left:0;right:0;bottom:0}.ControlSlider-module__captionTextWrapper___HFlpf{position:relative;width:100%;height:100%}.ControlSlider-module__captionText___uGBVc{pointer-events:none;max-width:100%;transition-property:opacity;transition-timing-function:ease-in-out;position:absolute;display:inline-block;white-space:pre-wrap;overflow-wrap:break-word;opacity:0}.ControlSlider-module__captionText___uGBVc.ControlSlider-module__active___WZK4G{opacity:1}.ControlSlider-module__withPointerEvents___t-18M{pointer-events:auto}.ControlSlider-module__absolute___KxmYB{position:absolute}.ControlSlider-module__topLeftAlignment___zjnGM{top:0;left:0}.ControlSlider-module__topCenterAlignment___gD1xW{top:0;left:50%;transform:translate(-50%)}.ControlSlider-module__topRightAlignment___NMapS{top:0;right:0}.ControlSlider-module__middleLeftAlignment___OnUrY{top:50%;transform:translateY(-50%);left:0}.ControlSlider-module__middleCenterAlignment___Tdkl0{top:50%;transform:translate(-50%,-50%);left:50%}.ControlSlider-module__middleRightAlignment___wEbfX{top:50%;transform:translateY(-50%);right:0}.ControlSlider-module__bottomLeftAlignment___cTP2-{bottom:0;left:0}.ControlSlider-module__bottomCenterAlignment___c54fB{bottom:0;left:50%;transform:translate(-50%)}.ControlSlider-module__bottomRightAlignment___kEwrz{bottom:0;right:0}.ControlSlider-module__clickOverlay___DZA28{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.ControlSlider-module__contain___pLyq7{object-fit:contain}.ControlSlider-module__cover___KdDat{object-fit:cover}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}.RichTextRenderer-module__link___BWeZ2{color:var(--link-color);cursor:pointer;pointer-events:auto;transition:color .2s ease}.RichTextRenderer-module__link___BWeZ2:hover{color:var(--link-hover-color)}.SvgImage-module__svg___q3xE-{width:100%;height:100%;color:transparent;display:inline-block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:var(--fill);transition:background-color .2s;-webkit-mask:var(--svg) no-repeat center/contain;mask:var(--svg) no-repeat center/contain}.SvgImage-module__svg___q3xE-:hover{background-color:var(--hover-fill)}.SvgImage-module__img___VsTm-{width:100%;height:100%;object-fit:contain}.ImageRevealSlider-module__imageRevealSlider___UE5Ob{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.ImageRevealSlider-module__image___Qjt-e{display:block;width:100%;height:100%;object-fit:cover;position:relative;-webkit-user-select:none;user-select:none;pointer-events:none}.ImageRevealSlider-module__link___N-iLG{width:100%;height:100%;display:block}.ImageRevealSlider-module__cursor___2U03d{position:absolute;top:0;left:0;pointer-events:none;width:32px;height:32px}.LightBox-module__hidden___9s-9x{display:none}.LightBox-module__heroImage___sTxNF{width:100%;height:100%;cursor:pointer;object-fit:cover}.LightBox-module__background___rm9ml{position:fixed;z-index:9997;top:0;left:0;right:0;bottom:0;width:100%;height:100%}.LightBox-module__editor___4ACaY{width:var(--cntrl-article-width)!important;margin-left:auto;margin-right:auto}.LightBox-module__contentStyle___Bgnsq{position:fixed;z-index:9999;top:0;left:0;right:0;bottom:0;overflow:hidden;background:transparent;box-sizing:border-box}.LightBox-module__imageStyle___tLIlB{position:relative;display:block;cursor:pointer;background-color:transparent;max-width:100%;max-height:100%;width:auto;height:auto}.LightBox-module__imgWrapper___LuFUp{position:relative;display:flex;width:100%;height:100%;overflow:hidden;box-sizing:border-box}.LightBox-module__contain___8-yaS{object-fit:contain;max-width:100%;max-height:100%}.LightBox-module__cover___hNvOG{width:100%;height:100%;object-fit:cover}.LightBox-module__caption___b6L2I{z-index:9999;position:absolute;display:flex}.LightBox-module__captionTextInner___rCGNH{position:relative}.LightBox-module__lightboxSplide___XFuWC.splide,.LightBox-module__lightboxSplide___XFuWC .splide__track{height:100%}.LightBox-module__arrow___iz38X{position:absolute;display:flex;align-items:center;justify-content:center;cursor:pointer;border:none;background-color:transparent;top:50%;z-index:1;transform:translate(-50%,-50%);padding:0;left:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.LightBox-module__arrow___iz38X.LightBox-module__arrowVertical___Zfz81{left:50%;top:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);transform:translate(-50%,-50%)}.LightBox-module__nextArrow___zkAQN{left:unset;right:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);transform:translate(50%,-50%)}.LightBox-module__nextArrow___zkAQN.LightBox-module__arrowVertical___Zfz81{left:50%;right:unset;top:unset;bottom:calc(var(--is-editor, 0) * 1.3888888889vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 1.3888888889vw);transform:translate(-50%,50%)}.LightBox-module__arrowInner___p48sW{all:unset;cursor:pointer;width:100%;height:100%}.LightBox-module__arrowInner___p48sW:hover .LightBox-module__arrowIcon___3VaFf path{fill:var(--arrow-hover-color)!important}.LightBox-module__arrowImg___pNV88{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.LightBox-module__arrowIcon___3VaFf{width:100%;height:100%;overflow:visible}.LightBox-module__arrowIcon___3VaFf path{transition:fill .15s ease-in-out}.LightBox-module__mirror___pjeXc{transform:translate(-50%,-50%) scaleX(-1)!important}.LightBox-module__arrowVertical___Zfz81.LightBox-module__mirror___pjeXc{transform:translate(-50%,-50%) scaleY(-1)!important}.LightBox-module__thumbsWrapper___GB-nU{height:auto;width:auto;max-height:100vh;max-width:100%;overflow:auto;position:absolute;top:0;-webkit-overflow-scrolling:touch}.LightBox-module__thumbsWrapper___GB-nU::-webkit-scrollbar{padding:10px;scrollbar-width:none}.LightBox-module__thumbsContainerVertical___wttk5{flex-direction:column;display:flex}.LightBox-module__thumbsContainer___osSma{display:flex;pointer-events:none}.LightBox-module__thumbsAlignStart___MO6tY{align-items:flex-start}.LightBox-module__thumbsAlignCenter___Q4sUx{align-items:center}.LightBox-module__thumbsAlignEnd___p4y9R{align-items:flex-end}.LightBox-module__thumbItem___HvnF3{all:unset;display:inline-flex;align-items:center;justify-content:center;pointer-events:all;flex:0 0 auto;cursor:pointer;overflow:hidden}.LightBox-module__thumbItem___HvnF3:hover{opacity:var(--thumb-hover)!important}.LightBox-module__thumbsContainerVertical___wttk5 .LightBox-module__thumbItem___HvnF3{flex:1 1 auto}.LightBox-module__closeButton___g2khP{all:unset;cursor:pointer;position:absolute;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}@keyframes LightBox-module__lbFadeIn___P8mx0{0%{opacity:0}to{opacity:1}}.LightBox-module__fadeIn___0m5GW{animation-name:LightBox-module__lbFadeIn___P8mx0}@keyframes LightBox-module__lbSlideInLeft___ygsXZ{0%{transform:translate(-100%)}to{transform:translate(0)}}@keyframes LightBox-module__lbSlideInRight___w2YKV{0%{transform:translate(100%)}to{transform:translate(0)}}@keyframes LightBox-module__lbSlideInTop___W7CSQ{0%{transform:translateY(-100%)}to{transform:translateY(0)}}@keyframes LightBox-module__lbSlideInBottom___7kiT2{0%{transform:translateY(100%)}to{transform:translateY(0)}}.LightBox-module__slideInLeft___gPYwC{animation-name:LightBox-module__lbSlideInLeft___ygsXZ}.LightBox-module__slideInRight___S-pPp{animation-name:LightBox-module__lbSlideInRight___w2YKV}.LightBox-module__slideInTop___DFdAj{animation-name:LightBox-module__lbSlideInTop___W7CSQ}.LightBox-module__slideInBottom___m27kZ{animation-name:LightBox-module__lbSlideInBottom___7kiT2}@keyframes LightBox-module__lbFadeOut___MhEeN{0%{opacity:1}to{opacity:0}}.LightBox-module__fadeOut___55qBR{animation-name:LightBox-module__lbFadeOut___MhEeN!important}@keyframes LightBox-module__lbSlideOutLeft___xM4sO{0%{transform:translate(0)}to{transform:translate(-100%)}}@keyframes LightBox-module__lbSlideOutRight___Jppgj{0%{transform:translate(0)}to{transform:translate(100%)}}@keyframes LightBox-module__lbSlideOutTop___pvscE{0%{transform:translateY(0)}to{transform:translateY(-100%)}}@keyframes LightBox-module__lbSlideOutBottom___oFjPG{0%{transform:translateY(0)}to{transform:translateY(100%)}}.LightBox-module__slideOutLeft___NvU7P{animation-name:LightBox-module__lbSlideOutLeft___xM4sO!important}.LightBox-module__slideOutRight___SK7eC{animation-name:LightBox-module__lbSlideOutRight___Jppgj!important}.LightBox-module__slideOutTop___Vgg0z{animation-name:LightBox-module__lbSlideOutTop___pvscE!important}.LightBox-module__slideOutBottom___nJ0Ef{animation-name:LightBox-module__lbSlideOutBottom___oFjPG!important}.LightBox-module__lightboxSplide___XFuWC.splide--fade .LightBox-module__scaleSlide___vZriG{opacity:0!important;transform:var(--position-transform, none) scale(.9)!important;transition:opacity var(--splide-speed, .5s) ease,transform var(--splide-speed, .5s) ease!important}.LightBox-module__lightboxSplide___XFuWC.splide--fade .splide__slide.is-active .LightBox-module__scaleSlide___vZriG{opacity:1!important;transform:var(--position-transform, none) scale(1)!important}.LightBox-module__lightboxSplide___XFuWC.splide--fade .splide__slide:not(.is-active) .LightBox-module__scaleSlide___vZriG{opacity:0!important;transform:var(--position-transform, none) scale(1.1)!important}.TestimonialsGrid-module__marqueeWrapper___VC616{overflow:hidden;width:100%;height:100%}.TestimonialsGrid-module__marqueeTrack___U0OTH{display:flex;flex-direction:row;width:max-content;will-change:transform;backface-visibility:hidden;transform:translateZ(0)}.TestimonialsGrid-module__marqueeSet___L7ZdX{display:flex;flex-direction:row;flex:0 0 auto}.TestimonialsGrid-module__wrapper___-JQKm{position:relative;width:100%;height:100%;order:1}.TestimonialsGrid-module__cover___3-r73{position:absolute;width:100%;height:100%;top:0;left:0}.TestimonialsGrid-module__elementsOverlay___sSbJp{position:relative;top:0;right:0;bottom:0;left:0}.TestimonialsGrid-module__control___pD3e4{position:relative;z-index:2}.TestimonialsGrid-module__control___pD3e4:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;min-height:20px;pointer-events:auto;z-index:10}.TestimonialSingle-module__container___YKr4M{overflow-x:clip;display:flex;height:100%;width:100%}.TestimonialSingle-module__wrapper___hUgOd{position:relative;width:100%;height:100%;order:1}.TestimonialSingle-module__wrapperAutoplayOff___dgrHY{overflow-x:hidden}.TestimonialSingle-module__elementsOverlay___2QyBb{position:relative;top:0;right:0;bottom:0;left:0}.TestimonialSingle-module__fadeStack___Ye77N{position:relative;width:100%}.TestimonialSingle-module__fadeItemPrev___dQn4-{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.TestimonialSingle-module__fadeItemCurrent___intAh{position:relative;width:100%}@keyframes TestimonialSingle-module__testimonialFadeIn___Ouo3t{0%{opacity:0}to{opacity:1}}@keyframes TestimonialSingle-module__testimonialFadeOut___Sfj7b{0%{opacity:1}to{opacity:0}}.TestimonialSingle-module__fadeIn___mnR5D{animation:TestimonialSingle-module__testimonialFadeIn___Ouo3t .3s ease-in forwards}.TestimonialSingle-module__fadeOut___WiXP1{animation:TestimonialSingle-module__testimonialFadeOut___Sfj7b .3s ease-in forwards}.TestimonialSingle-module__icon___qH8ha{width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.TestimonialSingle-module__controls___0dIZ-{position:relative;display:flex;width:100%}.TestimonialSingle-module__arrow___sVKUw{position:relative;display:flex;align-items:center;justify-content:center;border:none;background-color:transparent;z-index:1;padding:0;width:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw);height:calc(var(--is-editor, 0) * 2.0833333333vw / var(--cntrl-reverse-layout-deviation, 1) + (1 - var(--is-editor, 0)) * 2.0833333333vw)}.TestimonialSingle-module__nextArrow___U31Ty{left:unset}.TestimonialSingle-module__arrowInner___tep0d{all:unset;cursor:pointer;width:100%;height:100%}.TestimonialSingle-module__arrowInner___tep0d:hover .TestimonialSingle-module__arrowIcon___FpxdE path{fill:var(--arrow-hover-color)!important}.TestimonialSingle-module__arrowImg___8JHHQ{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.TestimonialSingle-module__arrowIcon___FpxdE{width:100%;height:100%}.TestimonialSingle-module__arrowIcon___FpxdE path{transition:fill .15s ease-in-out}.TestimonialSingle-module__mirror___kWPu-{transform:translate(-50%,-50%) scaleX(-1)!important}.TestimonialSingle-module__control___RwzDc{position:relative;z-index:2;pointer-events:auto}.TestimonialSingle-module__control___RwzDc:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;min-height:20px;pointer-events:auto;z-index:10}
|