-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoad.html
1661 lines (1363 loc) · 93.5 KB
/
Load.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
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
<html lang="en" class=""><head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Libs CSS -->
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/fonts/Feather/feather.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/@fancyapps/fancybox/dist/jquery.fancybox.min.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/aos/dist/aos.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/choices.js/public/assets/styles/choices.min.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/flickity-fade/flickity-fade.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/flickity/dist/flickity.min.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/highlightjs/styles/vs2015.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/jarallax/dist/jarallax.css">
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/libs/quill/dist/quill.core.css">
<!-- Map -->
<link href="https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css" rel="stylesheet">
<!-- Theme CSS -->
<link rel="stylesheet" href="https://landkit.goodthemes.co/assets/css/theme.min.css">
<title>Landkit</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-156446909-2"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag("js", new Date());gtag("config", "UA-156446909-2");</script>
<link type="text/css" rel="stylesheet" charset="UTF-8" href="https://translate.googleapis.com/translate_static/css/translateelement.css"></head>
<body data-aos-easing="ease-out-quad" data-aos-duration="700" data-aos-delay="0">
<!-- MODALS
================================================== -->
<!-- Example -->
<div class="modal fade" id="modalExample" tabindex="-1" role="dialog" aria-labelledby="modalExampleTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<!-- Close -->
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Image -->
<div class="text-center">
<img src="https://landkit.goodthemes.co/assets/img/illustrations/illustration-1.png" alt="..." class="img-fluid mb-3" style="width: 200px;">
</div>
<!-- Heading -->
<h2 class="font-weight-bold text-center mb-1" id="modalExampleTitle">
Schedule a demo with us
</h2>
<!-- Text -->
<p class="font-size-lg text-center text-muted mb-6 mb-md-8">
We can help you solve company communication.
</p>
<!-- Form -->
<form>
<div class="row">
<div class="col-12 col-md-6">
<!-- First name -->
<div class="form-label-group">
<input type="text" class="form-control form-control-flush" id="registrationFirstNameModal" placeholder="First name">
<label for="registrationFirstNameModal">First name</label>
</div>
</div>
<div class="col-12 col-md-6">
<!-- Last name -->
<div class="form-label-group">
<input type="text" class="form-control form-control-flush" id="registrationLastNameModal" placeholder="Last name">
<label for="registrationLastNameModal">Last name</label>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6">
<!-- Email -->
<div class="form-label-group">
<input type="email" class="form-control form-control-flush" id="registrationEmailModal" placeholder="Email">
<label for="registrationEmailModal">Email</label>
</div>
</div>
<div class="col-12 col-md-6">
<!-- Password -->
<div class="form-label-group">
<input type="password" class="form-control form-control-flush" id="registrationPasswordModal" placeholder="Password">
<label for="registrationPasswordModal">Password</label>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- Submit -->
<button class="btn btn-block btn-primary mt-3 lift">
Request a demo
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Signup: Horizontal -->
<div class="modal fade" id="modalSignupHorizontal" tabindex="-1" role="dialog" aria-labelledby="modalSignupHorizontalTitle" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card card-row">
<div class="row no-gutters">
<div class="col-12 col-md-6 bg-cover card-img-left" style="background-image: url(https://landkit.goodthemes.co/assets/img/photos/photo-8.jpg);">
<!-- Image (placeholder) -->
<img src="https://landkit.goodthemes.co/assets/img/photos/photo-8.jpg" alt="..." class="img-fluid d-md-none invisible">
<!-- Shape -->
<div class="shape shape-right shape-fluid-y svg-shim text-white d-none d-md-block">
<svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M116 0H51v172C76 384 0 517 0 517v173h116V0z" fill="currentColor"></path></svg>
</div>
</div>
<div class="col-12 col-md-6">
<div class="card-body">
<!-- Close -->
<button type="button" class="modal-close close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSignupHorizontalTitle">
Sign Up
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSignupHorizontalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSignupHorizontalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSignupHorizontalPassword">
Create a password
</label>
<input type="password" class="form-control" id="modalSignupHorizontalPassword" placeholder="Create a password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign up
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Already have an account? <a href="./signin-illustration.html">Log in</a>.
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div>
</div>
<!-- Signup: Vertical -->
<div class="modal fade" id="modalSignupVertical" tabindex="-1" role="dialog" aria-labelledby="modalSignupVerticalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card">
<!-- Close -->
<button type="button" class="modal-close close text-white" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Image -->
<img src="https://landkit.goodthemes.co/assets/img/photos/photo-7.jpg" alt="..." class="card-img-top">
<!-- Shape -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x svg-shim text-white">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0v240h2880V0h-720z" fill="currentColor"></path></svg>
</div>
</div>
<!-- Body -->
<div class="card-body">
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSignupVerticalTitle">
Sign Up
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSignupVerticalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSignupVerticalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSignupVerticalPassword">
Create a password
</label>
<input type="password" class="form-control" id="modalSignupVerticalPassword" placeholder="Create a password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign up
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Already have an account? <a href="./signin-illustration.html">Log in</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Signin: Horizontal -->
<div class="modal fade" id="modalSigninHorizontal" tabindex="-1" role="dialog" aria-labelledby="modalSigninHorizontalTitle" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card card-row">
<div class="row no-gutters">
<div class="col-12 col-md-6 bg-cover card-img-left" style="background-image: url(https://landkit.goodthemes.co/assets/img/photos/photo-1.jpg);">
<!-- Image (placeholder) -->
<img src="https://landkit.goodthemes.co/assets/img/photos/photo-1.jpg" alt="..." class="img-fluid d-md-none invisible">
<!-- Shape -->
<div class="shape shape-right shape-fluid-y svg-shim text-white d-none d-md-block">
<svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M116 0H51v172C76 384 0 517 0 517v173h116V0z" fill="currentColor"></path></svg>
</div>
</div>
<div class="col-12 col-md-6">
<div class="card-body">
<!-- Close -->
<button type="button" class="modal-close close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSigninHorizontalTitle">
Sign In
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSigninHorizontalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSigninHorizontalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSigninHorizontalPassword">
Enter your password
</label>
<input type="password" class="form-control" id="modalSigninHorizontalPassword" placeholder="Enter your password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign in
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Don't have an account yet? <a href="./signin-illustration.html">Sign up</a>.
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div>
</div>
<!-- Signup: Vertical -->
<div class="modal fade" id="modalSigninVertical" tabindex="-1" role="dialog" aria-labelledby="modalSigninVerticalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card">
<!-- Close -->
<button type="button" class="modal-close close text-white" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Image -->
<img src="https://landkit.goodthemes.co/assets/img/photos/photo-21.jpg" alt="..." class="card-img-top">
<!-- Shape -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x svg-shim text-white">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0v240h2880V0h-720z" fill="currentColor"></path></svg>
</div>
</div>
<!-- Body -->
<div class="card-body">
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSigninVerticalTitle">
Sign In
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSigninVerticalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSigninVerticalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSigninVerticalPassword">
Enter your password
</label>
<input type="password" class="form-control" id="modalSigninVerticalPassword" placeholder="Enter your password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign in
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Don't have an account yet? <a href="./signin-illustration.html">Sign up</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Example -->
<div class="modal fade" id="modalPayment" tabindex="-1" role="dialog" aria-labelledby="modalPaymentTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<!-- Close -->
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Heading -->
<h2 class="font-weight-bold text-center mb-1" id="modalPaymentTitle">
Add Payment
</h2>
<!-- Text -->
<p class="font-size-lg text-center text-muted mb-6 mb-md-8">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form>
<!-- Name -->
<div class="form-group">
<label for="modalPaymentName">Name on card</label>
<input class="form-control" id="modalPaymentName" type="text" placeholder="First Last">
</div>
<!-- Name -->
<div class="form-group">
<label for="modalPaymentNumbber">Card number</label>
<input class="form-control" id="modalPaymentNumbber" type="number" placeholder="4242 4242 4242 4242">
</div>
<!-- Name -->
<div class="form-group">
<label for="modalPaymentDate">Exp. Date</label>
<input class="form-control" id="modalPaymentDate" type="text" placeholder="03/2023">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary mt-3 lift">
Add Payment Method
</button>
</form>
</div>
</div>
</div>
</div>
<!-- NAVBAR
================================================== -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<!-- Brand -->
<a class="navbar-brand" href="./index.html">
<img src="https://landkit.goodthemes.co/assets/img/brand.svg" class="navbar-brand-img" alt="...">
</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fe fe-x"></i>
</button>
<!-- Navigation -->
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarLandings" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Landings
</a>
<div class="dropdown-menu dropdown-menu-xl p-0" aria-labelledby="navbarLandings">
<div class="row no-gutters">
<div class="col-12 col-lg-6">
<div class="dropdown-img-left" style="background-image: url(https://landkit.goodthemes.co/assets/img/photos/photo-3.jpg);">
<!-- Heading -->
<h4 class="font-weight-bold text-white mb-0">
Want to see an overview?
</h4>
<!-- Text -->
<p class="font-size-sm text-white">
See all the pages at once.
</p>
<!-- Button -->
<a href="./overview.html" class="btn btn-sm btn-white shadow-dark fonFt-size-sm">
View all pages
</a>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="dropdown-body">
<div class="row no-gutters">
<div class="col-6">
<!-- Heading -->
<h6 class="dropdown-header">
Services
</h6>
<!-- List -->
<a class="dropdown-item" href="./coworking.html">
Coworking
</a>
<a class="dropdown-item" href="./rental.html">
Rental
</a>
<a class="dropdown-item mb-5" href="./job.html">
Job Listing
</a>
<!-- Heading -->
<h6 class="dropdown-header">
Apps
</h6>
<!-- List -->
<a class="dropdown-item" href="./desktop-app.html">
Desktop
</a>
<a class="dropdown-item" href="./mobile-app.html">
Mobile
</a>
</div>
<div class="col-6">
<!-- Heading -->
<h6 class="dropdown-header">
Web
</h6>
<!-- List -->
<a class="dropdown-item" href="./index.html">
Basic
</a>
<a class="dropdown-item" href="./startup.html">
Startup
</a>
<a class="dropdown-item" href="./enterprise.html">
Enterprise
</a>
<a class="dropdown-item" href="./service.html">
Service
</a>
<a class="dropdown-item" href="./cloud.html">
Cloud Hosting
</a>
<a class="dropdown-item" href="./agency.html">
Agency
</a>
<a class="dropdown-item" href="./framework.html">
Framework <span class="h6 text-uppercase text-primary">(new)</span>
</a>
</div>
</div> <!-- / .row -->
</div>
</div>
</div> <!-- / .row -->
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarPages" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Pages
</a>
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="navbarPages">
<div class="row no-gutters">
<div class="col-6">
<div class="row no-gutters">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Career
</h6>
<!-- List -->
<a class="dropdown-item" href="./careers.html">
Listing
</a>
<a class="dropdown-item mb-5" href="./career-single.html">
Opening
</a>
<!-- Heading -->
<h6 class="dropdown-header">
Company
</h6>
<!-- List -->
<a class="dropdown-item" href="./about.html">
About
</a>
<a class="dropdown-item" href="./pricing.html">
Pricing
</a>
<a class="dropdown-item mb-5 mb-lg-0" href="./terms-of-service.html">
Terms
</a>
</div>
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Help center
</h6>
<!-- List -->
<a class="dropdown-item" href="./help-center.html">
Overview
</a>
<a class="dropdown-item mb-5" href="./help-center-article.html">
Article
</a>
<!-- Heading -->
<h6 class="dropdown-header">
Contact
</h6>
<!-- List -->
<a class="dropdown-item" href="./contact.html">
Basic
</a>
<a class="dropdown-item" href="./contact-alt.html">
Cover
</a>
</div>
</div>
</div>
<div class="col-6">
<div class="row no-gutters">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Blog
</h6>
<!-- List -->
<a class="dropdown-item" href="./blog.html">
Rich View
</a>
<a class="dropdown-item" href="./blog-post.html">
Article
</a>
<a class="dropdown-item" href="./blog-showcase.html">
Showcase
</a>
<a class="dropdown-item mb-5 mb-lg-0" href="./blog-search.html">
Search
</a>
</div>
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Portfolio
</h6>
<!-- List -->
<a class="dropdown-item" href="./portfolio-masonry.html">
Masonry
</a>
<a class="dropdown-item" href="./portfolio-grid-rows.html">
Grid Rows
</a>
<a class="dropdown-item" href="./portfolio-parallax.html">
Parallax
</a>
<a class="dropdown-item" href="./portfolio-case-study.html">
Case Study
</a>
<a class="dropdown-item" href="./portfolio-sidebar.html">
Sidebar
</a>
<a class="dropdown-item" href="./portfolio-sidebar-fluid.html">
Sidebar: Fluid
</a>
<a class="dropdown-item" href="./portfolio-grid.html">
Basic Grid
</a>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarAccount" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Account
</a>
<ul class="dropdown-menu" aria-labelledby="navbarAccount">
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Settings
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./account-general.html">
General
</a>
<a class="dropdown-item" href="./account-security.html">
Security
</a>
<a class="dropdown-item" href="./account-notifications.html">
Notifications
</a>
<a class="dropdown-item" href="./billing-plans-and-payment.html">
Plans & Payment
</a>
<a class="dropdown-item" href="./billing-users.html">
Users
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Sign In
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./signin-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./signin-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./signin.html">
Basic
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSigninHorizontal">
Modal Horizontal
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSigninVertical">
Modal Vertical
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Sign Up
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./signup-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./signup-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./signup.html">
Basic
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSignupHorizontal">
Modal Horizontal
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSignupVertical">
Modal Vertical
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Password Reset
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./password-reset-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./password-reset-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./password-reset.html">
Basic
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Error
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./error-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./error-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./error.html">
Basic
</a>
</div>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Documentation
</a>
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
<a class="list-group-item" href="./docs/index.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<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><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><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"></path><rect fill="#335EEA" opacity=".3" x="7" y="10" width="5" height="2" rx="1"></rect><rect fill="#335EEA" opacity=".3" x="7" y="14" width="9" height="2" rx="1"></rect></g></svg>
</div>
<!-- Content -->
<div class="ml-4">
<!-- Heading -->
<h6 class="font-weight-bold text-uppercase text-primary mb-0">
Documentation
</h6>
<!-- Text -->
<p class="font-size-sm text-gray-700 mb-0">
Customizing and building
</p>
</div>
</a>
<a class="list-group-item" href="./docs/alerts.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<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><rect fill="#335EEA" x="4" y="4" width="7" height="7" rx="1.5"></rect><path d="M5.5 13h4a1.5 1.5 0 011.5 1.5v4A1.5 1.5 0 019.5 20h-4A1.5 1.5 0 014 18.5v-4A1.5 1.5 0 015.5 13zm9-9h4A1.5 1.5 0 0120 5.5v4a1.5 1.5 0 01-1.5 1.5h-4A1.5 1.5 0 0113 9.5v-4A1.5 1.5 0 0114.5 4zm0 9h4a1.5 1.5 0 011.5 1.5v4a1.5 1.5 0 01-1.5 1.5h-4a1.5 1.5 0 01-1.5-1.5v-4a1.5 1.5 0 011.5-1.5z" fill="#335EEA" opacity=".3"></path></g></svg>
</div>
<!-- Content -->
<div class="ml-4">
<!-- Heading -->
<h6 class="font-weight-bold text-uppercase text-primary mb-0">
Components
</h6>
<!-- Text -->
<p class="font-size-sm text-gray-700 mb-0">
Full list of components
</p>
</div>
</a>
<a class="list-group-item" href="./docs/changelog.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<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><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"></path><rect fill="#335EEA" x="6" y="11" width="9" height="2" rx="1"></rect><rect fill="#335EEA" x="6" y="15" width="5" height="2" rx="1"></rect></g></svg>
</div>
<!-- Content -->
<div class="ml-4">
<!-- Heading -->
<h6 class="font-weight-bold text-uppercase text-primary mb-0">
Changelog
</h6>
<!-- Text -->
<p class="font-size-sm text-gray-700 mb-0">
Keep track of changes
</p>
</div>
<!-- Badge -->
<span class="badge badge-pill badge-primary-soft ml-auto">
1.2.2
</span>
</a>
</div>
</div>
</li>
</ul>
<!-- Button -->
<a class="navbar-btn btn btn-sm btn-info lift ml-auto" href="help-panel.html" target="_blank">
Buy now
</a>
</div>
</div>
</nav>
<!-- WELCOME
================================================== -->
<section class="mt-n11 pt-12 pb-8 pt-md-14 pb-md-11 bg-black bg-pattern-2">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10 text-center">
<!-- Headin -->
<h1 class="display-1 font-weight-bold text-white aos-init aos-animate" data-aos="fade-up" data-aos-delay="50">
The UI framework that you'll actually love to use.
</h1>
<!-- Text -->
<p class="lead text-gray-500 mb-6 mx-auto aos-init aos-animate" data-aos="fade-up" data-aos-delay="100" style="max-width: 500px;">
We created an easy-to-use set of components for building startup sites and apps.
</p>
<!-- Button -->
<p class="mb-7 mb-md-9 aos-init aos-animate" data-aos="fade-up" data-aos-delay="150">
</p>
</div>
</div> <!-- / .row -->
<div class="row">
<div class="col-12 aos-init aos-animate" data-aos="fade-up" data-aos-delay="200">
<!-- Media -->
<div class="position-relative pt-7 pb-7 pl-7 mb-7 mb-md-9 rounded-xl shadow-multicolor overflow-hidden">
<!-- Background -->
<div class="position-absolute top-0 right-0 bottom-0 left-0 bg-gradient-multicolor"></div>
<!-- Image -->
<img class="position-relative img-fluid rounded-left shadow-lg" src="https://landkit.goodthemes.co/assets/img/screenshots/desktop/dashkit-alt.jpg" alt="...">
</div>
</div>
</div> <!-- / .row -->
<div class="row align-items-center justify-content-center">
<div class="col-12">
<!-- Heading -->
<h6 class="text-uppercase text-center text-info mb-6">
Enable the future of tech
</h6>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-white mb-2 mb-md-0 svg-shim">
<svg viewBox="0 0 2761 991" xmlns="http://www.w3.org/2000/svg"><path d="M1447.629 301.83c0 28.119-22.658 50.76-50.777 50.76-28.118 0-50.76-22.641-50.76-50.76s21.87-50.76 50.76-50.76c28.915.78 50.777 23.43 50.777 50.76zm-209.316 102.317v12.5s-24.202-31.256-75.75-31.256c-85.121 0-151.517 64.828-151.517 154.638 0 89.037 65.615 154.638 151.517 154.638 52.328 0 75.75-32.02 75.75-32.02v13.271c0 6.25 4.697 10.923 10.939 10.923h63.252V393.177h-63.252c-6.242.024-10.939 5.5-10.939 10.97zm0 188.21c-11.703 17.189-35.14 32.028-63.251 32.028-49.98 0-88.258-31.24-88.258-84.356 0-53.11 38.277-84.349 88.258-84.349 27.338 0 52.328 15.62 63.251 32.02v104.658zm121.058-199.156h74.97v293.664h-74.97V393.2zm1119.954-7.818c-51.548 0-75.766 31.255-75.766 31.255V251.85h-74.97v435.015h63.267c6.25 0 10.923-5.47 10.923-10.94v-13.27s24.218 32.02 75.75 32.02c85.137 0 151.518-65.585 151.518-154.623s-66.38-154.669-150.722-154.669zm-12.499 238.214c-28.906 0-51.548-14.824-63.267-32.02V486.92c11.719-15.62 36.709-32.02 63.267-32.02 49.98 0 88.25 31.24 88.25 84.349 0 53.109-38.261 84.348-88.25 84.348zm-177.28-110.891v174.939h-74.985V521.288c0-48.412-15.62-67.949-57.767-67.949-22.642 0-46.08 11.72-60.942 28.907v204.626h-74.955V393.21h59.335c6.25 0 10.938 5.469 10.938 10.938v12.5c21.87-22.658 50.76-31.256 79.652-31.256 32.808 0 60.147 9.386 82.016 28.126 26.543 21.87 36.709 49.98 36.709 99.189zm-450.65-127.323c-51.532 0-75.75 31.255-75.75 31.255V251.85h-74.97v435.015h63.251c6.25 0 10.939-5.47 10.939-10.94v-13.27s24.218 32.02 75.75 32.02c85.137 0 151.518-65.585 151.518-154.623.78-89.045-65.6-154.669-150.737-154.669zm-12.498 238.214c-28.891 0-51.533-14.824-63.252-32.02V486.92c11.719-15.62 36.709-32.02 63.252-32.02 49.996 0 88.257 31.24 88.257 84.349 0 53.109-38.261 84.348-88.257 84.348zm-203.05-238.214c22.641 0 34.36 3.917 34.36 3.917v69.5s-62.48-21.088-101.52 23.438v205.399H1481.2V393.2h63.267c6.25 0 10.923 5.469 10.923 10.938v12.5c14.075-16.409 44.535-31.256 67.957-31.256zM844.705 660.306c-3.901-9.37-7.81-19.52-11.711-28.119-6.258-14.051-12.507-27.338-17.96-39.83l-.781-.78c-53.897-117.156-111.68-235.858-172.606-352.999l-2.34-4.696a1536.65 1536.65 0 01-18.734-36.71c-7.817-14.067-15.62-28.89-28.119-42.958-24.99-31.24-60.918-48.427-99.18-48.427-39.057 0-74.198 17.188-99.96 46.859-11.72 14.052-20.317 28.891-28.12 42.958a1695.173 1695.173 0 01-18.732 36.71l-2.349 4.696c-60.138 117.141-118.709 235.85-172.598 353l-.788 1.552c-5.462 12.514-11.719 25.786-17.968 39.83-3.901 8.597-7.803 17.968-11.704 28.118-10.158 28.892-13.287 56.23-9.37 84.357 8.59 58.578 47.632 107.763 101.529 129.647 20.309 8.598 41.398 12.5 63.26 12.5 6.249 0 14.051-.78 20.308-1.569 25.779-3.12 52.33-11.703 78.107-26.543 32.02-17.968 62.48-43.73 96.84-81.22 34.36 37.49 65.6 63.252 96.84 81.22 25.786 14.84 52.329 23.422 78.1 26.543 6.249.796 14.066 1.568 20.316 1.568 21.87 0 43.73-3.9 63.252-12.499 54.677-21.884 92.938-71.85 101.536-129.647 6.203-27.331 3.082-54.654-7.068-83.56zm-352.219 40.61c-42.178-53.109-69.517-103.09-78.88-145.252-3.9-17.968-4.688-33.588-2.34-47.647 1.553-12.5 6.25-23.438 12.499-32.808 14.84-21.074 39.83-34.36 68.729-34.36 28.907 0 54.677 12.498 68.736 34.36 6.25 9.37 10.931 20.316 12.507 32.808 2.333 14.067 1.553 30.46-2.348 47.647-9.402 41.383-36.74 91.37-78.903 145.252zm311.6 36.71c-5.46 40.61-32.8 75.765-71.06 91.385-18.742 7.802-39.058 10.15-59.352 7.802-19.52-2.348-39.057-8.598-59.35-20.3-28.119-15.636-56.23-39.83-89.038-75.767 51.54-63.252 82.78-121.058 94.5-172.59 5.469-24.218 6.257-46.08 3.9-66.397-3.113-19.52-10.15-37.489-21.081-53.109-24.226-35.156-64.843-55.45-110.127-55.45-45.283 0-85.901 21.09-110.111 55.45-10.93 15.62-17.968 33.588-21.09 53.11-3.12 20.316-2.348 42.958 3.902 66.395 11.71 51.533 43.73 110.112 94.491 173.371-32.02 35.929-60.919 60.147-89.037 75.766-20.31 11.72-39.822 17.969-59.343 20.302a124.96 124.96 0 01-59.359-7.803c-38.261-15.62-65.6-50.776-71.061-91.386-2.341-19.52-.788-39.042 7.03-60.91 2.332-7.819 6.249-15.62 10.15-24.991 5.47-12.499 11.703-25.786 17.96-39.057l.788-1.553c53.882-116.376 111.672-235.085 171.81-350.666l2.341-4.697c6.258-11.703 12.507-24.202 18.749-35.92 6.25-12.5 13.271-24.219 21.87-34.377 16.4-18.725 38.26-28.891 62.478-28.891 24.218 0 46.08 10.166 62.48 28.891 8.598 10.182 15.62 21.9 21.87 34.376 6.256 11.719 12.506 24.218 18.74 35.921l2.348 4.697a10341.109 10341.109 0 01171.038 351.446v.78c6.257 12.515 11.719 26.559 17.968 39.073 3.901 9.355 7.81 17.157 10.15 24.975 6.235 20.285 8.575 39.822 5.447 60.123z" fill="currentColor" fill-rule="nonzero"></path></svg>
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-white mb-2 mb-md-0 svg-shim">
<svg viewBox="0 0 2761 991" xmlns="http://www.w3.org/2000/svg"><path d="M326.558 759C247.442 759 170 702.045 170 573.476c0-128.987 77.442-185.105 156.558-185.105 38.93 0 69.489 10.051 91.256 24.29l-23.86 52.349c-14.652-10.47-36.42-17.17-58.187-17.17-47.72 0-91.255 37.69-91.255 124.799 0 87.108 44.79 125.636 91.255 125.636 21.768 0 43.535-6.7 58.186-17.17l23.861 53.605C395.209 749.787 365.488 759 326.558 759zm272.512 0c-100.884 0-156.558-79.989-156.558-185.524s55.255-185.105 156.558-185.105c100.883 0 156.558 79.151 156.558 185.105C755.628 679.011 699.953 759 599.07 759zm0-313.255c-56.093 0-83.721 50.255-83.721 126.894 0 76.638 27.628 127.312 83.72 127.312 56.094 0 83.722-50.674 83.722-127.312 0-76.639-27.628-126.894-83.721-126.894zm253.674-114.748c-23.86 0-43.116-18.427-43.116-41.042 0-22.614 19.256-41.041 43.116-41.041s43.116 18.427 43.116 41.041c0 22.615-19.674 41.042-43.116 41.042zm-36.418 64.493h72.837v355.972h-72.837V395.49zm358.325 355.972V514.008c0-41.46-25.116-67.425-74.511-67.425-26.373 0-50.652 4.606-65.303 10.47V751.88h-72V413.498c35.582-14.657 81.21-25.127 136.884-25.127 99.628 0 147.767 43.554 147.767 118.936v244.574h-72.837v-.42zm264.14 7.538c-46.047 0-91.675-11.307-119.721-25.127V233h72v171.704c17.163-7.957 44.79-14.658 69.488-14.658 91.675 0 154.047 66.169 154.047 175.054 0 134.432-69.489 193.9-175.814 193.9zM1448 446.583c-19.674 0-43.116 4.606-56.93 11.726v233.685c10.465 4.606 30.977 9.213 51.488 9.213 57.349 0 99.628-39.785 99.628-130.662.419-77.895-36.419-123.962-94.186-123.962zM1810.512 759c-102.14 0-154.047-41.46-154.047-111.817 0-99.253 105.488-116.842 213.07-122.705v-22.615c0-44.81-29.721-60.724-75.349-60.724-33.488 0-74.512 10.47-98.372 21.777l-18.419-49.418c28.465-12.563 76.605-25.127 124.326-25.127 84.977 0 136.884 33.084 136.884 121.03v224.472c-25.535 13.82-77.86 25.127-128.093 25.127zm59.441-186.361c-72.837 3.769-145.255 10.05-145.255 73.288 0 37.69 28.883 60.724 83.72 60.724 23.024 0 50.233-3.769 61.535-9.213v-124.8zM2101.023 759c-41.442 0-84.976-11.307-110.93-25.127l24.28-55.28c18.418 11.307 57.348 23.033 84.557 23.033 38.93 0 64.884-19.265 64.884-48.999 0-32.246-27.21-44.81-63.21-58.211-47.72-18.008-100.883-39.785-100.883-106.373 0-58.63 45.628-99.672 124.744-99.672 43.116 0 78.698 10.47 103.814 25.127l-22.605 50.255c-15.907-10.05-47.72-20.94-73.255-20.94-37.675 0-58.605 19.684-58.605 45.649 0 32.247 26.372 43.554 61.535 56.955 49.395 18.427 104.232 38.948 104.232 108.467C2239.163 717.12 2190.186 759 2101.023 759zm489.35-187.199l-236.513 33.084c7.117 64.075 48.977 96.322 108.838 96.322 35.581 0 74.093-8.795 98.372-21.777l20.93 54.024c-27.628 14.657-75.349 25.127-124.326 25.127-112.186 0-174.976-72.032-174.976-185.524 0-108.885 60.697-185.105 160.325-185.105 92.512 0 147.35 60.725 147.35 156.628.836 8.794.836 18.008 0 27.221zm-147.768-130.662c-55.256 0-91.675 42.297-92.93 116.423l172.465-23.87c-.838-61.982-32.233-92.553-79.535-92.553z" fill="currentColor" fill-rule="nonzero"></path></svg>
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-white mb-2 mb-md-0 svg-shim">
<svg viewBox="0 0 2761 991" xmlns="http://www.w3.org/2000/svg"><path d="M951.211 442.866c25.294 0 45.797-20.48 45.797-45.739 0-25.263-20.503-45.738-45.797-45.738-25.294 0-45.797 20.475-45.797 45.738 0 25.26 20.503 45.739 45.797 45.739zm1511.432 156.271c-6.967-4.891-12.345-5.702-16.808 3.797-76.919 166.334-206.54 83.33-193.664 90.636 28.751-13.132 104.37-73.682 92.94-157.289-6.94-51.095-50.864-73.76-97.486-65.644-81.381 14.166-111.32 101.806-96.078 179.397 2.667 13.325 7.432 24.315 12.193 35.08-91.965 74.669-128.486-66.842-132.63-83.753-.164-.905 71.01-60.137 90.805-201.281 20.748-147.928-26.516-174.864-74.847-174.023-89.436 1.556-113.603 188.124-81.135 343.615-2.72.707-15.375 7.706-35.71 8.49-14.632-45.97-77.156-86.266-93.519-70.738-40.954 38.842 9.932 114.782 45.737 120.738-21.51 132.267-156.021 99.51-130.982-66.2 43.803-81.215 77.117-201.975 71.173-274.877-2.106-25.81-21.219-60.39-64.443-58.675-83.139 3.284-92.177 189.904-82.43 322.356-.484-3.263-5.111 16.092-39.18 25.715-8.06-44.66-80.083-89.49-97.038-67.937-31.738 40.338 23.266 112.262 49.32 117.278-21.51 132.263-156.017 99.505-130.977-66.204 43.802-81.21 77.112-201.971 71.168-274.873-2.106-25.814-21.215-60.395-64.443-58.684-83.139 3.288-92.177 189.908-82.43 322.36-.489-3.314-5.224 16.679-40.683 26.142-1.187-57.942-73.474-84.511-90.839-66.023-30.948 32.956 7.088 100.574 42.275 117.282-21.508 132.263-156.016 99.505-130.977-66.204 43.803-81.21 77.117-201.971 71.17-274.873-2.103-25.814-21.216-60.395-64.445-58.684-83.134 3.288-89.824 199.29-80.078 331.738-27.383 117.14-119.214 263.426-107.284-29.616 1.179-20.557 2.465-28.361-7.8-36.058-7.691-5.982-25.181-3.103-34.742-2.866-11.62.465-14.534 7.253-17.102 17.514-5.982 26.496-7.057 52.181-7.912 87.227-.56 16.394-1.877 24.043-8.201 46.397-6.315 22.35-42.344 63.201-62.07 56.37-27.366-9.395-18.388-86.528-13.26-139.524 4.273-41.88-9.41-60.688-44.467-67.527-20.525-4.271-32.995-3.616-54.37-10.344-20.213-6.36-24.785-44.535-67.897-31.813-23.58 6.964-8.421 56.848-14.089 93.82-27.862 181.871-85.835 186.866-112.731 98.518 121.131-296.205 35.04-412.978-15.353-412.978-52.488 0-112.486 36.097-87.08 267.059-12.353-3.599-16.152-5.538-29.675-5.538-76.482 0-128.59 61.731-128.59 137.882 0 76.151 52.112 137.887 128.595 137.887 45.15 0 76.849-20.501 100.857-52.216 15.664 22.397 34.738 52.56 69.619 51.203 103.969-4.043 134.205-216.977 137.775-228.854 11.115 1.71 21.63 4.947 31.894 6.658 17.102 2.564 18.345 9.322 17.956 26.496-4.532 144.82 22.234 195.528 82.948 195.528 33.828 0 63.978-33.185 84.749-56.913 15.513 31.968 40.233 55.934 73.396 56.908 80.358 1.996 111.126-125.884 108.32-109.055-2.201 13.205 26.071 108.335 108.8 108.68 102.475.431 121.523-112.085 123.794-130.93.284-3.75.41-3.362 0 0l-.078 1.142c32.533-6.043 49.32-23.458 49.32-23.458s26.122 154.996 122.887 153.25c100.486-1.818 119.435-103.525 121.921-123.358.328-4.706.522-4.155 0 0l-.039.582c38.645-14.037 48.81-28.125 48.81-28.125s20.762 151.914 122.888 153.242c91.007 1.19 124.736-91.86 124.934-130.806 15.35.164 43.743-9.093 43.078-9.62 0 0 33.335 132.824 126.427 139.646 43.708 3.202 76.495-24.557 95.186-37.218 43.923 35.515 190.185 80.879 282.538-75.453 13.036-22.436-14.99-48.94-19.911-52.401zM400.883 712.64c-44.623 0-73.236-41.196-73.236-85.615 0-44.415 26.265-85.611 70.888-85.611 20.08 0 31.25 2.206 46.889 15.786 2.836 11.158 10.873 36.895 14.784 48.582 5.24 15.64 11.473 28.953 17.757 43.441-8.978 37.162-38.411 63.417-77.082 63.417zm108.739-154.134c-1.856-2.952-1.468-1.138-3.544-3.926-8.18-22.216-23.943-71.803-25.769-128.126-2.063-63.713 8.572-138.395 39.927-138.395 21.245 0 43.824 151.355-10.619 270.447h.005zm628.3-66.386c-5.033-37.808-5.297-206.358 35.23-201.716 22.376 9.05-14.188 168.097-35.23 201.716zm295.928 0c-5.033-37.808-5.296-206.358 35.23-201.716 22.377 9.05-14.188 168.097-35.23 201.716zm293.58 2.349c-5.037-37.813-5.296-206.362 35.226-201.72 22.376 9.05-14.188 168.1-35.226 201.72zm324.11-213.93c37.052-3.835 35.524 157.715-38.848 259.707-9.59-36.865-24.297-247.05 38.848-259.711v.004zm155.736 347.623c-11.9-60.02 18.85-99.44 50.55-103.763 11.08-1.767 27.136 5.4 30.34 18.799 5.265 25.25-.765 62.705-71.714 110.227.104.405-6.522-11.894-9.172-25.263h-.004z" fill="currentColor" fill-rule="nonzero"></path></svg>
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">