-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpricing_page.html
2867 lines (2684 loc) · 208 KB
/
pricing_page.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
<!-- Comments in line: 22, 32, 81, 681, 690, 745, 804, 813, 817, 843, 1270, 2210, 2219, 2475, 2508, 2606, 2855 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pricing | Gusto</title>
<link rel="stylesheet" href="./pricing_page.css" />
<link href="https://prod.gusto-assets.com/icons/gusto-icon-32x32.png" rel="icon" sizes="32x32" type="image/png">
<script src="https://kit.fontawesome.com/457bb5a52c.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
</head>
<body>
<!-- Navbar imported using Javascript -->
<div id="Navbar"></div>
<div class="i1_mega_container">
<h1 class="i1_h1_div">Let’s find the right plan for your business.</h1>
<div class="i1_p1_div">
Join Gusto today and don’t pay a cent until you’re ready to run payroll.
</div>
<!-- Contracted block of slide down-->
<div class="i1_mini_flex_container">
<div class="i1_mini_triple_flex">
<h2 class="i1_h1">Simple</h2>
<p class="i1_p1">
A streamlined set of automatic payroll features and benefits
integrations.
</p>
<h2 class="i1_h1_price_orange i1_extra_margin">$40/mo</h2>
<hr class="i1_hr_mini" />
<p class="i1_p2">
plus <span class="color_orange">$6/mo </span>per person
</p>
<hr class="i1_hr_mini" />
<button class="i1_btn_mini"><a class="whiteCaBtn" href="./CreateAcc.html">Create account</a></button>
</div>
<div class="i1_mini_triple_flex">
<h2 class="i1_h1">Plus</h2>
<p class="i1_p1">
Comprehensive payroll, benefits, and HR tools for employers building
a great place to work.
</p>
<h2 class="i1_h1_price_orange i1_extra_margin">$80/mo</h2>
<hr class="i1_hr_mini" />
<p class="i1_p2">
plus <span class="color_orange">$12/mo </span>per person
</p>
<hr class="i1_hr_mini" />
<button class="i1_btn_mini"><a class="whiteCaBtn" href="./CreateAcc.html">Create account</a></button>
</div>
<div class="i1_mini_triple_flex">
<h2 class="i1_h1">Premium</h2>
<p class="i1_p1">
Scalable payroll and benefits, expert HR, and dedicated support for
the complex needs of growing teams.
</p>
<h2 class="i1_h1_price_orange">Exclusive pricing</h2>
<hr class="i1_hr_mini" />
<p class="i1_p2">
<span class="color_orange"></span>Contact us for more details
</p>
<hr class="i1_hr_mini" />
<button class="i1_btn_mini_color_blue">Talk to sales</button>
</div>
</div>
<!-- Expanding block of slide down caused due to trigger -->
<div class="i1_mini_flex_container_part2">
<div class="i1_mini_triple_flex_part2">
<h4 class="i1_part2_h4">Plan details:</h4>
<ul>
<li>
<svg class="tooltip-icon i1_tootltip" data-toggle="tooltip" data-html="true" title="<div><h6>Full-service single-state payroll including W-2s and 1099s</h6><ul><li>Unlimited payroll runs</li><li>Single state payroll</li><li>Federal, state, and local tax filings</li><li>W-2 filings</li><li>1099-NEC filings (federal and state)</li><li>Federal W-4s</li><li>I-9 forms and support</li><li>Direct deposits or printable checks</li><li>Garnishment deductions and child support payments in most states</li><li>Payroll reports</li><li>Payroll on AutoPilot®</li><li>Multiple pay rates and schedules</li><li>Paid-time-off policies</li></ul><a href='https:google.com'>Learn more</a>
</div>" viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Full-service single-state payroll including W-2s and
1099s</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="<div><h6>Employee profiles and self-service</h6><ul><li>Paystubs and tax forms
</li><li>
Lifetime access
</li><li>
Payroll self-onboarding
</li><li>
E-signatures for I-9 and federal W-4</li></ul><a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Employee profiles and self-service</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="<div><h6>Basic hiring and onboarding tools </h6><ul><li>Hiring documents, e-signed and stored
</li><li>
Offer letter templates
</li><li>
Onboarding checklist
</li><li>
Team-signed e-cards</li></ul>
<a href='https:google.com'>Learn more</a></div>" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Basic hiring and onboarding tools</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="<div><h6>Gusto-brokered health insurance administration </h6><ul><li>Medical, dental, and vision insurance
</li><li>
Support from licensed benefits advisors
</li><li>
Online enrollment
</li><li>
Employee self-service
</li><li>
ACA, HIPAA, ERISA compliance support
</li><li>
COBRA administration
</li><li>
Life and disability</li></ul>
<a href='https:google.com'>Learn more</a></div>" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Gusto-brokered health insurance administration</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Employee financial benefits</h6><br>Benefits administration is included with all Gusto plans. Pick from our no-cost, low-cost, and premium options.<ul><li>Pay-as-you-go workers’ comp administration
</li><li>
Medical, dental, and vision insurance
</li><li>
401(k) retirement plans
</li><li>
HSAs and FSAs
</li><li>
Commuter benefits
</li><li>
529 college savings
</li><li>
Gusto Wallet cash accounts and free financial tools</li></ul><a href='https:google.com'>Learn more</a></div>" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Employee financial benefits</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Payroll and time-off reports</h6><ul><li>View and export data for payroll, benefits, employees, contractors, taxes, and more
</li><li>
View and export time-off data organized by date, department, or employee</li></ul><a href='https:google.com'>Learn more</a></div>" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Payroll and time-off reports</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Custom admin permissions</h6> <p>Create custom admin accounts to limit access to specific tasks</p></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Custom admin permissions</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Integrations for accounting, time tracking, expense management, and more</h6> <ul><li>Integrate accounting software with payroll for easier bookkeeping. (ex: Quickbooks, Xero, Freshbooks, and more)
</li><li>
Integrate time tracking software to sync hours with payroll automatically (ex: TSheets, Homebase, WhenIWork, and more)</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Integrations for accounting, time tracking, expense management,
and more</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Basic support</h6><p>Limited live support hours</p> <ul><li>24/7 access to the online Help Center
</li><li>
Call, email, or chat with our support team
</li><li>
Access to limited live support hours</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Basic support</span>
</li>
</ul>
</div>
<div class="i1_mini_triple_flex_part2">
<h4 class="i1_part2_h4">Plan details:</h4>
<p>Everything in the Simple plan, plus:</p>
<ul>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Full-service single-state payroll including W-2s and 1099s</h6><ul><li>Unlimited payroll runs</li><li>Multiple state payroll (all 50 states)</li><li>Federal, state, and local tax filings</li><li>W-2 filings</li><li>1099-NEC filings (federal and state)</li><li>Federal W-4s</li><li>I-9 forms and support</li><li>Direct deposits or printable checks</li><li>Garnishment deductions and child support payments in most states</li><li>Payroll reports</li><li>Payroll on AutoPilot®</li><li>Multiple pay rates and schedules</li></ul><a href='https:google.com'>Learn more</a>
</div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Full-service single-state payroll including W-2s and
1099s</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Next-day direct deposit
</h6><p>Eligible businesses can run payroll the day before payday (instead of planning 2 or 4 days in advance)</p>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Next-day direct deposit</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Advanced hiring and onboarding tools
</h6><p>Limited live support hours</p> <ul><li>24/7 access to the online Help Center
</li><li>
Job posts
</li><li>
Applicant tracking system
</li><li>
Customizable offer letter templates
</li><li>
Customizable onboarding checklist for employees and managers
</li><li>
Hiring documents, e-signed, and stored
</li><li>
One-click software provisioning
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Advanced hiring and onboarding tools</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>PTO management and policies
</h6><ul><li>Time off requests and approvals
</li><li>
Custom PTO policies
</li><li>
Customizable holiday pay
</li><li>
Automatic calendar syncing
</li><li>
Automatic payroll syncing</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">PTO management and policies</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Time tracking and project tracking
</h6> <ul><li>
Built-in time tracking with geolocation
</li><li>
Mobile app clock-ins and clock-outs
</li><li>
Manager edits and approvals
</li><li>
Automatic payroll syncing
</li><li>
Employee project tracking
</li><li>
Unlimited projects
</li><li>
Support for hourly and salaried employees
</li><li>
Workforce costing reports
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Time tracking and project tracking</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Workforce costing and custom reports
</h6> <ul><li>
Customizable data templates
</li><li>
Select loan application data reports
</li><li>
Workforce costing reports with insights on hours, wages, benefits, and more
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Workforce costing and custom reports</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Team management tools
</h6> <ul><li>
Employee directory
</li><li>
Printable org charts
</li><li>
Team-signed birthday e-cards
</li><li>
Team-signed welcome e-cards
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20"> Team management tools</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Full support
</h6><p> </p> <ul><li>
24/7 access to Gusto’s online Help Center
</li><li>
Call, email, or chat with our support team
</li><li>
Access to extended live support hours
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20"> Full support</span>
</li>
</ul>
<div class="i1_flex_part2_unique_box">
<img class="i1_flex_part2_unique_box_img"
src="https://prod.gusto-assets.com/assets/svg/icons/headset-red-63680a387a6f4a5e38cfb2c2b562d4f90f87241169f5fce4500f31f027f1348b.svg" />
<p class="i1_spl_box_p1">Priority support and HR services add-on</p>
<p class="i1_spl_box_p2">
Get access to HR experts and resources plus a direct line to phone
and email support for faster service.
</p>
<p class="i1_spl_box_p2_pt2">$8/mo per person</p>
</div>
</div>
<div class="i1_mini_triple_flex_part2">
<h4 class="i1_part2_h4">Plan details:</h4>
<p>Everything in the Plus plan, plus:</p>
<ul>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>HR Resource Center
</h6> <ul><li>
Hiring best practices
</li><li>
Performance evaluations
</li><li>
Job description templates
</li><li>
Termination requirements
</li><li>
Labor law policy templates
</li><li>
Employee handbook builder
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20"> HR Resource Center</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Compliance alerts
</h6><p> Stay compliant with proactive alerts for state or federal law changes that may impact your business</p>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20"> Compliance alerts</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Access to certified HR experts
</h6><ul><li>
Live, unlimited access to certified HR experts
</li><li>
SHRM and HRCI-certified
</li><li>
Phone and secure messaging
</li><li>
Local law expertise
</li><li>
HR compliance support
</li><li>
Employee relations advising
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Access to certified HR experts</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Full-service payroll migration and account setup
</h6><p> We can assist with transferring your payroll data into Gusto and beginning your account setup</p>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Full-service payroll migration and account setup</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Health insurance broker integration
</h6><p>If eligible, integrate your existing broker and health insurance plans right into Gusto </p>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">
Health insurance broker integration</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>R&D tax credit discount
</h6><p>Scan your payroll data to save up to $250,000 in annual payroll tax offsets </p>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">R&D tax credit discount</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Waived fees and exclusive pricing
</h6><p>Your monthly price is tailored to your business size and needs, plus you get exclusive discounts on select integrations, service fees, and more </p>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Waived fees and exclusive pricing</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Performance reviews
</h6><ul><li>
Self evaluations
</li><li>
Manager evaluations
</li><li>
Career development resources
</li><li>
Process management and tracking
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20"> Performance reviews</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Employee surveys and insights
</h6><ul><li>
Anonymous, customizable team surveys
</li><li>
Data reports on team sentiment trends and insights
</li></ul>
<a href='https:google.com'>Learn more</a></div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Employee surveys and insights</span>
</li>
<li>
<svg class="tooltip-icon" data-toggle="tooltip" data-html="true"
title="<div><h6>Dedicated support
</h6> <ul><li>
24/7 access to Gusto’s online Help Center
</li><li>
Direct line to phone and email support with expedited priority access
</li><li>
Dedicated customer success manager (CSM)
</li><li>
Quarterly check-ins to help ensure success
</li></ul>
</div>"
viewBox="0 0 27 27" xmlns="http://www.w3.org/2000/svg">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg><span class="padding-right-20">Dedicated support</span>
</li>
</ul>
</div>
</div>
<!-- Triger button -->
<div class="i1_div_btn_trigger">
<p class="i1_btn_trigger">See plan details</p>
</div>
</div>
<!-- Contract block section -->
<div id="grey_bg">
<div id="i2_ultimate_container">
<div class="i4_flex_container">
<div class="i4_flex_left">
<h2 id="i4_flex_left_h2">Contractor Only</h2>
<div class="i2_inside_flex_left">
<p id="i4_flex_left_p1">
For contractor-only businesses who haven't hired W-2 employees
yet.
</p>
<p id="i4_flex_left_p2">
<span id="color_orange">$6/mo</span> per person
</p>
</div>
</div>
<div id="i4_flex_right">
<button id="i4_flex_right_btn"><a class="whiteCaBtn" href="./CreateAcc.html">Create account</a></button>
<div id="i4_flex_right_container">
<span>See plan details</span>
<img id="i2_r2_img"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAYFBMVEX///8AAADm5uZOTk7q6upQUFDl5eVKSkpSUlJLS0tGRkZhYWFBQUE1NTXs7OwZGRkmJiadnZ2CgoLFxcURERG3t7cLCwtqamrCwsJWVlba2tqPj4+WlpZeXl6lpaV1dXUU3MJPAAAD+UlEQVR4nO3d61LjMAwF4ARaChQobZfL3uD933IrQjZJ7aixY1tS5nw/0zITzZEtN9ChqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMWu23D4/rw1H6PpI4HtaPD9v9qndpta2//XgRu69UXl7bYrZP7bVj3fMmeXcJbPvFfPfkez1wL3uHM90Pi3mna6v6zFr6LmdYnxdDjXp9frHeSN9ntI1Ty8+q+uVcrOtr6TuN5IZV1zfVb8/V+k76XqPc+Ur54wnWaoneAk9t+uq9brBRfS16sqv81+1tN/5ePKl2Y6/YStEZE12Gf8deMjX670er2FYfo68ZSnFkDZIP90jTY2Utjq7B+utQ88m8bGNo+MdE40BvYF43kSKX4O7rHTe2S+QKrK+a97Alam9UrkVPh9JvV3ZTnJIgYVPUPDSYMdFLkHAzQ/HoHx/0J6vhe9lG1boW2TV4df5ugymGJEjMpRiWIGFT1LejsruoJ0FiKsXwBAlboq6hwY6J0QINNWpMizaMpBibIDExNELHxJCBFOckSNSvxfg12FKe4twECZui9Fxk5+CkBIni0R836F1siZK/X0zRog2lKc7fZDrsp36pFNMlSBQOjXmD3qUuxbQJEmVDI+UabKlKcfTXZ9EJEkWnG7ZFIxMkakpMvwZbSkZ/nhZtqBj9ac6iY9jt5jbF/V+UM0EiPvpzjIkh4RRzJ0jYFHPvqHnXYEswxRIJErGhkWvQu4RKzDfoXWyJuRq1VIs2BA5wZTaZTvHtpmyCpPDnxfyD3lU0xdviCZKCo7/cmBgqlqJMgqTQXGQ3mYwJkiIllt9F+wqMfrkWbWQf/VKbTCfzdiOdIMn6qV9i0LsypqghQZLtACe/BluZHvhrSZBk2VElB70rQ4myg96V/HSjqUUbiR/469lkOkmHhr4EScLRr2PQu5KlqDNBkmj0l36qFiLJt220jYmhBDuqxl20b3aJJR/dx5l5utHdoo1ZX+7TOiaGZnzSsJAgif4L/9R/jJdPZIpWEiRRBzgba7AVsaPqHxNDwTuq5qOaX2CJU7+FrUnQ6SbV1wrKCkjR1ibTmZyitU2mM3H02xn0rklDw9Kgd0341G9vTAxdfI6q95nMVGyKt3yBBhIkbIksIwVeaFSGiRZtxKVoJkESk6KhBEl4iqYSJKEpGkuQhKVoLkESkqLBBMn0FE0mSKamaDRBMq1EwwVOa1SzLdq4nKLpBMmlFI0nSPgUzSdIuBQXkCAZT3ERCZKxFBeSIPGXuJgEia/ERRXoK3FBLdo4324WliB5eu7V9/x0+QcM2v8vcC99K9m8vG0eN5/2/2sWAAAAAAAAAAAAAAAAAAAAAAAAAAAAQD7/AD33Iwpcu22+AAAAAElFTkSuQmCC" />
<img id="i4_flex_right_img" src="" />
</div>
</div>
</div>
<div class="i4v2_flex_container">
<div class="i4_flex_left">
<div class="i2v2_inside_flex_left">
<h5 class="i4_h4">Plan details:</h5>
<ul>
<li class="i4_li" >Unlimited contractor payments across all 50 states</li>
<li class="i4_li" >4-day direct deposit</li>
<li class="i4_li" >1099-NECs at the end of the year</li>
<li class="i4_li" >New hire reporting (if required in your state)</li>
<li class="i4_li" >International contractor payments (available as add-on)</li>
</ul>
<h5 class="i4_h4">Does not include:</h5>
<ul>
<li class="i4_li" >
Back-up withholding or other contractor withholding required
by state agencies
</li>
<li class="i4_li" >
Plan add-ons (aside from international contractor payments)
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Table representaion of plan including symbols as icons-->
<div id="i3_top_section_heading">Compare flexible features for all kinds of teams.</div>
<div id="i3_mega_flex_container">
<div id="i3_left_flex">
<div id="i3_left_pt1_flex">
<div id="i3_left_pt1-1_flex">
<img class="i3_mini_img" src="https://prod.gusto-assets.com/assets/svg/icons/watch-bd92fa1a57988f3eb8a1577836ad0a2209c94ef35bcbab9d9caf1ec7ebcf4e60.svg">
<p class="i3_left_p">No long-term contract</p>
</div>
<div id="i3_left_pt1-2_flex">
<img class="i3_mini_img" src="https://prod.gusto-assets.com/assets/svg/icons/potted-plant-e8a1ddcff7effab7d6fa80e4328c60d8a134750bdcac4765d784a25752774efa.svg">
<p class="i3_left_p">Grows with your team</p>
</div>
</div>
<div id="i3_left_pt2_flex">
<div id="i3_left_pt2-1_flex">
<img class="i3_mini_img" src="https://prod.gusto-assets.com/assets/svg/icons/key-2fcb3ae68d85099cd517f3ab75f25693cb3b430cdee420daa838a59adb5acaa4.svg">
<p class="i3_left_p">Free account setup</p>
</div>
<div id="i3_left_pt2-2_flex">
<img class="i3_mini_img" src="https://prod.gusto-assets.com/assets/svg/icons/moving-box-7d52aecb338cfc502ce160ff30aed4329bdbf081c6a9365016adc3947efbc637.svg">
<p class="i3_left_p">Switch or cancel anytime</p>
</div>
</div>
</div>
<div id="i3_right_flex">
<div class="i3_card" id="i3_card1">
<div class="color_mini_bar" id="color_light_blue"></div>
<div class="i3_heading">Simple</div>
<div class="color_orange" class="i3_p">$40/mo</div>
<div class="i3_p">+ $6/mo</div>
<div class="i3_p">per person</div>
<button class="i3_card_btn" class="color_orange"><a class="whiteCaBtn" href="./CreateAcc.html">Create account</a></button>
</div>
<div class="i3_card" id="i3_card1">
<div class="color_mini_bar" id="color_blue"></div>
<div class="i3_heading">Plus</div>
<div class="color_orange" class="i3_p">$80/mo</div>
<div class="i3_p">+ $12/mo</div>
<div class="i3_p">per person</div>
<button class="i3_card_btn" class="color_orange"><a class="whiteCaBtn" href="./CreateAcc.html">Create account</a></button>
</div>
<div class="i3_card" id="i3_card1">
<div class="color_mini_bar" id="color_dark_blue"></div>
<div class="i3_heading">Premium</div>
<div class="i3_p" id="i3_p_misc">Exclusive pricing for</div>
<div class="i3_p" id="i3_p_misc">larger teams</div>
<br>
<button class="i3_card_btn" id="color_blue_btn" >Talk to sales</button>
</div>
</div>
</div>
<!-- Accordion heading -->
<div class="multiple-flex-container">
<h5 id="inner-flex-h5-1">Full-service payroll<img class="i2_r3_img"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAYFBMVEX///8AAADm5uZOTk7q6upQUFDl5eVKSkpSUlJLS0tGRkZhYWFBQUE1NTXs7OwZGRkmJiadnZ2CgoLFxcURERG3t7cLCwtqamrCwsJWVlba2tqPj4+WlpZeXl6lpaV1dXUU3MJPAAAD+UlEQVR4nO3d61LjMAwF4ARaChQobZfL3uD933IrQjZJ7aixY1tS5nw/0zITzZEtN9ChqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMWu23D4/rw1H6PpI4HtaPD9v9qndpta2//XgRu69UXl7bYrZP7bVj3fMmeXcJbPvFfPfkez1wL3uHM90Pi3mna6v6zFr6LmdYnxdDjXp9frHeSN9ntI1Ty8+q+uVcrOtr6TuN5IZV1zfVb8/V+k76XqPc+Ur54wnWaoneAk9t+uq9brBRfS16sqv81+1tN/5ePKl2Y6/YStEZE12Gf8deMjX670er2FYfo68ZSnFkDZIP90jTY2Utjq7B+utQ88m8bGNo+MdE40BvYF43kSKX4O7rHTe2S+QKrK+a97Alam9UrkVPh9JvV3ZTnJIgYVPUPDSYMdFLkHAzQ/HoHx/0J6vhe9lG1boW2TV4df5ugymGJEjMpRiWIGFT1LejsruoJ0FiKsXwBAlboq6hwY6J0QINNWpMizaMpBibIDExNELHxJCBFOckSNSvxfg12FKe4twECZui9Fxk5+CkBIni0R836F1siZK/X0zRog2lKc7fZDrsp36pFNMlSBQOjXmD3qUuxbQJEmVDI+UabKlKcfTXZ9EJEkWnG7ZFIxMkakpMvwZbSkZ/nhZtqBj9ac6iY9jt5jbF/V+UM0EiPvpzjIkh4RRzJ0jYFHPvqHnXYEswxRIJErGhkWvQu4RKzDfoXWyJuRq1VIs2BA5wZTaZTvHtpmyCpPDnxfyD3lU0xdviCZKCo7/cmBgqlqJMgqTQXGQ3mYwJkiIllt9F+wqMfrkWbWQf/VKbTCfzdiOdIMn6qV9i0LsypqghQZLtACe/BluZHvhrSZBk2VElB70rQ4myg96V/HSjqUUbiR/469lkOkmHhr4EScLRr2PQu5KlqDNBkmj0l36qFiLJt220jYmhBDuqxl20b3aJJR/dx5l5utHdoo1ZX+7TOiaGZnzSsJAgif4L/9R/jJdPZIpWEiRRBzgba7AVsaPqHxNDwTuq5qOaX2CJU7+FrUnQ6SbV1wrKCkjR1ibTmZyitU2mM3H02xn0rklDw9Kgd0341G9vTAxdfI6q95nMVGyKt3yBBhIkbIksIwVeaFSGiRZtxKVoJkESk6KhBEl4iqYSJKEpGkuQhKVoLkESkqLBBMn0FE0mSKamaDRBMq1EwwVOa1SzLdq4nKLpBMmlFI0nSPgUzSdIuBQXkCAZT3ERCZKxFBeSIPGXuJgEia/ERRXoK3FBLdo4324WliB5eu7V9/x0+QcM2v8vcC99K9m8vG0eN5/2/2sWAAAAAAAAAAAAAAAAAAAAAAAAAAAAQD7/AD33Iwpcu22+AAAAAElFTkSuQmCC">
</h5>
<div id="inner-flex-container-1" class="display_none">
<div class="custom_row margin-top-0">
<!-- First Accordion table row title -->
<div class="ele_1">Unlimited payrolls per month</div>
<!-- Tooltip icon and tooltip information -->
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div>
<h6> Unlimited payrolls per month
</h6><p>Run as many payrolls as you want, including bonus and off-cycle payrolls. No extra cost. </p>
</div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
</div>
<!-- next Accordion table row title -->
<div class="custom_row">
<div class="ele_1">Multi-state payroll</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6> Multi-state payroll
</h6><p>Run payroll across multiple states </p>
</div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-empty"></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
</div>
<div class="custom_row">
<div class="ele_1">International contractor payments</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6> International contractor payments
</h6><p><h6>(+) Add-on feature</h6>
Make cross-border payments to contractors in 95 countries and counting </p>
<a href='https:google.com'>See pricing</a></div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-plus"></div>
<div class="pricing-plus"></div>
<div class="pricing-plus"></div>
</div>
<div class="custom_row">
<div class="ele_1">State tax registration</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6> State tax registration
</h6><p> <h6>(+) Add-on feature</h6>
Register for payroll taxes in new states</p>
<a href='https:google.com'>Learn more</a></div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-plus"></div>
<div class="pricing-plus"></div>
<div class="pricing-plus"></div>
</div>
<div class="custom_row">
<div class="ele_1">Tax filings and payments</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6>Tax filings and payments
</h6><p> Gusto has the ability to automatically file and pay federal, state, and local payroll taxes in all 50 states</p>
<a href='https:google.com'>Learn more</a></div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
</div>
<div class="custom_row">
<div class="ele_1">2-day and 4-day direct deposit</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6> 2-day and 4-day direct deposit
</h6><p>Run payroll only 2 or 4 business days before your employees need to be paid </p>
<a href='https:google.com'>Learn more</a></div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
</div>
<div class="custom_row">
<div class="ele_1">Next-day direct deposits</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6>Next-day direct deposits
</h6><p> Run payroll the day before your employees need to be paid</p>
<a href='https:google.com'>Learn more</a></div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-empty"></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
</div>
<div class="custom_row">
<div class="ele_1">W-2s and 1099s</div>
<div class="ele_2"><svg class="tooltip-icon" data-toggle="tooltip" data-html="true" title="" viewBox="0 0 27 27"
xmlns="http://www.w3.org/2000/svg"
data-bs-original-title="<div><h6>W-2s and 1099s
</h6><p> Gusto automatically generates W-2s and 1099s and sends digital copies to your employees and contractors</p>
<a href='https:google.com'>Learn more</a></div>"
aria-describedby="tooltip977111">
<g fill="#ED3E44" fill-rule="evenodd">
<path
d="M13.5 27C20.956 27 27 20.956 27 13.5S20.956 0 13.5 0 0 6.044 0 13.5 6.044 27 13.5 27zm0-2C7.15 25 2 19.85 2 13.5S7.15 2 13.5 2 25 7.15 25 13.5 19.85 25 13.5 25z">
</path>
<path
d="M12.05 7.64c0-.228.04-.423.12-.585.077-.163.185-.295.32-.397.138-.102.298-.177.48-.227.184-.048.383-.073.598-.073.203 0 .398.025.584.074.186.05.35.126.488.228.14.102.252.234.336.397.084.162.127.357.127.584 0 .22-.043.412-.127.574-.084.163-.196.297-.336.4-.14.106-.302.185-.488.237-.186.053-.38.08-.584.08-.215 0-.414-.027-.597-.08-.182-.05-.342-.13-.48-.235-.135-.104-.243-.238-.32-.4-.08-.163-.12-.355-.12-.576zm-1.02 11.517c.134 0 .275-.013.424-.04.148-.025.284-.08.41-.16.124-.082.23-.198.313-.35.085-.15.127-.354.127-.61v-5.423c0-.238-.042-.43-.127-.57-.084-.144-.19-.254-.318-.332-.13-.08-.267-.13-.415-.153-.148-.024-.286-.036-.414-.036h-.21v-.95h4.195v7.463c0 .256.043.46.127.61.084.152.19.268.314.35.125.08.263.135.414.16.15.027.29.04.418.04h.21v.95H10.82v-.95h.21z">
</path>
</g>
</svg></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>
<div class="pricing-check"></div>