-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbudget.html
1172 lines (1057 loc) · 70.3 KB
/
budget.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 data-wf-domain="datally.webflow.io" data-wf-page="66100e0897d5cc7dd645ce7a"
data-wf-site="65c4bef9d21f1fd78ad99a2e">
<head>
<meta charset="utf-8" />
<title>Ally</title>
<meta content="Ally" property="og:title" />
<meta content="Ally" property="twitter:title" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="Webflow" name="generator" />
<link href="styles.css" rel="stylesheet" type="text/css" />
<style>
@media (min-width:992px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="da0270cf-71c3-501c-578b-e8a3b108d7da"] {
-webkit-transform: translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="a92a9e48-7d5e-2fe8-322f-88fcdaa32710"] {
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="a92a9e48-7d5e-2fe8-322f-88fcdaa32711"] {
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="a92a9e48-7d5e-2fe8-322f-88fcdaa32712"] {
opacity: 0;
}
}
@media (max-width:991px) and (min-width:768px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="da0270cf-71c3-501c-578b-e8a3b108d7da"] {
height: 0px;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e5787380b8"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="34fd1e79-7e69-2049-473c-f4dd87ea4e8a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf84077"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1f2"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36ddbf"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa91"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c571417"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e57873806d"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e57873806a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1cb"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1c8"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36dd98"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36dd95"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa6a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa67"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c5713f0"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c5713ed"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf84050"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf8404d"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ffab8394-fb5a-9124-03e5-b265bc31d51c"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ffab8394-fb5a-9124-03e5-b265bc31d519"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="a92a9e48-7d5e-2fe8-322f-88fcdaa32710"] {
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="a92a9e48-7d5e-2fe8-322f-88fcdaa32711"] {
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="a92a9e48-7d5e-2fe8-322f-88fcdaa32712"] {
opacity: 0;
}
}
@media (max-width:767px) and (min-width:480px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="da0270cf-71c3-501c-578b-e8a3b108d7da"] {
height: 0px;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e5787380b8"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="34fd1e79-7e69-2049-473c-f4dd87ea4e8a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf84077"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1f2"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36ddbf"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa91"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c571417"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e57873806d"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e57873806a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1cb"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1c8"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36dd98"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36dd95"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa6a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa67"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c5713f0"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c5713ed"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf84050"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf8404d"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ffab8394-fb5a-9124-03e5-b265bc31d51c"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ffab8394-fb5a-9124-03e5-b265bc31d519"] {
display: none;
opacity: 0;
}
}
@media (max-width:479px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="da0270cf-71c3-501c-578b-e8a3b108d7da"] {
height: 0px;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e5787380b8"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="34fd1e79-7e69-2049-473c-f4dd87ea4e8a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf84077"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1f2"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36ddbf"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa91"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c571417"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e57873806d"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="d9037d6c-443d-0843-ca00-b1e57873806a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1cb"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1c8"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36dd98"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="11d38e4d-290a-9df0-fb74-74c91b36dd95"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa6a"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="c54f9d2b-9672-7e3c-9319-b0ebb790fa67"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c5713f0"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="b0a2f906-5389-c202-01ae-384e7c5713ed"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf84050"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8dab84ad-31b3-cd4a-fc80-335ddcf8404d"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ffab8394-fb5a-9124-03e5-b265bc31d51c"] {
display: none;
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="ffab8394-fb5a-9124-03e5-b265bc31d519"] {
display: none;
opacity: 0;
}
}
</style>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous" />
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script
type="text/javascript">WebFont.load({ google: { families: ["Plus Jakarta Sans:200,300,regular,500,600,700,800,200italic,300italic,italic,500italic,600italic,700italic,800italic", "Lexend Deca:regular,500,600,700,800", "Inter:regular,500,600,700,800,900", "Raleway:regular,500,600,700,800,900"] } });</script>
<script
type="text/javascript">!function (o, c) { var n = c.documentElement, t = " w-mod-"; n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch") }(window, document);</script>
<link
href="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/66467c728bda3e670190f968_favicon_datally%20(2).png"
rel="shortcut icon" type="image/x-icon" />
<link href="https://cdn.prod.website-files.com/img/webclip.png" rel="apple-touch-icon" />
</head>
<div class="page-wrapper-2">
<div class="global-styles w-embed">
<style>
/* Set color style to inherit */
.inherit-color * {
color: inherit;
}
/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
outline: 0.125rem solid #4d65ff;
outline-offset: 0.125rem;
}
/* Get rid of top margin on first element in any rich text element */
.w-richtext> :not(div):first-child,
.w-richtext>div:first-child> :first-child {
margin-top: 0 !important;
}
/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
margin-bottom: 0 !important;
}
/* Prevent all click and hover interaction with an element */
.pointer-events-off {
pointer-events: none;
}
/* Enables all click and hover interaction with an element */
.pointer-events-on {
pointer-events: auto;
}
/* Create a class of .div-square which maintains a 1:1 dimension of a div */
.div-square::after {
content: "";
display: block;
padding-bottom: 100%;
}
/* Make sure containers never lose their center alignment */
.container-medium,
.container-small,
.container-large {
margin-right: auto !important;
margin-left: auto !important;
}
/*
Make the following elements inherit typography styles from the parent and not have hardcoded values.
Important: You will not be able to style for example "All Links" in Designer with this CSS applied.
Uncomment this CSS to use it in the project. Leave this message for future hand-off.
*/
/*
a,
.w-input,
.w-select,
.w-tab-link,
.w-nav-link,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
color: inherit;
text-decoration: inherit;
font-size: inherit;
}
*/
/* Apply "..." after 3 lines of text */
.text-style-3lines {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
/* Apply "..." after 2 lines of text */
.text-style-2lines {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
/* Adds inline flex display */
.display-inlineflex {
display: inline-flex;
}
/* These classes are never overwritten */
.hide {
display: none !important;
}
@media screen and (max-width: 991px) {
.hide,
.hide-tablet {
display: none !important;
}
}
@media screen and (max-width: 767px) {
.hide-mobile-landscape {
display: none !important;
}
}
@media screen and (max-width: 479px) {
.hide-mobile {
display: none !important;
}
}
.margin-0 {
margin: 0rem !important;
}
.padding-0 {
padding: 0rem !important;
}
.spacing-clean {
padding: 0rem !important;
margin: 0rem !important;
}
.margin-top {
margin-right: 0rem !important;
margin-bottom: 0rem !important;
margin-left: 0rem !important;
}
.padding-top {
padding-right: 0rem !important;
padding-bottom: 0rem !important;
padding-left: 0rem !important;
}
.margin-right {
margin-top: 0rem !important;
margin-bottom: 0rem !important;
margin-left: 0rem !important;
}
.padding-right {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
padding-left: 0rem !important;
}
.margin-bottom {
margin-top: 0rem !important;
margin-right: 0rem !important;
margin-left: 0rem !important;
}
.padding-bottom {
padding-top: 0rem !important;
padding-right: 0rem !important;
padding-left: 0rem !important;
}
.margin-left {
margin-top: 0rem !important;
margin-right: 0rem !important;
margin-bottom: 0rem !important;
}
.padding-left {
padding-top: 0rem !important;
padding-right: 0rem !important;
padding-bottom: 0rem !important;
}
.margin-horizontal {
margin-top: 0rem !important;
margin-bottom: 0rem !important;
}
.padding-horizontal {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
}
.margin-vertical {
margin-right: 0rem !important;
margin-left: 0rem !important;
}
.padding-vertical {
padding-right: 0rem !important;
padding-left: 0rem !important;
}
/* Apply "..." at 100% width */
.truncate-width {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Removes native scrollbar */
.no-scrollbar {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
</style>
</div>
</div>
<div id="Budget-wrapper" class="shell3_wrapper budget">
<div class="shell3_sidebar-wrapper">
<div data-animation="over-left" class="sidebar4_component w-nav" data-easing2="ease"
fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium"
data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c156" role="banner" data-duration="400">
<div class="sidebar4_container"><a href="#" class="sidebar4_logo-link w-inline-block">
<div class="container-15">
<div class="supporting-text">Datally</div>
</div>
</a>
<nav role="navigation" class="sidebar4_menu w-nav-menu">
<div class="sidebar4_menu-wrapper">
<div class="sidebar4_menu-top"><a href="#" class="sidebar4_link w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M2.99979 13H3.99979V20C3.99979 21.103 4.89679 22 5.99979 22H17.9998C19.1028 22 19.9998 21.103 19.9998 20V13H20.9998C21.1975 12.9999 21.3908 12.9412 21.5552 12.8314C21.7197 12.7215 21.8478 12.5653 21.9235 12.3826C21.9991 12.1999 22.0189 11.9989 21.9804 11.8049C21.9418 11.611 21.8466 11.4328 21.7068 11.293L12.7068 2.29296C12.614 2.20001 12.5038 2.12627 12.3825 2.07596C12.2612 2.02565 12.1311 1.99976 11.9998 1.99976C11.8685 1.99976 11.7384 2.02565 11.6171 2.07596C11.4958 2.12627 11.3856 2.20001 11.2928 2.29296L2.29279 11.293C2.15298 11.4328 2.05777 11.611 2.0192 11.8049C1.98064 11.9989 2.00044 12.1999 2.07611 12.3826C2.15178 12.5653 2.27992 12.7215 2.44433 12.8314C2.60874 12.9412 2.80204 12.9999 2.99979 13ZM9.99979 20V15H13.9998V20H9.99979ZM11.9998 4.41396L17.9998 10.414L18.0008 20H15.9998V15C15.9998 13.897 15.1028 13 13.9998 13H9.99979C8.89679 13 7.99979 13.897 7.99979 15V20H5.99979V10.414L11.9998 4.41396Z"
fill="currentColor" />
</svg></div>
<div>Home</div>
</div>
</a><a href="#" class="sidebar4_link w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M6.51603 14.823L5.02603 21.275C4.97989 21.4704 4.99374 21.6751 5.06577 21.8625C5.1378 22.0499 5.26467 22.2112 5.4298 22.3253C5.59492 22.4395 5.79064 22.5012 5.99138 22.5024C6.19212 22.5036 6.38855 22.4442 6.55503 22.332L12 18.702L17.445 22.332C17.6154 22.4451 17.8162 22.5033 18.0207 22.4988C18.2251 22.4944 18.4232 22.4274 18.5884 22.3069C18.7536 22.1865 18.878 22.0183 18.9448 21.8251C19.0116 21.6318 19.0176 21.4228 18.962 21.226L17.133 14.826L21.669 10.744C21.8143 10.6132 21.9181 10.4427 21.9674 10.2535C22.0168 10.0644 22.0097 9.86488 21.9469 9.67974C21.8841 9.49461 21.7685 9.33193 21.6142 9.21183C21.46 9.09173 21.2739 9.01947 21.079 9.004L15.378 8.55L12.911 3.089C12.8324 2.91316 12.7045 2.76384 12.5428 2.65906C12.3812 2.55429 12.1927 2.49854 12 2.49854C11.8074 2.49854 11.6189 2.55429 11.4572 2.65906C11.2956 2.76384 11.1677 2.91316 11.089 3.089L8.62203 8.55L2.92103 9.003C2.72948 9.01818 2.54636 9.08821 2.39358 9.20473C2.2408 9.32125 2.12482 9.47932 2.05952 9.66003C1.99422 9.84074 1.98236 10.0364 2.02537 10.2237C2.06838 10.411 2.16443 10.5819 2.30203 10.716L6.51603 14.823ZM9.36903 10.497C9.54752 10.4829 9.71895 10.4211 9.86533 10.318C10.0117 10.2149 10.1277 10.0743 10.201 9.911L12 5.93L13.799 9.911C13.8724 10.0743 13.9883 10.2149 14.1347 10.318C14.2811 10.4211 14.4525 10.4829 14.631 10.497L18.603 10.812L15.332 13.756C15.048 14.012 14.935 14.406 15.039 14.774L16.292 19.159L12.556 16.668C12.392 16.5579 12.199 16.4992 12.0015 16.4992C11.804 16.4992 11.611 16.5579 11.447 16.668L7.54303 19.271L8.59303 14.725C8.63153 14.5578 8.62636 14.3835 8.57802 14.2189C8.52969 14.0543 8.43981 13.9048 8.31703 13.785L5.27903 10.823L9.36903 10.497Z"
fill="currentColor" />
</svg></div>
<div>Saved</div>
</div>
<div class="sidebar4_badge">
<div class="text-size-small-2">24</div>
</div>
</a>
<div class="sidebar4_accordion">
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c16e" class="sidebar4_link">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 2C6.486 2 2 6.486 2 12C2 17.514 6.486 22 12 22C17.514 22 22 17.514 22 12C22 6.486 17.514 2 12 2ZM19.931 11H13V4.069C14.7598 4.29335 16.3953 5.09574 17.6498 6.3502C18.9043 7.60466 19.7066 9.24017 19.931 11ZM4 12C4 7.928 7.061 4.564 11 4.069V12C11.003 12.1526 11.0409 12.3024 11.111 12.438C11.126 12.468 11.133 12.501 11.152 12.531L15.354 19.254C14.3038 19.7442 13.159 19.9988 12 20C7.589 20 4 16.411 4 12ZM17.052 18.196L13.805 13H19.931C19.6746 15.0376 18.6436 16.8982 17.052 18.196Z"
fill="currentColor" />
</svg></div>
<div>Dashboard</div>
</div>
<div class="sidebar4_accordion-icon w-embed"><svg width="100%" height="100%"
viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M2.55806 6.29544C2.46043 6.19781 2.46043 6.03952 2.55806 5.94189L3.44195 5.058C3.53958 4.96037 3.69787 4.96037 3.7955 5.058L8.00001 9.26251L12.2045 5.058C12.3021 4.96037 12.4604 4.96037 12.5581 5.058L13.4419 5.94189C13.5396 6.03952 13.5396 6.19781 13.4419 6.29544L8.17678 11.5606C8.07915 11.6582 7.92086 11.6582 7.82323 11.5606L2.55806 6.29544Z"
fill="currentColor" />
</svg></div>
</div>
<div style="width:100%;height:0px" class="sidebar4_accordion-list"><a href="#"
class="sidebar4_link is-indent w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9.99997 10.414L14 14.414L19.707 8.707L22 11V5H16L18.293 7.293L14 11.586L9.99997 7.586L2.29297 15.293L3.70697 16.707L9.99997 10.414Z"
fill="currentColor" />
</svg></div>
<div>Trends</div>
</div>
</a><a href="#" class="sidebar4_link is-indent w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M20 7H16V4C16 2.897 15.103 2 14 2H10C8.897 2 8 2.897 8 4V9H4C2.897 9 2 9.897 2 11V20C2 20.2652 2.10536 20.5196 2.29289 20.7071C2.48043 20.8946 2.73478 21 3 21H21C21.2652 21 21.5196 20.8946 21.7071 20.7071C21.8946 20.5196 22 20.2652 22 20V9C22 7.897 21.103 7 20 7ZM4 11H8V19H4V11ZM10 4H14V19H10V4ZM20 19H16V9H20V19Z"
fill="currentColor" />
</svg></div>
<div>Analytics</div>
</div>
</a><a href="#" class="sidebar4_link is-indent w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M21.706 5.291L18.707 2.293C18.6143 2.19996 18.5041 2.12617 18.3828 2.07589C18.2614 2.0256 18.1313 1.99981 18 2H6C5.86866 1.99981 5.73857 2.0256 5.61724 2.07589C5.4959 2.12617 5.38571 2.19996 5.293 2.293L2.294 5.291C2.20057 5.38368 2.12647 5.49398 2.076 5.61552C2.02553 5.73705 1.9997 5.8674 2 5.999V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V5.999C22.0003 5.8674 21.9745 5.73705 21.924 5.61552C21.8735 5.49398 21.7994 5.38368 21.706 5.291ZM6.414 4H17.586L18.585 4.999H5.415L6.414 4ZM4 19V6.999H20L20.002 19H4Z"
fill="currentColor" />
<path d="M15 12H9V10H7V14H17V10H15V12Z" fill="currentColor" />
</svg></div>
<div>Historical</div>
</div>
</a></div>
</div><a href="#" class="sidebar4_link w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M22.0001 7.99899C21.9999 7.82052 21.9519 7.64535 21.8612 7.49166C21.7705 7.33798 21.6402 7.21137 21.4841 7.12499L12.4621 2.12499C12.3138 2.04332 12.1473 2.00049 11.9781 2.00049C11.8088 2.00049 11.6423 2.04332 11.4941 2.12499L2.51607 7.08499C2.3601 7.17136 2.23006 7.29785 2.13941 7.45136C2.04876 7.60487 2.0008 7.77983 2.00049 7.95811C2.00018 8.13639 2.04754 8.31151 2.13767 8.46534C2.22779 8.61916 2.3574 8.7461 2.51307 8.83299L11.5351 13.873C11.6836 13.9564 11.8511 14.0004 12.0214 14.0005C12.1918 14.0007 12.3594 13.9571 12.5081 13.874L21.4861 8.87399C21.642 8.78727 21.7719 8.6604 21.8623 8.50654C21.9527 8.35268 22.0002 8.17744 22.0001 7.99899ZM12.0231 11.854L5.06007 7.96499L11.9771 4.14299L18.9411 8.00199L12.0231 11.854Z"
fill="currentColor" />
<path
d="M20.515 11.126L12 15.856L3.48504 11.126L2.51404 12.874L11.514 17.874C11.6626 17.9565 11.8296 17.9997 11.9995 17.9997C12.1694 17.9997 12.3365 17.9565 12.485 17.874L21.485 12.874L20.515 11.126Z"
fill="currentColor" />
<path
d="M20.515 15.126L12 19.856L3.48504 15.126L2.51404 16.874L11.514 21.874C11.6626 21.9565 11.8296 21.9997 11.9995 21.9997C12.1694 21.9997 12.3365 21.9565 12.485 21.874L21.485 16.874L20.515 15.126Z"
fill="currentColor" />
</svg></div>
<div>Projects</div>
</div>
</a><a href="#" class="sidebar4_link w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M19.903 8.586C19.8556 8.47747 19.7892 8.37825 19.707 8.293L13.707 2.293C13.6217 2.21078 13.5225 2.14441 13.414 2.097C13.384 2.083 13.352 2.075 13.32 2.064C13.2363 2.03553 13.1492 2.01837 13.061 2.013C13.04 2.011 13.021 2 13 2H6C4.897 2 4 2.897 4 4V20C4 21.103 4.897 22 6 22H18C19.103 22 20 21.103 20 20V9C20 8.979 19.989 8.96 19.987 8.938C19.9821 8.84972 19.9649 8.76255 19.936 8.679C19.926 8.647 19.917 8.616 19.903 8.586ZM16.586 8H14V5.414L16.586 8ZM6 20V4H12V9C12 9.26522 12.1054 9.51957 12.2929 9.70711C12.4804 9.89464 12.7348 10 13 10H18L18.002 20H6Z"
fill="currentColor" />
<path d="M8 12H16V14H8V12ZM8 16H16V18H8V16ZM8 8H10V10H8V8Z"
fill="currentColor" />
</svg></div>
<div>Documents</div>
</div>
</a>
<div class="input-form"><a href="home.html" class="button-31 home">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e712e6fc3fb883eefcb_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Home</div>
</div>
</a><a href="accounts.html" class="button-32 accounts">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e72eb8e169603a3dc02_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Accounts</div>
</div>
</a><a href="transactions.html" class="button-32 transactions">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e72aa684c7af1394f70_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Transactions</div>
</div>
</a><a href="budget.html" class="button-32 budget">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e732e6fc3fb883ef10a_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Budget</div>
</div>
</a><a href="goals.html" class="button-32 goals">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e73099e31a7652cfbd2_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Goals</div>
</div>
</a><a href="investments.html" class="button-32 investments">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e7485f8c10119b30db7_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Investments</div>
</div>
</a><a href="intelligence.html" class="button-32 intelligence">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e7496c58cbd2427a911_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Intelligence</div>
</div>
</a>
<div class="container-21">
<div class="container-19"><img
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e754750ffba9c3a1124_Vectors-Wrapper.svg"
loading="lazy" width="24" height="24" alt="" class="vectors-wrapper-6" />
<div class="text-10">Connect Bank</div>
</div>
</div>
</div>
</div>
<div class="sidebar4_menu-bottom"><a href="#" class="sidebar4_link w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 6C10.957 6.00132 9.95716 6.41622 9.21968 7.1537C8.4822 7.89118 8.0673 8.89104 8.06598 9.934H10.066C10.066 8.867 10.934 8 12 8C13.066 8 13.934 8.867 13.934 9.934C13.934 10.532 13.453 10.966 12.718 11.56C12.4779 11.7481 12.2472 11.948 12.027 12.159C11.029 13.156 11 14.215 11 14.333V15H13L12.999 14.367C13 14.351 13.032 13.981 13.44 13.574C13.59 13.424 13.779 13.274 13.975 13.116C14.754 12.485 15.933 11.532 15.933 9.934C15.9322 8.89106 15.5176 7.89104 14.7802 7.15347C14.0428 6.4159 13.0429 6.00106 12 6ZM11 16H13V18H11V16Z"
fill="currentColor" />
<path
d="M12 2C6.486 2 2 6.486 2 12C2 17.514 6.486 22 12 22C17.514 22 22 17.514 22 12C22 6.486 17.514 2 12 2ZM12 20C7.589 20 4 16.411 4 12C4 7.589 7.589 4 12 4C16.411 4 20 7.589 20 12C20 16.411 16.411 20 12 20Z"
fill="currentColor" />
</svg></div>
<div>Support</div>
</div>
</a><a href="#" class="sidebar4_link w-inline-block">
<div class="sidebar4_link-wrapper">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%"
viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 16C14.206 16 16 14.206 16 12C16 9.794 14.206 8 12 8C9.794 8 8 9.794 8 12C8 14.206 9.794 16 12 16ZM12 10C13.084 10 14 10.916 14 12C14 13.084 13.084 14 12 14C10.916 14 10 13.084 10 12C10 10.916 10.916 10 12 10Z"
fill="currentColor" />
<path
d="M2.84498 16.136L3.84498 17.866C4.37598 18.783 5.65398 19.127 6.57498 18.596L7.10398 18.29C7.68252 18.7451 8.32039 19.1192 8.99998 19.402V20C8.99998 21.103 9.89698 22 11 22H13C14.103 22 15 21.103 15 20V19.402C15.6793 19.1192 16.3172 18.7454 16.896 18.291L17.425 18.597C18.348 19.127 19.623 18.785 20.156 17.866L21.155 16.137C21.42 15.6777 21.4919 15.132 21.3548 14.6197C21.2177 14.1075 20.8829 13.6706 20.424 13.405L19.919 13.113C20.0263 12.3756 20.0263 11.6264 19.919 10.889L20.424 10.597C20.8827 10.3312 21.2174 9.89433 21.3544 9.38216C21.4914 8.86998 21.4197 8.32436 21.155 7.865L20.156 6.136C19.625 5.216 18.348 4.871 17.425 5.404L16.896 5.71C16.3174 5.25491 15.6796 4.8808 15 4.598V4C15 2.897 14.103 2 13 2H11C9.89698 2 8.99998 2.897 8.99998 4V4.598C8.32062 4.88084 7.6828 5.25459 7.10398 5.709L6.57498 5.403C5.65098 4.872 4.37498 5.216 3.84398 6.135L2.84498 7.864C2.57996 8.3233 2.50809 8.86901 2.64515 9.38126C2.78222 9.89352 3.117 10.3304 3.57598 10.596L4.08098 10.888C3.97321 11.6251 3.97321 12.3739 4.08098 13.111L3.57598 13.403C3.11714 13.669 2.78251 14.106 2.64547 14.6184C2.50843 15.1307 2.58018 15.6765 2.84498 16.136ZM6.17098 13.378C6.05806 12.9273 6.00064 12.4646 5.99998 12C5.99998 11.538 6.05798 11.074 6.16998 10.622C6.22272 10.4113 6.20537 10.1892 6.12056 9.98928C6.03576 9.78935 5.88811 9.6225 5.69998 9.514L4.57698 8.864L5.57498 7.135L6.71998 7.797C6.9067 7.90505 7.12344 7.94962 7.33765 7.92401C7.55185 7.89841 7.75198 7.80401 7.90798 7.655C8.5845 7.01156 9.40031 6.53281 10.292 6.256C10.4968 6.19347 10.6761 6.06683 10.8036 5.89473C10.931 5.72263 10.9999 5.51416 11 5.3V4H13V5.3C13.0001 5.51416 13.0689 5.72263 13.1964 5.89473C13.3238 6.06683 13.5032 6.19347 13.708 6.256C14.5995 6.53321 15.4152 7.0119 16.092 7.655C16.2481 7.80372 16.4482 7.89792 16.6624 7.92352C16.8765 7.94911 17.0932 7.90473 17.28 7.797L18.424 7.136L19.424 8.865L18.3 9.514C18.112 9.62262 17.9644 9.78948 17.8796 9.98938C17.7948 10.1893 17.7774 10.4113 17.83 10.622C17.942 11.074 18 11.538 18 12C18 12.461 17.942 12.925 17.829 13.378C17.7765 13.5888 17.7941 13.8109 17.8791 14.0108C17.964 14.2107 18.1118 14.3775 18.3 14.486L19.423 15.135L18.425 16.864L17.28 16.203C17.0933 16.0948 16.8765 16.0501 16.6623 16.0757C16.448 16.1013 16.2479 16.1958 16.092 16.345C15.4155 16.9884 14.5996 17.4672 13.708 17.744C13.5032 17.8065 13.3238 17.9332 13.1964 18.1053C13.0689 18.2774 13.0001 18.4858 13 18.7L13.002 20H11V18.7C10.9999 18.4858 10.931 18.2774 10.8036 18.1053C10.6761 17.9332 10.4968 17.8065 10.292 17.744C9.40048 17.4668 8.58476 16.9881 7.90798 16.345C7.75228 16.1954 7.55203 16.1007 7.33763 16.0753C7.12322 16.0498 6.90636 16.095 6.71998 16.204L5.57598 16.866L4.57598 15.137L5.69998 14.486C5.88817 14.3775 6.03593 14.2107 6.12091 14.0108C6.20588 13.8109 6.22346 13.5888 6.17098 13.378Z"
fill="currentColor" />
</svg></div>
<div>Settings</div>
</div>
</a></div>
</div>
</nav>
<div class="sidebar4_menu-button w-nav-button">
<div class="menu-icon is-left">
<div class="menu-icon_line-top-2"></div>
<div class="menu-icon_line-middle-2">
<div class="menu-icon_line-middle-inner"></div>
</div>
<div class="menu-icon_line-bottom-2"></div>
</div>
</div>
</div>
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1c8" class="sidebar4_close-tablet">
<div class="sidebar4_menu-button w-nav-button">
<div class="icon-embed-small w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.1266 16.773L16.7729 17.1266C16.5777 17.3218 16.2611 17.3218 16.0658 17.1266L12 13.0607L7.9341 17.1265C7.73888 17.3218 7.42229 17.3218 7.22702 17.1265L6.87347 16.773C6.6782 16.5777 6.6782 16.2612 6.87347 16.0659L10.9394 12L6.87347 7.93413C6.6782 7.73891 6.6782 7.42232 6.87347 7.22705L7.22702 6.8735C7.42228 6.67824 7.73888 6.67824 7.9341 6.8735L12 10.9394L16.0658 6.8735C16.2611 6.67824 16.5777 6.67824 16.7729 6.8735L17.1266 7.22705C17.3218 7.42231 17.3218 7.73891 17.1266 7.93413L13.0607 12L17.1266 16.0659C17.3218 16.2612 17.3218 16.5777 17.1266 16.773Z"
fill="currentColor" />
</svg></div>
</div>
</div>
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1cb" class="sidebar4_background-layer"></div>
<div class="sidebar-type-label-delete-this-2 is-level2">
<div class="icon-embed-xxsmall-2 w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="100%"
height="100%" viewBox="0 0 16 16" fill="none" preserveAspectRatio="xMidYMid meet"
aria-hidden="true" role="img">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M13.6667 4.66665H2.33333C2.14924 4.66665 2 4.51741 2 4.33331V3.66665C2 3.48255 2.14924 3.33331 2.33333 3.33331H13.6667C13.8508 3.33331 14 3.48255 14 3.66665V4.33331C14 4.51741 13.8508 4.66665 13.6667 4.66665ZM14 8.33331V7.66665C14 7.48255 13.8508 7.33331 13.6667 7.33331H2.33333C2.14924 7.33331 2 7.48255 2 7.66665V8.33331C2 8.51741 2.14924 8.66665 2.33333 8.66665H13.6667C13.8508 8.66665 14 8.51741 14 8.33331ZM14 11.6666V12.3333C14 12.5174 13.8508 12.6666 13.6667 12.6666H2.33333C 2.14924 12.6666 2 12.5174 2 12.3333V11.6666C2 11.4826 2.14924 11.3333 2.33333 11.3333H13.6667C13.8508 11.3333 14 11.4826 14 11.6666Z"
fill="currentColor">
</path>
</svg></div>
<div>Level 2</div>
</div>
</div>
</div>
<main class="shell3_main-wrapper">
<div class="topbar3_component">
<div class="topbar3_container">
<div class="topbar3_search-desktop">
<div class="topbar3_form-block w-form">
<form id="email-form" name="wf-form-Search-3-4" data-name="Search 3" method="get"
class="topbar3_form" data-wf-page-id="66100e0897d5cc7dd645ce7a"
data-wf-element-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1d5">
<div class="topbar3_search"><input class="form_input-2 is-icon-left w-input" maxlength="256"
name="field-2" data-name="Field 2" placeholder="Search" type="text" id="field-3" />
<div class="form_icon-wrapper">
<div class="icon-embed-xsmall w-embed"><svg xmlns="http://www.w3.org/2000/svg"
width="100%" height="100%" viewBox="0 0 24 24" fill="none"
preserveAspectRatio="xMidYMid meet" aria-hidden="true" role="img">
<path
d="M10 18C11.775 17.9996 13.4988 17.4054 14.897 16.312L19.293 20.708L20.707 19.294L16.311 14.898C17.405 13.4997 17.9996 11.7754 18 10C18 5.589 14.411 2 10 2C5.589 2 2 5.589 2 10C2 14.411 5.589 18 10 18ZM10 4C13.309 4 16 6.691 16 10C16 13.309 13.309 16 10 16C6.691 16 4 13.309 4 10C4 6.691 6.691 4 10 4Z"
fill="currentColor" />
</svg></div>
</div>
</div>
</form>
<div class="w-form-done">
<div>Thank you! Your submission has been received!</div>
</div>
<div class="w-form-fail">
<div>Oops! Something went wrong while submitting the form.</div>
</div>
</div>
</div>
<div id="w-node-fd44b6ae-2c96-91dc-1ebd-aafde167c1e0-d645ce7a" class="topbar3_content-right">
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1e1" class="topbar3_search-button-tablet">
<div class="icon-embed-xsmall w-embed"><svg width="100%" height="100%" viewBox="0 0 24 24"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M10 18C11.775 17.9996 13.4988 17.4054 14.897 16.312L19.293 20.708L20.707 19.294L16.311 14.898C17.405 13.4997 17.9996 11.7754 18 10C18 5.589 14.411 2 10 2C5.589 2 2 5.589 2 10C2 14.411 5.589 18 10 18ZM10 4C13.309 4 16 6.691 16 10C16 13.309 13.309 16 10 16C6.691 16 4 13.309 4 10C4 6.691 6.691 4 10 4Z"
fill="currentColor" />
</svg></div>
</div>
<div data-delay="200" data-hover="false" data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1e3"
class="topbar3_menu-dropdown w-dropdown">
<div class="topbar3_dropdown-account w-dropdown-toggle"><img loading="lazy"
src="https://cdn.prod.website-files.com/65c4bef9d21f1fd78ad99a2e/666d9e763b85396f477b824b_Container.png"
alt="" class="topbar3_avatar-image" />
<div class="topbar3_text-wrapper">
<div>Chukwuebuka</div>
<div class="dropdown-chevron-3 w-embed"><svg width=" 100%" height=" 100%"
viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M2.55806 6.29544C2.46043 6.19781 2.46043 6.03952 2.55806 5.94189L3.44195 5.058C3.53958 4.96037 3.69787 4.96037 3.7955 5.058L8.00001 9.26251L12.2045 5.058C12.3021 4.96037 12.4604 4.96037 12.5581 5.058L13.4419 5.94189C13.5396 6.03952 13.5396 6.19781 13.4419 6.29544L8.17678 11.5606C8.07915 11.6582 7.92086 11.6582 7.82323 11.5606L2.55806 6.29544Z"
fill="currentColor" />
</svg></div>
</div>
</div>
<nav style="-webkit-transform:translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 3rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0"
class="topbar3_dropdown-list w-dropdown-list"><a href="#"
class="topbar3_dropdown-link w-dropdown-link">My Profile</a><a href="#"
class="topbar3_dropdown-link w-dropdown-link">Profile Settings</a>
<div class="topbar3_dropdown-divider"></div><a href="#"
class="topbar3_dropdown-link w-dropdown-link">Log Out</a>
</nav>
</div>
</div>
</div>
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1f2" class="topbar3_search-tablet">
<div class="topbar3_search-wrapper">
<div class="topbar3_form-block w-form">
<form id="email-form" name="wf-form-Search-3-5" data-name="Search 3" method="get"
class="topbar3_form" data-wf-page-id="66100e0897d5cc7dd645ce7a"
data-wf-element-id="fd44b6ae-2c96-91dc-1ebd-aafde167c1f5">
<div class="topbar3_search"><input class="form_input-2 is-icon-left w-input" maxlength="256"
name="Field-3" data-name="Field 3" placeholder="Search" type="text" id="Field-3" />
<div class="form_icon-wrapper">
<div class="icon-embed-xsmall w-embed"><svg xmlns="http://www.w3.org/2000/svg"
width="100%" height="100%" viewBox="0 0 24 24" fill="none"
preserveAspectRatio="xMidYMid meet" aria-hidden="true" role="img">
<path
d="M10 18C11.775 17.9996 13.4988 17.4054 14.897 16.312L19.293 20.708L20.707 19.294L16.311 14.898C17.405 13.4997 17.9996 11.7754 18 10C18 5.589 14.411 2 10 2C5.589 2 2 5.589 2 10C2 14.411 5.589 18 10 18ZM10 4C13.309 4 16 6.691 16 10C16 13.309 13.309 16 10 16C6.691 16 4 13.309 4 10C4 6.691 6.691 4 10 4Z"
fill="currentColor" />
</svg></div>
</div>
</div>
</form>
<div class="w-form-done">
<div>Thank you! Your submission has been received!</div>
</div>
<div class="w-form-fail">
<div>Oops! Something went wrong while submitting the form.</div>
</div>
</div>
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c200" class="topbar3_close-icon">
<div class="icon-embed-small w-embed"><svg width="100%" height="100%" viewBox="0 0 32 33"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M22.8354 22.864L22.3639 23.3354C22.1036 23.5957 21.6815 23.5957 21.4211 23.3354L16 17.9142L10.5788 23.3353C10.3185 23.5957 9.89638 23.5957 9.63603 23.3353L9.16462 22.8639C8.90427 22.6036 8.90427 22.1815 9.16462 21.9211L14.5858 16.5L9.16462 11.0788C8.90427 10.8185 8.90427 10.3964 9.16462 10.136L9.63602 9.66463C9.89637 9.40428 10.3185 9.40428 10.5788 9.66463L16 15.0858L21.4211 9.66462C21.6815 9.40427 22.1036 9.40427 22.3639 9.66462L22.8354 10.136C23.0957 10.3964 23.0957 10.8185 22.8354 11.0788L17.4142 16.5L22.8354 21.9211C23.0957 22.1815 23.0957 22.6036 22.8354 22.864Z"
fill="currentColor" />
</svg></div>
</div>
</div>
<div data-w-id="fd44b6ae-2c96-91dc-1ebd-aafde167c202" class="topbar3_search-overlay"></div>
</div>
<div class="topbar-type-label-delete-this-2 is-level1">
<div class="icon-embed-xxsmall-2 w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="100%"
height="100%" viewBox="0 0 16 16" fill="none" preserveAspectRatio="xMidYMid meet"
aria-hidden="true" role="img">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M13.6667 4.66665H2.33333C2.14924 4.66665 2 4.51741 2 4.33331V3.66665C2 3.48255 2.14924 3.33331 2.33333 3.33331H13.6667C13.8508 3.33331 14 3.48255 14 3.66665V4.33331C14 4.51741 13.8508 4.66665 13.6667 4.66665ZM14 8.33331V7.66665C14 7.48255 13.8508 7.33331 13.6667 7.33331H2.33333C2.14924 7.33331 2 7.48255 2 7.66665V8.33331C2 8.51741 2.14924 8.66665 2.33333 8.66665H13.6667C13.8508 8.66665 14 8.51741 14 8.33331ZM14 11.6666V12.3333C14 12.5174 13.8508 12.6666 13.6667 12.6666H2.33333C 2.14924 12.6666 2 12.5174 2 12.3333V11.6666C2 11.4826 2.14924 11.3333 2.33333 11.3333H13.6667C13.8508 11.3333 14 11.4826 14 11.6666Z"
fill="currentColor">
</path>
</svg></div>
<div>Level 1</div>
</div>
</div>
<div class="shell3_inner-wrapper">
<div class="shell3_inner-wrapper-height w-embed">
<style>
/* This code adjusts the height of the main content to work with the topbar and fit within the viewport height */
.shell3_inner-wrapper {
height: calc(100vh - 4.5rem);
/* 4.5rem reflects the height of the topbar */
}
</style>
</div>
<div class="shell-header-text-replace-this-2">Click and paste Page Header</div>
<div class="section_shell3-layout">
<div class="padding-horizontal padding-medium">
<div class="container-large-4">
<div class="padding-vertical padding-large">
<div id="w-node-fd44b6ae-2c96-91dc-1ebd-aafde167c20f-d645ce7a"
class="w-layout-grid shell3-layout_component">
<div class="shell-content-text-replace-this-2">Click and paste Main Content</div>
</div>
</div>
</div>
</div>
<div class="table-container-6">
<div class="horizontal-container-17">
<div class="horizontal-container-18">
<div class="paragraph-container-11">
<div class="text-57">June 2024</div>
<div class="text-58">Budget</div>
<div class="text-59">Forecast</div>
</div>
<div class="container-63"><a href="#" target="_blank" class="button-55">
<div class="text-60">Today</div>
</a><a href="#" target="_blank" class="button-56">
<div class="text-60">Budget Settings</div>
</a></div>
</div>
</div>
<div class="table-container-7">
<div class="table-container-8">