@digital-b2c/coreui-kit 0.1.0 → 0.2.1
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/LICENSE.txt +21 -21
- package/README.md +7 -1
- package/dist/index.cjs +749 -69
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +630 -123
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +244 -43
- package/dist/index.d.ts +244 -43
- package/dist/index.mjs +738 -64
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
|
+
/* src/components/Picture/Picture.module.scss */
|
|
2
|
+
.Picture_module_image-desktop {
|
|
3
|
+
display: block;
|
|
4
|
+
}
|
|
5
|
+
@media (max-width: 768px) {
|
|
6
|
+
.Picture_module_image-desktop {
|
|
7
|
+
display: none;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
.Picture_module_image-mobile {
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
@media (max-width: 768px) {
|
|
14
|
+
.Picture_module_image-mobile {
|
|
15
|
+
display: block;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
1
19
|
/* src/components/Button/Button.module.scss */
|
|
2
|
-
.
|
|
20
|
+
.Button_module_button {
|
|
3
21
|
width: fit-content;
|
|
4
22
|
overflow: hidden;
|
|
5
23
|
cursor: pointer;
|
|
@@ -17,22 +35,23 @@
|
|
|
17
35
|
background: rgba(255, 255, 255, 0);
|
|
18
36
|
font-family: var(--font-family-primary);
|
|
19
37
|
font-size: var(--font-size-md);
|
|
20
|
-
font-weight: var(--font-weight-
|
|
38
|
+
font-weight: var(--font-weight-medium);
|
|
21
39
|
line-height: var(--line-height-normal);
|
|
22
40
|
letter-spacing: -0.5%;
|
|
23
41
|
position: relative;
|
|
42
|
+
transition: all 0.2s ease-in-out;
|
|
24
43
|
}
|
|
25
|
-
.
|
|
44
|
+
.Button_module_button:hover {
|
|
26
45
|
text-decoration: none;
|
|
27
46
|
background: rgba(255, 255, 255, 0.2);
|
|
28
47
|
}
|
|
29
|
-
.
|
|
48
|
+
.Button_module_button:active {
|
|
30
49
|
background: rgba(255, 255, 255, 0.3019607843);
|
|
31
50
|
}
|
|
32
|
-
.
|
|
51
|
+
.Button_module_button.Button_module_fullWidth {
|
|
33
52
|
width: 100%;
|
|
34
53
|
}
|
|
35
|
-
.
|
|
54
|
+
.Button_module_button.Button_module_primary {
|
|
36
55
|
color: var(--color-white);
|
|
37
56
|
background:
|
|
38
57
|
radial-gradient(
|
|
@@ -41,7 +60,7 @@
|
|
|
41
60
|
#1b1b1b 100%);
|
|
42
61
|
border: 1px solid #000000;
|
|
43
62
|
}
|
|
44
|
-
.
|
|
63
|
+
.Button_module_button.Button_module_primary:hover {
|
|
45
64
|
background:
|
|
46
65
|
linear-gradient(
|
|
47
66
|
0deg,
|
|
@@ -52,10 +71,10 @@
|
|
|
52
71
|
#000000 0%,
|
|
53
72
|
#1b1b1b 100%);
|
|
54
73
|
}
|
|
55
|
-
.
|
|
74
|
+
.Button_module_button.Button_module_primary:active {
|
|
56
75
|
background: #0e0e0e;
|
|
57
76
|
}
|
|
58
|
-
.
|
|
77
|
+
.Button_module_button.Button_module_primary:focus {
|
|
59
78
|
background:
|
|
60
79
|
linear-gradient(
|
|
61
80
|
0deg,
|
|
@@ -67,87 +86,87 @@
|
|
|
67
86
|
#1b1b1b 100%);
|
|
68
87
|
outline: 4px solid var(--color-link);
|
|
69
88
|
}
|
|
70
|
-
.
|
|
89
|
+
.Button_module_button.Button_module_secondary {
|
|
71
90
|
color: var(--color-black);
|
|
72
91
|
background: var(--color-white);
|
|
73
92
|
border: 1px solid #c2c2c2;
|
|
74
93
|
}
|
|
75
|
-
.
|
|
94
|
+
.Button_module_button.Button_module_secondary:hover {
|
|
76
95
|
background: #eeeeee;
|
|
77
96
|
}
|
|
78
|
-
.
|
|
97
|
+
.Button_module_button.Button_module_secondary:active {
|
|
79
98
|
background: #e3e3e3;
|
|
80
99
|
}
|
|
81
|
-
.
|
|
100
|
+
.Button_module_button.Button_module_secondary:focus {
|
|
82
101
|
background: #eeeeee;
|
|
83
102
|
outline: 4px solid var(--color-link);
|
|
84
103
|
}
|
|
85
|
-
.
|
|
104
|
+
.Button_module_button.Button_module_ghost {
|
|
86
105
|
color: var(--color-black);
|
|
87
106
|
background: var(--color-white);
|
|
88
107
|
border: none;
|
|
89
108
|
}
|
|
90
|
-
.
|
|
109
|
+
.Button_module_button.Button_module_ghost:hover {
|
|
91
110
|
background: #eeeeee;
|
|
92
111
|
}
|
|
93
|
-
.
|
|
112
|
+
.Button_module_button.Button_module_ghost:active {
|
|
94
113
|
background: #c3c3c3;
|
|
95
114
|
}
|
|
96
|
-
.
|
|
115
|
+
.Button_module_button.Button_module_ghost:focus {
|
|
97
116
|
background: #eeeeee;
|
|
98
117
|
outline: 4px solid var(--color-link);
|
|
99
118
|
}
|
|
100
|
-
.
|
|
119
|
+
.Button_module_button.Button_module_nofill {
|
|
101
120
|
color: var(--color-white);
|
|
102
121
|
background: transparent;
|
|
103
122
|
border: none;
|
|
104
123
|
}
|
|
105
|
-
.
|
|
124
|
+
.Button_module_button.Button_module_nofill:hover {
|
|
106
125
|
background: rgba(255, 255, 255, 0.2);
|
|
107
126
|
}
|
|
108
|
-
.
|
|
127
|
+
.Button_module_button.Button_module_nofill:active {
|
|
109
128
|
background: rgba(255, 255, 255, 0.3019607843);
|
|
110
129
|
}
|
|
111
|
-
.
|
|
130
|
+
.Button_module_button.Button_module_nofill:focus {
|
|
112
131
|
background: rgba(255, 255, 255, 0.2);
|
|
113
132
|
outline: 4px solid var(--color-link);
|
|
114
133
|
}
|
|
115
|
-
.
|
|
134
|
+
.Button_module_button.Button_module_nofillblack {
|
|
116
135
|
color: var(--color-black);
|
|
117
136
|
background: transparent;
|
|
118
137
|
border: none;
|
|
119
138
|
}
|
|
120
|
-
.
|
|
139
|
+
.Button_module_button.Button_module_nofillblack:hover {
|
|
121
140
|
background: rgba(229, 229, 229, 0.5019607843);
|
|
122
141
|
}
|
|
123
|
-
.
|
|
142
|
+
.Button_module_button.Button_module_nofillblack:active {
|
|
124
143
|
background: rgba(203, 203, 203, 0.5019607843);
|
|
125
144
|
}
|
|
126
|
-
.
|
|
145
|
+
.Button_module_button.Button_module_nofillblack:focus {
|
|
127
146
|
background: rgba(229, 229, 229, 0.5019607843);
|
|
128
147
|
outline: 4px solid var(--color-link);
|
|
129
148
|
}
|
|
130
|
-
.
|
|
149
|
+
.Button_module_button.Button_module_grey {
|
|
131
150
|
color: var(--color-white);
|
|
132
151
|
background: transparent;
|
|
133
152
|
border: 1px solid #949494;
|
|
134
153
|
}
|
|
135
|
-
.
|
|
154
|
+
.Button_module_button.Button_module_grey:hover {
|
|
136
155
|
background: rgba(255, 255, 255, 0.2);
|
|
137
156
|
}
|
|
138
|
-
.
|
|
157
|
+
.Button_module_button.Button_module_grey:active {
|
|
139
158
|
background: rgba(93, 93, 93, 0.9019607843);
|
|
140
159
|
}
|
|
141
|
-
.
|
|
160
|
+
.Button_module_button.Button_module_grey:focus {
|
|
142
161
|
background: rgba(255, 255, 255, 0.2);
|
|
143
162
|
outline: 4px solid var(--color-link);
|
|
144
163
|
}
|
|
145
|
-
.
|
|
164
|
+
.Button_module_button.Button_module_shiny {
|
|
146
165
|
color: var(--color-white);
|
|
147
166
|
background: transparent;
|
|
148
167
|
border: none;
|
|
149
168
|
}
|
|
150
|
-
.
|
|
169
|
+
.Button_module_button.Button_module_shiny::before {
|
|
151
170
|
content: "";
|
|
152
171
|
position: absolute;
|
|
153
172
|
inset: 0;
|
|
@@ -158,21 +177,27 @@
|
|
|
158
177
|
#ffffff,
|
|
159
178
|
rgba(153, 153, 153, 0.39));
|
|
160
179
|
border-radius: inherit;
|
|
161
|
-
animation:
|
|
180
|
+
animation: Button_module_rotateGradient 2s ease-in infinite;
|
|
162
181
|
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
163
182
|
-webkit-mask-composite: xor;
|
|
164
183
|
mask-composite: exclude;
|
|
165
184
|
pointer-events: none;
|
|
166
185
|
}
|
|
167
|
-
.
|
|
186
|
+
.Button_module_button.Button_module_shiny:hover {
|
|
168
187
|
background: rgba(255, 255, 255, 0.2);
|
|
169
188
|
}
|
|
170
|
-
.
|
|
189
|
+
.Button_module_button.Button_module_shiny:focus {
|
|
171
190
|
background: transparent;
|
|
172
191
|
outline: 4px solid var(--color-link);
|
|
173
192
|
}
|
|
193
|
+
.Button_module_button .Button_module_icon,
|
|
194
|
+
.Button_module_button .Button_module_logo {
|
|
195
|
+
width: 24px;
|
|
196
|
+
height: 24px;
|
|
197
|
+
object-fit: contain;
|
|
198
|
+
}
|
|
174
199
|
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
|
|
175
|
-
@keyframes
|
|
200
|
+
@keyframes Button_module_rotateGradient {
|
|
176
201
|
from {
|
|
177
202
|
--angle: 0deg;
|
|
178
203
|
}
|
|
@@ -181,8 +206,119 @@
|
|
|
181
206
|
}
|
|
182
207
|
}
|
|
183
208
|
|
|
209
|
+
/* src/components/BrandsStrip/BrandsStrip.module.scss */
|
|
210
|
+
.BrandsStrip_module_brandsStrip {
|
|
211
|
+
display: flex;
|
|
212
|
+
height: 116px;
|
|
213
|
+
padding: 16px;
|
|
214
|
+
position: relative;
|
|
215
|
+
overflow: hidden;
|
|
216
|
+
}
|
|
217
|
+
.BrandsStrip_module_brandsStrip.BrandsStrip_module_light {
|
|
218
|
+
background:
|
|
219
|
+
linear-gradient(
|
|
220
|
+
89.48deg,
|
|
221
|
+
rgba(255, 255, 255, 0.25) -2.75%,
|
|
222
|
+
rgba(153, 153, 153, 0) 187.82%);
|
|
223
|
+
backdrop-filter: blur(7.45513px);
|
|
224
|
+
}
|
|
225
|
+
.BrandsStrip_module_brandsStrip.BrandsStrip_module_light::before {
|
|
226
|
+
content: "";
|
|
227
|
+
position: absolute;
|
|
228
|
+
inset: 0;
|
|
229
|
+
padding: 0.75px;
|
|
230
|
+
border: 0.75px solid;
|
|
231
|
+
background:
|
|
232
|
+
linear-gradient(
|
|
233
|
+
89.06deg,
|
|
234
|
+
rgba(153, 153, 153, 0.39) -2.28%,
|
|
235
|
+
rgba(255, 255, 255, 0.39) 101.91%);
|
|
236
|
+
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
237
|
+
-webkit-mask-composite: xor;
|
|
238
|
+
mask-composite: exclude;
|
|
239
|
+
pointer-events: none;
|
|
240
|
+
}
|
|
241
|
+
.BrandsStrip_module_brandsStrip.BrandsStrip_module_dark {
|
|
242
|
+
background-color: var(--color-black);
|
|
243
|
+
}
|
|
244
|
+
.BrandsStrip_module_brandsStrip.BrandsStrip_module_small {
|
|
245
|
+
height: 80px;
|
|
246
|
+
}
|
|
247
|
+
.BrandsStrip_module_brandsStrip.BrandsStrip_module_small .BrandsStrip_module_logoWrapper {
|
|
248
|
+
height: 49px;
|
|
249
|
+
width: 183px;
|
|
250
|
+
}
|
|
251
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_container {
|
|
252
|
+
position: relative;
|
|
253
|
+
display: flex;
|
|
254
|
+
justify-content: center;
|
|
255
|
+
align-items: center;
|
|
256
|
+
gap: 16px;
|
|
257
|
+
width: 100%;
|
|
258
|
+
height: 100%;
|
|
259
|
+
transition: filter 0.3s ease;
|
|
260
|
+
}
|
|
261
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_container .BrandsStrip_module_title {
|
|
262
|
+
color: var(--color-white);
|
|
263
|
+
}
|
|
264
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_container.BrandsStrip_module_blurred {
|
|
265
|
+
filter: blur(15px);
|
|
266
|
+
cursor: pointer;
|
|
267
|
+
}
|
|
268
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_logos {
|
|
269
|
+
display: flex;
|
|
270
|
+
gap: 120px;
|
|
271
|
+
}
|
|
272
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_logos.BrandsStrip_module_marquee {
|
|
273
|
+
position: relative;
|
|
274
|
+
display: flex;
|
|
275
|
+
align-items: center;
|
|
276
|
+
width: 100%;
|
|
277
|
+
height: 100%;
|
|
278
|
+
}
|
|
279
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_logos.BrandsStrip_module_marquee .BrandsStrip_module_logoWrapper {
|
|
280
|
+
--marquee-duration: 8s;
|
|
281
|
+
--marquee-item-width: 258px;
|
|
282
|
+
--marquee-gap: 120px;
|
|
283
|
+
--total-distance: calc( (var(--marquee-item-width) + var(--marquee-gap)) * var(--total-items) );
|
|
284
|
+
position: absolute;
|
|
285
|
+
inset-inline-start: 100%;
|
|
286
|
+
width: var(--marquee-item-width);
|
|
287
|
+
animation: BrandsStrip_module_scrollIndividual var(--marquee-duration) linear infinite;
|
|
288
|
+
animation-delay: calc(var(--marquee-duration) / var(--total-items) * var(--item-index) * -1);
|
|
289
|
+
}
|
|
290
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_logos.BrandsStrip_module_marquee .BrandsStrip_module_logoWrapper.BrandsStrip_module_paused {
|
|
291
|
+
animation-play-state: paused;
|
|
292
|
+
}
|
|
293
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_logoWrapper {
|
|
294
|
+
flex-shrink: 0;
|
|
295
|
+
height: 69px;
|
|
296
|
+
width: 260px;
|
|
297
|
+
display: flex;
|
|
298
|
+
align-items: center;
|
|
299
|
+
justify-content: center;
|
|
300
|
+
}
|
|
301
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_logoWrapper .BrandsStrip_module_logo {
|
|
302
|
+
width: 100%;
|
|
303
|
+
height: auto;
|
|
304
|
+
object-fit: contain;
|
|
305
|
+
}
|
|
306
|
+
.BrandsStrip_module_brandsStrip .BrandsStrip_module_cta {
|
|
307
|
+
position: absolute;
|
|
308
|
+
top: 50%;
|
|
309
|
+
left: 50%;
|
|
310
|
+
transform: translate(-50%, -50%);
|
|
311
|
+
z-index: 10;
|
|
312
|
+
max-width: 295px;
|
|
313
|
+
}
|
|
314
|
+
@keyframes BrandsStrip_module_scrollIndividual {
|
|
315
|
+
to {
|
|
316
|
+
transform: translateX(calc(var(--total-distance) * -1));
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
184
320
|
/* src/components/Card/Card.module.scss */
|
|
185
|
-
.
|
|
321
|
+
.Card_module_card {
|
|
186
322
|
display: flex;
|
|
187
323
|
flex-direction: column;
|
|
188
324
|
border-radius: 8px;
|
|
@@ -191,33 +327,15 @@
|
|
|
191
327
|
background: var(--color-gradient-black);
|
|
192
328
|
min-width: 308px;
|
|
193
329
|
}
|
|
194
|
-
.
|
|
330
|
+
.Card_module_card h3 {
|
|
195
331
|
color: var(--color-white);
|
|
196
332
|
}
|
|
197
|
-
.
|
|
333
|
+
.Card_module_card p {
|
|
198
334
|
color: #cecece;
|
|
199
335
|
}
|
|
200
336
|
|
|
201
|
-
/* src/components/Picture/Picture.module.scss */
|
|
202
|
-
.image-desktop {
|
|
203
|
-
display: block;
|
|
204
|
-
}
|
|
205
|
-
@media (max-width: 768px) {
|
|
206
|
-
.image-desktop {
|
|
207
|
-
display: none;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
.image-mobile {
|
|
211
|
-
display: none;
|
|
212
|
-
}
|
|
213
|
-
@media (max-width: 768px) {
|
|
214
|
-
.image-mobile {
|
|
215
|
-
display: block;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
337
|
/* src/components/CountingCard/CountingCard.module.scss */
|
|
220
|
-
.
|
|
338
|
+
.CountingCard_module_counting-card {
|
|
221
339
|
display: flex;
|
|
222
340
|
flex-direction: column;
|
|
223
341
|
border-radius: 16px;
|
|
@@ -227,29 +345,29 @@
|
|
|
227
345
|
width: 314px;
|
|
228
346
|
color: var(--color-white);
|
|
229
347
|
}
|
|
230
|
-
.
|
|
348
|
+
.CountingCard_module_counting-card .CountingCard_module_count::after {
|
|
231
349
|
content: "+";
|
|
232
350
|
}
|
|
233
|
-
.
|
|
351
|
+
.CountingCard_module_counting-card .CountingCard_module_logo {
|
|
234
352
|
max-height: 67px;
|
|
235
353
|
filter: brightness(0) invert(1);
|
|
236
354
|
}
|
|
237
355
|
|
|
238
356
|
/* src/components/InfoCard/InfoCard.module.scss */
|
|
239
|
-
.
|
|
357
|
+
.InfoCard_module_info-card {
|
|
240
358
|
width: 100%;
|
|
241
359
|
display: flex;
|
|
242
360
|
flex-direction: column;
|
|
243
361
|
padding: var(--spacing-lg);
|
|
244
362
|
gap: var(--spacing-md);
|
|
245
363
|
}
|
|
246
|
-
.
|
|
364
|
+
.InfoCard_module_info-card .InfoCard_module_header {
|
|
247
365
|
display: flex;
|
|
248
366
|
flex-direction: row;
|
|
249
367
|
gap: var(--spacing-md);
|
|
250
368
|
color: var(--color-black);
|
|
251
369
|
}
|
|
252
|
-
.
|
|
370
|
+
.InfoCard_module_info-card .InfoCard_module_badge {
|
|
253
371
|
border-radius: 50%;
|
|
254
372
|
color: var(--color-white);
|
|
255
373
|
width: 40px;
|
|
@@ -259,20 +377,20 @@
|
|
|
259
377
|
justify-content: center;
|
|
260
378
|
background-color: #cecece;
|
|
261
379
|
}
|
|
262
|
-
.
|
|
380
|
+
.InfoCard_module_info-card.InfoCard_module_hasIcon .InfoCard_module_header {
|
|
263
381
|
color: var(--color-lenscrafter-blue);
|
|
264
382
|
}
|
|
265
383
|
|
|
266
384
|
/* src/components/Pagination/Pagination.module.scss */
|
|
267
|
-
.
|
|
385
|
+
.Pagination_module_pagination {
|
|
268
386
|
display: flex;
|
|
269
387
|
flex-direction: row;
|
|
270
388
|
gap: 11px;
|
|
271
389
|
padding: 5px;
|
|
272
390
|
align-items: center;
|
|
273
391
|
}
|
|
274
|
-
.
|
|
275
|
-
.
|
|
392
|
+
.Pagination_module_pagination .Pagination_module_next,
|
|
393
|
+
.Pagination_module_pagination .Pagination_module_prev {
|
|
276
394
|
padding: 0;
|
|
277
395
|
border: none;
|
|
278
396
|
border-radius: 50%;
|
|
@@ -282,17 +400,17 @@
|
|
|
282
400
|
cursor: pointer;
|
|
283
401
|
background: none;
|
|
284
402
|
}
|
|
285
|
-
.
|
|
286
|
-
.
|
|
403
|
+
.Pagination_module_pagination .Pagination_module_next path,
|
|
404
|
+
.Pagination_module_pagination .Pagination_module_prev path {
|
|
287
405
|
fill: var(--color-black);
|
|
288
406
|
}
|
|
289
|
-
.
|
|
407
|
+
.Pagination_module_pagination .Pagination_module_pages {
|
|
290
408
|
display: flex;
|
|
291
409
|
justify-content: space-between;
|
|
292
410
|
gap: 4px;
|
|
293
411
|
width: max-content;
|
|
294
412
|
}
|
|
295
|
-
.
|
|
413
|
+
.Pagination_module_pagination .Pagination_module_page {
|
|
296
414
|
padding: 0;
|
|
297
415
|
margin: 0;
|
|
298
416
|
width: 20px;
|
|
@@ -303,218 +421,607 @@
|
|
|
303
421
|
transition: width 0.3s;
|
|
304
422
|
cursor: pointer;
|
|
305
423
|
}
|
|
306
|
-
.
|
|
424
|
+
.Pagination_module_pagination .Pagination_module_page.Pagination_module_active {
|
|
307
425
|
width: 40px;
|
|
308
426
|
border: none;
|
|
309
427
|
border-radius: 16px;
|
|
310
428
|
background-color: var(--color-black);
|
|
311
429
|
}
|
|
312
|
-
.
|
|
430
|
+
.Pagination_module_pagination .Pagination_module_page.Pagination_module_number.Pagination_module_active {
|
|
313
431
|
width: 28px;
|
|
314
432
|
}
|
|
315
433
|
|
|
316
434
|
/* src/components/primitives/Container/Container.module.scss */
|
|
317
|
-
.
|
|
435
|
+
.Container_module_container {
|
|
318
436
|
width: 100%;
|
|
319
|
-
max-width:
|
|
437
|
+
max-width: 1280px;
|
|
320
438
|
overflow: visible;
|
|
321
439
|
margin: 0 auto;
|
|
440
|
+
position: relative;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/* src/components/PracticeCard/PracticeCard.module.scss */
|
|
444
|
+
.PracticeCard_module_practice-card {
|
|
445
|
+
color: var(--color-white);
|
|
446
|
+
position: relative;
|
|
447
|
+
max-width: 426px;
|
|
448
|
+
height: 521px;
|
|
449
|
+
overflow: hidden;
|
|
450
|
+
cursor: pointer;
|
|
451
|
+
}
|
|
452
|
+
.PracticeCard_module_practice-card .PracticeCard_module_wrapper {
|
|
453
|
+
color: inherit;
|
|
454
|
+
text-decoration: none;
|
|
455
|
+
}
|
|
456
|
+
.PracticeCard_module_practice-card .PracticeCard_module_background {
|
|
457
|
+
object-fit: cover;
|
|
458
|
+
position: absolute;
|
|
459
|
+
z-index: 1;
|
|
460
|
+
top: 0;
|
|
461
|
+
left: 0;
|
|
462
|
+
width: 100%;
|
|
463
|
+
height: 100%;
|
|
464
|
+
transition: transform 0.2s ease;
|
|
465
|
+
}
|
|
466
|
+
.PracticeCard_module_practice-card .PracticeCard_module_container {
|
|
467
|
+
position: relative;
|
|
468
|
+
z-index: 2;
|
|
469
|
+
display: flex;
|
|
470
|
+
flex-direction: column;
|
|
471
|
+
justify-content: space-between;
|
|
472
|
+
width: 100%;
|
|
473
|
+
height: 100%;
|
|
474
|
+
padding: var(--spacing-lg);
|
|
475
|
+
}
|
|
476
|
+
@media (max-width: 768px) {
|
|
477
|
+
.PracticeCard_module_practice-card .PracticeCard_module_container {
|
|
478
|
+
flex-direction: row;
|
|
479
|
+
align-items: center;
|
|
480
|
+
justify-content: space-between;
|
|
481
|
+
padding: var(--spacing-md);
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
.PracticeCard_module_practice-card .PracticeCard_module_title {
|
|
485
|
+
max-width: 196px;
|
|
486
|
+
}
|
|
487
|
+
@media (max-width: 768px) {
|
|
488
|
+
.PracticeCard_module_practice-card .PracticeCard_module_title {
|
|
489
|
+
max-width: 146px;
|
|
490
|
+
font-size: var(--font-size-xl);
|
|
491
|
+
line-height: var(--line-height-tight-4);
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
.PracticeCard_module_practice-card .PracticeCard_module_cta {
|
|
495
|
+
display: flex;
|
|
496
|
+
justify-content: flex-end;
|
|
497
|
+
}
|
|
498
|
+
.PracticeCard_module_practice-card .PracticeCard_module_ctaRest {
|
|
499
|
+
position: absolute;
|
|
500
|
+
opacity: 1;
|
|
501
|
+
transition: opacity 0.2s ease, transform 0.2s ease;
|
|
502
|
+
}
|
|
503
|
+
.PracticeCard_module_practice-card .PracticeCard_module_ctaHover {
|
|
504
|
+
opacity: 0;
|
|
505
|
+
transition: opacity 0.2s ease;
|
|
506
|
+
}
|
|
507
|
+
.PracticeCard_module_practice-card:hover .PracticeCard_module_background {
|
|
508
|
+
transform: scale(1.08);
|
|
509
|
+
}
|
|
510
|
+
.PracticeCard_module_practice-card:hover .PracticeCard_module_ctaRest {
|
|
511
|
+
opacity: 0;
|
|
512
|
+
transform: rotate(-45deg);
|
|
513
|
+
}
|
|
514
|
+
.PracticeCard_module_practice-card:hover .PracticeCard_module_ctaHover {
|
|
515
|
+
opacity: 1;
|
|
516
|
+
transition-delay: 0.1s;
|
|
517
|
+
}
|
|
518
|
+
@media (max-width: 768px) {
|
|
519
|
+
.PracticeCard_module_practice-card {
|
|
520
|
+
width: 100%;
|
|
521
|
+
max-width: unset;
|
|
522
|
+
height: 140px;
|
|
523
|
+
}
|
|
322
524
|
}
|
|
323
525
|
|
|
324
526
|
/* src/widgets/CardCollection/CardCollection.module.scss */
|
|
325
|
-
.
|
|
527
|
+
.CardCollection_module_card-collection {
|
|
326
528
|
display: block;
|
|
327
529
|
width: 100%;
|
|
328
530
|
padding: var(--spacing-3xl) var(--spacing-7xl);
|
|
329
531
|
}
|
|
330
|
-
.
|
|
532
|
+
.CardCollection_module_card-collection h2 {
|
|
331
533
|
color: var(--color-black);
|
|
332
534
|
margin-bottom: var(--spacing-sm);
|
|
333
535
|
}
|
|
334
|
-
.
|
|
536
|
+
.CardCollection_module_card-collection .CardCollection_module_content {
|
|
335
537
|
margin-bottom: var(--spacing-xl);
|
|
336
538
|
}
|
|
337
|
-
.
|
|
539
|
+
.CardCollection_module_card-collection .CardCollection_module_wrapper {
|
|
338
540
|
display: grid;
|
|
339
541
|
grid-template-columns: repeat(2, 1fr);
|
|
340
542
|
gap: var(--spacing-md);
|
|
341
543
|
}
|
|
342
|
-
.
|
|
544
|
+
.CardCollection_module_card-collection.CardCollection_module_threeCols .CardCollection_module_wrapper {
|
|
343
545
|
grid-template-columns: repeat(3, 1fr);
|
|
344
546
|
}
|
|
345
|
-
.
|
|
547
|
+
.CardCollection_module_card-collection.CardCollection_module_examCard .CardCollection_module_wrapper {
|
|
346
548
|
grid-template-columns: repeat(auto-fit, minmax(314px, 1fr));
|
|
347
549
|
}
|
|
348
550
|
@media (max-width: 768px) {
|
|
349
|
-
.
|
|
551
|
+
.CardCollection_module_card-collection {
|
|
350
552
|
padding: var(--spacing-lg);
|
|
351
553
|
}
|
|
352
|
-
.
|
|
554
|
+
.CardCollection_module_card-collection .CardCollection_module_wrapper {
|
|
353
555
|
grid-template-columns: 1fr;
|
|
354
556
|
}
|
|
355
|
-
.
|
|
557
|
+
.CardCollection_module_card-collection.CardCollection_module_threeCols .CardCollection_module_wrapper {
|
|
356
558
|
grid-template-columns: 1fr;
|
|
357
559
|
}
|
|
358
560
|
}
|
|
359
561
|
|
|
562
|
+
/* src/widgets/ContactModule/ContactModule.module.scss */
|
|
563
|
+
.ContactModule_module_contact-module {
|
|
564
|
+
width: 100%;
|
|
565
|
+
display: block;
|
|
566
|
+
padding-top: 96px;
|
|
567
|
+
}
|
|
568
|
+
.ContactModule_module_contact-module .ContactModule_module_container,
|
|
569
|
+
.ContactModule_module_contact-module .ContactModule_module_wrapper,
|
|
570
|
+
.ContactModule_module_contact-module .ContactModule_module_content,
|
|
571
|
+
.ContactModule_module_contact-module .ContactModule_module_cta-wrapper {
|
|
572
|
+
display: flex;
|
|
573
|
+
flex-direction: column;
|
|
574
|
+
align-items: center;
|
|
575
|
+
width: 100%;
|
|
576
|
+
}
|
|
577
|
+
.ContactModule_module_contact-module .ContactModule_module_cta-wrapper {
|
|
578
|
+
flex-direction: row;
|
|
579
|
+
justify-content: center;
|
|
580
|
+
gap: var(--spacing-sm);
|
|
581
|
+
}
|
|
582
|
+
@media (max-width: 768px) {
|
|
583
|
+
.ContactModule_module_contact-module .ContactModule_module_cta-wrapper {
|
|
584
|
+
flex-direction: column-reverse;
|
|
585
|
+
}
|
|
586
|
+
.ContactModule_module_contact-module .ContactModule_module_cta-wrapper .ContactModule_module_cta {
|
|
587
|
+
width: 100%;
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
.ContactModule_module_contact-module .ContactModule_module_wrapper {
|
|
591
|
+
gap: var(--spacing-lg);
|
|
592
|
+
padding: 0 var(--spacing-md);
|
|
593
|
+
}
|
|
594
|
+
.ContactModule_module_contact-module .ContactModule_module_content {
|
|
595
|
+
gap: var(--spacing-sm);
|
|
596
|
+
text-align: center;
|
|
597
|
+
}
|
|
598
|
+
@media (max-width: 768px) {
|
|
599
|
+
.ContactModule_module_contact-module .ContactModule_module_content {
|
|
600
|
+
max-width: 80%;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
.ContactModule_module_contact-module .ContactModule_module_title {
|
|
604
|
+
color: var(--color-black);
|
|
605
|
+
}
|
|
606
|
+
@media (max-width: 768px) {
|
|
607
|
+
.ContactModule_module_contact-module .ContactModule_module_title {
|
|
608
|
+
max-width: 75%;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
@media (max-width: 768px) {
|
|
612
|
+
.ContactModule_module_contact-module .ContactModule_module_image {
|
|
613
|
+
max-width: 80%;
|
|
614
|
+
margin-top: -14px;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
/* src/widgets/HeroBanner/HeroBanner.module.scss */
|
|
619
|
+
.HeroBanner_module_heroBanner {
|
|
620
|
+
width: 100%;
|
|
621
|
+
position: relative;
|
|
622
|
+
}
|
|
623
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_mainHeroBanner {
|
|
624
|
+
background-color: #f3f3f3;
|
|
625
|
+
padding: 48px 80px 0 80px;
|
|
626
|
+
}
|
|
627
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_mainHeroBanner .HeroBanner_module_container {
|
|
628
|
+
max-width: 1280px;
|
|
629
|
+
height: calc(100dvh - 112px);
|
|
630
|
+
margin: 0 auto;
|
|
631
|
+
border-radius: 16px;
|
|
632
|
+
overflow: hidden;
|
|
633
|
+
}
|
|
634
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container {
|
|
635
|
+
flex-direction: row;
|
|
636
|
+
align-items: center;
|
|
637
|
+
justify-content: center;
|
|
638
|
+
height: 100dvh;
|
|
639
|
+
padding: var(--spacing-7xl);
|
|
640
|
+
gap: 64px;
|
|
641
|
+
}
|
|
642
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_banner {
|
|
643
|
+
padding: 0;
|
|
644
|
+
justify-content: center;
|
|
645
|
+
}
|
|
646
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_banner .HeroBanner_module_text .HeroBanner_module_title {
|
|
647
|
+
color: var(--color-black);
|
|
648
|
+
}
|
|
649
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_banner .HeroBanner_module_text .HeroBanner_module_subtitle {
|
|
650
|
+
color: var(--color-gray);
|
|
651
|
+
}
|
|
652
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_logoWrapper {
|
|
653
|
+
z-index: 2;
|
|
654
|
+
}
|
|
655
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_logoWrapper .HeroBanner_module_logo {
|
|
656
|
+
object-fit: contain;
|
|
657
|
+
max-width: 466px;
|
|
658
|
+
}
|
|
659
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_horizontalGradient {
|
|
660
|
+
display: flex;
|
|
661
|
+
height: 8px;
|
|
662
|
+
}
|
|
663
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_horizontalGradient .HeroBanner_module_lensCrafters {
|
|
664
|
+
background-color: var(--color-lenscrafter-blue);
|
|
665
|
+
}
|
|
666
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_horizontalGradient .HeroBanner_module_forEyes {
|
|
667
|
+
background-color: var(--color-foreyes-brown);
|
|
668
|
+
}
|
|
669
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_horizontalGradient .HeroBanner_module_optical {
|
|
670
|
+
background-color: var(--color-targetoptical-red);
|
|
671
|
+
}
|
|
672
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_horizontalGradient .HeroBanner_module_pearleVision {
|
|
673
|
+
background-color: var(--color-pearlevision-green);
|
|
674
|
+
}
|
|
675
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container {
|
|
676
|
+
position: relative;
|
|
677
|
+
display: flex;
|
|
678
|
+
flex-direction: column;
|
|
679
|
+
justify-content: end;
|
|
680
|
+
height: calc(100dvh - 64px);
|
|
681
|
+
}
|
|
682
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_banner {
|
|
683
|
+
display: flex;
|
|
684
|
+
flex-direction: column;
|
|
685
|
+
justify-content: end;
|
|
686
|
+
width: 100%;
|
|
687
|
+
max-width: 661px;
|
|
688
|
+
height: 100%;
|
|
689
|
+
gap: var(--spacing-lg);
|
|
690
|
+
padding: var(--spacing-7xl);
|
|
691
|
+
z-index: 2;
|
|
692
|
+
}
|
|
693
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_banner .HeroBanner_module_text {
|
|
694
|
+
display: flex;
|
|
695
|
+
flex-direction: column;
|
|
696
|
+
gap: var(--spacing-sm);
|
|
697
|
+
color: var(--color-white);
|
|
698
|
+
}
|
|
699
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_banner .HeroBanner_module_ctaContainer {
|
|
700
|
+
display: flex;
|
|
701
|
+
gap: var(--spacing-sm);
|
|
702
|
+
}
|
|
703
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_brandsStrip {
|
|
704
|
+
z-index: 3;
|
|
705
|
+
}
|
|
706
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_backgroundImage {
|
|
707
|
+
position: absolute;
|
|
708
|
+
top: 0;
|
|
709
|
+
left: 0;
|
|
710
|
+
width: 100%;
|
|
711
|
+
height: 100%;
|
|
712
|
+
object-fit: cover;
|
|
713
|
+
z-index: 1;
|
|
714
|
+
}
|
|
715
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_scrollDown {
|
|
716
|
+
display: flex;
|
|
717
|
+
justify-content: center;
|
|
718
|
+
align-items: center;
|
|
719
|
+
width: 100%;
|
|
720
|
+
height: 64px;
|
|
721
|
+
}
|
|
722
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_scrollDown .HeroBanner_module_arrow {
|
|
723
|
+
width: 32px;
|
|
724
|
+
height: 32px;
|
|
725
|
+
}
|
|
726
|
+
@media (max-width: 768px) {
|
|
727
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_mainHeroBanner {
|
|
728
|
+
padding: 24px 16px;
|
|
729
|
+
}
|
|
730
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_mainHeroBanner .HeroBanner_module_container {
|
|
731
|
+
height: calc(100dvh - 88px);
|
|
732
|
+
}
|
|
733
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container {
|
|
734
|
+
flex-direction: column;
|
|
735
|
+
padding: 24px 16px;
|
|
736
|
+
gap: 32px;
|
|
737
|
+
}
|
|
738
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_banner {
|
|
739
|
+
order: 2;
|
|
740
|
+
height: unset;
|
|
741
|
+
}
|
|
742
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_logoWrapper {
|
|
743
|
+
order: 1;
|
|
744
|
+
}
|
|
745
|
+
.HeroBanner_module_heroBanner.HeroBanner_module_bannerPodcast .HeroBanner_module_container .HeroBanner_module_logoWrapper .HeroBanner_module_logo {
|
|
746
|
+
width: 100%;
|
|
747
|
+
}
|
|
748
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_banner {
|
|
749
|
+
padding: var(--spacing-lg) var(--spacing-md);
|
|
750
|
+
}
|
|
751
|
+
.HeroBanner_module_heroBanner .HeroBanner_module_container .HeroBanner_module_banner .HeroBanner_module_ctaContainer {
|
|
752
|
+
flex-direction: column;
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
/* src/widgets/MiniBanner/MiniBanner.module.scss */
|
|
757
|
+
.MiniBanner_module_minibanner {
|
|
758
|
+
width: 100%;
|
|
759
|
+
background-color: #f3f3f3;
|
|
760
|
+
min-height: 192px;
|
|
761
|
+
position: relative;
|
|
762
|
+
color: var(--color-white);
|
|
763
|
+
text-align: center;
|
|
764
|
+
}
|
|
765
|
+
.MiniBanner_module_minibanner .h1 {
|
|
766
|
+
font-weight: 400;
|
|
767
|
+
}
|
|
768
|
+
.MiniBanner_module_minibanner .MiniBanner_module_background {
|
|
769
|
+
position: absolute;
|
|
770
|
+
left: 0;
|
|
771
|
+
top: 0;
|
|
772
|
+
width: 100%;
|
|
773
|
+
height: 100%;
|
|
774
|
+
object-fit: cover;
|
|
775
|
+
z-index: 1;
|
|
776
|
+
}
|
|
777
|
+
.MiniBanner_module_minibanner .MiniBanner_module_container {
|
|
778
|
+
display: flex;
|
|
779
|
+
flex-direction: column;
|
|
780
|
+
align-items: center;
|
|
781
|
+
justify-content: center;
|
|
782
|
+
gap: var(--spacing-lg);
|
|
783
|
+
padding: var(--spacing-3xl) 0;
|
|
784
|
+
z-index: 2;
|
|
785
|
+
}
|
|
786
|
+
@media (max-width: 768px) {
|
|
787
|
+
.MiniBanner_module_minibanner .MiniBanner_module_container {
|
|
788
|
+
padding: var(--spacing-3xl) var(--spacing-md);
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerNoBG {
|
|
792
|
+
color: var(--color-black);
|
|
793
|
+
}
|
|
794
|
+
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerNoBG .MiniBanner_module_container {
|
|
795
|
+
gap: var(--spacing-lg);
|
|
796
|
+
padding: var(--spacing-5xl) 0;
|
|
797
|
+
}
|
|
798
|
+
@media (max-width: 768px) {
|
|
799
|
+
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerNoBG .MiniBanner_module_container {
|
|
800
|
+
padding: var(--spacing-5xl) var(--spacing-md);
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
|
|
360
804
|
/* src/widgets/MiniSectionCta/MiniSectionCta.module.scss */
|
|
361
|
-
.
|
|
805
|
+
.MiniSectionCta_module_miniSectionCta {
|
|
362
806
|
width: 100%;
|
|
363
807
|
}
|
|
364
|
-
.
|
|
808
|
+
.MiniSectionCta_module_miniSectionCta .MiniSectionCta_module_container {
|
|
365
809
|
display: flex;
|
|
366
810
|
flex-direction: row;
|
|
367
811
|
justify-content: space-between;
|
|
368
812
|
gap: var(--spacing-md);
|
|
369
813
|
padding: var(--spacing-3xl) var(--spacing-7xl);
|
|
370
814
|
}
|
|
371
|
-
.
|
|
815
|
+
.MiniSectionCta_module_miniSectionCta .MiniSectionCta_module_col {
|
|
372
816
|
display: flex;
|
|
373
817
|
flex-direction: column;
|
|
374
818
|
justify-content: center;
|
|
375
819
|
}
|
|
376
|
-
.
|
|
820
|
+
.MiniSectionCta_module_miniSectionCta h2 {
|
|
377
821
|
color: var(--color-black);
|
|
378
822
|
}
|
|
379
|
-
.
|
|
823
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_BgColorBlack {
|
|
380
824
|
background: var(--color-black);
|
|
381
825
|
color: var(--color-white);
|
|
382
826
|
}
|
|
383
|
-
.
|
|
827
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_BgColorBlack h2 {
|
|
384
828
|
color: var(--color-white);
|
|
385
829
|
}
|
|
386
|
-
.
|
|
830
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_BgColorBlack .subheading {
|
|
387
831
|
color: #cecece;
|
|
388
832
|
}
|
|
389
|
-
.
|
|
833
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_infoCallout .MiniSectionCta_module_col {
|
|
390
834
|
flex-direction: row;
|
|
391
835
|
gap: 112px;
|
|
392
836
|
align-items: center;
|
|
393
837
|
}
|
|
394
|
-
.
|
|
838
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_infoCallout h2 {
|
|
395
839
|
min-width: fit-content;
|
|
396
840
|
}
|
|
397
|
-
.
|
|
841
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_miniTextCenterCta .MiniSectionCta_module_container {
|
|
398
842
|
flex-direction: column;
|
|
399
843
|
align-items: center;
|
|
400
844
|
}
|
|
401
845
|
@media (max-width: 768px) {
|
|
402
|
-
.
|
|
846
|
+
.MiniSectionCta_module_miniSectionCta .MiniSectionCta_module_container {
|
|
403
847
|
flex-direction: column;
|
|
404
848
|
padding: var(--spacing-lg) var(--spacing-md);
|
|
405
849
|
}
|
|
406
|
-
.
|
|
850
|
+
.MiniSectionCta_module_miniSectionCta .MiniSectionCta_module_cta {
|
|
407
851
|
width: 100%;
|
|
408
852
|
}
|
|
409
|
-
.
|
|
853
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_BgColorBlack {
|
|
410
854
|
text-align: center;
|
|
411
855
|
}
|
|
412
|
-
.
|
|
856
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_BgColorGrey {
|
|
413
857
|
text-align: center;
|
|
414
858
|
}
|
|
415
|
-
.
|
|
859
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_infoCallout .MiniSectionCta_module_col {
|
|
416
860
|
flex-direction: column;
|
|
417
861
|
gap: var(--spacing-md);
|
|
418
862
|
align-items: flex-start;
|
|
419
863
|
}
|
|
420
|
-
.
|
|
864
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_infoCallout .MiniSectionCta_module_subtitle {
|
|
421
865
|
font-size: var(--font-size-lg);
|
|
422
|
-
font-weight: var(--font-weight-
|
|
866
|
+
font-weight: var(--font-weight-medium);
|
|
423
867
|
line-height: var(--line-height-tight-1);
|
|
424
868
|
}
|
|
425
|
-
.
|
|
869
|
+
.MiniSectionCta_module_miniSectionCta.MiniSectionCta_module_miniTextCenterCta .MiniSectionCta_module_col {
|
|
870
|
+
width: 100%;
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
/* src/widgets/PracticePathCards/PracticePathCards.module.scss */
|
|
875
|
+
.PracticePathCards_module_practice-path-cards {
|
|
876
|
+
display: block;
|
|
877
|
+
width: 100%;
|
|
878
|
+
padding: var(--spacing-3xl) 0;
|
|
879
|
+
}
|
|
880
|
+
@media (max-width: 768px) {
|
|
881
|
+
.PracticePathCards_module_practice-path-cards {
|
|
882
|
+
padding: var(--spacing-lg) var(--spacing-md);
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
.PracticePathCards_module_practice-path-cards h2 {
|
|
886
|
+
color: var(--color-black);
|
|
887
|
+
}
|
|
888
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_container {
|
|
889
|
+
display: flex;
|
|
890
|
+
flex-direction: column;
|
|
891
|
+
gap: var(--spacing-xl);
|
|
892
|
+
}
|
|
893
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_wrapper {
|
|
894
|
+
display: flex;
|
|
895
|
+
align-items: center;
|
|
896
|
+
justify-content: space-between;
|
|
897
|
+
gap: var(--spacing-xl);
|
|
898
|
+
}
|
|
899
|
+
@media (max-width: 768px) {
|
|
900
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_wrapper {
|
|
901
|
+
flex-direction: column;
|
|
902
|
+
}
|
|
903
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_wrapper .PracticePathCards_module_ctaWrapper {
|
|
904
|
+
width: 100%;
|
|
905
|
+
padding: 0 var(--spacing-lg);
|
|
906
|
+
}
|
|
907
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_wrapper .PracticePathCards_module_ctaWrapper .PracticePathCards_module_cta {
|
|
908
|
+
width: 100%;
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_content {
|
|
912
|
+
display: flex;
|
|
913
|
+
flex-direction: column;
|
|
914
|
+
gap: var(--spacing-sm);
|
|
915
|
+
}
|
|
916
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_cards {
|
|
917
|
+
display: flex;
|
|
918
|
+
flex-direction: row;
|
|
919
|
+
overflow: hidden;
|
|
920
|
+
border-radius: 16px;
|
|
921
|
+
justify-content: center;
|
|
922
|
+
}
|
|
923
|
+
@media (max-width: 768px) {
|
|
924
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_cards {
|
|
925
|
+
flex-direction: column;
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_card {
|
|
929
|
+
width: 33.333%;
|
|
930
|
+
}
|
|
931
|
+
@media (max-width: 768px) {
|
|
932
|
+
.PracticePathCards_module_practice-path-cards .PracticePathCards_module_card {
|
|
426
933
|
width: 100%;
|
|
427
934
|
}
|
|
428
935
|
}
|
|
429
936
|
|
|
430
937
|
/* src/widgets/Teaser5050With3Text/Teaser5050With3Text.module.scss */
|
|
431
|
-
.
|
|
938
|
+
.Teaser5050With3Text_module_teaser5050-3text {
|
|
432
939
|
width: 100%;
|
|
433
940
|
}
|
|
434
|
-
.
|
|
941
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_container {
|
|
435
942
|
display: flex;
|
|
436
943
|
flex-direction: column;
|
|
437
944
|
gap: var(--spacing-xl);
|
|
438
945
|
}
|
|
439
|
-
.
|
|
946
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_content {
|
|
440
947
|
display: flex;
|
|
441
948
|
flex-direction: row;
|
|
442
949
|
align-items: center;
|
|
443
950
|
justify-content: center;
|
|
444
951
|
gap: var(--spacing-xl);
|
|
445
952
|
}
|
|
446
|
-
.
|
|
953
|
+
.Teaser5050With3Text_module_teaser5050-3text.Teaser5050With3Text_module_right .Teaser5050With3Text_module_content {
|
|
447
954
|
flex-direction: row-reverse;
|
|
448
955
|
}
|
|
449
|
-
.
|
|
956
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_title {
|
|
450
957
|
color: var(--color-black);
|
|
451
958
|
}
|
|
452
|
-
.
|
|
959
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_image {
|
|
453
960
|
width: 50%;
|
|
454
961
|
border-radius: 16px;
|
|
455
962
|
}
|
|
456
963
|
@media (max-width: 768px) {
|
|
457
|
-
.
|
|
964
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_container {
|
|
458
965
|
padding: var(--spacing-lg) var(--spacing-md);
|
|
459
966
|
gap: 0;
|
|
460
967
|
}
|
|
461
|
-
.
|
|
968
|
+
.Teaser5050With3Text_module_teaser5050-3text.Teaser5050With3Text_module_right .Teaser5050With3Text_module_container {
|
|
462
969
|
gap: var(--spacing-xl);
|
|
463
970
|
}
|
|
464
|
-
.
|
|
971
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_content {
|
|
465
972
|
flex-direction: column;
|
|
466
973
|
}
|
|
467
|
-
.
|
|
974
|
+
.Teaser5050With3Text_module_teaser5050-3text.Teaser5050With3Text_module_right .Teaser5050With3Text_module_content {
|
|
468
975
|
flex-direction: column-reverse;
|
|
469
976
|
gap: var(--spacing-xl);
|
|
470
977
|
}
|
|
471
|
-
.
|
|
978
|
+
.Teaser5050With3Text_module_teaser5050-3text .Teaser5050With3Text_module_image {
|
|
472
979
|
width: 100%;
|
|
473
980
|
padding: 0;
|
|
474
981
|
}
|
|
475
982
|
}
|
|
476
983
|
|
|
477
984
|
/* src/widgets/Teaser5050WithCta/Teaser5050WithCta.module.scss */
|
|
478
|
-
.
|
|
985
|
+
.Teaser5050WithCta_module_teaser5050 {
|
|
479
986
|
width: 100%;
|
|
480
987
|
}
|
|
481
|
-
.
|
|
988
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_container {
|
|
482
989
|
display: flex;
|
|
483
990
|
flex-direction: row;
|
|
484
991
|
align-items: center;
|
|
485
992
|
justify-content: center;
|
|
486
993
|
}
|
|
487
|
-
.
|
|
994
|
+
.Teaser5050WithCta_module_teaser5050.Teaser5050WithCta_module_right .Teaser5050WithCta_module_container {
|
|
488
995
|
flex-direction: row-reverse;
|
|
489
996
|
}
|
|
490
|
-
.
|
|
997
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_wrapper {
|
|
491
998
|
display: flex;
|
|
492
999
|
flex-direction: column;
|
|
493
1000
|
gap: var(--spacing-md);
|
|
494
1001
|
padding: 0 var(--spacing-5xl);
|
|
495
1002
|
width: 50%;
|
|
496
1003
|
}
|
|
497
|
-
.
|
|
1004
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_title {
|
|
498
1005
|
color: var(--color-black);
|
|
499
1006
|
}
|
|
500
|
-
.
|
|
1007
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_image {
|
|
501
1008
|
width: 50%;
|
|
502
1009
|
border-radius: 16px;
|
|
503
1010
|
}
|
|
504
1011
|
@media (max-width: 768px) {
|
|
505
|
-
.
|
|
1012
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_container {
|
|
506
1013
|
flex-direction: column-reverse;
|
|
507
1014
|
gap: var(--spacing-xl);
|
|
508
1015
|
}
|
|
509
|
-
.
|
|
1016
|
+
.Teaser5050WithCta_module_teaser5050.Teaser5050WithCta_module_right .Teaser5050WithCta_module_container {
|
|
510
1017
|
flex-direction: column-reverse;
|
|
511
1018
|
}
|
|
512
|
-
.
|
|
513
|
-
.
|
|
1019
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_wrapper,
|
|
1020
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_image {
|
|
514
1021
|
width: 100%;
|
|
515
1022
|
padding: 0;
|
|
516
1023
|
}
|
|
517
|
-
.
|
|
1024
|
+
.Teaser5050WithCta_module_teaser5050 .Teaser5050WithCta_module_cta {
|
|
518
1025
|
width: 100%;
|
|
519
1026
|
}
|
|
520
1027
|
}
|