-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics-saas.html
More file actions
1566 lines (1253 loc) · 158 KB
/
analytics-saas.html
File metadata and controls
1566 lines (1253 loc) · 158 KB
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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/favicon/favicon.ico" type="image/x-icon" />
<!-- Map CSS -->
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css" />
<!-- Libs CSS -->
<link rel="stylesheet" href="./assets/css/libs.bundle.css" />
<!--
Theme Sans Serif CSS
Remove the "disabled" attribute if you want to enable Sans Serif for headings.
-->
<link rel="stylesheet" href="./assets/css/theme-sans-serif.bundle.css" id="themeSansSerif" disabled />
<!--
Demo JS
Remove the code below on a production website.
-->
<script src="./assets/js/demo.bundle.js"></script>
<!-- Theme CSS -->
<link rel="stylesheet" href="./assets/css/theme.bundle.css" />
<!-- Title -->
<title>Goodkit</title>
</head>
<body class="bg-light">
<!-- MODALS -->
<!-- Sign in -->
<div class="modal fade" id="modalSignIn" tabindex="-1" role="dialog" aria-labelledby="modalSignInHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Heading -->
<h1 class="mb-4" id="modalSignInHeading">
Sign In
</h1>
<!-- Text -->
<p>
Don’t have an account? <a href="sign-up.html">Sign up</a>
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="signInEmail">
Your email
</label>
<input class="form-control" id="signInEmail" type="email" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group">
<div class="input-group inpit-group-merge">
<input class="form-control" id="signInPassword" placeholder="Your password" type="password" aria-label="Your password" aria-describedby="signInPasswordCaption">
<a class="input-group-text text-decoration-none text-gray-500" id="signInPasswordCaption" data-toggle="password" href="#signInPassword">
<i class="fe fe-eye"></i>
</a>
</div>
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Sign in
</button>
</form>
<!-- Link -->
<a class="fs-sm" href="password-reset.html">
Forgot your password?
</a>
</div>
</div>
</div>
</div>
<!-- Sign up -->
<div class="modal fade" id="modalSignUp" tabindex="-1" role="dialog" aria-labelledby="modalSignUpHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Heading -->
<h1 class="mb-4" id="modalSignUpHeading">
Sign Up
</h1>
<!-- Text -->
<p>
Create beautiful marketing websites in hours instead of weeks.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="signUpEmail">
Your email
</label>
<input class="form-control" id="signUpEmail" type="email" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group">
<div class="input-group inpit-group-merge">
<input class="form-control" id="signUpPassword" placeholder="Your password" type="password" aria-label="Your password" aria-describedby="signUpPasswordCaption">
<a class="input-group-text text-decoration-none text-gray-500" id="signUpPasswordCaption" data-toggle="password" href="#signUpPassword">
<i class="fe fe-eye"></i>
</a>
</div>
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Sign up
</button>
</form>
<!-- Link -->
<small class="text-muted">
Already have an account? <a href="sign-in.html">Login</a>
</small>
</div>
</div>
</div>
</div>
<!-- Password reset -->
<div class="modal fade" id="modalPasswordReset" tabindex="-1" role="dialog" aria-labelledby="modalPasswordResetHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Heading -->
<h1 class="display-4 mb-4" id="modalPasswordResetHeading">
Password reset
</h1>
<!-- Text -->
<p class="text-muted">
Enter your email to reset your password.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="passwordResetEmail">
Your email
</label>
<input class="form-control" id="passwordResetEmail" type="email" placeholder="Your email">
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Reset password
</button>
</form>
<!-- Text -->
<small class="text-muted">
Remember your password? <a href="sign-in.html">Log in</a>.
</small>
</div>
</div>
</div>
</div>
<!-- Sale -->
<div class="modal fade" id="modalSale" tabindex="-1" role="dialog" aria-labelledby="modalSaleHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Image -->
<img class="img-fluid mb-4 mt-n11" src="./assets/img/illustrations/illustration-4.png" alt="...">
<!-- Heading -->
<h1 class="mb-4" id="modalSaleHeading">
30 Day Free Trial
</h1>
<!-- Text -->
<p class="text-muted">
We’ll help you get started by getting you guides and all the basic informaiton.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="saleModalEmail">
Your email
</label>
<input class="form-control" id="saleModalEmail" type="email" placeholder="Your email">
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Start Trial
</button>
</form>
<!-- Text -->
<small class="text-muted">
<a class="text-reset" data-bs-dismiss="modal" href="#!">No thanks, I hate free stuff.</a>
</small>
</div>
</div>
</div>
</div>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-lg">
<!-- Brand -->
<a class="navbar-brand d-lg-none" href="./index.html">Goodkit</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Navigation -->
<ul class="navbar-nav justify-content-end w-100">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="landingsDropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Landings
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-xl dropdown-menu-flush" aria-labelledby="landingsDropdown">
<div class="row align-items-center gx-0">
<div class="col-md-6 order-1 dropdown-menu-col rounded-top-start-0 bg-gray-900 pt-4 py-lg-5">
<div class="dropdown-menu-body">
<!-- Heading -->
<h6 class="dropdown-header text-uppercase text-primary-light d-none d-lg-block">
Services
</h6>
<!-- Links -->
<a class="d-flex text-decoration-none" href="./coworking.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M5.133 2.036c6.945 3.876 9.445 8.206 7.5 12.99-4.97-.79-7.47-5.12-7.5-12.99z" fill="#335EEA" opacity=".3"/><path d="M18.742 2.036c-6.945 3.876-9.445 8.206-7.5 12.99 4.97-.79 7.47-5.12 7.5-12.99z" fill="#335EEA" opacity=".3"/><path d="M12 1c-4.076 6.83-4.076 11.83 0 15 3.91-3.17 3.91-8.17 0-15z" fill="#335EEA" opacity=".3"/><path d="M6.344 13h11.312a1 1 0 01.958 1.287l-2.186 7.288A2 2 0 0114.512 23H9.488a2 2 0 01-1.916-1.425l-2.186-7.288A1 1 0 016.344 13z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold text-white mb-0">
Coworking
</p>
<!-- Text -->
<span class="text-gray-500">
Minimal, image-focused content
</span>
</div>
</a>
<a class="d-flex text-decoration-none mt-4" href="./hiring-agency.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M12 11a4 4 0 110-8 4 4 0 010 8z" fill="#335EEA" opacity=".3"/><path d="M3 20.2c.388-4.773 4.262-7.2 8.983-7.2 4.788 0 8.722 2.293 9.015 7.2.012.195 0 .8-.751.8H3.727c-.25 0-.747-.54-.726-.8z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold text-white mb-0">
Hiring Platform
</p>
<!-- Text -->
<span class="text-gray-500">
A hiring service platform
</span>
</div>
</a>
<a class="d-flex text-decoration-none mt-4" href="./course.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M6 3h12a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V5a2 2 0 012-2zm-.5 2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm12 0a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm-12 4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm12 0a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm-12 4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm12 0a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm0 4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1zm-12 0a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-1z" fill="#335EEA" opacity=".3"/><path d="M11.352 14.572l2.605-1.78a.5.5 0 00.001-.825l-2.605-1.792a.5.5 0 00-.783.412v3.572a.5.5 0 00.782.413z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold text-white mb-0">
Course
</p>
<!-- Text -->
<span class="text-gray-500">
React programming course
</span>
</div>
</a>
<a class="d-flex text-decoration-none mt-4" href="./software-automation.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M8 7a1 1 0 110-2h8a4 4 0 110 8H8a2 2 0 100 4h9a1 1 0 010 2H8a4 4 0 110-8h8a2 2 0 100-4H8z" fill="#335EEA" opacity=".3"/><path d="M9.707 8.293a1 1 0 01-1.414 1.414l-3-3a1 1 0 010-1.414l3-3a1 1 0 011.414 1.414L7.414 6l2.293 2.293zM14.293 20.293a1 1 0 001.414 1.414l3-3a1 1 0 000-1.414l-3-3a1 1 0 00-1.414 1.414L16.586 18l-2.293 2.293z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold text-white mb-0">
Automated Integrations
</p>
<!-- Text -->
<span class="text-gray-500">
Digital integration software
</span>
</div>
</a>
</div>
</div>
<div class="col-md-6 order-0 dropdown-menu-col">
<div class="dropdown-menu-body">
<!-- Heading -->
<h6 class="dropdown-header text-uppercase d-none d-lg-block">
Software
</h6>
<!-- Links -->
<a class="d-flex text-decoration-none text-reset" href="./robo-advisor.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M4 4h16a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2z" fill="#335EEA" opacity=".3"/><path d="M18.5 11h-13A1.5 1.5 0 004 12.5v.5h4.586a1 1 0 01.707.293l1 1a2.414 2.414 0 003.414 0l1-1a1 1 0 01.707-.293H20v-.5a1.5 1.5 0 00-1.5-1.5zM5.5 6A1.5 1.5 0 004 7.5V8h16v-.5A1.5 1.5 0 0018.5 6h-13z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold mb-0">
Robo Advisor
</p>
<!-- Text -->
<span class="text-muted">
A simple and professional layout
</span>
</div>
</a>
<a class="d-flex text-decoration-none text-reset mt-4" href="./analytics-saas.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M4.002 12.2L13 14V4.062A8.001 8.001 0 0112 20a8 8 0 01-7.998-7.8z" fill="#335EEA" opacity=".3"/><path d="M3.06 10.012A8.001 8.001 0 0111 3v8.6l-7.94-1.588z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold mb-0">
Analytics SaaS
</p>
<!-- Text -->
<span class="text-muted">
UI-heavy product example
</span>
</div>
</a>
<a class="d-flex text-decoration-none text-reset mt-4" href="./e-commerce-platform.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M18.145 11.844l-.698 4.185a1 1 0 01-1.165.82L4.913 14.78a1 1 0 01-.783-.709L2.306 7.685a1 1 0 01.961-1.275h13.726l.613-2.627a1.18 1.18 0 011.15-.912h2.064a1.18 1.18 0 110 2.36h-1.128l-1.547 6.613z" fill="#335EEA" opacity=".3"/><path d="M6.5 21a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm9 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="#335EEA"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold mb-0">
E-Commerce Platform
</p>
<!-- Text -->
<span class="text-muted">
SaaS for sales of goods
</span>
</div>
</a>
<a class="d-flex text-decoration-none text-reset mt-4" href="./mobile-chat-app.html">
<!-- Icon -->
<div class="icon icon-sm text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M7.139 4v15h9.722V4H7.14zm.694-3h8.334c1.406 0 2.083.981 2.083 2.5v17c0 1.519-.677 2.5-2.083 2.5H7.833c-1.406 0-2.083-.981-2.083-2.5v-17c0-1.519.677-2.5 2.083-2.5z" fill="#335EEA"/><path fill="#335EEA" opacity=".3" d="M7 4v15h10V4z"/><circle fill="#335EEA" cx="12" cy="21" r="1"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<p class="fw-bold mb-0">
Mobile Apps
</p>
<!-- Text -->
<span class="text-muted">
Minimal layout for mobile apps
</span>
</div>
</a>
</div>
<div class="dropdown-menu-footer align-items-center d-none d-lg-flex">
<!-- Text -->
<span>Sans Serif Headers</span>
<!-- Switch -->
<form class="ms-auto me-n3">
<div class="form-check form-switch mb-0">
<input class="form-check-input family-switch" type="checkbox" id="familySwitch" onchange="switchFamily(this.checked)">
<label class="form-check-label" for="familySwitch"></label>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="pagesDropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Pages
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="pagesDropdown">
<div class="row gx-0">
<div class="col">
<!-- Heading -->
<h6 class="dropdown-header text-uppercase mb-3">
Company
</h6>
<!-- Links -->
<a class="dropdown-item" href="./about-orig.html">
About
</a>
<a class="dropdown-item" href="./pricing-orig.html">
Pricing
</a>
<a class="dropdown-item" href="./pricing-feature-list.html">
Pricing Table
</a>
<a class="dropdown-item" href="./career-listing.html">
Careers
</a>
<a class="dropdown-item" href="./career-benefits.html">
Job benefits
</a>
<a class="dropdown-item" href="./contact.html">
Contact
</a>
<a class="dropdown-item" href="./faq.html">
FAQ
</a><a class="dropdown-item" href="./terms.html">
Terms
</a>
</div>
<div class="col">
<!-- Heading -->
<h6 class="dropdown-header text-uppercase mb-3">
Blog
</h6>
<!-- Links -->
<a class="dropdown-item" href="./blog-listing.html">
Listing
</a>
<a class="dropdown-item" href="./blog-post.html">
Article
</a>
<a class="dropdown-item" href="./blog-post-cover.html">
Cover Article
</a>
<!-- Heading -->
<h6 class="dropdown-header text-uppercase mb-3">
Help Center
</h6>
<!-- Links -->
<a class="dropdown-item" href="./help-center.html">
Overview
</a>
<a class="dropdown-item" href="./help-center-article.html">
Article
</a>
</div>
</div>
</div>
</div>
</li>
</ul>
<!-- Brand -->
<a class="navbar-brand d-none d-lg-block px-lg-6" href="./index-orig.html">Goodkit</a>
<!-- Navigation -->
<ul class="navbar-nav justify-content-start w-100">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="accountDropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Account
</a>
<div class="dropdown-positioner">
<ul class="dropdown-menu" aria-labelledby="accountDropdown">
<li class="dropdown-item dropend">
<a class="dropdown-link dropdown-toggle" id="signInDropright" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Sign In
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-auto" aria-labelledby="signInDropright">
<a class="dropdown-item" href="./sign-in-cover.html">
Cover
</a>
<a class="dropdown-item" href="./sign-in.html">
Simple
</a>
<a class="dropdown-item" data-bs-toggle="modal" href="#modalSignIn">
Modal
</a>
</div>
</div>
</li>
<li class="dropdown-item dropend">
<a class="dropdown-link dropdown-toggle" id="signUpDropright" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Sign Up
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-auto" aria-labelledby="signUpDropright">
<a class="dropdown-item" href="./sign-up-cover.html">
Cover
</a>
<a class="dropdown-item" href="./sign-up.html">
Simple
</a>
<a class="dropdown-item" data-bs-toggle="modal" href="#modalSignUp">
Modal
</a>
</div>
</div>
</li>
<li class="dropdown-item dropend">
<a class="dropdown-link dropdown-toggle" id="passwordResetDropright" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Password Reset
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-auto" aria-labelledby="passwordResetDropright">
<a class="dropdown-item" href="./password-reset-cover.html">
Cover
</a>
<a class="dropdown-item" href="./password-reset.html">
Simple
</a>
<a class="dropdown-item" data-bs-toggle="modal" href="#modalPasswordReset">
Modal
</a>
</div>
</div>
</li>
<li class="dropdown-item dropend">
<a class="dropdown-link dropdown-toggle" id="errorsDropright" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Errors
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-auto" aria-labelledby="errorsDropright">
<a class="dropdown-item" href="./error-cover.html">
Cover
</a>
<a class="dropdown-item" href="./error.html">
Simple
</a>
</div>
</div>
</li>
</ul>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="docsDropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Docs
</a>
<div class="dropdown-positioner">
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="docsDropdown">
<a class="d-flex align-items-center text-reset text-decoration-none" href="./docs/index.html">
<!-- Icon -->
<div class="icon text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M8 3v.5A1.5 1.5 0 009.5 5h5A1.5 1.5 0 0016 3.5V3h2a2 2 0 012 2v16a2 2 0 01-2 2H6a2 2 0 01-2-2V5a2 2 0 012-2h2z" fill="#335EEA" opacity=".3"/><path d="M11 2a1 1 0 012 0h1.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H11z" fill="#335EEA"/><rect fill="#335EEA" opacity=".3" x="7" y="10" width="5" height="2" rx="1"/><rect fill="#335EEA" opacity=".3" x="7" y="14" width="9" height="2" rx="1"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<h6 class="text-uppercase text-primary mb-0">
Documentation
</h6>
<!-- Text -->
<span>Compiling and building.</span>
</div>
</a>
<a class="d-flex align-items-center text-reset text-decoration-none mt-5" href="./docs/alerts.html">
<!-- Icon -->
<div class="icon text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M5.5 4h4A1.5 1.5 0 0111 5.5v1A1.5 1.5 0 019.5 8h-4A1.5 1.5 0 014 6.5v-1A1.5 1.5 0 015.5 4zm9 12h4a1.5 1.5 0 011.5 1.5v1a1.5 1.5 0 01-1.5 1.5h-4a1.5 1.5 0 01-1.5-1.5v-1a1.5 1.5 0 011.5-1.5z" fill="#335EEA"/><path d="M5.5 10h4a1.5 1.5 0 011.5 1.5v7A1.5 1.5 0 019.5 20h-4A1.5 1.5 0 014 18.5v-7A1.5 1.5 0 015.5 10zm9-6h4A1.5 1.5 0 0120 5.5v7a1.5 1.5 0 01-1.5 1.5h-4a1.5 1.5 0 01-1.5-1.5v-7A1.5 1.5 0 0114.5 4z" fill="#335EEA" opacity=".3"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<h6 class="text-uppercase text-primary mb-0">
Components
</h6>
<!-- Text -->
<span>Full list of pieces in the theme</span>
</div>
</a>
<a class="d-flex align-items-center text-reset text-decoration-none mt-5" href="./docs/changelog.html">
<!-- Icon -->
<div class="icon text-primary-light">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M5.857 2h7.88a1.5 1.5 0 01.968.355l4.764 4.029A1.5 1.5 0 0120 7.529v12.554c0 1.79-.02 1.917-1.857 1.917H5.857C4.02 22 4 21.874 4 20.083V3.917C4 2.127 4.02 2 5.857 2z" fill="#335EEA" opacity=".3"/><rect fill="#335EEA" x="6" y="11" width="9" height="2" rx="1"/><rect fill="#335EEA" x="6" y="15" width="5" height="2" rx="1"/></g></svg> </div>
<div class="ms-3">
<!-- Heading -->
<h6 class="text-uppercase text-primary mb-0">
Changelog
</h6>
<!-- Text -->
<span>This is the new version</span>
</div>
</a>
</div>
</div>
</li>
<li class="nav-item d-lg-none">
<div class="nav-link">
<!-- Text -->
<span>
Sans Serif Headers
</span>
<!-- Switch -->
<form class="ms-auto me-n3">
<div class="form-check form-switch mb-0">
<input class="form-check-input family-switch" type="checkbox" id="familySwitchMobile" onchange="switchFamily(this.checked)">
<label class="form-check-label" for="familySwitchMobile"></label>
</div>
</form>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- WELCOME -->
<section class="pt-6 pt-md-11 bg-dark">
<div class="container-lg">
<div class="row justify-content-center" data-aos="fade-up">
<div class="col-12 text-center text-white">
<!-- Preheading -->
<h6 class="text-uppercase text-warning mb-5">
More data. Less work.
</h6>
<!-- Heading -->
<h1 class="display-3 mb-4">
The Future of Analytics
</h1>
</div>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-md-8 col-lg-6 text-center text-white">
<!-- Text -->
<p class="fs-lg">
Create rich dashboards from your company's data without having to create events or setup tracking.
</p>
<!-- Form -->
<form>
<div class="input-group rounded-top-start rounded-bottom-end shadow">
<!-- Input -->
<input class="form-control bg-white" type="email" placeholder="Email address" aria-label="Email address" aria-describedby="subscriptionButton">
<!-- Button -->
<button class="btn btn-white" type="button" id="subscriptionButton">
Begin
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-fluid-x shape-bottom text-dark pb-17 pb-lg-18">
<div class="shape-img pb-8 pb-md-11">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 0h100v25H75L25 50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- CLIENTS -->
<section class="pt-11 pt-md-13">
<div class="container-lg">
<div class="row mx-n4 mb-9 mb-md-10">
<div class="col-6 col-md-3 px-4">
<!-- Image -->
<img class="img-fluid rounded-top-start rounded-bottom-end shadow-lg mt-md-8" src="assets/img/screenshots/ui-elements/analytics-1.jpg" alt="..." data-aos="fade-up" data-aos-delay="125">
<!-- Image -->
<img class="img-fluid rounded-top-start rounded-bottom-end shadow-lg mt-5 d-md-none" src="assets/img/screenshots/ui-elements/analytics-2.jpg" alt="...">
</div>
<div class="col-3 px-4 d-none d-md-block" data-aos="fade-up" data-aos-delay="150">
<!-- Image -->
<img class="img-fluid rounded-top-start rounded-bottom-end shadow-lg" src="assets/img/screenshots/ui-elements/analytics-2.jpg" alt="...">
<!-- Image -->
<img class="img-fluid rounded-top-start rounded-bottom-end shadow-lg mt-5" src="assets/img/screenshots/ui-elements/analytics-3.jpg" alt="...">
</div>
<div class="col-6 col-md-3 px-4">
<!-- Image -->
<img class="img-fluid rounded-top-start rounded-bottom-end shadow-lg mt-9" src="assets/img/screenshots/ui-elements/analytics-4.jpg" alt="..." data-aos="fade-up" data-aos-delay="200">
</div>
<div class="col-3 px-4 d-none d-md-block">
<!-- Image -->
<div class="position-relative mt-8">
<!-- Decoration -->
<div class="position-absolute top-end text-primary-light mt-n10 mt-lg-n8 me-n12 me-lg-n6">
<svg width="185" height="186" viewBox="0 0 185 186" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="currentColor"/><circle cx="22" cy="2" r="2" fill="currentColor"/><circle cx="42" cy="2" r="2" fill="currentColor"/><circle cx="62" cy="2" r="2" fill="currentColor"/><circle cx="82" cy="2" r="2" fill="currentColor"/><circle cx="102" cy="2" r="2" fill="currentColor"/><circle cx="122" cy="2" r="2" fill="currentColor"/><circle cx="142" cy="2" r="2" fill="currentColor"/><circle cx="162" cy="2" r="2" fill="currentColor"/><circle cx="182" cy="2" r="2" fill="currentColor"/><circle cx="2" cy="22" r="2" fill="currentColor"/><circle cx="22" cy="22" r="2" fill="currentColor"/><circle cx="42" cy="22" r="2" fill="currentColor"/><circle cx="62" cy="22" r="2" fill="currentColor"/><circle cx="82" cy="22" r="2" fill="currentColor"/><circle cx="102" cy="22" r="2" fill="currentColor"/><circle cx="122" cy="22" r="2" fill="currentColor"/><circle cx="142" cy="22" r="2" fill="currentColor"/><circle cx="162" cy="22" r="2" fill="currentColor"/><circle cx="182" cy="22" r="2" fill="currentColor"/><circle cx="2" cy="42" r="2" fill="currentColor"/><circle cx="22" cy="42" r="2" fill="currentColor"/><circle cx="42" cy="42" r="2" fill="currentColor"/><circle cx="62" cy="42" r="2" fill="currentColor"/><circle cx="82" cy="42" r="2" fill="currentColor"/><circle cx="102" cy="42" r="2" fill="currentColor"/><circle cx="122" cy="42" r="2" fill="currentColor"/><circle cx="142" cy="42" r="2" fill="currentColor"/><circle cx="162" cy="42" r="2" fill="currentColor"/><circle cx="182" cy="42" r="2" fill="currentColor"/><circle cx="2" cy="62" r="2" fill="currentColor"/><circle cx="22" cy="62" r="2" fill="currentColor"/><circle cx="42" cy="62" r="2" fill="currentColor"/><circle cx="62" cy="62" r="2" fill="currentColor"/><circle cx="82" cy="62" r="2" fill="currentColor"/><circle cx="102" cy="62" r="2" fill="currentColor"/><circle cx="122" cy="62" r="2" fill="currentColor"/><circle cx="142" cy="62" r="2" fill="currentColor"/><circle cx="162" cy="62" r="2" fill="currentColor"/><circle cx="182" cy="62" r="2" fill="currentColor"/><circle cx="2" cy="82" r="2" fill="currentColor"/><circle cx="22" cy="82" r="2" fill="currentColor"/><circle cx="42" cy="82" r="2" fill="currentColor"/><circle cx="62" cy="82" r="2" fill="currentColor"/><circle cx="82" cy="82" r="2" fill="currentColor"/><circle cx="102" cy="82" r="2" fill="currentColor"/><circle cx="122" cy="82" r="2" fill="currentColor"/><circle cx="142" cy="82" r="2" fill="currentColor"/><circle cx="162" cy="82" r="2" fill="currentColor"/><circle cx="182" cy="82" r="2" fill="currentColor"/><circle cx="2" cy="102" r="2" fill="currentColor"/><circle cx="22" cy="102" r="2" fill="currentColor"/><circle cx="42" cy="102" r="2" fill="currentColor"/><circle cx="62" cy="102" r="2" fill="currentColor"/><circle cx="82" cy="102" r="2" fill="currentColor"/><circle cx="102" cy="102" r="2" fill="currentColor"/><circle cx="122" cy="102" r="2" fill="currentColor"/><circle cx="142" cy="102" r="2" fill="currentColor"/><circle cx="162" cy="102" r="2" fill="currentColor"/><circle cx="182" cy="102" r="2" fill="currentColor"/><circle cx="2" cy="122" r="2" fill="currentColor"/><circle cx="22" cy="122" r="2" fill="currentColor"/><circle cx="42" cy="122" r="2" fill="currentColor"/><circle cx="62" cy="122" r="2" fill="currentColor"/><circle cx="82" cy="122" r="2" fill="currentColor"/><circle cx="102" cy="122" r="2" fill="currentColor"/><circle cx="122" cy="122" r="2" fill="currentColor"/><circle cx="142" cy="122" r="2" fill="currentColor"/><circle cx="162" cy="122" r="2" fill="currentColor"/><circle cx="182" cy="122" r="2" fill="currentColor"/><circle cx="2" cy="142" r="2" fill="currentColor"/><circle cx="22" cy="142" r="2" fill="currentColor"/><circle cx="42" cy="142" r="2" fill="currentColor"/><circle cx="62" cy="142" r="2" fill="currentColor"/><circle cx="82" cy="142" r="2" fill="currentColor"/><circle cx="102" cy="142" r="2" fill="currentColor"/><circle cx="122" cy="142" r="2" fill="currentColor"/><circle cx="142" cy="142" r="2" fill="currentColor"/><circle cx="162" cy="142" r="2" fill="currentColor"/><circle cx="182" cy="142" r="2" fill="currentColor"/><circle cx="2" cy="162" r="2" fill="currentColor"/><circle cx="22" cy="162" r="2" fill="currentColor"/><circle cx="42" cy="162" r="2" fill="currentColor"/><circle cx="62" cy="162" r="2" fill="currentColor"/><circle cx="82" cy="162" r="2" fill="currentColor"/><circle cx="102" cy="162" r="2" fill="currentColor"/><circle cx="122" cy="162" r="2" fill="currentColor"/><circle cx="142" cy="162" r="2" fill="currentColor"/><circle cx="162" cy="162" r="2" fill="currentColor"/><circle cx="182" cy="162" r="2" fill="currentColor"/><circle cx="2" cy="182" r="2" fill="currentColor"/><circle cx="22" cy="182" r="2" fill="currentColor"/><circle cx="42" cy="182" r="2" fill="currentColor"/><circle cx="62" cy="182" r="2" fill="currentColor"/><circle cx="82" cy="182" r="2" fill="currentColor"/><circle cx="102" cy="182" r="2" fill="currentColor"/><circle cx="122" cy="182" r="2" fill="currentColor"/><circle cx="142" cy="182" r="2" fill="currentColor"/><circle cx="162" cy="182" r="2" fill="currentColor"/><circle cx="182" cy="182" r="2" fill="currentColor"/></svg> </div>
<!-- Image -->
<img class="position-relative img-fluid rounded-top-start rounded-bottom-end shadow-lg" src="assets/img/screenshots/ui-elements/analytics-5.jpg" alt="..." data-aos="fade-up" data-aos-delay="250">
</div>
</div>
</div>
<div class="row">
<div class="col-12 text-center">
<!-- Heading -->
<h6 class="text-uppercase mb-6">
Over 6,000 companies and counting
</h6>
</div>
</div>
<div class="row mt-n5">
<div class="col-4 col-md-2 mt-5">
<!-- Image -->
<div class="img-fluid svg-shim text-coinbase mx-auto" style="max-width: 112px;">
<svg viewBox="0 0 96 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.20801 20.9198C3.0708 20.9198 0 18.6546 0 13.5412C0 8.41122 3.0708 6.17933 6.20801 6.17933C7.75171 6.17933 8.96343 6.57907 9.82658 7.14537L8.88044 9.22736C8.29947 8.81096 7.43633 8.54447 6.57318 8.54447C4.6809 8.54447 2.95461 10.0435 2.95461 13.5079C2.95461 16.9723 4.7307 18.5047 6.57318 18.5047C7.43633 18.5047 8.29947 18.2382 8.88044 17.8218L9.82658 19.9538C8.93023 20.5534 7.75171 20.9198 6.20801 20.9198ZM17.0139 20.9198C13.0136 20.9198 10.8059 17.7385 10.8059 13.5412C10.8059 9.34395 12.997 6.17933 17.0139 6.17933C21.0143 6.17933 23.2219 9.3273 23.2219 13.5412C23.2219 17.7385 21.0143 20.9198 17.0139 20.9198ZM17.0139 8.46119C14.7897 8.46119 13.6941 10.4599 13.6941 13.5079C13.6941 16.556 14.7897 18.5713 17.0139 18.5713C19.2382 18.5713 20.3337 16.556 20.3337 13.5079C20.3337 10.4599 19.2382 8.46119 17.0139 8.46119ZM27.0729 3.89748C26.1267 3.89748 25.3632 3.16462 25.3632 2.2652C25.3632 1.36578 26.1267 0.632924 27.0729 0.632924C28.019 0.632924 28.7826 1.36578 28.7826 2.2652C28.7826 3.16462 28.0024 3.89748 27.0729 3.89748ZM25.6288 6.46248H28.517V20.62H25.6288V6.46248ZM39.8375 20.62V11.1761C39.8375 9.52717 38.8415 8.4945 36.8829 8.4945C35.8371 8.4945 34.8744 8.67772 34.2934 8.9109V20.6366H31.4384V7.17869C32.8493 6.59573 34.6586 6.17933 36.8663 6.17933C40.8168 6.17933 42.7257 7.91155 42.7257 10.9096V20.6366H39.8375V20.62ZM50.3114 20.9198C48.4855 20.9198 46.6762 20.4701 45.5641 19.9204V0H48.4191V6.82891C49.0997 6.51245 50.1952 6.24596 51.1745 6.24596C54.8097 6.24596 57.283 8.87759 57.283 13.2081C57.283 18.5547 54.5275 20.9198 50.3114 20.9198ZM50.6766 8.4945C49.8964 8.4945 48.9669 8.67772 48.4191 8.96087V18.2549C48.8341 18.4381 49.6474 18.6213 50.4608 18.6213C52.7348 18.6213 54.4113 17.039 54.4113 13.4246C54.4279 10.3266 52.9672 8.4945 50.6766 8.4945ZM65.0513 20.9198C61.0011 20.9198 58.9429 19.2709 58.9429 16.4727C58.9429 12.5252 63.1258 11.8257 67.3917 11.5925V10.6931C67.3917 8.9109 66.2132 8.27798 64.4039 8.27798C63.076 8.27798 61.4493 8.69437 60.5032 9.14408L59.7728 7.17869C60.9015 6.67901 62.8104 6.17933 64.7027 6.17933C68.0723 6.17933 70.1305 7.49515 70.1305 10.9929V19.9204C69.118 20.4701 67.0431 20.9198 65.0513 20.9198ZM67.4083 13.5079C64.5201 13.6578 61.6485 13.9077 61.6485 16.4227C61.6485 17.9217 62.7938 18.8378 64.9683 18.8378C65.8812 18.8378 66.9601 18.6879 67.4083 18.4714V13.5079ZM76.5709 20.9198C74.9276 20.9198 73.2013 20.4701 72.1722 19.9204L73.135 17.7219C73.8653 18.1716 75.409 18.6379 76.4879 18.6379C78.0316 18.6379 79.0608 17.8718 79.0608 16.6892C79.0608 15.4067 77.9818 14.907 76.5543 14.374C74.6621 13.6578 72.554 12.7917 72.554 10.1434C72.554 7.81161 74.3633 6.17933 77.5005 6.17933C79.2102 6.17933 80.6211 6.59573 81.617 7.17869L80.7207 9.17739C80.0899 8.77765 78.8284 8.3446 77.8159 8.3446C76.322 8.3446 75.492 9.12743 75.492 10.1601C75.492 11.4426 76.5377 11.8923 77.9321 12.4253C79.8907 13.1581 82.0652 13.9743 82.0652 16.7392C82.0486 19.2542 80.1065 20.9198 76.5709 20.9198ZM95.9751 13.4746L86.5967 14.7904C86.8789 17.3388 88.5388 18.6213 90.9124 18.6213C92.3233 18.6213 93.8504 18.2715 94.8132 17.7552L95.6431 19.9038C94.5476 20.4867 92.6553 20.9031 90.7132 20.9031C86.2647 20.9031 83.7749 18.0383 83.7749 13.5246C83.7749 9.19405 86.1817 6.16268 90.1323 6.16268C93.8006 6.16268 95.9751 8.57778 95.9751 12.392C96.0083 12.7418 96.0083 13.1082 95.9751 13.4746ZM90.1157 8.27798C87.9246 8.27798 86.4805 9.96022 86.4307 12.9083L93.2695 11.9589C93.2363 9.49385 91.9914 8.27798 90.1157 8.27798Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-4 col-md-2 mt-5">
<!-- Image -->
<div class="img-fluid svg-shim text-dribbble mx-auto" style="max-width: 112px;">
<svg viewBox="0 0 105 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M32.1266 10.6427C33.3231 10.6427 34.293 9.67108 34.293 8.47267C34.293 7.27407 33.3231 6.30263 32.1266 6.30263C30.9301 6.30263 29.9602 7.27407 29.9602 8.47267C29.9602 9.67108 30.9301 10.6427 32.1266 10.6427ZM103.623 18.057C103.293 17.825 103.039 17.7865 102.828 18.2372C99.1894 26.1289 93.0578 22.1908 93.6669 22.5374C95.027 21.9144 98.604 19.0416 98.0633 15.0748C97.735 12.6506 95.6573 11.5753 93.4519 11.9603C89.6022 12.6324 88.186 16.7905 88.907 20.4718C89.0332 21.1041 89.2586 21.6255 89.4838 22.1362C85.1335 25.6789 83.4059 18.9649 83.2099 18.1625C83.2021 18.1196 86.5689 15.3094 87.5053 8.61274C88.4868 1.59428 86.251 0.316338 83.9648 0.35621C79.7341 0.430024 78.5909 9.28176 80.1268 16.6591C79.9981 16.6926 79.3995 17.0247 78.4376 17.0619C77.7454 14.8808 74.7878 12.969 74.0137 13.7057C72.0765 15.5486 74.4836 19.1516 76.1773 19.4341C75.1598 25.7096 68.7969 24.1554 69.9814 16.2933C72.0534 12.44 73.6293 6.71055 73.3481 3.25172C73.2485 2.02714 72.3444 0.386472 70.2997 0.467851C66.3669 0.623658 65.9394 9.47785 66.4004 15.7621C66.3775 15.6073 66.1586 16.5255 64.547 16.9821C64.1658 14.8632 60.7589 12.7363 59.9568 13.7589C58.4555 15.6727 61.0574 19.0851 62.2898 19.3231C61.2724 25.5983 54.9096 24.0441 56.0941 16.182C58.1661 12.329 59.7418 6.59952 59.4607 3.14069C59.361 1.91591 58.4571 0.27524 56.4122 0.356414C52.4795 0.512426 52.0519 9.36662 52.513 15.6508C52.4899 15.4936 52.2659 16.4421 50.5885 16.8911C50.5324 14.142 47.1129 12.8815 46.2915 13.7587C44.8275 15.3222 46.6268 18.5304 48.2913 19.3231C47.2738 25.5983 40.9111 24.0441 42.0956 16.182C44.1676 12.329 45.7435 6.59952 45.4621 3.14069C45.3627 1.91591 44.4586 0.27524 42.4137 0.356414C38.4811 0.512426 38.1647 9.81175 38.6257 16.0958C37.3304 21.6535 32.9864 28.594 33.5508 14.6906C33.6065 13.7153 33.6673 13.345 33.1818 12.9798C32.8179 12.696 31.9906 12.8326 31.5383 12.8438C30.9887 12.8659 30.8509 13.188 30.7294 13.6748C30.4464 14.9319 30.3955 16.1505 30.3551 17.8133C30.3286 18.5911 30.2663 18.954 29.9672 20.0146C29.6684 21.075 27.9641 23.0132 27.031 22.6891C25.7365 22.2434 26.1612 18.5837 26.4038 16.0694C26.6059 14.0823 25.9586 13.19 24.3003 12.8655C23.3294 12.6629 22.7395 12.694 21.7284 12.3748C20.7722 12.073 20.556 10.2618 18.5166 10.8654C17.4012 11.1958 18.1183 13.5626 17.8502 15.3167C16.5322 23.9456 13.7898 24.1826 12.5175 19.9909C18.2475 5.93744 14.1751 0.397104 11.7913 0.397104C9.30841 0.397104 6.47027 2.10975 7.67209 13.0677C7.08772 12.897 6.90804 12.805 6.26834 12.805C2.65043 12.805 0.185547 15.7338 0.185547 19.3468C0.185547 22.9598 2.65064 25.8889 6.26854 25.8889C8.40429 25.8889 9.9038 24.9162 11.0395 23.4115C11.7804 24.4741 12.6827 25.9052 14.3327 25.8408C19.2509 25.649 20.6812 15.5463 20.85 14.9828C21.3758 15.064 21.8732 15.2175 22.3587 15.2987C23.1677 15.4204 23.2265 15.741 23.2081 16.5558C22.9937 23.4268 24.2599 25.8326 27.1319 25.8326C28.7321 25.8326 30.1583 24.2582 31.1408 23.1324C31.8746 24.6492 33.044 25.7862 34.6127 25.8324C38.414 25.9271 39.8694 19.8599 39.7367 20.6583C39.6325 21.2848 40.9699 25.7983 44.8833 25.8147C49.7308 25.8351 50.6318 20.4968 50.7392 19.6026C50.7527 19.4247 50.7586 19.4431 50.7392 19.6026L50.7355 19.6568C52.2745 19.3701 53.0685 18.5439 53.0685 18.5439C53.0685 18.5439 54.3042 25.8977 58.8816 25.8149C63.635 25.7286 64.5313 20.9031 64.6489 19.9621C64.6644 19.7388 64.6736 19.765 64.6489 19.9621C64.6483 19.9713 64.6477 19.9805 64.6471 19.9897C66.4751 19.3237 66.956 18.6553 66.956 18.6553C66.956 18.6553 67.9381 25.8629 72.769 25.9259C77.074 25.9823 78.6695 21.5676 78.6789 19.7198C79.405 19.7276 80.7481 19.2884 80.7166 19.2634C80.7166 19.2634 82.2935 25.5652 86.6971 25.8889C88.7647 26.0408 90.3157 24.7238 91.1998 24.1231C93.2775 25.8081 100.196 27.9604 104.565 20.5432C105.182 19.4787 103.856 18.2212 103.623 18.057ZM6.09397 23.4422C3.98313 23.4422 2.62961 21.4876 2.62961 19.3802C2.62961 17.2729 3.87206 15.3184 5.98289 15.3184C6.93275 15.3184 7.46117 15.423 8.20092 16.0673C8.33507 16.5967 8.71526 17.8178 8.90025 18.3723C9.14812 19.1144 9.44296 19.746 9.74025 20.4334C9.31555 22.1965 7.92323 23.4422 6.09397 23.4422ZM11.2377 16.1293C11.1499 15.9892 11.1683 16.0753 11.0701 15.943C10.6832 14.889 9.93749 12.5363 9.85112 9.8641C9.75352 6.8412 10.2566 3.29793 11.7398 3.29793C12.7448 3.29793 13.8129 10.4789 11.2375 16.1293H11.2377ZM40.9587 12.9796C40.7206 11.1858 40.7082 3.18895 42.6252 3.40916C43.6837 3.83855 41.9541 11.3845 40.9587 12.9796ZM54.9572 12.9796C54.7191 11.1858 54.7067 3.18895 56.6238 3.40916C57.6822 3.83855 55.9526 11.3845 54.9572 12.9796ZM68.8447 13.0911C68.6064 11.297 68.5941 3.30018 70.511 3.52039C71.5695 3.94978 69.8399 11.496 68.8447 13.0911ZM84.1763 2.94113C85.929 2.75915 85.8567 10.4239 82.3387 15.2629C81.885 13.5139 81.1893 3.54166 84.1763 2.94092V2.94113ZM91.5432 19.4341C90.9803 16.5865 92.4349 14.7162 93.9344 14.5111C94.4585 14.4273 95.2181 14.7673 95.3696 15.403C95.6187 16.601 95.3334 18.3781 91.9773 20.6328C91.9822 20.652 91.6688 20.0684 91.5434 19.4341H91.5432Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-4 col-md-2 mt-5">
<!-- Image -->
<div class="img-fluid svg-shim text-stripe mx-auto" style="max-width: 85px;">
<svg viewBox="0 0 65 27" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.56803 10.5801C4.56803 9.87724 5.14579 9.60679 6.10289 9.60679C7.475 9.60679 9.20829 10.0215 10.5805 10.7604V6.52467C9.08197 5.92992 7.60145 5.69559 6.10289 5.69559C2.4375 5.69559 0 7.6062 0 10.7966C0 15.771 6.86105 14.9781 6.86105 17.123C6.86105 17.952 6.13895 18.2224 5.12776 18.2224C3.62921 18.2224 1.71526 17.6095 0.198555 16.7805V21.0702C1.87776 21.7912 3.575 22.0975 5.12776 22.0975C8.88329 22.0975 11.4653 20.2411 11.4653 17.0148C11.4472 11.6436 4.56803 12.5988 4.56803 10.5801ZM16.7736 2.09082L12.368 3.02801L12.35 17.4653C12.35 20.133 14.3542 22.0975 17.0264 22.0975C18.507 22.0975 19.5903 21.8272 20.1861 21.5027V17.8439C19.6084 18.0782 16.7555 18.9073 16.7555 16.2397V9.84112H20.1861V6.00203H16.7555L16.7736 2.09082ZM25.8014 7.33576L25.5125 6.00203H21.6125V21.7731H26.1264V11.0849C27.1916 9.69703 28.9972 9.94935 29.557 10.1476V6.00203C28.9792 5.7857 26.8667 5.38915 25.8014 7.33576ZM30.6583 6.00203H35.1903V21.7731H30.6583V6.00203ZM30.6583 4.63218L35.1903 3.65888V0L30.6583 0.955306V4.63205V4.63218ZM44.6153 5.69559C42.8458 5.69559 41.7083 6.52467 41.0764 7.10155L40.8416 5.98403H36.8695V27L41.3833 26.0448L41.4014 20.944C42.0514 21.4126 43.0083 22.0795 44.5972 22.0795C47.8292 22.0795 50.7722 19.484 50.7722 13.7704C50.7542 8.54338 47.775 5.69559 44.6153 5.69559ZM43.532 18.1142C42.4667 18.1142 41.8346 17.7358 41.4014 17.2671L41.3833 10.5801C41.8528 10.0575 42.5028 9.69703 43.532 9.69703C45.175 9.69703 46.3125 11.5354 46.3125 13.8965C46.3125 16.3118 45.193 18.1142 43.532 18.1142ZM65 13.9507C65 9.33647 62.7611 5.69559 58.482 5.69559C54.1846 5.69559 51.5846 9.3366 51.5846 13.9147C51.5846 19.3398 54.6542 22.0795 59.0596 22.0795C61.2083 22.0795 62.8333 21.5929 64.0611 20.908V17.3031C62.8334 17.916 61.425 18.2945 59.6375 18.2945C57.8861 18.2945 56.3333 17.6816 56.1347 15.5548H64.9639C64.9639 15.3204 65 14.3832 65 13.9507ZM56.0805 12.2384C56.0805 10.2017 57.3264 9.35447 58.4639 9.35447C59.5653 9.35447 60.7389 10.2017 60.7389 12.2384H56.0805Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-4 col-md-2 mt-5">
<!-- Image -->
<div class="img-fluid svg-shim text-pinterest mx-auto" style="max-width: 112px;">
<svg viewBox="0 0 119 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.7945 11.3191C29.0692 11.3191 30.2921 10.2476 30.5048 8.92569C30.7562 7.63902 29.8922 6.56752 28.6185 6.56752C27.3444 6.56752 26.1213 7.63902 25.9054 8.92569C25.6568 10.2476 26.4853 11.3191 27.7945 11.3191ZM114.293 15.1435H117.145C117.536 15.1435 117.764 14.9833 117.852 14.6151C117.989 14.0449 118.129 13.4756 118.273 12.9073C118.358 12.5759 118.167 12.3247 117.803 12.3247H114.989C115.192 11.5105 115.981 8.86711 115.981 7.14376C115.981 3.70203 113.087 0.774522 108.98 0.774522C104.342 0.774522 101.324 3.91741 101.324 8.33988C101.324 9.62981 101.801 11.1334 102.392 12.0661C102.137 12.0514 101.883 12.0441 101.628 12.0443C98.1038 12.0443 95.884 13.9746 95.884 16.7834C95.884 19.4195 97.9421 20.4439 99.8798 21.1256C101.601 21.7314 103.186 22.0132 103.186 23.3709C103.186 24.2863 102.314 24.8235 100.607 24.8235C98.582 24.8235 97.469 23.8606 97.1861 23.4953C97.378 23.3431 97.6634 22.9807 97.6634 22.3769C97.6634 21.5323 97.0758 20.8429 95.9845 20.8429C95.0611 20.8429 94.2805 21.6033 94.0845 22.6036C92.6015 23.8286 90.9829 24.6225 88.6872 24.6225C86.4268 24.6225 85.2536 23.4354 85.2536 20.9093C85.7835 21.0722 87.1634 21.2679 88.0754 21.2679C91.9028 21.2679 94.5113 19.512 94.5113 15.9956C94.5113 14.1047 92.8673 12.1189 89.6149 12.1189H89.6075C85.3298 12.1189 82.9337 14.855 81.8875 17.8644C81.5943 17.7931 81.3007 17.7239 81.0066 17.6569C81.2405 16.9894 81.4085 16.2158 81.4085 15.3581C81.4085 13.8718 80.4969 12.1189 78.0576 12.1189C76.3584 12.1189 74.7466 13.2427 73.6295 14.927C73.9075 13.8283 74.0917 13.0966 74.1037 13.0476C74.1765 12.7602 74.058 12.4402 73.6142 12.4402H71.1105C70.7537 12.4402 70.5019 12.5675 70.4005 12.9777C70.3324 13.2513 69.4722 16.6593 68.6347 19.9778C68.1073 22.0469 65.3786 24.6225 61.9489 24.6225C59.6882 24.6225 58.5159 23.3573 58.5159 20.8302C59.1074 21.068 60.4255 21.2677 61.3371 21.2677C65.3202 21.2677 67.773 19.5118 67.773 15.9954C67.773 14.1045 66.1292 12.1187 62.8764 12.1187H62.8694C58.0525 12.1187 55.1018 15.8964 54.6018 20.1797C54.3938 21.9603 52.9055 24.4054 51.292 24.4054C50.5059 24.4054 50.0676 23.9069 50.0676 23.0605C50.0676 22.3296 50.5772 20.5423 51.1358 18.3025C51.3229 17.5532 51.6069 16.4101 51.9218 15.1435H54.5406C54.9304 15.1435 55.159 14.9833 55.2476 14.6151C55.3729 14.085 55.6029 13.1602 55.6681 12.9073C55.7525 12.5759 55.5625 12.3247 55.1975 12.3247H52.6224C52.6224 12.3247 53.808 7.54827 53.8362 7.42556C53.9503 6.93987 53.5478 6.6596 53.1267 6.74901C53.1267 6.74901 51.1363 7.14242 50.7672 7.22014C50.3961 7.29595 50.1081 7.50175 49.9741 8.04181L48.9199 12.3247H46.8522C46.4624 12.3247 46.2331 12.4853 46.1457 12.8527C46.0084 13.4228 45.8682 13.9922 45.7252 14.5609C45.6397 14.8923 45.8306 15.1435 46.1952 15.1435H48.223C48.2086 15.2021 47.4905 17.96 46.9098 20.4298C46.6364 21.6175 45.7208 24.3966 44.2215 24.3966C43.3258 24.3966 42.9474 23.9404 42.9474 22.9619C42.9474 21.421 44.4496 17.5637 44.4496 15.8133C44.4496 13.4753 43.2073 12.1206 40.6624 12.1206C39.0582 12.1206 37.3948 13.1665 36.6899 14.0844C36.6899 14.0844 36.9038 13.333 36.9769 13.0442C37.0551 12.739 36.893 12.4392 36.4961 12.4392H34.0078C33.4783 12.4392 33.3319 12.725 33.2542 13.0394C33.2231 13.1655 32.3265 16.7206 31.4657 20.1334C30.877 22.4703 29.4465 24.423 27.917 24.423C27.1305 24.423 26.7803 23.9247 26.7803 23.0783C26.7803 22.347 27.2483 20.5425 27.8066 18.3028C28.486 15.5762 29.0853 13.3307 29.1494 13.0685C29.233 12.7323 29.0842 12.4394 28.6551 12.4394H26.1518C25.6983 12.4394 25.5364 12.6797 25.4408 13.0135C25.4408 13.0135 24.7363 15.7065 23.9902 18.7045C23.4484 20.8802 22.85 23.0963 22.85 24.1376C22.85 25.9957 23.6762 27.3963 25.9478 27.3963C27.701 27.3963 29.0885 26.4986 30.148 25.3548C29.9923 25.9739 29.893 26.3658 29.8829 26.4058C29.7915 26.7597 29.9023 27.0726 30.3152 27.0726H32.8769C33.3228 27.0726 33.4942 26.8915 33.5873 26.4988C33.677 26.1242 35.5902 18.5257 35.5902 18.5257C36.0959 16.4845 37.3467 15.133 39.1063 15.133C39.9407 15.133 40.6629 15.6908 40.5793 16.775C40.4864 17.9676 39.062 22.2523 39.062 24.1328C39.062 25.5562 39.5847 27.3976 42.2383 27.3976C44.0471 27.3976 45.3786 26.522 46.3469 25.3919C46.7014 26.5913 47.6407 27.3976 49.3636 27.3976C52.2269 27.3976 53.9528 25.6829 54.9668 23.9605C55.8082 25.9616 57.7789 27.3967 60.6688 27.3967C63.6142 27.3967 65.8935 26.1429 67.5089 24.4385L67.0051 26.4337C66.9136 26.7931 67.0685 27.0756 67.4863 27.0756H70.0216C70.3688 27.0756 70.6158 26.8974 70.7059 26.5292C70.7505 26.3485 71.1168 24.919 71.6342 22.8879C72.6237 19.001 74.214 14.9685 76.6037 14.9685C77.4465 14.9685 77.7921 15.4443 77.7921 16.1937C77.7921 16.5471 77.6905 16.8525 77.6027 17.0162C76.4445 16.7838 75.5126 17.3611 75.5126 18.6099C75.5126 19.4235 76.3605 20.1631 77.5049 20.1631C78.3793 20.1631 79.1023 19.9466 79.6788 19.5547C80.2463 19.6729 80.8126 19.7972 81.3774 19.9276C81.2906 20.4912 81.2461 21.0607 81.2445 21.631C81.2445 24.7508 83.4507 27.3965 87.4051 27.3965C90.5039 27.3965 92.6305 26.2519 94.4662 24.7845C95.3485 26.2423 97.5765 27.4204 100.5 27.4204C104.506 27.4204 106.778 25.317 106.778 22.5368C106.778 20.0203 104.732 19.0941 102.622 18.3229C100.907 17.6973 99.4765 17.3571 99.4765 16.1332C99.4765 15.1301 100.259 14.6712 101.599 14.6712C102.469 14.6712 103.122 14.8604 103.47 14.9591C103.816 15.8331 104.532 16.8008 105.753 16.8008C106.787 16.8008 107.251 15.9753 107.251 15.2151C107.251 13.051 103.681 12.8242 103.681 8.18309C103.681 5.29712 105.298 2.91636 108.648 2.91636C110.975 2.91636 112.495 4.40654 112.495 6.81161C112.495 8.79455 111.304 12.3245 111.304 12.3245H109.279C108.89 12.3245 108.661 12.4851 108.573 12.8525C108.436 13.4228 108.295 13.9922 108.151 14.5608C108.066 14.8921 108.257 15.1433 108.622 15.1433H110.599C110.599 15.1433 108.555 22.7531 108.555 24.137C108.555 25.9951 109.592 27.3953 111.865 27.3953C115.079 27.3953 117.088 25.2862 117.961 22.2193C118.029 21.9821 117.896 21.789 117.658 21.789H116.431C116.187 21.789 116.045 21.9299 115.983 22.1715C115.706 23.2602 115.019 24.4056 113.668 24.4056C112.881 24.4056 112.443 23.9071 112.443 23.0609C112.443 22.3298 112.923 20.6181 113.512 18.3028C113.793 17.2003 114.293 15.1435 114.293 15.1435ZM88.949 15.0135C90.0857 15.0135 90.6257 15.777 90.6257 16.6869C90.6257 18.2259 89.4435 19.1643 87.5946 19.1643C86.9329 19.1643 86.0078 19.006 85.4616 18.8222C85.6912 17.4069 86.7057 15.0135 88.949 15.0135ZM62.211 15.0135C63.4551 15.0135 63.887 15.777 63.887 16.6869C63.887 18.2259 62.7054 19.1643 60.8567 19.1643C60.1948 19.1643 59.2697 19.006 58.7237 18.8222C58.952 17.4069 59.8516 15.0135 62.211 15.0135ZM13.0223 0.741211C4.91171 0.741211 0.822266 6.6127 0.822266 11.509C0.822266 14.4736 1.93388 17.1111 4.31808 18.0938C4.70903 18.2554 5.05922 18.0993 5.1726 17.6623C5.25147 17.3598 5.43803 16.5969 5.52127 16.2789C5.63579 15.8467 5.59123 15.695 5.27574 15.3183C4.58826 14.4995 4.14896 13.4395 4.14896 11.938C4.14896 7.58197 7.37668 3.68232 12.5538 3.68232C17.1383 3.68232 19.6568 6.51066 19.6568 10.288C19.6568 15.258 17.4787 19.4526 14.2447 19.4526C12.4589 19.4526 11.122 17.9613 11.5505 16.1323C12.0635 13.9487 13.0574 11.5921 13.0574 10.0159C13.0574 8.60503 12.3074 7.42824 10.7551 7.42824C8.92949 7.42824 7.46294 9.33518 7.46294 11.8898C7.46294 13.5168 8.00747 14.6172 8.00747 14.6172C8.00747 14.6172 6.13917 22.6101 5.81173 24.0099C5.15951 26.7976 5.71352 30.2151 5.76035 30.5602C5.78803 30.7647 6.04835 30.8133 6.16628 30.659C6.33464 30.4371 8.50877 27.7267 9.2482 25.0182C9.45733 24.2513 10.4489 20.2804 10.4489 20.2804C11.042 21.4228 12.7755 22.429 14.619 22.429C20.1065 22.429 23.8298 17.3774 23.8298 10.6157C23.8298 5.50292 19.5409 0.741211 13.0223 0.741211Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-4 col-md-2 mt-5">
<!-- Image -->
<div class="img-fluid svg-shim text-netflix mx-auto" style="max-width: 102px;">
<svg viewBox="0 0 86 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M73.4135 22.4746C74.6112 22.594 75.8083 22.7223 77.0026 22.855L79.6394 16.1576L82.1457 23.4727C83.4317 23.6385 84.7171 23.8125 85.9986 23.9941L81.6045 11.1664L86 0.000884651H82.2773L82.2386 0.055733L79.8641 6.08758L77.7794 0.0017693H74.1038L77.8984 11.0791L73.4137 22.4746H73.4135ZM70.6336 22.2121V0.000884651H66.9594V21.9004C68.1849 21.9977 69.4109 22.1021 70.6336 22.2118V22.2121ZM43.033 20.9701C44.0248 20.9701 45.0156 20.9777 46.0046 20.986V12.826H50.4185V9.35106H46.0049V3.47992H51.0884V0.000884651H42.3163V20.973C42.5545 20.973 42.7939 20.9692 43.033 20.9701ZM31.6252 21.1824C32.8493 21.1376 34.0745 21.0998 35.3015 21.0691V3.48051H38.7358V0.0017693H28.1909V3.48051H31.6258V21.1824H31.6252ZM3.52461 23.5244V10.2914L7.87512 22.99C9.21302 22.8355 10.5529 22.6901 11.8965 22.5527V0.00117954H8.37107V13.7083L3.67655 0.00117954H0V24H0.0220736C1.18682 23.8343 2.35557 23.6768 3.52461 23.5244ZM24.6479 3.47963V0.00117954H15.875V22.1767C18.7938 21.9175 21.716 21.7002 24.6408 21.5247V18.0431C22.9448 18.1445 21.2523 18.2613 19.5638 18.3913V12.8274H23.9777V9.35047H19.5638V3.47963H24.6479ZM58.3701 17.8767V0H54.6798V21.1951C57.6153 21.3059 60.5394 21.4605 63.4537 21.6551V18.1713C61.7623 18.059 60.0681 17.9614 58.3701 17.8764V17.8767Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-4 col-md-2 mt-5">
<!-- Image -->
<div class="img-fluid svg-shim text-instagram mx-auto" style="max-width: 112px;">
<svg viewBox="0 0 119 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.93232 0C5.85082 0 4.44875 1.15027 3.62165 1.91597C1.80324 3.53488 0.15625 6.51171 0.15625 8.90107C0.15625 12.2962 3.03508 13.5778 3.76323 13.5778C4.0033 13.5778 4.20797 13.4536 4.20797 13.1268C4.20797 12.8707 4.04603 12.6576 3.88492 12.4387C3.21822 11.4164 3.00407 10.4408 3.00407 9.12488C3.00407 6.38135 4.26562 3.86661 5.31208 2.71587C5.50504 2.50761 5.94103 2.05774 6.07148 2.05774C6.20099 2.05774 6.23307 2.16353 6.23307 2.49051L6.11149 20.4476C6.11149 23.2548 5.30392 24.3699 5.30392 25.0309C5.30392 25.3213 5.42928 25.3967 5.66864 25.3967C6.80199 25.3967 7.93143 24.0112 8.25141 23.5059C9.24365 21.7869 9.48704 20.445 9.48704 16.5743V1.48498C9.48704 1.07654 9.3728 0.899985 8.98595 0.648156C8.42022 0.287805 7.77198 0 6.93232 0ZM39.3375 0.0501047C38.8044 0.0501047 38.5765 0.329599 38.5513 1.19444L38.4331 4.77538L35.3106 4.66686C35.1212 4.66199 35.0356 4.72207 34.9527 4.88901C34.6876 5.38768 34.548 5.77843 34.548 6.42908C34.548 6.95886 34.7875 7.01537 35.001 7.01537L38.2498 7.10893L38.2399 13.9504C38.2399 15.4014 37.3269 17.2838 35.7071 18.8493C35.7071 18.8493 35.8464 18.3767 35.8385 17.8807C35.8385 16.477 34.9377 15.2049 33.7369 14.3047L30.806 12.0932C31.4203 11.3803 32.4612 9.96645 32.4612 8.7726C32.4612 7.84697 31.881 7.45812 30.7992 7.45812C29.2725 7.45812 27.5019 8.86058 27.5019 10.9406C27.5019 11.6989 27.8382 12.3813 28.3495 12.9033C27.6436 14.2466 26.6449 16.014 25.9032 17.2727C25.3431 18.2365 24.3954 19.713 23.8348 19.713C23.4214 19.713 23.2304 19.0607 23.2304 16.5545C23.2304 14.4723 23.3779 12.2085 23.4519 10.0354C23.4519 9.53735 23.3704 9.07786 22.7257 8.62739C22.1326 8.24626 21.4002 7.71399 20.6458 7.71399C18.9686 7.71399 17.8261 9.26189 17.0423 10.7755C16.2312 12.3442 15.7926 13.6661 15.1738 15.5841L15.2421 8.98323C15.2632 8.51258 15.1447 8.32985 14.7692 8.16968C14.2821 7.96249 13.565 7.72361 12.929 7.72361C12.3975 7.72361 12.3328 7.95347 12.3328 8.51365L12.2613 16.4341L12.2532 19.489C12.2532 22.2432 12.5971 22.7024 14.2265 22.7024C15.1287 22.7024 15.4177 22.5962 15.4355 21.844C15.4603 21.3465 15.6975 20.1413 16.0184 18.9326C16.957 15.3649 18.0692 12.5432 19.9868 10.3925C20.1868 10.1837 20.3414 10.2584 20.3099 10.5544C20.3099 10.5544 20.0067 15.3826 20.0067 17.3575C20.0067 20.8698 20.5456 22.7025 22.288 22.7025C23.9981 22.7025 25.6776 20.4988 26.5944 19.0111L29.5355 14.0771C31.4413 15.7058 32.7712 16.9686 32.7712 18.5049C32.7712 19.4597 32.1705 20.3939 31.2556 20.3939C30.1122 20.3939 29.3816 19.1845 28.6093 19.1845C27.9683 19.1845 27.1456 20.4257 27.1456 21.1305C27.1456 21.7959 28.5932 22.7372 31.1907 22.7372C35.0251 22.7372 37.082 20.0979 38.3165 17.1752C38.5527 20.6441 39.9308 22.6704 42.0801 22.6704C43.4898 22.6704 45.1192 20.8839 45.8603 18.7018C45.8603 18.7018 45.9335 19.2682 46.4964 20.4288C47.2712 21.9444 48.449 22.6403 49.9121 22.6403C51.7318 22.6403 53.2882 21.5339 54.2384 19.6773C54.3825 21.0841 55.5602 22.6334 57.4542 22.6334C58.643 22.6334 59.7269 21.7198 60.4384 20.2149C60.4384 20.2149 61.3599 22.7004 64.0254 22.7004C65.5226 22.7004 67.2954 21.3093 67.7191 20.2986L67.7657 21.7685L63.8108 25.4265C62.6624 26.5446 61.4409 28.151 61.4409 29.9296C61.4409 32.1917 63.5703 33.4924 65.4442 33.4924C67.3921 33.4924 68.6846 32.2546 69.3926 31.2175C70.2836 29.8755 70.6599 27.3461 70.6599 24.8737L70.5716 21.1558C73.2371 18.2171 75.3233 14.1552 76.252 11.2812L78.2753 11.2277C78.6673 11.2013 78.6477 11.3561 78.5935 11.5852C78.2379 13.0924 77.9274 14.7993 77.9274 16.4992C77.9274 19.3075 78.5723 20.5296 79.4993 21.5284C80.3054 22.3652 81.1069 22.6475 81.9506 22.6475C83.6005 22.6475 84.6363 21.2809 84.9648 20.4193C85.7396 21.9349 86.881 22.6408 88.3437 22.6408C90.1635 22.6408 91.72 21.5343 92.6703 19.6777C92.8144 21.0846 93.9919 22.6339 95.8859 22.6339C97.3009 22.6339 98.1216 21.815 98.767 20.2721C98.78 20.7684 98.7991 21.2975 98.8137 21.7935C98.8307 22.0502 99.0352 22.2127 99.2184 22.2796C99.8199 22.5079 100.348 22.6222 100.822 22.6222C102.059 22.6222 102.327 22.3674 102.327 21.5564C102.327 20.2189 102.367 18.1056 102.745 16.4088C103.148 14.7195 103.755 12.8071 104.592 11.4765C104.668 11.339 104.853 11.3751 104.861 11.5417C104.981 14.3887 105.171 19.2083 105.916 20.4559C106.284 21.051 106.853 21.4847 107.705 21.4847C108.104 21.4847 108.594 21.314 108.719 21.2075C108.846 21.1082 108.91 20.9979 108.902 20.7933C108.902 17.1537 110.034 13.6301 111.167 11.2611C111.198 11.1908 111.286 11.1853 111.283 11.2778L111.22 13.9003C111.22 18.2074 111.53 20.9285 113.675 22.2366C114.097 22.4733 114.572 22.597 115.055 22.5956C116.153 22.5956 117.148 21.9808 117.64 20.9921C118.041 20.2238 118.416 18.745 118.416 17.9073C118.416 17.5831 118.42 17.0553 117.89 17.0553C117.599 17.0553 117.425 17.2702 117.355 17.5948C117.186 18.2984 117.048 18.9018 116.785 19.5975C116.535 20.2615 116.161 20.6482 115.718 20.6482C115.197 20.6482 114.933 20.2373 114.782 19.9834C114.118 18.967 114.064 16.6323 114.064 14.6835L114.224 9.66772C114.224 9.25275 114.052 8.7561 113.413 8.38993C112.985 8.14249 111.901 7.67671 111.237 7.67671C110.621 7.67671 110.323 8.02649 110.101 8.54001C109.684 9.46231 108.291 13.0799 107.918 16.0212C107.904 16.0987 107.808 16.1151 107.801 16.0162C107.607 13.9362 107.508 11.4302 107.51 9.73943C107.51 9.22829 107.385 8.49762 106.304 8.02412C105.779 7.80553 105.344 7.67172 104.813 7.67172C104.155 7.67172 104.013 7.99491 103.778 8.42317C103.032 9.80545 102.516 11.608 101.743 13.8817L101.755 8.67892C101.755 8.43564 101.606 8.11673 101.18 8.03088C100.124 7.78748 99.6346 7.67695 99.2183 7.67695C98.9151 7.67695 98.7485 7.91928 98.7485 8.18132L98.6918 17.0522C98.4875 18.1381 97.6597 20.7302 96.4853 20.7302C95.5213 20.7302 95.0715 19.7506 95.0715 15.6561L95.2464 9.00151C95.2464 8.58121 94.9713 8.40465 94.5704 8.22667C93.9971 7.99823 93.541 7.90752 92.9583 7.90752C92.227 7.90752 91.976 8.25861 92.124 9.10196C91.3201 8.01106 90.5164 7.40814 89.0966 7.40814C86.246 7.40814 84.0974 10.8472 84.0974 15.8448C84.0694 17.2462 84.4071 18.6391 84.4071 18.6391C84.1491 19.8022 83.5428 20.7502 82.7051 20.7502C81.6484 20.7502 80.9749 19.2517 80.9749 16.6547C80.9749 14.05 81.9641 11.1122 81.9641 10.316C81.9641 9.39024 81.3593 8.80454 80.2888 8.80454C79.7525 8.80454 77.7632 9.25714 76.7434 9.40568C76.7434 9.40568 76.8584 8.91852 76.8499 8.53549C76.8499 7.62269 76.4229 7.05064 75.3629 7.05064C74.0674 7.05064 73.1163 7.9784 73.1163 9.56122C73.1163 10.2713 73.5241 10.9284 74.0639 11.2814C73.3632 14.2126 72.2239 16.3926 70.5451 18.8279L70.6866 8.96649C70.6866 8.64591 70.6015 8.4468 69.9754 8.20304C69.6444 8.05962 69.1049 7.89399 68.4249 7.89399C67.4395 7.89399 67.5047 8.59985 67.5574 9.12832C67.1065 8.32641 66.1193 7.37454 64.5964 7.37454C60.4463 7.37454 59.1722 13.7219 59.797 18.2297C59.797 18.7793 59.2619 20.7302 58.0534 20.7302C57.0894 20.7302 56.6396 19.7506 56.6396 15.6561L56.8162 9.00151C56.8162 8.58109 56.5392 8.40453 56.1383 8.22667C55.565 7.99823 55.1105 7.90752 54.5279 7.90752C53.7964 7.90752 53.5454 8.25861 53.6934 9.10184C52.8895 8.01094 52.0842 7.40802 50.6642 7.40802C47.8137 7.40802 45.6366 10.5532 45.6366 15.5506C45.6366 17.4583 43.999 20.3694 42.8506 20.3694C42.2126 20.3694 41.5334 19.1947 41.5334 16.1937C41.5366 14.1481 41.8148 7.18421 41.8148 7.18421L45.8232 7.11903C46.0145 7.11724 46.1253 6.90757 46.1962 6.77839C46.3802 6.40379 46.4693 6.15433 46.4693 5.70612C46.4693 5.30172 46.3885 5.15402 45.8715 5.12481L41.8763 4.88426L42.0463 1.15134C42.0583 0.915658 41.9165 0.762019 41.6599 0.646968C40.8866 0.343609 39.9381 0.0502235 39.3375 0.0501047ZM51.4691 9.83121C52.5378 9.83121 53.6223 10.8088 53.6223 14.2774C53.6223 18.6445 52.036 20.6764 50.8162 20.6764C49.6727 20.6764 48.8046 19.0575 48.8046 15.8776C48.8046 12.6634 49.6523 9.83121 51.4691 9.83121ZM89.9574 9.83121C91.0262 9.83121 92.1106 10.8088 92.1106 14.2774C92.1106 18.6445 90.5244 20.6764 89.3046 20.6764C88.161 20.6764 87.2929 19.0575 87.2929 15.8776C87.293 12.6634 88.1407 9.83121 89.9574 9.83121ZM65.5459 9.85128C66.9406 9.85128 67.5576 11.2932 67.5576 14.0886C67.5576 18.3032 66.3085 20.7029 64.7915 20.7029C63.823 20.7029 62.7094 19.1079 62.7681 15.9709C62.7681 13.9652 63.4202 9.85128 65.5459 9.85128ZM67.9072 23.9502V25.6103C67.9072 31.1189 66.4437 32.0592 65.2677 32.0592C64.8221 32.0592 63.7307 31.7216 63.7307 30.3588C63.7307 28.4538 65.7165 26.2866 66.3336 25.6169L67.9072 23.9502Z" fill="currentColor"/>
</svg>
</div>
</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section class="pt-10 pt-md-12 pb-11 pb-md-13">
<div class="container-lg">
<div class="row align-items-center justify-content-between">
<div class="col-md-5 col-lg-6 order-md-1">
<!-- Image -->
<div class="position-relative mb-10 mb-md-0">
<!-- Decoration -->
<div class="position-absolute bottom-start text-primary-light ms-n8 mb-n8">
<svg width="185" height="186" viewBox="0 0 185 186" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="currentColor"/><circle cx="22" cy="2" r="2" fill="currentColor"/><circle cx="42" cy="2" r="2" fill="currentColor"/><circle cx="62" cy="2" r="2" fill="currentColor"/><circle cx="82" cy="2" r="2" fill="currentColor"/><circle cx="102" cy="2" r="2" fill="currentColor"/><circle cx="122" cy="2" r="2" fill="currentColor"/><circle cx="142" cy="2" r="2" fill="currentColor"/><circle cx="162" cy="2" r="2" fill="currentColor"/><circle cx="182" cy="2" r="2" fill="currentColor"/><circle cx="2" cy="22" r="2" fill="currentColor"/><circle cx="22" cy="22" r="2" fill="currentColor"/><circle cx="42" cy="22" r="2" fill="currentColor"/><circle cx="62" cy="22" r="2" fill="currentColor"/><circle cx="82" cy="22" r="2" fill="currentColor"/><circle cx="102" cy="22" r="2" fill="currentColor"/><circle cx="122" cy="22" r="2" fill="currentColor"/><circle cx="142" cy="22" r="2" fill="currentColor"/><circle cx="162" cy="22" r="2" fill="currentColor"/><circle cx="182" cy="22" r="2" fill="currentColor"/><circle cx="2" cy="42" r="2" fill="currentColor"/><circle cx="22" cy="42" r="2" fill="currentColor"/><circle cx="42" cy="42" r="2" fill="currentColor"/><circle cx="62" cy="42" r="2" fill="currentColor"/><circle cx="82" cy="42" r="2" fill="currentColor"/><circle cx="102" cy="42" r="2" fill="currentColor"/><circle cx="122" cy="42" r="2" fill="currentColor"/><circle cx="142" cy="42" r="2" fill="currentColor"/><circle cx="162" cy="42" r="2" fill="currentColor"/><circle cx="182" cy="42" r="2" fill="currentColor"/><circle cx="2" cy="62" r="2" fill="currentColor"/><circle cx="22" cy="62" r="2" fill="currentColor"/><circle cx="42" cy="62" r="2" fill="currentColor"/><circle cx="62" cy="62" r="2" fill="currentColor"/><circle cx="82" cy="62" r="2" fill="currentColor"/><circle cx="102" cy="62" r="2" fill="currentColor"/><circle cx="122" cy="62" r="2" fill="currentColor"/><circle cx="142" cy="62" r="2" fill="currentColor"/><circle cx="162" cy="62" r="2" fill="currentColor"/><circle cx="182" cy="62" r="2" fill="currentColor"/><circle cx="2" cy="82" r="2" fill="currentColor"/><circle cx="22" cy="82" r="2" fill="currentColor"/><circle cx="42" cy="82" r="2" fill="currentColor"/><circle cx="62" cy="82" r="2" fill="currentColor"/><circle cx="82" cy="82" r="2" fill="currentColor"/><circle cx="102" cy="82" r="2" fill="currentColor"/><circle cx="122" cy="82" r="2" fill="currentColor"/><circle cx="142" cy="82" r="2" fill="currentColor"/><circle cx="162" cy="82" r="2" fill="currentColor"/><circle cx="182" cy="82" r="2" fill="currentColor"/><circle cx="2" cy="102" r="2" fill="currentColor"/><circle cx="22" cy="102" r="2" fill="currentColor"/><circle cx="42" cy="102" r="2" fill="currentColor"/><circle cx="62" cy="102" r="2" fill="currentColor"/><circle cx="82" cy="102" r="2" fill="currentColor"/><circle cx="102" cy="102" r="2" fill="currentColor"/><circle cx="122" cy="102" r="2" fill="currentColor"/><circle cx="142" cy="102" r="2" fill="currentColor"/><circle cx="162" cy="102" r="2" fill="currentColor"/><circle cx="182" cy="102" r="2" fill="currentColor"/><circle cx="2" cy="122" r="2" fill="currentColor"/><circle cx="22" cy="122" r="2" fill="currentColor"/><circle cx="42" cy="122" r="2" fill="currentColor"/><circle cx="62" cy="122" r="2" fill="currentColor"/><circle cx="82" cy="122" r="2" fill="currentColor"/><circle cx="102" cy="122" r="2" fill="currentColor"/><circle cx="122" cy="122" r="2" fill="currentColor"/><circle cx="142" cy="122" r="2" fill="currentColor"/><circle cx="162" cy="122" r="2" fill="currentColor"/><circle cx="182" cy="122" r="2" fill="currentColor"/><circle cx="2" cy="142" r="2" fill="currentColor"/><circle cx="22" cy="142" r="2" fill="currentColor"/><circle cx="42" cy="142" r="2" fill="currentColor"/><circle cx="62" cy="142" r="2" fill="currentColor"/><circle cx="82" cy="142" r="2" fill="currentColor"/><circle cx="102" cy="142" r="2" fill="currentColor"/><circle cx="122" cy="142" r="2" fill="currentColor"/><circle cx="142" cy="142" r="2" fill="currentColor"/><circle cx="162" cy="142" r="2" fill="currentColor"/><circle cx="182" cy="142" r="2" fill="currentColor"/><circle cx="2" cy="162" r="2" fill="currentColor"/><circle cx="22" cy="162" r="2" fill="currentColor"/><circle cx="42" cy="162" r="2" fill="currentColor"/><circle cx="62" cy="162" r="2" fill="currentColor"/><circle cx="82" cy="162" r="2" fill="currentColor"/><circle cx="102" cy="162" r="2" fill="currentColor"/><circle cx="122" cy="162" r="2" fill="currentColor"/><circle cx="142" cy="162" r="2" fill="currentColor"/><circle cx="162" cy="162" r="2" fill="currentColor"/><circle cx="182" cy="162" r="2" fill="currentColor"/><circle cx="2" cy="182" r="2" fill="currentColor"/><circle cx="22" cy="182" r="2" fill="currentColor"/><circle cx="42" cy="182" r="2" fill="currentColor"/><circle cx="62" cy="182" r="2" fill="currentColor"/><circle cx="82" cy="182" r="2" fill="currentColor"/><circle cx="102" cy="182" r="2" fill="currentColor"/><circle cx="122" cy="182" r="2" fill="currentColor"/><circle cx="142" cy="182" r="2" fill="currentColor"/><circle cx="162" cy="182" r="2" fill="currentColor"/><circle cx="182" cy="182" r="2" fill="currentColor"/></svg> </div>
<!-- Image -->
<div class="rounded-top-start rounded-bottom-end shadow-img">
<img class="position-relative img-fluid rounded-top-start rounded-bottom-end shadow-lg" src="assets/img/screenshots/desktop/screenshot-1.jpg" alt="...">
</div>
</div>
</div>
<div class="col-md-6 col-lg-5 order-md-0">
<!-- Heading -->
<h2 class="display-4 mb-4">
Measure to decide, not just to measure.
</h2>
<!-- Text -->
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. In urna lectus, mattis non accumsan in, tempor dictum neque.
</p>
<!-- List -->
<ul class="list-checked list-checked-primary">
<li>
Machine learning enabled projections
</li>
<li>
Visitor mouse and click tracking
</li>
<li>
Automated revenue suggestions
</li>
</ul>
<!-- Button -->
<a class="btn btn-primary lift" href="#!">
View all
</a>
</div>
</div>
</div>
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-fluid-x shape-top text-white">
<div class="shape-img pb-8">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 25h25L75 0h25v50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- STEPS -->
<section class="pt-9 pt-md-11 bg-white">
<div class="container-lg">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8 text-center">
<!-- Preheading -->
<h6 class="text-uppercase text-primary mb-5">
Management fund
</h6>
<!-- Heading -->
<h2 class="display-4 mb-9">
Follow your users from initial visit through <span class="text-underline-warning">loyal evangelist</span>.
</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-8 col-lg-12">
<!-- Timeline -->
<ol class="timeline timeline-expand-lg timeline-warning mb-0">
<li class="timeline-item active">
<!-- Heading -->
<h2>
Activation
</h2>