-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
634 lines (557 loc) · 32.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<!doctype html>
<html class="h-100" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<meta name="description" content="A well made and handcrafted Bootstrap 5 template">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon.png">
<meta name="author" content="Holger Koenemann">
<meta name="generator" content="Eleventy v2.0.0">
<meta name="HandheldFriendly" content="true">
<title>Klar HTML Template - Frontpage one</title>
<link rel="stylesheet" href="css/theme.min.css">
<style>
/* inter-300 - latin */
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-300.woff2') format('woff2'),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-300.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-400 - latin */
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-regular.woff2') format('woff2'),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-regular.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-500.woff2') format('woff2'),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-500.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-700.woff2') format('woff2'),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-700.woff') format('woff');
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
</style>
</head>
<body class="bg-black text-white mt-0" data-bs-spy="scroll" data-bs-target="#navScroll">
<nav id="navScroll" class="navbar navbar-dark bg-black fixed-top px-vw-5" tabindex="0">
<div class="container">
<a class="navbar-brand pe-md-4 fs-4 col-12 col-md-auto text-center" href="index.html">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-stack"
viewBox="0 0 16 16">
<path
d="m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.598.598 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.598.598 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.598.598 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535L7.733.063z" />
<path
d="m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.598.598 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.659z" />
</svg>
<span class="ms-md-1 mt-1 fw-bolder me-md-5">Klar</span>
</a>
<ul class="navbar-nav mx-auto mb-2 mb-lg-0 list-group list-group-horizontal">
<li class="nav-item">
<a class="nav-link fs-5" href="index.html" aria-label="Homepage">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5" href="content.html" aria-label="A sample content page">
Content
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5" href="system.html" aria-label="A system message page">
System
</a>
</li>
</ul>
<a href="https://templatedeck.com/klar-html-template.html" aria-label="Download this template"
class="btn btn-outline-light">
<small>Download Template</small>
</a>
</div>
</nav>
<main>
<div class="w-100 overflow-hidden position-relative bg-black text-white" data-aos="fade">
<div class="position-absolute w-100 h-100 bg-black opacity-75 top-0 start-0"></div>
<div class="container py-vh-4 position-relative mt-5 px-vw-5 text-center">
<div class="row d-flex align-items-center justify-content-center py-vh-5">
<div class="col-12 col-xl-10">
<span class="h5 text-secondary fw-lighter">Our Mission</span>
<h1 class="display-huge mt-3 mb-3 lh-1">We do ordinary stuff for cool people</h1>
</div>
<div class="col-12 col-xl-8">
<p class="lead text-secondary">We are some sort of DAO working with AI, NFT´s, web 4.0 and the so called
blockchain...in the Metaverse. You don´t understand a word? No problem, we neither!</p>
</div>
<div class="col-12 text-center">
<a href="#" class="btn btn-xl btn-light">Join us
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="w-100 position-relative bg-black text-white bg-cover d-flex align-items-center">
<div class="container-fluid px-vw-5">
<div class="position-absolute w-100 h-50 bg-dark bottom-0 start-0"></div>
<div class="row d-flex align-items-center position-relative justify-content-center px-0 g-5">
<div class="col-12 col-lg-6">
<img src="img/webp/abstract18.webp" width="2280" height="1732" alt="abstract image"
class="img-fluid position-relative rounded-5 shadow" data-aos="fade-up">
</div>
<div class="col-12 col-md-6 col-lg-3">
<img src="img/webp/abstract6.webp" width="1116" height="1578" alt="abstract image"
class="img-fluid position-relative rounded-5 shadow" data-aos="fade-up" data-aos-duration="2000">
</div>
<div class="col-12 col-md-6 col-lg-3">
<img src="img/webp/abstract9.webp" width="1116" height="848" alt="abstract image"
class="img-fluid position-relative rounded-5 shadow" data-aos="fade-up" data-aos-duration="3000">
</div>
</div>
</div>
</div>
<div class="bg-dark">
<div class="container px-vw-5 py-vh-5">
<div class="row d-flex align-items-center">
<div class="col-12 col-lg-7 text-lg-end" data-aos="fade-right">
<span class="h5 text-secondary fw-lighter">What we do</span>
<h2 class="display-4">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</h2>
</div>
<div class="col-12 col-lg-5" data-aos="fade-left">
<h3 class="pt-5">Product Design & Strategy</h3>
<p class="text-secondary">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.<br>
<a href="#" class="link-fancy link-fancy-light me-2">Tell me more</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-arrow-right-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z" />
</svg>
</p>
<h3 class="border-top border-secondary pt-5 mt-5">Development & Engineering</h3>
<p class="text-secondary">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.<br>
<a href="#" class="link-fancy link-fancy-light me-2">Tell me more</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-arrow-right-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z" />
</svg>
</p>
</div>
</div>
</div>
</div>
<div class="bg-black py-vh-3">
<div class="container bg-black px-vw-5 py-vh-3 rounded-5 shadow">
<div class="row gx-5">
<div class="col-12 col-md-6">
<div class="card bg-transparent mb-5" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/webp/abstract3.webp" width="582" height="327" alt="abstract image"
class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Ipsum dolor est</h2>
<p class="pb-4 text-secondary">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.</p>
<a href="#" class="link-fancy link-fancy-light">Read more</a>
</div>
</div>
</div>
<div class="card bg-transparent" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/webp/abstract2.webp" width="582" height="442" alt="abstract image"
class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Ipsum dolor est</h2>
<p class="pb-4 text-secondary">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.</p>
<a href="#" class="link-fancy link-fancy-light">Read more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="p-5 pt-0 mt-5" data-aos="fade">
<span class="h5 text-secondary fw-lighter">What we don´t know</span>
<h2 class="display-4">There is a lot we don´t know. Here is a small sneak peek</h2>
</div>
<div class="card bg-transparent mb-5 mt-5" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/webp/abstract17.webp" width="582" height="390" alt="abstract image"
class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Ipsum dolor est</h2>
<p class="pb-4 text-secondary">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.</p>
<a href="#" class="link-fancy link-fancy-light">Read more</a>
</div>
</div>
</div>
<div class="card bg-transparent" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/webp/abstract4.webp" width="582" height="327" alt="abstract image"
class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Ipsum dolor est</h2>
<p class="pb-4 text-secondary">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.</p>
<a href="#" class="link-fancy link-fancy-light">Read more</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-dark position-relative">
<div class="container px-vw-5 py-vh-5">
<div class="row d-flex align-items-center">
<div class="col-12 col-lg-7">
<img class="img-fluid rounded-5 mb-n5 shadow" src="img/webp/person9.webp" width="512" height="512"
alt="a nice person" loading="lazy" data-aos="zoom-in-right">
<img class="img-fluid rounded-5 ms-5 mb-n5 shadow" src="img/webp/person11.webp" width="512" height="512"
alt="another nice person" loading="lazy" data-aos="zoom-in-up">
</div>
<div class="col-12 col-lg-5 bg-dark rounded-5 py-5" data-aos="fade">
<span class="h5 text-secondary fw-lighter">Do you like faces?</span>
<h2 class="display-4">We constantly adding new images to our website. Does it make sense? No!</h2>
</div>
</div>
</div>
</div>
<div class="bg-black">
<div class="container px-vw-5 py-vh-5">
<div class="row d-flex align-items-center">
<div class="col-12 col-lg-5 text-center text-lg-end" data-aos="zoom-in-right">
<span class="h5 text-secondary fw-lighter">What we charge</span>
<h2 class="display-4">You get all our knowledge for one simple price</h2>
</div>
<div class="col-12 col-lg-7 bg-dark rounded-5 py-vh-3 text-center my-5" data-aos="zoom-in-up">
<h2 class="display-huge mb-5">
<span class="fs-4 me-2 fw-light">$</span><span class="border-bottom border-5">499</span><span
class="fs-6 fw-light">/day</span>
</h2>
<p class="lead text-secondary">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<a href="#" class="btn btn-xl btn-light">Sign up
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="container-fluid px-vw-5 position-relative" data-aos="fade">
<div class="position-absolute w-100 h-50 bg-black top-0 start-0"></div>
<div class="position-relative py-vh-5 bg-cover bg-center rounded-5"
style="background-image: url(img/webp/abstract12.webp)">
<div class="container bg-black px-vw-5 py-vh-3 rounded-5 shadow">
<div class="row d-flex align-items-center">
<div class="col-6 d-flex align-items-center bg-dark shadow rounded-5 p-0" data-aos="zoom-in-up">
<div class="row d-flex justify-content-center">
<div class="col-12">
<img src="img/webp/person103.webp" width="684" height="457" alt="our CEO with some nice numbers"
class="img-fluid rounded-5" loading="lazy">
</div>
<div class="col-12 col-lg-10 col-xl-8 text-center my-5">
<p class="lead border-bottom pb-4 border-secondary">"Lorem ipsum dolor sit amet, consetetur sadipscing
elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea
takimata sanctus est Lorem ipsum dolor sit amet."</p>
<p class="text-secondary text-center">Jane Doe, CEO</p>
</div>
</div>
</div>
<div class="col-5 offset-1">
<span class="h5 text-secondary fw-lighter">The numbers</span>
<h2 class="display-huge fw-bolder" data-aos="zoom-in-left">+400</h2>
<p class="h4 fw-lighter text-secondary">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr.
</p>
<h2 class="display-huge fw-bolder border-top border-secondary pt-5 mt-5" data-aos="zoom-in-left">78.981
</h2>
<p class="h4 fw-lighter text-secondary">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr.
</p>
<h2 class="display-huge fw-bolder border-top border-secondary pt-5 mt-5" data-aos="zoom-in-left">98%</h2>
<p class="h4 fw-lighter text-secondary">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="bg-dark py-vh-5">
<div class="container px-vw-5">
<div class="row d-flex gx-5 align-items-center">
<div class="col-12 col-lg-6">
<div class="rounded-5 bg-black p-5 shadow" data-aos="zoom-in-right">
<div class="fs-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
</div>
<p class="text-secondary lead">"Lorem ipsum dolor sit amet, consectetur tempor incididunt ut labore et
dolore magna aliqua ullamco laboris nisi ut aliquip ex ea commodo consequat."</p>
<div class="d-flex justify-content-start align-items-center border-top border-secondary pt-3">
<img src="img/webp/person14.webp" width="96" height="96" class="rounded-circle me-3" alt="a nice person"
data-aos="fade" loading="lazy">
<div>
<span class="h6 fw-5">Jane Doemunsky</span><br>
<small class="text-secondary">COO, The Boo Corp.</small>
</div>
</div>
</div>
<div class="rounded-5 bg-black p-5 shadow mt-5" data-aos="zoom-in-right">
<div class="fs-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-half" viewBox="0 0 16 16">
<path
d="M5.354 5.119 7.538.792A.516.516 0 0 1 8 .5c.183 0 .366.097.465.292l2.184 4.327 4.898.696A.537.537 0 0 1 16 6.32a.548.548 0 0 1-.17.445l-3.523 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256a.52.52 0 0 1-.146.05c-.342.06-.668-.254-.6-.642l.83-4.73L.173 6.765a.55.55 0 0 1-.172-.403.58.58 0 0 1 .085-.302.513.513 0 0 1 .37-.245l4.898-.696zM8 12.027a.5.5 0 0 1 .232.056l3.686 1.894-.694-3.957a.565.565 0 0 1 .162-.505l2.907-2.77-4.052-.576a.525.525 0 0 1-.393-.288L8.001 2.223 8 2.226v9.8z" />
</svg>
</div>
<p class="text-secondary lead">"Lorem ipsum dolor sit amet, consectetur tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam. quis nostrud exercitation ullamco laboris nisi ut aliquip
ex ea commodo consequat."</p>
<div class="d-flex justify-content-start align-items-center border-top border-secondary pt-3">
<img src="img/webp/person13.webp" width="96" height="96" class="rounded-circle me-3" alt="a nice person"
data-aos="fade" loading="lazy">
<div>
<span class="h6 fw-5">Jane Doemunsky</span><br>
<small class="text-secondary">COO, The Boo Corp.</small>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="p-5 pt-0" data-aos="fade">
<span class="h5 text-secondary fw-lighter">What others have to say</span>
<h2 class="display-4">Invidunt ut labore et dolore magna aliquyam erat.</h2>
</div>
<div class="rounded-5 bg-black p-5 shadow mt-5 gradient" data-aos="zoom-in-left">
<div class="fs-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
</div>
<p class="lead">"Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat."</p>
<div class="d-flex justify-content-start align-items-center border-top pt-3">
<img src="img/webp/person16.webp" width="96" height="96" class="rounded-circle me-3" alt="a nice person"
data-aos="fade" loading="lazy">
<div>
<span class="h6 fw-5">Jane Doemunsky</span><br>
<small>COO, The Boo Corp.</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-black border-top border-dark">
<div class="container py-vh-4 text-secondary fw-lighter">
<div class="row">
<div class="col-12 col-lg-5 py-4 text-center text-lg-start">
<a class="navbar-brand pe-md-4 fs-4 col-12 col-md-auto text-center" href="index.html">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-stack"
viewBox="0 0 16 16">
<path
d="m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.598.598 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.598.598 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.598.598 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535L7.733.063z" />
<path
d="m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.598.598 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.659z" />
</svg>
<span class="ms-md-1 mt-1 fw-bolder me-md-5">Klar</span>
</a>
</div>
<div class="col border-end border-dark">
<span class="h6">Company</span>
<ul class="nav flex-column">
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">About us</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Legal</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Career</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Contact</a>
</li>
</ul>
</div>
<div class="col border-end border-dark">
<span class="h6">Services</span>
<ul class="nav flex-column">
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Pricing</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Products</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Customers</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Portfolio</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Success Stories</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">More</a>
</li>
</ul>
</div>
<div class="col">
<span class="h6">Support</span>
<ul class="nav flex-column">
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">About us</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Legal</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Career</a>
</li>
<li class="nav-item">
<a href="#" class="link-fancy link-fancy-light">Contact</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container text-center small py-vh-2 border-top border-dark">Made by
<a href="https://templatedeck.com" class="link-fancy link-fancy-light" target="_blank">templatedeck.com</a>
Distributed by <a href="https://themewagon.com" class="link-fancy link-fancy-light" target="_blank">ThemeWagon</a>
</div>
</footer>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/aos.js"></script>
<script>
AOS.init({
duration: 800, // values from 0 to 3000, with step 50ms
});
</script>
<script>
let scrollpos = window.scrollY;
const header = document.querySelector(".navbar");
const header_height = header.offsetHeight;
const add_class_on_scroll = () => header.classList.add("scrolled", "shadow-sm");
const remove_class_on_scroll = () => header.classList.remove("scrolled", "shadow-sm");
window.addEventListener('scroll', function () {
scrollpos = window.scrollY;
if (scrollpos >= header_height) { add_class_on_scroll(); }
else { remove_class_on_scroll(); }
console.log(scrollpos);
})
</script>
</body>
</html>