@leuffen/themejs1 2.0.7 → 2.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/docs/CNAME +1 -0
  2. package/docs/_config.yml +34 -0
  3. package/docs/_includes/navbar.html +16 -0
  4. package/docs/_layouts/blank.html +18 -0
  5. package/docs/_layouts/default.html +27 -0
  6. package/docs/assets/ani.svg +5 -0
  7. package/docs/assets/dist/index.js +16091 -0
  8. package/docs/assets/dist/index.js.map +1 -0
  9. package/docs/assets/dist/style.css +1095 -0
  10. package/docs/assets/dist/style.css.map +1 -0
  11. package/docs/assets/dist/style.js +28 -0
  12. package/docs/assets/dist/style.js.map +1 -0
  13. package/docs/assets/morphing.svg +5 -0
  14. package/docs/pages/html.html +11 -0
  15. package/docs/pages/index.md +39 -0
  16. package/elements/e-card-default/e-card-default.scss +18 -0
  17. package/elements/e-card-default/e-card-default.ts +13 -0
  18. package/elements/elements.scss +1 -0
  19. package/elements/elements.ts +1 -0
  20. package/package.json +5 -1
  21. package/sections/_defaults.scss +20 -0
  22. package/sections/cta-base/cta-base.scss +15 -0
  23. package/sections/cta-base/cta-base.ts +12 -0
  24. package/sections/cta-form/cta-form.scss +21 -0
  25. package/sections/cta-form/cta-form.ts +20 -0
  26. package/sections/footer-base/footer-base.scss +59 -0
  27. package/sections/footer-base/footer-base.ts +17 -0
  28. package/sections/hero-max/hero-max.scss +100 -0
  29. package/sections/hero-max/hero-max.ts +21 -0
  30. package/sections/hero-ribbon/hero-ribbon.scss +37 -0
  31. package/sections/hero-ribbon/hero-ribbon.ts +20 -0
  32. package/sections/hero-title-small/hero-title-small.scss +28 -0
  33. package/sections/hero-title-small/hero-title-small.ts +15 -0
  34. package/sections/navbar-blox/navbar-blox.scss +177 -0
  35. package/sections/navbar-blox/navbar-blox.ts +54 -0
  36. package/sections/sec-card-2col/sec-card-2col.scss +35 -0
  37. package/sections/sec-card-2col/sec-card-2col.ts +20 -0
  38. package/sections/sec-card-feature/sec-card-feature.scss +35 -0
  39. package/sections/sec-card-feature/sec-card-feature.ts +22 -0
  40. package/sections/sec-legal-content/sec-legal-content.scss +46 -0
  41. package/sections/sec-legal-content/sec-legal-content.ts +20 -0
  42. package/sections/sec-multi-card/sec-multi-card.scss +22 -0
  43. package/sections/sec-multi-card/sec-multi-card.ts +18 -0
  44. package/sections/sec-testimonial-ribbon/sec-testimonial-ribbon.scss +52 -0
  45. package/sections/sec-testimonial-ribbon/sec-testimonial-ribbon.ts +26 -0
  46. package/sections/sections.scss +14 -0
  47. package/sections/sections.ts +13 -0
  48. package/themes/_general/root-format.scss +108 -0
  49. package/themes/_vendor/font-bootstrap-icons.scss +4022 -0
  50. package/themes/_vendor/font-ubuntu.scss +38 -0
  51. package/themes/theme1/index.scss +119 -0
  52. package/templates/theme1/leistungen/_default.de.md +0 -68
@@ -0,0 +1,1095 @@
1
+ /*!***************************************************************************************************************************************!*\
2
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/sass-loader/dist/cjs.js!./demo_styles.scss ***!
3
+ \***************************************************************************************************************************************/
4
+ @charset "UTF-8";
5
+ joda-content {
6
+ --joda-init: true;
7
+ }
8
+
9
+ :root {
10
+ --as-image-aspect-ratio: 16 / 9;
11
+ }
12
+
13
+ .do-image {
14
+ --joda-use: image();
15
+ }
16
+
17
+ .as__image {
18
+ width: 100%;
19
+ position: relative;
20
+ }
21
+ .as__image > .image {
22
+ width: 100%;
23
+ height: 100%;
24
+ aspect-ratio: var(--as-image-aspect-ratio, 4/5);
25
+ }
26
+ .as__image > .image > img {
27
+ object-fit: cover;
28
+ width: 100%;
29
+ height: 100%;
30
+ }
31
+
32
+ .use-map {
33
+ --joda-use: map();
34
+ }
35
+
36
+ .as__map {
37
+ width: 100%;
38
+ aspect-ratio: 21/9;
39
+ position: relative;
40
+ }
41
+ .as__map .as__map-overlay {
42
+ position: absolute;
43
+ width: 100%;
44
+ height: 100%;
45
+ }
46
+ .as__map .as__map-overlay > img {
47
+ position: absolute;
48
+ width: 100%;
49
+ height: 100%;
50
+ object-fit: cover;
51
+ filter: opacity(0.5);
52
+ }
53
+ .as__map .as__map-overlay > div {
54
+ display: flex;
55
+ align-items: center;
56
+ justify-content: center;
57
+ position: absolute;
58
+ height: 100%;
59
+ width: 100%;
60
+ z-index: 99;
61
+ text-align: center;
62
+ }
63
+ :root {
64
+ --layout-navbar-style: default;
65
+ --layout-navbar-position: fixed;
66
+ --as-minibar-height: 24px;
67
+ --as-minibar-background: #21446b;
68
+ --as-minibar-text-color: white;
69
+ }
70
+
71
+ .use-navbar {
72
+ --joda-use: navbar();
73
+ }
74
+
75
+ .as__navbar {
76
+ height: auto;
77
+ top: 0;
78
+ width: 100%;
79
+ transition: opacity 1s ease-in-out;
80
+ position: fixed;
81
+ z-index: 999;
82
+ isolation: isolate;
83
+ opacity: 1;
84
+ }
85
+ .as__navbar.fixed {
86
+ position: fixed;
87
+ top: 0;
88
+ width: 100%;
89
+ }
90
+ .as__navbar.absolute {
91
+ position: absolute;
92
+ top: 0;
93
+ width: 100%;
94
+ }
95
+ .as__navbar.auto-fixed.scrolled {
96
+ opacity: 0;
97
+ }
98
+ .as__navbar.auto-fixed.scrolled.fixed {
99
+ opacity: 1;
100
+ position: fixed;
101
+ }
102
+ .as__navbar .navbar-brand {
103
+ display: block;
104
+ height: 84px;
105
+ max-width: 220px;
106
+ width: 220px;
107
+ }
108
+ .as__navbar .navbar-brand img {
109
+ object-fit: contain;
110
+ object-position: left center;
111
+ height: 100%;
112
+ width: 100%;
113
+ }
114
+ .as__navbar .as__minibar {
115
+ overflow: hidden;
116
+ color: var(--as-minibar-text-color);
117
+ background: var(--as-minibar-background);
118
+ height: var(--as-minibar-height, 24px);
119
+ transition: height 0.3s ease-in-out;
120
+ z-index: 9999;
121
+ }
122
+ .as__navbar .as__minibar ul {
123
+ text-align: right;
124
+ text-decoration: none;
125
+ list-style-type: none;
126
+ }
127
+ .as__navbar .as__minibar ul li {
128
+ display: inline-block;
129
+ margin: 0 0.5rem;
130
+ }
131
+ .as__navbar .as__minibar ul li a {
132
+ text-decoration: none;
133
+ }
134
+ .as__navbar .as__minibar ul li a:hover {
135
+ text-decoration: underline;
136
+ }
137
+ .as__navbar .as__mainbar .nav-link {
138
+ padding-right: 0.8rem;
139
+ padding-left: 0.8rem;
140
+ }
141
+ .as__navbar .as__mainbar .navbar-collapse.show {
142
+ background: var(--as-mainbar-background, white);
143
+ }
144
+ .as__navbar .as__mainbar .navbar-toggler {
145
+ background: rgba(255, 255, 255, 0.5);
146
+ }
147
+
148
+ .as__navbar.scrolled .as__minibar {
149
+ height: 0;
150
+ }
151
+
152
+ /* Theme specific styles */
153
+ .as__navbar.default .as__mainbar {
154
+ background: var(--as-mainbar-background, white);
155
+ border-bottom: 1px solid var(--bs-primary, #0d6efd);
156
+ box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
157
+ }
158
+ .as__navbar.default .as__minibar {
159
+ font-size: 13px;
160
+ line-height: 24px;
161
+ background: var(--as-minibar-background, #007bff);
162
+ }
163
+ .as__navbar.default .as__minibar a {
164
+ color: white;
165
+ }
166
+
167
+ .as__navbar.transparent .as__minibar {
168
+ border: 0;
169
+ font-size: 13px;
170
+ line-height: 24px;
171
+ }
172
+ .as__navbar.transparent .as__mainbar {
173
+ background-color: transparent !important;
174
+ transition: all 0.3s ease-in-out;
175
+ border: 0;
176
+ }
177
+ .as__navbar.transparent .as__mainbar a {
178
+ font-weight: bolder;
179
+ text-shadow: 1px 1px 1px var(--bs-light, #ccc), -1px -1px 1px var(--bs-light, #ccc), 1px -1px 1px var(--bs-light, #ccc), -1px 1px 1px var(--bs-light, #ccc);
180
+ }
181
+
182
+ .as__navbar.transparent.scrolled .as__mainbar {
183
+ background-color: var(--as-mainbar-background, white) !important;
184
+ border-bottom: 1px solid var(--bs-primary, #0d6efd);
185
+ box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
186
+ }
187
+ .as__navbar.transparent.scrolled .as__minibar {
188
+ height: 0;
189
+ }
190
+
191
+ .use-navblox {
192
+ --joda-class: as__navblox;
193
+ --as-navblox-secondary-color: #21446b;
194
+ --as-navblox-nav-bg: #21446b;
195
+ --as-navblox-nav-text: #fff;
196
+ }
197
+
198
+ .as__navblox .row > div {
199
+ position: relative;
200
+ background: var(--as-navblox-secondary-color, #21446b);
201
+ color: white;
202
+ border-left: 1px dashed white;
203
+ min-height: 100px;
204
+ display: flex;
205
+ align-items: center;
206
+ justify-content: center;
207
+ padding: 0;
208
+ }
209
+ .as__navblox .row > div.block i.bi::before {
210
+ line-height: inherit;
211
+ padding-right: 0.5rem;
212
+ }
213
+ .as__navblox .row > div.block a {
214
+ display: flex;
215
+ align-items: center;
216
+ padding: 15px;
217
+ line-height: 1.5rem;
218
+ color: inherit;
219
+ text-decoration: none;
220
+ transition: all 0.15s ease-in-out;
221
+ }
222
+ .as__navblox .row > div.block a:hover {
223
+ transform: scale(110%);
224
+ }
225
+ .as__navblox .row > div .navbar-brand {
226
+ position: absolute;
227
+ left: 0;
228
+ right: 0;
229
+ top: 0;
230
+ height: 200px;
231
+ display: flex;
232
+ align-items: center;
233
+ justify-content: center;
234
+ background: white;
235
+ color: #21446b;
236
+ }
237
+ .as__navblox .row > div .navbar-brand img {
238
+ height: 6.5rem;
239
+ width: auto;
240
+ }
241
+ .as__navblox .row > div .navbar-brand a {
242
+ display: flex;
243
+ align-items: center;
244
+ justify-content: center;
245
+ }
246
+ .as__navblox .row > div .navbar-brand span {
247
+ font-size: 2.5rem;
248
+ padding-left: 1rem;
249
+ line-height: 2.5rem;
250
+ }
251
+ .as__navblox .row > div .navbar-brand.mobile {
252
+ position: relative;
253
+ height: 150px;
254
+ width: 100%;
255
+ }
256
+ .as__navblox .sidenav-positioner {
257
+ height: 0 !important;
258
+ min-height: 0 !important;
259
+ }
260
+ .as__navblox .sidenav-positioner .sidenav {
261
+ top: 0;
262
+ right: 0;
263
+ background: var(--as-navblox-nav-bg, #fff);
264
+ color: var(--as-navblox-nav-text, #21446b);
265
+ width: 33vw;
266
+ min-width: 300px;
267
+ position: absolute;
268
+ z-index: 99999;
269
+ overflow: hidden;
270
+ transform: scale(0%);
271
+ transition: all 0.2s ease-in-out;
272
+ padding: 1rem;
273
+ }
274
+ .as__navblox .sidenav-positioner .sidenav ul > li {
275
+ list-style-type: none;
276
+ }
277
+ .as__navblox .sidenav-positioner .sidenav ul > li a {
278
+ padding: 0.5rem 0;
279
+ text-decoration: none;
280
+ color: inherit;
281
+ display: inline-block;
282
+ opacity: 0.8;
283
+ transition: all 0.15s ease-in-out;
284
+ transform: scale(100%);
285
+ }
286
+ .as__navblox .sidenav-positioner .sidenav ul > li a:hover {
287
+ transform: scale(110%);
288
+ opacity: 1;
289
+ }
290
+ .as__navblox .sidenav-positioner .sidenav ul > li a:active {
291
+ font-weight: bold;
292
+ opacity: 1;
293
+ }
294
+
295
+ body.nav-open .sidenav-positioner .sidenav {
296
+ transform: scale(100%);
297
+ }
298
+
299
+ :root {
300
+ --icontext-color: #007bff;
301
+ }
302
+
303
+ .as__textstyle-icontext {
304
+ position: relative;
305
+ }
306
+ .as__textstyle-icontext .text {
307
+ padding-top: 1.2rem;
308
+ padding-left: 3rem !important;
309
+ }
310
+ .as__textstyle-icontext .icon {
311
+ font-size: 38px;
312
+ color: var(--icontext-color, #007bff);
313
+ position: absolute;
314
+ }
315
+
316
+ :root {
317
+ --layout-accordion-auto-open: true;
318
+ }
319
+
320
+ .use-accordion {
321
+ --joda-use: accordion();
322
+ --joda-class: as__accordion;
323
+ }
324
+
325
+ .as__accordion .section-h3 > .content, .as__accordion .section-h3 > .children {
326
+ overflow: hidden;
327
+ max-height: 0;
328
+ transition: max-height 0.25s ease-out;
329
+ }
330
+ .as__accordion .open.section-h3 > .content, .as__accordion .open.section-h3 > .children {
331
+ max-height: var(--orig-height);
332
+ }
333
+ .as__accordion .section-h3 {
334
+ background-color: rgba(0, 0, 0, 0);
335
+ transition: background-color 0.45s ease-out;
336
+ }
337
+ .as__accordion .section-h3.open {
338
+ background-color: var(--as-accordion-open-bg, rgba(220, 224, 229, 0.5));
339
+ }
340
+ .as__accordion .section-h3 > .content, .as__accordion .section-h3 > .children {
341
+ padding-left: 2.5rem;
342
+ }
343
+ .as__accordion .as__accordion-header {
344
+ cursor: pointer;
345
+ text-decoration: none;
346
+ color: inherit;
347
+ margin-top: 2rem;
348
+ padding-bottom: 2rem;
349
+ }
350
+ .as__accordion .as__accordion-header h3 {
351
+ margin: 0;
352
+ padding: 0;
353
+ padding-top: 1rem;
354
+ padding-bottom: 1rem;
355
+ }
356
+ .as__accordion .as__accordion-header h3:hover {
357
+ background-color: var(--as-accordion-hover-bg, rgba(0, 0, 0, 0.02));
358
+ }
359
+ .as__accordion h3::before {
360
+ display: inline-block;
361
+ content: "";
362
+ width: 2.5rem;
363
+ flex-shrink: 0;
364
+ height: 1.25rem;
365
+ margin-right: 0;
366
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d374b'%3E%3Cpath d='M19,11.5v1a.5.5,0,0,1-.5.5H13v5.5a.5.5,0,0,1-.5.5h-1a.5.5,0,0,1-.5-.5V13H5.5a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5H11V5.5a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5V11h5.5A.5.5,0,0,1,19,11.5Z'/%3E%3C/svg%3E");
367
+ background-repeat: no-repeat;
368
+ background-size: 1.25rem;
369
+ background-position: center center;
370
+ }
371
+ .as__accordion .open h2::before, .as__accordion .open h3::before {
372
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d374b'%3E%3Cpath d='M5.5,13a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h13a.5.5,0,0,1,.5.5v1a.5.5,0,0,1-.5.5Z'/%3E%3C/svg%3E");
373
+ }
374
+
375
+ .use-hamburger {
376
+ --joda-use: hamburger();
377
+ }
378
+
379
+ body.nav-open a.as__hamburger {
380
+ width: 3.3em;
381
+ }
382
+ body.nav-open a.as__hamburger > .as__hamburger-bar:nth-child(1) {
383
+ left: 0.6em;
384
+ top: 0;
385
+ transform: rotate(45deg);
386
+ transform-origin: top left;
387
+ }
388
+ body.nav-open a.as__hamburger > .as__hamburger-bar:nth-child(2) {
389
+ opacity: 0;
390
+ }
391
+ body.nav-open a.as__hamburger > .as__hamburger-bar:nth-child(3) {
392
+ left: 0.6em;
393
+ top: 2.2em;
394
+ transform: rotate(-45deg);
395
+ transform-origin: bottom left;
396
+ }
397
+
398
+ a.as__hamburger {
399
+ --hamburger-size: var(--hamburger-size, 0.9rem);
400
+ --hamburger-bar-color: var(--hamburger-bar-color, #8c9b92);
401
+ font-size: var(--hamburger-size, 1rem);
402
+ display: block;
403
+ width: 3.6em;
404
+ height: 2.6em;
405
+ padding: 0 !important;
406
+ position: relative;
407
+ cursor: pointer;
408
+ text-decoration: none !important;
409
+ }
410
+ a.as__hamburger span {
411
+ padding-top: 3.8em;
412
+ display: block;
413
+ }
414
+ a.as__hamburger > .as__hamburger-menu {
415
+ padding-top: 3.8em;
416
+ text-align: center;
417
+ width: 100%;
418
+ color: var(--hamburger-bar-color, #8c9b92);
419
+ }
420
+ a.as__hamburger > .as__hamburger-bar {
421
+ background-color: var(--hamburger-bar-color, #8c9b92);
422
+ display: block;
423
+ height: 0.3em;
424
+ position: absolute;
425
+ right: 0;
426
+ top: 0;
427
+ transition: all 0.2s ease;
428
+ width: 100%;
429
+ }
430
+ a.as__hamburger > .as__hamburger-bar:nth-child(1) {
431
+ top: 0.2em;
432
+ }
433
+ a.as__hamburger > .as__hamburger-bar:nth-child(2) {
434
+ top: 1.2em;
435
+ }
436
+ a.as__hamburger > .as__hamburger-bar:nth-child(3) {
437
+ top: 2.2em;
438
+ }
439
+
440
+ :root {
441
+ --layout-accordion-auto-open: true;
442
+ }
443
+
444
+ .use-screen-mobile {
445
+ --joda-use: screen();
446
+ --layout-type: mobile;
447
+ }
448
+
449
+ .use-screen-desktop {
450
+ --joda-use: screen();
451
+ --layout-type: desktop;
452
+ }
453
+
454
+ .use-screen-laptop {
455
+ --joda-use: screen();
456
+ --layout-type: laptop;
457
+ }
458
+
459
+ .use-screen-tablet {
460
+ --joda-use: screen();
461
+ --layout-type: tablet;
462
+ }
463
+
464
+ .as__screen {
465
+ display: block;
466
+ isolation: isolate;
467
+ position: relative;
468
+ width: auto;
469
+ }
470
+ .as__screen > .as__screen-shadow {
471
+ position: absolute;
472
+ z-index: 0;
473
+ }
474
+ .as__screen > .as__screen-image {
475
+ position: absolute;
476
+ z-index: 1;
477
+ border-radius: 0.3%;
478
+ }
479
+ .as__screen > .as__screen-overlay {
480
+ position: absolute;
481
+ z-index: 2;
482
+ }
483
+ .as__screen .as__screen-image img {
484
+ width: 100%;
485
+ height: 100%;
486
+ object-position: top center;
487
+ object-fit: cover;
488
+ }
489
+ .as__screen.mobile {
490
+ aspect-ratio: 0.5208333333;
491
+ }
492
+ .as__screen.mobile > .as__screen-shadow {
493
+ background-size: 110%;
494
+ background-repeat: no-repeat;
495
+ background-position: center center;
496
+ top: -5%;
497
+ left: -4%;
498
+ width: 112%;
499
+ height: 115%;
500
+ opacity: 0.5;
501
+ }
502
+ .as__screen.mobile > .as__screen-image {
503
+ background-color: white;
504
+ top: 3%;
505
+ left: 8%;
506
+ width: 84%;
507
+ height: 94%;
508
+ overflow: hidden;
509
+ }
510
+ .as__screen.mobile > .as__screen-overlay {
511
+ top: 0;
512
+ left: 0;
513
+ bottom: 0;
514
+ right: 0;
515
+ }
516
+ .as__screen.laptop {
517
+ aspect-ratio: 1.724137931;
518
+ }
519
+ .as__screen.laptop > .as__screen-shadow {
520
+ background-size: 95%;
521
+ background-repeat: no-repeat;
522
+ background-position: center center;
523
+ top: -4%;
524
+ left: -6%;
525
+ width: 112%;
526
+ height: 109%;
527
+ opacity: 0.5;
528
+ }
529
+ .as__screen.laptop > .as__screen-image {
530
+ background-color: white;
531
+ top: 6%;
532
+ left: 11%;
533
+ width: 78%;
534
+ height: 81%;
535
+ overflow: hidden;
536
+ z-index: 3;
537
+ }
538
+ .as__screen.laptop > .as__screen-overlay {
539
+ top: 0;
540
+ left: 0;
541
+ bottom: 0;
542
+ right: 0;
543
+ }
544
+ .as__screen.tablet {
545
+ aspect-ratio: 1.2987012987;
546
+ }
547
+ .as__screen.tablet > .as__screen-shadow {
548
+ background-size: 95%;
549
+ background-repeat: no-repeat;
550
+ background-position: center center;
551
+ top: -5%;
552
+ left: -6%;
553
+ width: 112%;
554
+ height: 110%;
555
+ opacity: 0.5;
556
+ }
557
+ .as__screen.tablet > .as__screen-image {
558
+ background-color: white;
559
+ top: 3%;
560
+ left: 3%;
561
+ width: 94%;
562
+ height: 95%;
563
+ overflow: hidden;
564
+ }
565
+ .as__screen.tablet > .as__screen-overlay {
566
+ top: 0;
567
+ left: 0;
568
+ bottom: 0;
569
+ right: 0;
570
+ }
571
+ .as__screen.desktop {
572
+ aspect-ratio: 1.2195121951;
573
+ }
574
+ .as__screen.desktop > .as__screen-shadow {
575
+ background-size: 100%;
576
+ background-repeat: no-repeat;
577
+ background-position: center center;
578
+ top: -6%;
579
+ left: -2%;
580
+ width: 104%;
581
+ height: 112%;
582
+ opacity: 0.5;
583
+ }
584
+ .as__screen.desktop > .as__screen-image {
585
+ background-color: white;
586
+ top: 6%;
587
+ left: 2%;
588
+ width: 95.5%;
589
+ height: 63%;
590
+ overflow: hidden;
591
+ z-index: 3;
592
+ }
593
+ .as__screen.desktop > .as__screen-overlay {
594
+ top: 0;
595
+ left: 0;
596
+ bottom: 0;
597
+ right: 0;
598
+ }
599
+
600
+ :root {
601
+ --layout-accordion-auto-open: true;
602
+ }
603
+
604
+ .mask {
605
+ mask-size: contain;
606
+ mask-position: center center;
607
+ mask-repeat: no-repeat;
608
+ }
609
+ .mask.shape-blob1 {
610
+ mask-image: var(--shape-blob1);
611
+ -webkit-mask-image: var(--shape-blob1);
612
+ }
613
+ .mask.shape-blob1-anim {
614
+ mask-image: var(--shape-blob1-anim);
615
+ -webkit-mask-image: var(--shape-blob1-anim);
616
+ }
617
+
618
+ :root {
619
+ --layout-accordion-auto-open: true;
620
+ }
621
+
622
+ .use-input {
623
+ --joda-use: input();
624
+ }
625
+
626
+ :root {
627
+ --layout-cols: 8;
628
+ --layout-side-content: "This is some side-content from --layout-side-content" ;
629
+ }
630
+
631
+ :root {
632
+ --layout-cols: 8;
633
+ --layout-side-content: "This is some side-content from --layout-side-content" ;
634
+ }
635
+
636
+ .do-row {
637
+ --joda-use: row();
638
+ }
639
+
640
+ :root {
641
+ --layout-cols: 8;
642
+ --layout-side-content: "This is some side-content from --layout-side-content" ;
643
+ }
644
+
645
+ .use-footer1 {
646
+ --joda-use: footer1();
647
+ --layout-minifooter: #minifooter;
648
+ }
649
+
650
+ .as__footer {
651
+ --as-footer-background: var(--bs-primary, #000);
652
+ --as-footer-text-color: var(--bs-light, #fff);
653
+ --as-footer-link-color: var(--bs-light, #fff);
654
+ background: var(--as-footer-background, #f0f0f0);
655
+ color: var(--as-footer-text-color, #333333);
656
+ padding-top: 4.5rem;
657
+ }
658
+ .as__footer a {
659
+ color: var(--as-footer-text-color, #333333);
660
+ }
661
+ .as__footer .as__footer-column {
662
+ margin-bottom: 3.5rem;
663
+ }
664
+ .as__footer .as__footer-column p {
665
+ margin-bottom: 0.5rem;
666
+ }
667
+ .as__footer .as__footer-column ul {
668
+ padding-left: 0;
669
+ }
670
+ .as__footer .as__footer-column ul li {
671
+ text-decoration: none;
672
+ list-style: none;
673
+ }
674
+ .as__footer .as__footer-minifooter {
675
+ text-align: left;
676
+ margin-top: 2rem;
677
+ }
678
+ .as__footer .as__footer-minifooter > * {
679
+ margin-bottom: 0;
680
+ }
681
+
682
+ :root {
683
+ --as-layout-offset-top: 100px;
684
+ }
685
+
686
+ .do-header {
687
+ --joda-use: header();
688
+ }
689
+
690
+ .as__header .as__header-background img {
691
+ width: 100%;
692
+ height: 100%;
693
+ object-fit: cover;
694
+ object-position: center center;
695
+ }
696
+ .as__header .as__header-main {
697
+ position: relative;
698
+ bottom: 0;
699
+ }
700
+
701
+ .as__header.default .no-image {
702
+ height: 38vh;
703
+ min-height: 250px;
704
+ background: var(--as-border-color, #007bff);
705
+ }
706
+ .as__header.default .as__header-background {
707
+ width: 100%;
708
+ height: 61.8vh;
709
+ min-height: var(--as-header-min-height, 350px);
710
+ overflow: hidden;
711
+ position: relative;
712
+ border-bottom: 10px solid;
713
+ border-bottom-color: var(--as-border-color, #007bff);
714
+ }
715
+ .as__header.default .as__header-background.no-image {
716
+ min-height: unset;
717
+ height: calc(var(--as-layout-offset-top) + 95px);
718
+ background: var(--as-border-color, #007bff);
719
+ }
720
+ .as__header.default .as__header-main {
721
+ position: relative;
722
+ bottom: 0;
723
+ padding-top: 1.5rem;
724
+ }
725
+
726
+ :root {
727
+ --layout-hero-style: fullsize;
728
+ --as-hero-offset: 110px;
729
+ --as-hero-height-adjustement: 10px;
730
+ --as-min-hero-height: 500px;
731
+ }
732
+
733
+ .do-hero1 {
734
+ --joda-use: hero1();
735
+ }
736
+
737
+ .as__hero1 {
738
+ border-bottom: 10px solid;
739
+ border-bottom-color: var(--as--border-color, #007bff);
740
+ margin-top: var(--as-hero-offset);
741
+ }
742
+ .as__hero1 .full_height {
743
+ min-height: max(100svh - var(--as-hero-height-adjustement) - var(--as-hero-offset), var(--as-min-hero-height));
744
+ }
745
+ .as__hero1 .v-hide {
746
+ visibility: hidden;
747
+ }
748
+ .as__hero1 .as__hero1_content-row.mobile {
749
+ min-height: 66vh;
750
+ align-content: center;
751
+ }
752
+ .as__hero1 .as__hero1_image-mobile img {
753
+ max-height: 60svh;
754
+ height: 100%;
755
+ width: 100%;
756
+ min-height: 33svh;
757
+ min-width: inherit;
758
+ object-fit: cover;
759
+ object-position: center center;
760
+ }
761
+ .as__hero1 .as__hero1_image {
762
+ overflow: hidden;
763
+ }
764
+ .as__hero1 .as__hero1_image img {
765
+ height: 100%;
766
+ width: 100%;
767
+ min-height: inherit;
768
+ min-width: inherit;
769
+ object-fit: cover;
770
+ object-position: center center;
771
+ }
772
+ .as__hero1 .image-overlay {
773
+ background-color: var(--as-image-overlay-color);
774
+ top: 0;
775
+ z-index: 999;
776
+ bottom: 0;
777
+ left: 0;
778
+ right: 0;
779
+ }
780
+ .as__hero1 .image-overlay.overlay-fade {
781
+ background-color: unset;
782
+ background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgb(255, 255, 255));
783
+ }
784
+
785
+ .page1 {
786
+ --section-spaceing: 7.5rem;
787
+ --bs-primary: #E0B731;
788
+ --bs-secondary: #9BB1B7;
789
+ --bs-success: #2E4870;
790
+ --bs-danger: #A87E90 ;
791
+ --bs-light: #FBFAFA;
792
+ --layout-break1: xl;
793
+ --section-spacing: 4.5rem;
794
+ --background-light: #ffffff;
795
+ --as-section-spacing: 4.5rem;
796
+ }
797
+ .page1 h3 i.bi::before {
798
+ line-height: inherit;
799
+ vertical-align: sub;
800
+ color: var(--bs-primary, #000);
801
+ }
802
+ .page1 .section-h1 {
803
+ --joda-class: header1;
804
+ }
805
+ .page1 .section-h1 .content {
806
+ padding-right: 60px;
807
+ --joda-class: container;
808
+ }
809
+ .page1 .section-h1 .content h1 {
810
+ --joda-class: text-center :: display-5 :xl: display-3;
811
+ }
812
+ .page1 .sec2 {
813
+ padding-top: 3rem;
814
+ padding-bottom: var(--section-spaceing);
815
+ --joda-class: container;
816
+ }
817
+ .page1 .sec2 h2 {
818
+ --joda-class: text-center display-4;
819
+ }
820
+ .page1 .sec2 .section-h3 {
821
+ --joda-group: @row;
822
+ --joda-class: col g-5;
823
+ }
824
+ .page1 .sec2 .section-h3 h3 {
825
+ --joda-class: text-success;
826
+ }
827
+ .page1 .showcase {
828
+ padding-top: 10rem;
829
+ }
830
+ .page1 .showcase .content {
831
+ --joda-class: container position-relative;
832
+ }
833
+ .page1 .showcase .content .as__screen:nth-child(1) {
834
+ transform: perspective(60vw) rotateY(calc(-5deg + var(--mouse-x) * 0.02deg)) rotateX(calc(0deg + var(--mouse-y) * 0.002deg));
835
+ }
836
+ .page1 .showcase .content .as__screen:nth-child(2) {
837
+ transform: perspective(60vw) rotateY(calc(10deg + var(--mouse-x) * 0.03deg)) rotateX(calc(0deg + var(--mouse-y) * 0.004deg));
838
+ }
839
+ .page1 .header1 {
840
+ min-height: 60svh;
841
+ position: relative;
842
+ display: flex;
843
+ justify-content: center;
844
+ align-content: center;
845
+ align-items: center;
846
+ text-align: center;
847
+ }
848
+ .page1 .header1 h1 {
849
+ font-style: normal;
850
+ padding: 2rem;
851
+ }
852
+ .page1 .header1 p {
853
+ font-size: 1.5rem;
854
+ font-weight: 300;
855
+ font-style: normal;
856
+ padding: 2rem;
857
+ padding-bottom: 0rem;
858
+ }
859
+ .page1 .header1 .btn {
860
+ --joda-class: shadow;
861
+ }
862
+ .page1 .header1::before {
863
+ position: absolute;
864
+ z-index: -1;
865
+ content: "";
866
+ left: 0;
867
+ top: -100%;
868
+ bottom: 0;
869
+ right: 30px;
870
+ background: linear-gradient(90deg, var(--bs-light) 0%, rgba(0, 0, 0, 0.2) 30%, var(--bs-light) 100%);
871
+ transform: rotateZ(5deg);
872
+ box-shadow: calc(0px - (var(--mouse-x) - 50) * 0.018px) calc(3px - (var(--mouse-y) - 50) * 0.11px) 10px 0 rgba(0, 0, 0, 0.1);
873
+ border-radius: 0 0 80px 0;
874
+ }
875
+ .page1 .sec3 {
876
+ min-height: 60svh;
877
+ position: relative;
878
+ z-index: 2;
879
+ margin-bottom: var(--section-spaceing);
880
+ padding-top: 4rem;
881
+ padding-bottom: 4rem;
882
+ justify-content: center;
883
+ align-content: center;
884
+ align-items: center;
885
+ text-align: center;
886
+ padding-left: 30px;
887
+ }
888
+ .page1 .sec3 h2 {
889
+ --joda-class: display-4;
890
+ padding: 3rem;
891
+ }
892
+ .page1 .sec3 h2 {
893
+ padding-bottom: 3rem;
894
+ }
895
+ .page1 .sec3 .section-h3 {
896
+ --joda-group: @row;
897
+ --joda-class: col g-5;
898
+ text-align: left;
899
+ padding-bottom: 2rem;
900
+ }
901
+ .page1 .sec3 > .content {
902
+ width: 100%;
903
+ --joda-class: container;
904
+ z-index: 2;
905
+ }
906
+ .page1 .sec3 > .children {
907
+ width: 100%;
908
+ --joda-class: container;
909
+ z-index: 1;
910
+ }
911
+ .page1 .sec3::before {
912
+ position: absolute;
913
+ z-index: -1;
914
+ content: "";
915
+ left: 30px;
916
+ top: 0;
917
+ bottom: 0;
918
+ right: 0;
919
+ background: var(--bs-light, #ccc);
920
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
921
+ border-radius: 40px 0 0 40px;
922
+ }
923
+ .page1 .sec4 {
924
+ --joda-class: container;
925
+ }
926
+ .page1 .sec4 .section-h3:nth-child(1) {
927
+ --joda-class: "my-auto :: col-12 order-2 :md: col-6 order-2 :xl: col-4";
928
+ }
929
+ .page1 .sec4 .section-h3:nth-child(2) {
930
+ --joda-class: "my-auto mx-auto :: col-12 order-1 :md: col-12 order-1 :xl: col-4";
931
+ }
932
+ .page1 .sec4 .section-h3:nth-child(3) {
933
+ --joda-class: "my-auto :: col-12 order-3 :md: col-6 order-3 :xl: col-4";
934
+ }
935
+ .page1 .sec4 .section-h3 {
936
+ --joda-group: @row;
937
+ padding-bottom: var(--section-spaceing);
938
+ }
939
+ .page1 .sec4 .section-h3 img {
940
+ --joda-wrap: @d-flex @justify-content-center > @class=ratio ratio-1x1 :md: w-50 :xl: w-100;
941
+ object-fit: cover;
942
+ object-position: center left;
943
+ --joda-class: mask shape-blob1-anim;
944
+ }
945
+ .page1 .dark {
946
+ background: var(--bs-primary, #000);
947
+ color: var(--bs-light, #fff);
948
+ }
949
+ .page1 .dark a {
950
+ color: inherit;
951
+ }
952
+ .page1 nav {
953
+ --joda-class: use-navblox as__navblox;
954
+ --as-navblox-secondary-color: transparent;
955
+ --as-navblox-nav-text: #ccc;
956
+ }
957
+ .page1 nav .as__hamburger {
958
+ --hamburger-bar-color: #ccc;
959
+ --hamburger-size: 0.7rem;
960
+ }
961
+ .page1 footer {
962
+ background: #2d374b;
963
+ --joda-use: footer1();
964
+ --layout-container: container;
965
+ --layout-minifooter: #minifooter;
966
+ }
967
+ .page1 footer .as__footer {
968
+ --as-footer-background: #2d374b;
969
+ }
970
+ .page1 footer p, .page1 footer a {
971
+ color: rgba(255, 255, 255, 0.8);
972
+ }
973
+ .page1 footer a:hover {
974
+ color: rgb(255, 255, 255);
975
+ }
976
+ .page1 footer h3 {
977
+ margin-top: 4rem;
978
+ font-size: 1rem;
979
+ text-transform: uppercase;
980
+ }
981
+
982
+ showcase-element {
983
+ --aspect-ratio: calc(16 / 9);
984
+ }
985
+ showcase-element.big {
986
+ --aspect-ratio: 0.5;
987
+ }
988
+ showcase-element .preview {
989
+ --scale: 0.2;
990
+ --width: 350px;
991
+ --height: calc(var(--width) / var(--aspect-ratio));
992
+ position: relative;
993
+ width: var(--width);
994
+ height: var(--height);
995
+ overflow: hidden;
996
+ display: inline-block;
997
+ border: 3px solid #ccc;
998
+ }
999
+ showcase-element .preview iframe {
1000
+ position: relative;
1001
+ right: calc(var(--width) / var(--scale) / 2 - var(--width) / 2);
1002
+ bottom: calc(var(--height) / var(--scale) / 2 - var(--height) / 2);
1003
+ width: calc(var(--width) / var(--scale));
1004
+ height: calc(var(--height) / var(--scale));
1005
+ transform: scale(var(--scale));
1006
+ }
1007
+ showcase-element .preview .overlay {
1008
+ position: absolute;
1009
+ top: 0;
1010
+ left: 0;
1011
+ right: 0;
1012
+ bottom: 0;
1013
+ background: rgba(0, 0, 0, 0.5);
1014
+ display: flex;
1015
+ align-items: center;
1016
+ justify-content: center;
1017
+ color: #fff;
1018
+ font-size: 1.5rem;
1019
+ font-weight: bold;
1020
+ text-align: center;
1021
+ opacity: 0;
1022
+ transition: opacity 0.3s ease-in-out;
1023
+ cursor: pointer;
1024
+ }
1025
+ showcase-element .preview .overlay:hover {
1026
+ opacity: 1;
1027
+ }
1028
+
1029
+ joda-content {
1030
+ display: none;
1031
+ }
1032
+
1033
+ joda-content.loaded {
1034
+ display: block;
1035
+ }
1036
+
1037
+ joda-content {
1038
+ display: none;
1039
+ }
1040
+
1041
+ joda-content.loaded {
1042
+ display: block;
1043
+ }
1044
+
1045
+ html.loader::before {
1046
+ content: "Seite lädt...";
1047
+ font-family: sans-serif;
1048
+ font-size: 12px;
1049
+ line-height: 10px;
1050
+ position: fixed;
1051
+ text-align: center;
1052
+ color: white;
1053
+ margin-top: 1px;
1054
+ -webkit-animation: leu--site-loader 60s ease-out;
1055
+ animation: leu--site-loader 60s ease-out;
1056
+ display: block;
1057
+ background-color: gray;
1058
+ height: 12px;
1059
+ width: 2%;
1060
+ }
1061
+
1062
+ @keyframes leu--site-loader {
1063
+ 3% {
1064
+ width: 2%;
1065
+ }
1066
+ 5% {
1067
+ width: 50%;
1068
+ }
1069
+ 10% {
1070
+ width: 80%;
1071
+ }
1072
+ 100% {
1073
+ width: 100%;
1074
+ }
1075
+ }
1076
+ body > * {
1077
+ display: none;
1078
+ }
1079
+
1080
+ body.loaded > * {
1081
+ display: block;
1082
+ }
1083
+
1084
+ body {
1085
+ min-height: 3000vh;
1086
+ opacity: 0;
1087
+ transition: opacity 0.25s;
1088
+ }
1089
+
1090
+ body.loaded {
1091
+ min-height: unset;
1092
+ opacity: 1;
1093
+ }
1094
+
1095
+ /*# sourceMappingURL=style.css.map*/