-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog-post.html
More file actions
1384 lines (1103 loc) · 70.6 KB
/
blog-post.html
File metadata and controls
1384 lines (1103 loc) · 70.6 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>
<!-- 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="bg-dark">
<div class="container-lg">
<div class="row align-items-center justify-content-between">
<div class="col-md-6 col-lg-5 order-md-1 position-relative" style="z-index: 1;">
<!-- Image -->
<img class="img-fluid mw-md-125 mb-4 mb-md-0" src="assets/img/coworking/hero-1.jpg" alt="...">
</div>
<div class="col-md-6 order-md-0 pt-6 pt-md-10 pb-12 pb-md-13 text-center text-md-start">
<!-- Preheading -->
<h6 class="font-sans-serif text-warning mb-5">
Remote work
</h6>
<!-- Heading -->
<h1 class="display-3 text-white mb-4">
Designing for a simpler future.
</h1>
<!-- Text -->
<p class="fs-lg text-white mb-0">
Learn to design and build coworking spaces tailored to the needs of growing tech teams.
</p>
</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 pb-md-10">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 25h25L75 0h25v50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- CONTENT -->
<section class="py-9 py-md-11">
<div class="container-lg">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<!-- Text -->
<p class="mb-9">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</p>
<!-- Heading -->
<h1 class="mb-4">
Big heading for a new topic
</h1>
<!-- Text -->
<p>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
</p>
<!-- List -->
<ul class="list-checked list-checked-circle list-checked-primary mb-9">
<li>
<strong>All payments are processed</strong> securely through PayPal or Stripe. Bootstrap Themes does not directly process payments through the website.
</li>
<li>
<strong>You have 14 days</strong> to evaluate your purchase. If your purchase fails to meet expectations set by the seller, or is critically flawed in some way, contact Bootstrap Themes and we will issue a full refund pending a review.
</li>
<li>
<strong>Membership is a benefit</strong> for those who follow our terms and policies. We may at any time suspend or terminate your account.
</li>
</ul>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-10">
<!-- Slider -->
<div class="flickity-buttons-adjacent flickity-buttons-rounded flickity-buttons-bottom-end mb-9" data-flickity='{"imagesLoaded": true, "pageDots": false, "wrapAround": true}'>
<div class="w-100">
<!-- Image -->
<img class="img-fluid" src="assets/img/blog/slider-1.jpg" alt="...">
</div>
<div class="w-100">
<!-- Image -->
<img class="img-fluid" src="assets/img/blog/slider-2.jpg" alt="...">
</div>
<div class="w-100">
<!-- Image -->
<img class="img-fluid" src="assets/img/blog/slider-3.jpg" alt="...">
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<!-- Heading -->
<h2 class="mb-4">
Small heading for a smaller transition
</h2>
<!-- Text -->
<p class="mb-9">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</p>
<!-- Divider -->
<hr class="hr-sm mx-auto mb-9" style="height: 3px;">
<!-- Blockquote -->
<blockquote class="mb-9">
<p class="h1 text-primary text-center">
Teams struggle to make their onboarding experience as good as their core product, so the results are poor retention
</p>
</blockquote>
<!-- Divider -->
<hr class="hr-sm mx-auto mb-9" style="height: 3px;">
<!-- Text -->
<p class="mb-9">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</p>
<!-- Images -->
<div class="row mb-9">
<div class="col-6">
<!-- Image -->
<img class="img-fluid rounded-1" src="assets/img/blog/grid-thumb-1.jpg" alt="...">
</div>
<div class="col-6">
<!-- Image -->
<img class="img-fluid rounded-1 mb-6" src="assets/img/blog/grid-thumb-2.jpg" alt="...">
<!-- Image -->
<img class="img-fluid rounded-1" src="assets/img/blog/grid-thumb-3.jpg" alt="...">
</div>
</div>
<!-- Heading -->
<h2 class="mb-4">
Small heading for a smaller transition
</h2>
<!-- Text -->
<p class="mb-9">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</p>
<!-- Divider -->
<hr class="my-9">
<!-- Footer -->
<footer class="d-flex align-items-center">
<!-- Avatar -->
<div class="avatar avatar-sm">
<img class="avatar-img rounded-circle" src="assets/img/avatars/avatar-1.jpg" alt="...">
</div>
<!-- Body -->
<div class="ms-4">
<!-- Title -->
<h4 class="font-sans-serif mb-0">
Katie Williams
</h4>
<!-- Position -->
<p class="small text-muted mt-n1 mb-0">
Published 2/15/2020
</p>
</div>
</footer>
</div>
</div>
</div>
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-fluid-x shape-top text-dark">
<div class="shape-img pb-8 pb-md-12">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 25h25L75 0h25v50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- DECORATION -->
<div class="position-relative d-none d-md-block">
<div class="position-absolute top-start text-warning mt-n11 ms-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>
</div>
<!-- DECORATION -->
<div class="position-relative d-none d-md-block">
<div class="position-absolute top-end text-primary-dark mt-n15">
<svg width="129" height="208" viewBox="0 0 129 208" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#decoration5clip0)"><path fill-rule="evenodd" clip-rule="evenodd" d="M142.812 201.281a6.47 6.47 0 1112.94.002 6.47 6.47 0 01-12.94-.002zm1.618 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.811-4.811-4.811 4.811-1.143-1.144 4.811-4.811-4.811-4.811 1.143-1.143 4.811 4.811zm-32.343 1.143a6.468 6.468 0 1112.936 0 6.468 6.468 0 01-12.936 0zm1.617 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.811-4.811-4.811 4.811-1.143-1.144 4.811-4.811-4.811-4.811 1.143-1.143 4.811 4.811z" fill="currentColor"/></g><g clip-path="url(#decoration5clip1)"><path fill-rule="evenodd" clip-rule="evenodd" d="M142.812 149.281a6.47 6.47 0 1112.94.002 6.47 6.47 0 01-12.94-.002zm1.618 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.811-4.811-4.811 4.811-1.143-1.144 4.811-4.811-4.811-4.811 1.143-1.143 4.811 4.811zm-32.343 1.143a6.468 6.468 0 1112.936 0 6.468 6.468 0 01-12.936 0zm1.617 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.811-4.811-4.811 4.811-1.143-1.144 4.811-4.811-4.811-4.811 1.143-1.143 4.811 4.811z" fill="currentColor"/></g><g clip-path="url(#decoration5clip2)"><path fill-rule="evenodd" clip-rule="evenodd" d="M142.812 97.281a6.47 6.47 0 1112.939.002 6.47 6.47 0 01-12.939-.002zm1.618 0a4.851 4.851 0 119.703 0 4.851 4.851 0 01-9.703 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.811-4.811-4.811 4.81-1.143-1.143 4.811-4.81-4.811-4.812 1.143-1.143 4.811 4.81zm-32.343 1.143a6.469 6.469 0 1112.937 0 6.469 6.469 0 01-12.937 0zm1.617 0a4.851 4.851 0 119.703 0 4.851 4.851 0 01-9.703 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.811-4.811-4.811 4.811-1.143-1.144 4.811-4.81-4.811-4.812 1.143-1.143 4.811 4.81z" fill="currentColor"/></g><g clip-path="url(#decoration5clip3)"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.813 149.281a6.47 6.47 0 1112.938 0 6.47 6.47 0 01-12.938 0zm1.617 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.811-4.81-4.811 1.143-1.143 4.811 4.811zm-32.343 1.143a6.469 6.469 0 1112.937.001 6.469 6.469 0 01-12.938-.001zm1.617 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.811-4.81-4.811 1.143-1.143 4.811 4.811z" fill="currentColor"/></g><g clip-path="url(#decoration5clip4)"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.813 97.281a6.469 6.469 0 1112.937 0 6.469 6.469 0 01-12.938 0zm1.617 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.81-1.143-1.143 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81zm-32.343 1.143a6.469 6.469 0 1112.937 0 6.469 6.469 0 01-12.938 0zm1.617 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81z" fill="currentColor"/></g><g clip-path="url(#decoration5clip5)"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.813 45.281a6.469 6.469 0 1112.937 0 6.469 6.469 0 01-12.938 0zm1.617 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.81-1.143-1.143 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81zm-32.343 1.143a6.469 6.469 0 1112.937 0 6.469 6.469 0 01-12.938 0zm1.617 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.81-1.143-1.143 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81z" fill="currentColor"/></g><g clip-path="url(#decoration5clip6)"><path fill-rule="evenodd" clip-rule="evenodd" d="M90.813 175.281a6.47 6.47 0 1112.938 0 6.47 6.47 0 01-12.939 0zm1.617 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.811-4.81-4.811 1.143-1.143 4.811 4.811zm-32.344 1.143a6.469 6.469 0 1112.938.001 6.469 6.469 0 01-12.938-.001zm1.618 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.811-4.81-4.811 1.143-1.143 4.811 4.811z" fill="currentColor"/></g><g clip-path="url(#decoration5clip7)"><path fill-rule="evenodd" clip-rule="evenodd" d="M90.813 123.281a6.47 6.47 0 1112.938 0 6.47 6.47 0 01-12.939 0zm1.617 0a4.851 4.851 0 119.702 0 4.851 4.851 0 01-9.702 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81zm-32.344 1.143a6.469 6.469 0 1112.938 0 6.469 6.469 0 01-12.938 0zm1.618 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.811-1.143-1.144 4.81-4.811-4.81-4.811 1.143-1.143 4.811 4.811z" fill="currentColor"/></g><g clip-path="url(#decoration5clip8)"><path fill-rule="evenodd" clip-rule="evenodd" d="M90.813 71.281a6.469 6.469 0 1112.937 0 6.469 6.469 0 01-12.938 0zm1.617 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851-27.018l4.811-4.811 1.144 1.143-4.811 4.811 4.811 4.811-1.144 1.144-4.81-4.811-4.812 4.81-1.143-1.143 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81zm-32.344 1.143a6.469 6.469 0 1112.938 0 6.469 6.469 0 01-12.938 0zm1.618 0a4.852 4.852 0 119.703 0 4.852 4.852 0 01-9.703 0zm4.851 24.732l4.811-4.811 1.144 1.143-4.811 4.811 4.81 4.811-1.143 1.144-4.81-4.811-4.812 4.81-1.143-1.143 4.81-4.81-4.81-4.812 1.143-1.143 4.811 4.81z" fill="currentColor"/></g><defs><clipPath id="decoration4clip0"><path transform="matrix(0 -1 -1 0 155.75 207.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip1"><path transform="rotate(-90 155.75 0)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip2"><path transform="matrix(0 -1 -1 0 155.75 103.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip3"><path transform="matrix(0 -1 -1 0 51.75 155.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip4"><path transform="matrix(0 -1 -1 0 51.75 103.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip5"><path transform="matrix(0 -1 -1 0 51.75 51.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip6"><path transform="matrix(0 -1 -1 0 103.75 181.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip7"><path transform="matrix(0 -1 -1 0 103.75 129.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath><clipPath id="decoration4clip8"><path transform="matrix(0 -1 -1 0 103.75 77.75)" fill="#fff" d="M0 0h51.75v51.75H0z"/></clipPath></defs></svg> </div>
</div>
<!-- RELATED -->
<section class="pt-8 pt-md-9 pb-10 pb-md-12 bg-dark">
<div class="container-lg">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8 text-center text-white">
<!-- Heading -->
<h2 class="display-3 mb-4">
Related Readings
</h2>
<!-- Text -->
<p class="mb-9">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.
</p>
</div>
</div>
<div class="row mt-n6">
<div class="col-md-4">
<!-- Card -->
<div class="card card-sm rounded-top-start rounded-bottom-end lift lift-lg mt-6">
<!-- Image -->
<img class="card-img-top rounded-top-start" src="assets/img/blog/post-header-1.jpg" alt="...">
<!-- Shape -->
<div class="position-relative">
<div class="shape shape-fluid-x shape-top text-white">
<div class="shape-img pb-5">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 25h25L75 0h25v50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- Body -->
<div class="card-body">
<!-- Heading -->
<h2 class="mb-2">
Build a culture where everyone designs.
</h2>
<!-- Text -->
<p class="fs-sm mb-4">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque.
</p>
<!-- Footer -->
<div class="d-flex align-items-center">