-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1529 lines (1515 loc) · 135 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
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, shrink-to-fit=no">
<!-- Site Meta Data -->
<meta name="author" content="Click Down">
<meta name="description" content="Click Down">
<meta name="keywords" content="Click Down">
<!-- Site Title -->
<title>ClickDown™ | One app to replace them all</title>
<!-- Favicon Link -->
<link rel="icon" type="image/png" sizes="512x512" href="./assets/images/favicon/android-chrome-512x512.png">
<link rel="icon" type="image/png" sizes="192x192" href="./assets/images/favicon/android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/favicon/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="./assets/images/favicon/favicon.ico">
<!-- All CSS -->
<link rel="stylesheet" href="./assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/plugins/slick-slider/css/slick.css">
<link rel="stylesheet" href="./assets/plugins/venobox/css/venobox.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!-- Header & Banner Wrapper Section -->
<div class="banner-wrapper position-relative overflow-hidden">
<!-- Header Section -->
<header class="header">
<nav class="navbar navbar-expand-lg py-0">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="./">
<img src="./assets/images/logo/logo-mark.svg" alt="logo-mark" class="navbar-brand__logo w-100">
<span class="navbar-brand__text d-inline-block">ClickDown</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<i data-feather='menu'></i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav text-center ml-auto">
<li class="nav-item">
<a class="nav-link" href="javascript:void(0)">
Product
<!-- <span class="dropdown-toggle__icon d-inline-block">
<i data-feather='chevron-down'></i>
</span> -->
</a>
<!-- <div class="dropdown-menu mt-0" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
</div> -->
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:void(0)">
Learn
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:void(0)" data-toggle="modal" data-target="#contactModal">Contact Sales</a>
</li>
</ul>
<ul class="nav navbar-btn-nav">
<li class="nav-item">
<a href="#!" class="nav-btn nav-btn--login">Login</a>
</li>
<li class="nav-item">
<a href="javascript:void(0)" class="nav-btn nav-btn--signup" data-toggle="modal" data-target="#signUpModal">Sign up</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Off Canvas Menu Toggler -->
<div class="offCanvasMenuCloser position-fixed" data-toggle="collapse" data-target="#navbarSupportedContent" role="button" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"></div>
<!-- Banner Section -->
<section class="banner">
<div class="container">
<div class="row flex-lg-row-reverse">
<div class="col-lg-7">
<div class="banner__image-wrapper">
<img src="./assets/images/banner/banner-image.png" alt="banner-image" class="banner__image w-100">
</div>
</div>
<div class="col-lg-5">
<h1 class="banner__title">
<span class="d-lg-block">One site to</span>
replace them all.
</h1>
<p class="banner__text">All of your work in one place: Tasks, Docs, Chat, Goals, & more.</p>
<form action="javascript:void(0)" class="banner__form needs-validation" novalidate>
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter your email address" required>
<div class="invalid-feedback text-center mt-0">
Please enter a valid email address
</div>
</div>
</form>
<div class="banner__btn-wrapper">
<button class="primary-btn primary-btn--primary dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
<div class="banner__review-wrapper">
<ul class="banner__review__list nav">
<li class="banner__review__list__item nav-item">
<img src="./assets/images/icons/star.svg" alt="star" class="banner__review__list__item__image img-fluid">
</li>
<li class="banner__review__list__item nav-item">
<img src="./assets/images/icons/star.svg" alt="star" class="banner__review__list__item__image img-fluid">
</li>
<li class="banner__review__list__item nav-item">
<img src="./assets/images/icons/star.svg" alt="star" class="banner__review__list__item__image img-fluid">
</li>
<li class="banner__review__list__item nav-item">
<img src="./assets/images/icons/star.svg" alt="star" class="banner__review__list__item__image img-fluid">
</li>
<li class="banner__review__list__item nav-item">
<img src="./assets/images/icons/star.svg" alt="star" class="banner__review__list__item__image img-fluid">
</li>
<li class="banner__review__list__item nav-item">
<span class="banner__review__list__item__text">Based on 10,000+ reviews on</span>
</li>
</ul>
<div class="banner__review__partners d-flex flex-wrap">
<a href="#!" target="_blank" class="banner__review__partners__link d-inline-block">
<img src="./assets/images/reviews/reviews-1.png" alt="partners-logo" class="banner__review__partners__logo w-100">
</a>
<a href="#!" target="_blank" class="banner__review__partners__link d-inline-block">
<img src="./assets/images/reviews/reviews-2.png" alt="partners-logo" class="banner__review__partners__logo w-100">
</a>
<a href="#!" target="_blank" class="banner__review__partners__link d-inline-block">
<img src="./assets/images/reviews/reviews-3.svg" alt="partners-logo" class="banner__review__partners__logo w-100">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Join Companies Section -->
<section class="join-companies">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h1 class="join-companies__title">Join 800,000+ highly productive teams</h1>
<ul class="join-companies__list nav align-items-center justify-content-center">
<li class="join-companies__list__item nav-item">
<img src="./assets/images/join-companies/google.png" alt="join-companies" class="join-companies__list__item__image w-100">
</li>
<li class="join-companies__list__item nav-item">
<img src="./assets/images/join-companies/webflow.svg" alt="join-companies" class="join-companies__list__item__image w-100">
</li>
<li class="join-companies__list__item nav-item">
<img src="./assets/images/join-companies/booking-com.svg" alt="join-companies" class="join-companies__list__item__image w-100">
</li>
<li class="join-companies__list__item nav-item">
<img src="./assets/images/join-companies/ibm.svg" alt="join-companies" class="join-companies__list__item__image w-100">
</li>
<li class="join-companies__list__item nav-item">
<img src="./assets/images/join-companies/padres.svg" alt="join-companies" class="join-companies__list__item__image w-100">
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
<!-- Features (pink) Section -->
<section class="features features--pink">
<div class="features__container mx-auto">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link position-relative active" id="pills-projectAndTasks-tab" data-toggle="pill" href="#pills-projectAndTasks" role="tab" aria-controls="pills-projectAndTasks" aria-selected="true">Project & Tasks</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-chat-tab" data-toggle="pill" href="#pills-chat" role="tab" aria-controls="pills-chat" aria-selected="false">Chat</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-goals-tab" data-toggle="pill" href="#pills-goals" role="tab" aria-controls="pills-goals" aria-selected="false">Goals</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-views-tab" data-toggle="pill" href="#pills-views" role="tab" aria-controls="pills-views" aria-selected="false">Views</a>
</li>
</ul>
</div>
<div class="col-12">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-projectAndTasks" role="tabpanel" aria-labelledby="pills-projectAndTasks-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--negative-margin">
<video src="./assets/videos/features-1a.mp4" poster="./assets/images/videos-poster/features-1a.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-1a.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="col-xl-4 col-lg-6">
<h2 class="features__title">Simplify work and get more done.</h2>
<p class="features__text">Plan, track, and manage any type of work with project management that flexes to your team's needs. </p>
<div class="features__list-wrapper d-flex align-items-end flex-wrap">
<span class="features__list-head text-uppercase">Replaces:</span>
<ul class="features__list nav">
<li class="features__list__item nav-item position-relative">Asana</li>
<li class="features__list__item nav-item position-relative">Monday</li>
<li class="features__list__item nav-item position-relative">Jira</li>
</ul>
</div>
<button class="primary-btn primary-btn--pink dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-chat" role="tabpanel" aria-labelledby="pills-chat-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--negative-margin">
<video src="./assets/videos/features-1b.mp4" poster="./assets/images/videos-poster/features-1b.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-1b.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="col-xl-4 col-lg-6">
<h2 class="features__title">Bring everyone together in Chat.</h2>
<p class="features__text">Work smarter as a team with real-time chat. Tag individuals or groups, assign comments for action items, and link tasks to get more done together.</p>
<div class="features__list-wrapper d-flex align-items-end flex-wrap">
<span class="features__list-head text-uppercase">Replaces:</span>
<ul class="features__list nav">
<li class="features__list__item nav-item position-relative">Slack</li>
<li class="features__list__item nav-item position-relative">MS Teams</li>
<li class="features__list__item nav-item position-relative">Google Hangouts</li>
</ul>
</div>
<button class="primary-btn primary-btn--pink dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-goals" role="tabpanel" aria-labelledby="pills-goals-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--negative-margin">
<video src="./assets/videos/features-1c.mp4" poster="./assets/images/videos-poster/features-1c.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-1c.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="col-xl-4 col-lg-6">
<h2 class="features__title">Set goals and crush them faster.</h2>
<p class="features__text">Stay on track to hit your goals with targets for task completions, numbers, monetary values and more. Track progress in real-time connecting tasks to goals and keep your objectives organized with Goal Folders.</p>
<div class="features__list-wrapper d-flex align-items-end flex-wrap">
<span class="features__list-head text-uppercase">Replaces:</span>
<ul class="features__list nav">
<li class="features__list__item nav-item position-relative">Lattice</li>
<li class="features__list__item nav-item position-relative">Gtmhub</li>
<li class="features__list__item nav-item position-relative">7geese</li>
</ul>
</div>
<button class="primary-btn primary-btn--pink dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-views" role="tabpanel" aria-labelledby="pills-views-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--negative-margin">
<img src="./assets/images/videos-poster/features-1d.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<h2 class="features__title">See your work, your way. </h2>
<p class="features__text">Tackle work from any angle with 20+ real-time views that adapt to your needs. Track tasks on List, update workflows on a Board, drag-and-drop due dates on a Calendar, and so much more.</p>
<div class="features__list-wrapper d-flex align-items-end flex-wrap">
<span class="features__list-head text-uppercase">Replaces:</span>
<ul class="features__list nav">
<li class="features__list__item nav-item position-relative">Monday</li>
<li class="features__list__item nav-item position-relative">Jira</li>
<li class="features__list__item nav-item position-relative">Trello</li>
</ul>
</div>
<button class="primary-btn primary-btn--pink dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features (primary) Section -->
<section class="features features--primary">
<div class="features__container features__container--has-btn mx-auto overflow-hidden">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="nav nav-pills justify-content-center mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link position-relative active" id="pills-docs-tab" data-toggle="pill" href="#pills-docs" role="tab" aria-controls="pills-docs" aria-selected="true">Docs</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-whiteboards-tab" data-toggle="pill" href="#pills-whiteboards" role="tab" aria-controls="pills-whiteboards" aria-selected="false">Whiteboards</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-dashboards-tab" data-toggle="pill" href="#pills-dashboards" role="tab" aria-controls="pills-dashboards" aria-selected="false">Dashboards</a>
</li>
</ul>
</div>
<div class="col-12">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-docs" role="tabpanel" aria-labelledby="pills-docs-tab">
<div class="row justify-content-center">
<div class="col-xl-7 col-lg-10 text-center mb-2">
<h2 class="features__title">The world's most powerful (and fun) Docs.</h2>
</div>
<div class="col-xl-9 col-lg-11">
<div class="features__videos-wrapper">
<video src="./assets/videos/features-2a.mp4" poster="./assets/images/videos-poster/features-2a.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-2a.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-whiteboards" role="tabpanel" aria-labelledby="pills-whiteboards-tab">
<div class="row justify-content-center">
<div class="col-xl-6 col-lg-10 text-center mb-2">
<h2 class="features__title px-2">Bring your ideas to life with Whiteboards.</h2>
</div>
<div class="col-xl-9 col-lg-11">
<div class="features__videos-wrapper">
<video src="./assets/videos/features-2b.mp4" poster="./assets/images/videos-poster/features-2b.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-2b.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-dashboards" role="tabpanel" aria-labelledby="pills-dashboards-tab">
<div class="row justify-content-center">
<div class="col-xl-7 col-lg-10 text-center mb-2">
<h2 class="features__title">See how you're doing in real-time with Dashboards. </h2>
</div>
<div class="col-xl-9 col-lg-11">
<div class="features__videos-wrapper">
<video src="./assets/videos/features-2c.mp4" poster="./assets/images/videos-poster/features-2c.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-2c.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="features__btn w-100" data-toggle="modal" data-target="#signUpModal">
<span class="features__btn__text d-inline-flex align-items-center">Get Started <i class="features__btn__icon" data-feather='arrow-right'></i></span>
</button>
</div>
</section>
<!-- Features (green) Section -->
<section class="features features--green">
<div class="features__container features__container--has-btn mx-auto overflow-hidden">
<div class="container">
<div class="row flex-md-column-reverse">
<div class="col-12">
<div class="row">
<div class="col-lg-5">
<ul class="nav nav-pills nav-pills--with-count mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link d-flex align-items-center position-relative active" id="pills-import-tab" data-toggle="pill" href="#pills-import" role="tab" aria-controls="pills-import" aria-selected="true">
<span class="nav-link__count d-inline-flex align-items-center justify-content-center rounded-circle">01</span>
Import
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link d-flex align-items-center position-relative" id="pills-download-tab" data-toggle="pill" href="#pills-download" role="tab" aria-controls="pills-download" aria-selected="false">
<span class="nav-link__count d-inline-flex align-items-center justify-content-center rounded-circle">02</span>
Download
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link d-flex align-items-center position-relative" id="pills-clickApps-tab" data-toggle="pill" href="#pills-clickApps" role="tab" aria-controls="pills-clickApps" aria-selected="false">
<span class="nav-link__count d-inline-flex align-items-center justify-content-center rounded-circle">03</span>
ClickApps
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link d-flex align-items-center position-relative" id="pills-integrations-tab" data-toggle="pill" href="#pills-integrations" role="tab" aria-controls="pills-integrations" aria-selected="false">
<span class="nav-link__count d-inline-flex align-items-center justify-content-center rounded-circle">04</span>
Integrations
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link d-flex align-items-center position-relative" id="pills-automations-tab" data-toggle="pill" href="#pills-automations" role="tab" aria-controls="pills-automations" aria-selected="false">
<span class="nav-link__count d-inline-flex align-items-center justify-content-center rounded-circle">05</span>
Automations
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-12">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-import" role="tabpanel" aria-labelledby="pills-import-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--positive-margin">
<video src="./assets/videos/features-3a.mp4" poster="./assets/images/videos-poster/features-3a.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-3a.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="col-xl-4 col-lg-6">
<div class="features__icon-block d-inline-flex align-items-center justify-content-center">
<svg width="28" height="31" viewBox="0 0 28 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.73 13.8844L11.73 27.1252L24.9707 27.1252L24.9707 13.8844H11.73ZM24.9707 10.8751C26.6327 10.8751 27.98 12.2224 27.98 13.8844V27.1252C27.98 28.7871 26.6327 30.1344 24.9707 30.1344H11.73C10.068 30.1344 8.7207 28.7871 8.7207 27.1252V24.2546C8.34421 24.1469 7.97526 24.0214 7.61484 23.8789C6.97387 23.6256 6.35986 23.3189 5.7783 22.9642C2.31324 20.8511 0 17.0368 0 12.6806C0 6.03273 5.38918 0.643555 12.0371 0.643555C14.7433 0.643555 17.2409 1.5366 19.2513 3.04407C21.5976 4.80345 23.2803 7.39975 23.8564 10.39C23.8874 10.5506 23.9151 10.7123 23.9396 10.8751H24.9707ZM8.7207 21.0803C7.58727 20.6324 6.56618 19.9616 5.71143 19.1219C4.47076 17.903 3.58055 16.3285 3.20601 14.5638C3.07708 13.9563 3.00927 13.3263 3.00927 12.6806C3.00927 7.6947 7.05115 3.65282 12.0371 3.65282C15.2529 3.65282 18.076 5.33423 19.6752 7.86587C20.2479 8.77262 20.6637 9.78843 20.8843 10.8751H11.73C10.068 10.8751 8.7207 12.2224 8.7207 13.8844V21.0803Z" fill="currentColor"></path>
</svg>
</div>
<h3 class="features__sub-title text-uppercase">the platform</h3>
<h2 class="features__title">Import to the future of work with one click. </h2>
<p class="features__text">Instantly import your work from other tools automatically. Create a custom import to bring work in from excel or tools that aren't supported.</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-download" role="tabpanel" aria-labelledby="pills-download-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--positive-margin">
<video src="./assets/videos/features-3b.mp4" poster="./assets/images/videos-poster/features-3b.png" class="features__videos w-100 h-100" autoplay="autoplay" loop="true" muted="muted">
<source src="./assets/videos/features-3b.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="col-xl-4 col-lg-6 pr-xl-0">
<div class="features__icon-block d-inline-flex align-items-center justify-content-center">
<svg width="28" height="31" viewBox="0 0 28 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.73 13.8844L11.73 27.1252L24.9707 27.1252L24.9707 13.8844H11.73ZM24.9707 10.8751C26.6327 10.8751 27.98 12.2224 27.98 13.8844V27.1252C27.98 28.7871 26.6327 30.1344 24.9707 30.1344H11.73C10.068 30.1344 8.7207 28.7871 8.7207 27.1252V24.2546C8.34421 24.1469 7.97526 24.0214 7.61484 23.8789C6.97387 23.6256 6.35986 23.3189 5.7783 22.9642C2.31324 20.8511 0 17.0368 0 12.6806C0 6.03273 5.38918 0.643555 12.0371 0.643555C14.7433 0.643555 17.2409 1.5366 19.2513 3.04407C21.5976 4.80345 23.2803 7.39975 23.8564 10.39C23.8874 10.5506 23.9151 10.7123 23.9396 10.8751H24.9707ZM8.7207 21.0803C7.58727 20.6324 6.56618 19.9616 5.71143 19.1219C4.47076 17.903 3.58055 16.3285 3.20601 14.5638C3.07708 13.9563 3.00927 13.3263 3.00927 12.6806C3.00927 7.6947 7.05115 3.65282 12.0371 3.65282C15.2529 3.65282 18.076 5.33423 19.6752 7.86587C20.2479 8.77262 20.6637 9.78843 20.8843 10.8751H11.73C10.068 10.8751 8.7207 12.2224 8.7207 13.8844V21.0803Z" fill="currentColor"></path>
</svg>
</div>
<h3 class="features__sub-title text-uppercase">the platform</h3>
<h2 class="features__title">Get more work done, wherever you are.</h2>
<p class="features__text">Access ClickUp on any device—mobile, desktop, voice assistants, and more to get work done from anywhere.</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-clickApps" role="tabpanel" aria-labelledby="pills-clickApps-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--positive-margin">
<img src="./assets/images/features/features-3c.png" alt="features image" class="w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6 px-xl-0">
<div class="features__icon-block d-inline-flex align-items-center justify-content-center">
<svg width="28" height="31" viewBox="0 0 28 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.73 13.8844L11.73 27.1252L24.9707 27.1252L24.9707 13.8844H11.73ZM24.9707 10.8751C26.6327 10.8751 27.98 12.2224 27.98 13.8844V27.1252C27.98 28.7871 26.6327 30.1344 24.9707 30.1344H11.73C10.068 30.1344 8.7207 28.7871 8.7207 27.1252V24.2546C8.34421 24.1469 7.97526 24.0214 7.61484 23.8789C6.97387 23.6256 6.35986 23.3189 5.7783 22.9642C2.31324 20.8511 0 17.0368 0 12.6806C0 6.03273 5.38918 0.643555 12.0371 0.643555C14.7433 0.643555 17.2409 1.5366 19.2513 3.04407C21.5976 4.80345 23.2803 7.39975 23.8564 10.39C23.8874 10.5506 23.9151 10.7123 23.9396 10.8751H24.9707ZM8.7207 21.0803C7.58727 20.6324 6.56618 19.9616 5.71143 19.1219C4.47076 17.903 3.58055 16.3285 3.20601 14.5638C3.07708 13.9563 3.00927 13.3263 3.00927 12.6806C3.00927 7.6947 7.05115 3.65282 12.0371 3.65282C15.2529 3.65282 18.076 5.33423 19.6752 7.86587C20.2479 8.77262 20.6637 9.78843 20.8843 10.8751H11.73C10.068 10.8751 8.7207 12.2224 8.7207 13.8844V21.0803Z" fill="currentColor"></path>
</svg>
</div>
<h3 class="features__sub-title text-uppercase">the platform</h3>
<h2 class="features__title">Customize tasks for any need.</h2>
<p class="features__text">Customize ClickUp to tackle any project or task with 35+ ClickApps. Break down work with subtasks, assign Sprint Points, link tasks to other items with Relationships, and more.</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-integrations" role="tabpanel" aria-labelledby="pills-integrations-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-8 col-lg-6">
<div class="features__integrations-wrapper">
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-1.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-2.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-3.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-4.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
</div>
<div class="features__integrations-wrapper">
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-5.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-6.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-7.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
</div>
<div class="features__integrations-wrapper">
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-8.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-9.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-10.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-11.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
</div>
<div class="features__integrations-wrapper">
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-12.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-13.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-14.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
</div>
<div class="features__integrations-wrapper">
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-15.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-16.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-17.png" alt="integrations image" class="features__integrations__card__image w-100">
</a>
<a href="#!" class="features__integrations__card d-inline-flex align-items-center justify-content-center">
<img src="./assets/images/integrations/integrations-18.svg" alt="integrations image" class="features__integrations__card__image w-100">
</a>
</div>
<div class="features__integrations-wrapper text-center">
<a href="#!" class="features__integrations__btn d-inline-block">
100+ more integrations.
<span class="primary-text">See all</span>
</a>
</div>
</div>
<div class="col-xl-4 col-lg-6 px-xl-0">
<div class="features__icon-block d-inline-flex align-items-center justify-content-center">
<svg width="28" height="31" viewBox="0 0 28 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.73 13.8844L11.73 27.1252L24.9707 27.1252L24.9707 13.8844H11.73ZM24.9707 10.8751C26.6327 10.8751 27.98 12.2224 27.98 13.8844V27.1252C27.98 28.7871 26.6327 30.1344 24.9707 30.1344H11.73C10.068 30.1344 8.7207 28.7871 8.7207 27.1252V24.2546C8.34421 24.1469 7.97526 24.0214 7.61484 23.8789C6.97387 23.6256 6.35986 23.3189 5.7783 22.9642C2.31324 20.8511 0 17.0368 0 12.6806C0 6.03273 5.38918 0.643555 12.0371 0.643555C14.7433 0.643555 17.2409 1.5366 19.2513 3.04407C21.5976 4.80345 23.2803 7.39975 23.8564 10.39C23.8874 10.5506 23.9151 10.7123 23.9396 10.8751H24.9707ZM8.7207 21.0803C7.58727 20.6324 6.56618 19.9616 5.71143 19.1219C4.47076 17.903 3.58055 16.3285 3.20601 14.5638C3.07708 13.9563 3.00927 13.3263 3.00927 12.6806C3.00927 7.6947 7.05115 3.65282 12.0371 3.65282C15.2529 3.65282 18.076 5.33423 19.6752 7.86587C20.2479 8.77262 20.6637 9.78843 20.8843 10.8751H11.73C10.068 10.8751 8.7207 12.2224 8.7207 13.8844V21.0803Z" fill="currentColor"></path>
</svg>
</div>
<h3 class="features__sub-title text-uppercase">the platform</h3>
<h2 class="features__title">Bring all of your tools into one place.</h2>
<p class="features__text">If you're not ready replace all your tools, ClickUp can integrate with them with native and third-party integrations. Sync your team calendars, messaging apps, cloud storage, and more to keep everything in one place.</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-automations" role="tabpanel" aria-labelledby="pills-automations-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6">
<div class="features__videos-wrapper features__videos-wrapper--positive-margin">
<img src="./assets/images/features/features-3e.png" alt="features image" class="features__image w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<div class="features__icon-block d-inline-flex align-items-center justify-content-center">
<svg width="28" height="31" viewBox="0 0 28 31" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.73 13.8844L11.73 27.1252L24.9707 27.1252L24.9707 13.8844H11.73ZM24.9707 10.8751C26.6327 10.8751 27.98 12.2224 27.98 13.8844V27.1252C27.98 28.7871 26.6327 30.1344 24.9707 30.1344H11.73C10.068 30.1344 8.7207 28.7871 8.7207 27.1252V24.2546C8.34421 24.1469 7.97526 24.0214 7.61484 23.8789C6.97387 23.6256 6.35986 23.3189 5.7783 22.9642C2.31324 20.8511 0 17.0368 0 12.6806C0 6.03273 5.38918 0.643555 12.0371 0.643555C14.7433 0.643555 17.2409 1.5366 19.2513 3.04407C21.5976 4.80345 23.2803 7.39975 23.8564 10.39C23.8874 10.5506 23.9151 10.7123 23.9396 10.8751H24.9707ZM8.7207 21.0803C7.58727 20.6324 6.56618 19.9616 5.71143 19.1219C4.47076 17.903 3.58055 16.3285 3.20601 14.5638C3.07708 13.9563 3.00927 13.3263 3.00927 12.6806C3.00927 7.6947 7.05115 3.65282 12.0371 3.65282C15.2529 3.65282 18.076 5.33423 19.6752 7.86587C20.2479 8.77262 20.6637 9.78843 20.8843 10.8751H11.73C10.068 10.8751 8.7207 12.2224 8.7207 13.8844V21.0803Z" fill="currentColor"></path>
</svg>
</div>
<h3 class="features__sub-title text-uppercase">the platform</h3>
<h2 class="features__title">Save time by automating your work. </h2>
<p class="features__text">Eliminate the busywork and focus on what matters with hundreds of Automations. Automatically assign tasks, post comments, update statuses, and sync with other tools.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="features__btn w-100" data-toggle="modal" data-target="#signUpModal">
<span class="features__btn__text d-inline-flex align-items-center">Get Started <i class="features__btn__icon" data-feather='arrow-right'></i></span>
</button>
</div>
</section>
<!-- Features (cyen) Section -->
<section class="features features--cyen">
<div class="features__container mx-auto">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3 class="features__sub-title text-uppercase">best support in software</h3>
<h1 class="features__title">Built for teams from 1 to 1,000+.</h1>
</div>
<div class="col-12">
<ul class="nav nav-pills justify-content-center mb-5" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link position-relative active" id="pills-projectManagement-tab" data-toggle="pill" href="#pills-projectManagement" role="tab" aria-controls="pills-projectManagement" aria-selected="true">Project Management</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-engineering-tab" data-toggle="pill" href="#pills-engineering" role="tab" aria-controls="pills-engineering" aria-selected="false">Engineering</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-sales-tab" data-toggle="pill" href="#pills-sales" role="tab" aria-controls="pills-sales" aria-selected="false">Sales</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-marketing-tab" data-toggle="pill" href="#pills-marketing" role="tab" aria-controls="pills-marketing" aria-selected="false">Marketing</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-product-tab" data-toggle="pill" href="#pills-product" role="tab" aria-controls="pills-product" aria-selected="false">Product</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-design-tab" data-toggle="pill" href="#pills-design" role="tab" aria-controls="pills-design" aria-selected="false">Design</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-finance-tab" data-toggle="pill" href="#pills-finance" role="tab" aria-controls="pills-finance" aria-selected="false">Finance</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-hr-tab" data-toggle="pill" href="#pills-hr" role="tab" aria-controls="pills-hr" aria-selected="false">HR</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link position-relative" id="pills-it-tab" data-toggle="pill" href="#pills-it" role="tab" aria-controls="pills-it" aria-selected="false">IT</a>
</li>
</ul>
</div>
<div class="col-12">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-projectManagement" role="tabpanel" aria-labelledby="pills-projectManagement-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4a.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-engineering" role="tabpanel" aria-labelledby="pills-engineering-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4b.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-sales" role="tabpanel" aria-labelledby="pills-sales-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4c.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-marketing" role="tabpanel" aria-labelledby="pills-marketing-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4d.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-product" role="tabpanel" aria-labelledby="pills-product-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4e.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-design" role="tabpanel" aria-labelledby="pills-design-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4f.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-finance" role="tabpanel" aria-labelledby="pills-finance-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4g.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Visualize & plan</h4>
<p class="features__details-list__item__content__text">Manage any project from start to finish with highly customizable views that make project planning a breeze.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m7.50008 3c-1.03553 0-1.875.83947-1.875 1.875s.83947 1.875 1.875 1.875 1.875-.83947 1.875-1.875-.83947-1.875-1.875-1.875zm3.88572 4.81937c.6209-.81807.9893-1.83819.9893-2.94437 0-2.69239-2.1826-4.875-4.87502-4.875-2.69239 0-4.875 2.18261-4.875 4.875 0 1.10619.36843 2.12632.98928 2.94439-1.93616 1.1578-3.308689 3.15571-3.6024945 5.49361-.1032964.8219.4792975 1.572 1.3012545 1.6753.82197.1033 1.57204-.4793 1.67533-1.3013.27773-2.2099 2.18461-3.937 4.51163-3.937 2.32707 0 4.23402 1.7271 4.51182 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4045-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.33584-3.6027-5.49363zm5.1144-1.81937c0-.82843.6715-1.5 1.5-1.5 1.9878 0 3.8501.97882 5.1856 2.31434s2.3144 3.19786 2.3144 5.18566c0 .8284-.6716 1.5-1.5 1.5-.8285 0-1.5-.6716-1.5-1.5 0-1.0122-.5212-2.14986-1.4357-3.06434s-2.0522-1.43566-3.0643-1.43566c-.8285 0-1.5-.67157-1.5-1.5zm5.9999 12c-1.0356 0-1.875.8395-1.875 1.875s.8394 1.875 1.875 1.875c1.0355 0 1.875-.8395 1.875-1.875s-.8395-1.875-1.875-1.875zm3.8857 4.8194c.6209-.8181.9893-1.8382.9893-2.9444 0-2.6924-2.1826-4.875-4.875-4.875s-4.875 2.1826-4.875 4.875c0 1.1062.3684 2.1263.9893 2.9444-1.9362 1.1578-3.3087 3.1557-3.6025 5.4936-.1033.8219.4793 1.572 1.3012 1.6753.822.1033 1.5721-.4793 1.6754-1.3013.2777-2.2099 2.1846-3.937 4.5116-3.937 2.3271 0 4.234 1.7271 4.5118 3.937.1033.822.8533 1.4046 1.6753 1.3013s1.4046-.8534 1.3013-1.6753c-.2939-2.338-1.6665-4.3358-3.6027-5.4936zm-20.38564-6.3194c.82843 0 1.5.6716 1.5 1.5 0 1.0122.52118 2.1499 1.43566 3.0643.91448.9145 2.05218 1.4357 3.06438 1.4357.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5c-1.9879 0-3.85018-.9788-5.1857-2.3143-1.33552-1.3356-2.31434-3.1979-2.31434-5.1857 0-.8284.67157-1.5 1.5-1.5z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Collaborate</h4>
<p class="features__details-list__item__content__text">Work with your team in real-time with Chat, assign comments for action items, and never miss a beat with notifications that bring everything in one place.</p>
</div>
</li>
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="26" viewBox="0 0 26 26" width="26" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m10.1339.866117c.4881.488153.4881 1.279613 0 1.767763l-5.00002 5c-.48815.48816-1.27961.48816-1.76776 0l-2.500003-2.5c-.488156-.48815-.488156-1.27961 0-1.76776.488153-.48816 1.279613-.48816 1.767763 0l1.61612 1.61611 4.11612-4.116113c.48815-.488156 1.27961-.488156 1.76778 0zm1.6161 4.633883c0-.69036.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.55964 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.55964-1.25-1.25zm-1.6161 4.11612c.4881.48818.4881 1.27958 0 1.76778l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.11608c.48815-.48816 1.27961-.48816 1.76778 0zm1.6161 4.63388c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25zm-1.6161 4.1161c.4881.4882.4881 1.2796 0 1.7678l-5.00002 5c-.48815.4881-1.27961.4881-1.76776 0l-2.500003-2.5c-.488156-.4882-.488156-1.2796 0-1.7678.488153-.4881 1.279613-.4881 1.767763 0l1.61612 1.6161 4.11612-4.1161c.48815-.4881 1.27961-.4881 1.76778 0zm1.6161 4.6339c0-.6904.5596-1.25 1.25-1.25h11.25c.6904 0 1.25.5596 1.25 1.25s-.5596 1.25-1.25 1.25h-11.25c-.6904 0-1.25-.5596-1.25-1.25z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>
<div class="features__details-list__item__content">
<h4 class="features__details-list__item__content__title">Track progress</h4>
<p class="features__details-list__item__content__text">Add visual widgets for team members, tasks, sprints, time tracking, statuses, docs, embeds, and more.</p>
</div>
</li>
</ul>
<button class="primary-btn primary-btn--cyen dark-hover" data-toggle="modal" data-target="#signUpModal">
Get Started
</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-hr" role="tabpanel" aria-labelledby="pills-hr-tab">
<div class="row flex-lg-row-reverse">
<div class="col-xl-7 offset-xl-1 col-lg-6 mb-5 mb-lg-0">
<div class="features__videos-wrapper">
<img src="./assets/images/features/features-4h.png" alt="features image" class="features__videos w-100 h-100">
</div>
</div>
<div class="col-xl-4 col-lg-6">
<ul class="features__details-list">
<li class="features__details-list__item d-flex">
<div class="features__details-list__item__icon-block flex-shrink-0 d-inline-flex align-items-center justify-content-center">
<svg fill="none" height="22" viewBox="0 0 28 22" width="28" xmlns="http://www.w3.org/2000/svg">
<path clip-rule="evenodd" d="m3.90798 11.7969c-.17812-.3118-.32158-.5826-.43026-.7969.10868-.2143.25214-.4851.43026-.7968.47031-.82301 1.17342-1.91563 2.10469-3.0021 1.88302-2.19686 4.54643-4.20106 7.98763-4.20106 3.4413 0 6.1047 2.0042 7.9877 4.20106.9313 1.08647 1.6344 2.17909 2.1047 3.0021.1781.3117.3215.5825.4302.7968-.1087.2143-.2521.4851-.4302.7969-.4703.823-1.1734 1.9156-2.1047 3.0021-1.883 2.1968-4.5464 4.201-7.9877 4.201-3.4412 0-6.10461-2.0042-7.98763-4.201-.93127-1.0865-1.63438-2.1791-2.10469-3.0021zm23.31742-1.3231c.0003.0005.0005.001-1.2251.5262 1.2256.5253 1.2254.5257 1.2251.5262l-.0005.0012-.0013.0031-.0037.0085-.012.0272c-.0099.0226-.0239.0537-.0418.093-.0359.0785-.0879.1895-.1559.3284-.1359.2775-.3365.6673-.6022 1.1323-.5297.927-1.3266 2.1677-2.3953 3.4145-2.117 2.4698-5.4536 5.1323-10.0124 5.1323-4.5587 0-7.89534-2.6625-10.01232-5.1323-1.06873-1.2468-1.86562-2.4875-2.39531-3.4145-.26569-.465-.46635-.8548-.602261-1.1323-.068005-.1389-.119944-.2499-.155841-.3284-.017953-.0393-.031907-.0704-.041864-.093l-.011944-.0272-.003728-.0085-.001304-.0031-.000511-.0012c-.000217-.0005-.000418-.0009 1.225113-.5262-1.225531-.5252-1.22533-.5257-1.225113-.5262l.000511-.0012.001304-.003.003728-.0086.011944-.0272c.009957-.0225.023911-.0537.041864-.0929.035897-.0785.087836-.1895.155841-.3284.135911-.27747.336571-.66736.602261-1.13231.52969-.92697 1.32658-2.16768 2.39531-3.41454 2.11698-2.4698 5.45362-5.132276 10.01232-5.132276 4.5588 0 7.8954 2.662476 10.0124 5.132276 1.0687 1.24686 1.8656 2.48757 2.3953 3.41454.2657.46495.4663.85484.6022 1.13231.068.1389.12.2499.1559.3284.0179.0392.0319.0704.0418.0929l.012.0272.0037.0086.0013.003zm-1.2251.5262 1.2256-.5252c.1437.3354.1437.7151 0 1.0505zm-25.225501-.5252 1.225531.5252-1.225531.5253c-.143742-.3354-.143742-.7151 0-1.0505zm10.558901.5252c0-1.47272 1.1939-2.66663 2.6666-2.66663 1.4728 0 2.6667 1.19391 2.6667 2.66663 0 1.4728-1.1939 2.6667-2.6667 2.6667-1.4727 0-2.6666-1.1939-2.6666-2.6667zm2.6666-5.33329c-2.9455 0-5.33331 2.38781-5.33331 5.33329 0 2.9456 2.38781 5.3334 5.33331 5.3334s5.3334-2.3878 5.3334-5.3334c0-2.94548-2.3879-5.33329-5.3334-5.33329z" fill="#2a2e34" fill-rule="evenodd"></path>
</svg>
</div>