-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1051 lines (1023 loc) · 73.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>ShapeVoice</title>
</head>
<body>
<div class="landing">
<!-- Navbar -->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand px-1" href="#">SHAPEVOICE</a>
<div class="navbar navbar-expand-lg" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Product
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item active dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Template
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="#"
>Blog <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
</ul>
</div>
<div class="flex-md-row">
<a href="#" class="btn" aria-pressed="true">Sign In</a>
<a href="#" class="btn btn-primary" role="button" aria-pressed="true"
>Start Free</a
>
</div>
</nav>
<br /><br /><br />
<div class="container" style="display: flex">
<!-- <div class="row" style="width:50%"> -->
<div style="width: 50vw">
<h1>Managing business</h1>
<h1>payments has never</h1>
<h1>been easier</h1>
<p style="width: 31vw">
Yet bed any for travelling assistance indulgenceunpleasing. Not
thoughts all exercise blessing.Indulgence way everything.
</p>
<div style="display: flex;">
<svg
width="162"
height="60"
viewBox="0 0 162 60"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="162" height="60" rx="30" fill="#3734A9" />
<text
fill="#ffffff"
font-size="16"
font-family="Verdana"
x="30"
y="35"
>
Our Process
</text>
</svg>
<img src="vecteezy_green-play-button_1186943.png" alt="" srcset="" style=" height: 50px; width: 50px; margin-left: 5%;">
<p style="margin-top: 10px; margin-left: 5px; color: #3734a9;">See how it works</p>
</div>
</div>
<div>
<form>
<p class="font-weight-bold" style="color: #3734a9">
Get Started for Free
</p>
<div class="mb-4">
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Email address"
/>
</div>
<div class="mb-3">
<input
type="password"
class="form-control"
id="exampleInputPassword1"
placeholder="Password"
/>
<br />
<button
type="submit"
class="col-12"
style="border: none; background-color: #ff7f5c; color: white"
>
Get Started
</button>
</div>
</form>
</div>
</div>
<br /><br /><br />
<h4 class="text-center font-weight-bold" style="margin-bottom: 2%;">
Trusted By Over 100+ Startups and freelance business
</h4>
<div
class="mx-auto col-7"
style="display: flex; align-items: center; gap: 40px; margin-bottom: 5%; margin-top: 3%;"
>
<div>
<svg
width="138"
height="19"
viewBox="0 0 138 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M59.2079 11.8481H68.2703L63.4784 4.13868L54.6836 18.0777H50.6809L61.3784 1.33396C61.8435 0.657438 62.6186 0.248718 63.4784 0.248718C64.3099 0.248718 65.0851 0.643351 65.5361 1.30577L76.2758 18.0777H72.2731L70.3845 14.9629H61.2092L59.2079 11.8481ZM100.785 14.9629V0.417847H97.3888V16.3864C97.3888 16.8234 97.5579 17.2462 97.8821 17.5703C98.2062 17.8945 98.6431 18.0777 99.1223 18.0777H114.612L116.613 14.9629H100.785ZM44.5923 12.3555C47.8904 12.3555 50.5682 9.69176 50.5682 6.39373C50.5682 3.09572 47.8904 0.417847 44.5923 0.417847H29.7329V18.0777H33.1282V3.53264H44.3668C45.9454 3.53264 47.2138 4.81519 47.2138 6.39373C47.2138 7.97227 45.9454 9.25484 44.3668 9.25484L34.7913 9.24074L44.9305 18.0777H49.8635L43.042 12.3555H44.5923ZM8.83143 18.0777C3.95624 18.0777 0 14.1314 0 9.25484C0 4.37828 3.95624 0.417847 8.83143 0.417847H19.0961C23.9726 0.417847 27.926 4.37828 27.926 9.25484C27.926 14.1314 23.9726 18.0777 19.0961 18.0777H8.83143ZM18.8678 14.9629C22.0263 14.9629 24.5844 12.4119 24.5844 9.25484C24.5844 6.09776 22.0263 3.53264 18.8678 3.53264H9.0583C5.90122 3.53264 3.34168 6.09776 3.34168 9.25484C3.34168 12.4119 5.90122 14.9629 9.0583 14.9629H18.8678ZM83.3651 18.0777C78.4885 18.0777 74.5282 14.1314 74.5282 9.25484C74.5282 4.37828 78.4885 0.417847 83.3651 0.417847H95.5565L93.5692 3.53264H83.5906C80.4335 3.53264 77.8685 6.09776 77.8685 9.25484C77.8685 12.4119 80.4335 14.9629 83.5906 14.9629H95.8383L93.837 18.0777H83.3651ZM124.9 14.9629C122.293 14.9629 120.08 13.2153 119.404 10.8052H133.921L135.922 7.69039H119.404C120.08 5.2944 122.293 3.53264 124.9 3.53264H134.865L136.88 0.417847H124.675C119.798 0.417847 115.838 4.37828 115.838 9.25484C115.838 14.1314 119.798 18.0777 124.675 18.0777H135.147L137.148 14.9629H124.9Z"
fill="#EA1B22"
/>
</svg>
</div>
<div style="display: flex">
<svg
width="30"
height="18"
viewBox="0 0 30 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M29.1168 14.0751C29.1168 14.1489 29.1168 14.3342 29.1153 14.3342H29.1123H24.855L22.3712 7.39596C22.15 6.87996 21.8176 6.1064 20.8487 6.1064C20.256 6.1064 19.7204 6.59592 19.4166 7.40377L14.914 17.8332L10.5798 7.46703C10.1556 6.54636 9.86227 6.11336 9.01379 6.11336C8.43761 6.11336 8.01489 6.3256 7.55455 7.41627L4.98206 14.4373L0.708121 14.4328C0.70511 14.326 0.703613 14.2192 0.703613 14.1124C0.703613 6.30766 7.03103 0 14.8357 0C22.6404 0 29.1168 6.27043 29.1168 14.0751Z"
fill="#D8292F"
/>
</svg>
<svg
width="97"
height="13"
viewBox="0 0 97 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M95.6809 1.84768C96.7563 2.71756 95.6177 4.09357 94.6686 3.39772C93.4982 2.65436 90.8411 2.30644 90.509 3.95121C90.0819 6.54515 96.962 5.05845 96.8513 9.2655C96.7406 13.2829 90.9202 13.3778 88.7375 11.5747C88.2156 11.1478 88.2314 10.4518 88.5161 10.0247C88.9273 9.61356 89.386 9.4712 89.9237 9.91399C91.2206 10.7997 94.558 11.464 94.7952 9.21814C94.5896 6.87724 88.01 8.28491 88.5003 3.79314C88.8641 0.724735 93.4982 0.171112 95.6809 1.84768ZM85.3049 2.4645V8.19004C85.3049 14.1053 75.7676 14.1053 75.7676 8.19004V2.4645C75.7676 1.04112 77.8396 0.977796 77.8396 2.4645V8.19004C77.8396 11.3058 83.2329 11.4957 83.2329 8.19004V2.4645C83.2329 1.05683 85.3049 0.946129 85.3049 2.4645ZM19.9973 1.02529C22.7651 1.16753 25.6595 3.08132 25.6595 6.82987C25.6595 10.5783 22.7651 12.5238 19.9973 12.5238C17.0712 12.6503 14.0345 10.7048 14.0345 6.82987C14.0345 2.93896 17.0712 1.02529 19.9973 1.02529ZM33.9318 1.42059C37.9492 1.42059 38.7716 6.7982 35.4186 8.14254L37.5221 10.7048C38.3445 11.9228 36.6996 13.0931 35.7506 11.8911L33.3624 8.47477H30.8792V11.3375C30.8792 12.7135 28.7756 12.761 28.7756 11.3691V2.38546C28.7756 1.83184 29.2027 1.42059 29.7247 1.42059H33.9318ZM1.15943 1.27835C1.61811 1.27835 1.88701 1.54724 2.1559 1.84768L5.63544 6.54515L9.24162 1.67365C9.76351 1.0253 11.0447 1.27835 11.0447 2.36964V11.2743C11.0447 11.9701 10.6018 12.3656 10.0957 12.3656C9.52628 12.3656 9.08342 11.9701 9.08342 11.2743V5.4222L6.45794 8.74366C5.88849 9.43952 5.1768 9.43952 4.65484 8.74366L2.29821 5.4222V11.2743C2.29821 11.9701 1.72882 12.3656 1.15943 12.3656C0.653304 12.3656 0.210449 11.9701 0.210449 11.2743V2.36963C0.210449 1.54725 0.906365 1.27835 1.15943 1.27835ZM45.399 1.27835C47.4552 1.27835 49.3057 2.65436 49.3057 5.29567C49.3057 7.79462 47.4552 9.18646 45.399 9.18646H42.7577V11.2743C42.7577 11.9701 42.3148 12.3656 41.7454 12.3656C41.2235 12.3656 40.6699 11.9701 40.6699 11.2743V2.36963C40.6699 1.84768 41.0812 1.27835 41.7454 1.27835H45.399ZM60.5041 1.42058C61.0577 1.42058 61.4848 1.83184 61.4848 2.4013V11.385C61.4848 11.9385 61.0577 12.3656 60.5041 12.3656C59.9348 12.3656 59.4286 11.9385 59.4286 11.385V7.92115H54.2725V11.385C54.2725 11.9385 53.8613 12.3656 53.3077 12.3656C52.596 12.3656 52.1847 11.9385 52.1847 11.385V2.4013C52.1847 1.83185 52.596 1.42058 53.3077 1.42058C53.8613 1.42058 54.2725 1.83184 54.2725 2.4013V5.84929H59.4286V2.4013C59.4286 1.83185 59.9348 1.42058 60.5041 1.42058ZM71.5128 1.42058C72.9678 1.42058 72.9361 3.47674 71.5128 3.47674H66.9577V5.84929H70.9433C72.351 5.84929 72.351 7.92115 70.9433 7.92115H66.9577V10.2936H71.7816C73.2209 10.2936 73.3316 12.3656 71.7816 12.3656H65.8347C65.2811 12.3656 64.854 11.9385 64.854 11.385V2.4013C64.854 1.83185 65.2811 1.42058 65.8347 1.42058H71.5128ZM19.8232 3.08132C18.0518 3.08132 16.1222 4.33093 16.1222 6.82987C16.1222 9.31299 18.0518 10.5783 19.8232 10.5783C21.6422 10.5783 23.5876 9.31299 23.5876 6.82987C23.5876 4.33092 21.6422 3.08132 19.8232 3.08132ZM45.399 3.27118H42.7577V7.20947H45.399C46.4586 7.20947 47.297 6.27626 47.297 5.29567C47.297 4.18856 46.4587 3.27118 45.399 3.27118ZM33.9318 3.33438H30.8792V6.65584H33.9318C35.9879 6.65584 36.1144 3.33438 33.9318 3.33438Z"
fill="#3DB5E6"
/>
</svg>
</div>
<div>
<svg
width="138"
height="22"
viewBox="0 0 138 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M130.621 9.88629V12.7458H132.63V15.5828C132.636 15.8001 132.626 16.0321 132.596 16.2317L132.579 16.3285C132.576 16.3501 132.572 16.3724 132.567 16.3951L132.551 16.4649C132.548 16.4768 132.544 16.4887 132.541 16.5008L132.518 16.5744C132.337 17.0968 131.793 17.7588 130.57 17.7588C129.268 17.7588 128.745 16.9988 128.602 16.4649L128.585 16.3951L128.573 16.3285C128.537 16.1098 128.522 15.8364 128.522 15.5828V6.62199C128.522 6.34024 128.538 6.03482 128.589 5.78601L128.624 5.63481C128.626 5.62434 128.629 5.6137 128.632 5.6029L128.651 5.53631C128.654 5.52493 128.658 5.51341 128.662 5.50177L128.687 5.43059C128.873 4.9355 129.364 4.2761 130.56 4.2761C131.482 4.2761 131.979 4.65212 132.245 5.04076L132.292 5.11369C132.307 5.13799 132.321 5.16225 132.334 5.18638L132.371 5.2583L132.404 5.32893L132.432 5.39771L132.456 5.46413L132.477 5.52766L132.494 5.58775L132.508 5.64388L132.52 5.69552C132.525 5.72119 132.529 5.74846 132.534 5.7768L132.545 5.86457C132.547 5.87957 132.549 5.89472 132.55 5.90995L132.562 6.04759L132.57 6.17958L132.577 6.35956L132.579 6.4518V7.5399H137.517L137.518 6.86256L137.521 6.62031L137.52 6.43253L137.516 6.21389L137.512 6.09617L137.503 5.9127L137.49 5.72475L137.479 5.59909C137.145 2.28894 134.657 1.01539 131.63 0.793778L131.427 0.780551L131.223 0.770377C131.121 0.766042 131.018 0.762828 130.915 0.760697L130.707 0.757869C130.673 0.757518 130.638 0.757518 130.603 0.757518L130.395 0.758938C130.36 0.759413 130.326 0.760008 130.291 0.760725L130.085 0.766491L129.88 0.775235L129.677 0.787018L129.476 0.801905C129.409 0.807392 129.342 0.813406 129.276 0.819959L129.078 0.841243C129.045 0.845063 129.012 0.84902 128.98 0.853116L128.785 0.879363C128.333 0.944535 127.897 1.03738 127.485 1.16151L127.31 1.21663C125.396 1.8443 124.006 3.17879 123.721 5.59909L123.691 5.86775L123.671 6.07577L123.652 6.29385L123.636 6.51082C123.628 6.65261 123.622 6.78619 123.622 6.89666L123.622 15.2455L123.624 15.3491L123.628 15.5066L123.633 15.617L123.64 15.7349L123.648 15.8632L123.66 16.0044L123.682 16.2468L123.7 16.4328C123.977 19.5088 126.309 20.8771 129.161 21.2L129.361 21.2208C129.696 21.2527 130.037 21.2707 130.382 21.2758L130.589 21.2774L130.798 21.2758C131.145 21.2707 131.488 21.2527 131.823 21.2208L132.024 21.2C134.886 20.8771 137.202 19.5088 137.484 16.4328L137.507 16.1615L137.524 15.932L137.539 15.6749L137.548 15.4534L137.556 15.1397V9.88629H130.621ZM96.5741 1.28495H91.6155V15.7895C91.6233 16.0423 91.6155 16.3263 91.572 16.5345L91.5574 16.5976L91.5393 16.6648C91.5326 16.6878 91.5253 16.7114 91.5174 16.7355L91.4915 16.809C91.3044 17.3077 90.8278 17.9584 89.6878 17.9584C88.6187 17.9584 88.1306 17.3712 87.9261 16.8849L87.8961 16.809C87.8915 16.7966 87.8871 16.7842 87.8829 16.7719L87.8595 16.6997L87.8401 16.6307C87.8373 16.6195 87.8345 16.6085 87.8319 16.5976L87.8182 16.5345C87.7686 16.3263 87.7623 16.0423 87.7686 15.7895V1.28495H82.8115V15.3394L82.8106 15.4524L82.8123 15.65L82.8193 15.9407L82.8328 16.294L82.8423 16.4718L82.8488 16.5662L82.855 16.6357C83.098 19.236 84.6235 20.5894 86.7778 21.1558L86.9613 21.2018C87.3622 21.2974 87.7835 21.3671 88.2212 21.4136L88.4245 21.4335L88.6299 21.4501L88.8375 21.4636C88.9418 21.4696 89.0469 21.4743 89.1528 21.478L89.3654 21.4838L89.5799 21.4867C89.6158 21.4871 89.6517 21.4871 89.6878 21.4871L89.9036 21.4856C89.9394 21.4852 89.9751 21.4846 90.0108 21.4838L90.2238 21.478C90.3298 21.4743 90.4351 21.4696 90.5396 21.4636L90.7476 21.4501L90.9533 21.4335L91.1568 21.4136C94.057 21.1057 96.2324 19.7853 96.5321 16.6357L96.5361 16.6044L96.5442 16.5219L96.5562 16.3573L96.5669 16.1582L96.5728 16.0142L96.5788 15.7934L96.5806 15.65L96.58 15.5151L96.5768 15.3936C96.5761 15.3747 96.5752 15.3566 96.5741 15.3394V1.28495ZM51.0134 1.28495L48.5398 16.611L46.0678 1.28495H38.0692L37.645 20.8914H42.5452L42.6779 2.74113L46.0494 20.8914H51.0212L54.3957 2.74113L54.5289 20.8914H59.4415L59.0029 1.28495H51.0134ZM21.3987 1.28495L17.7668 20.8914H23.0631L25.8 2.74113L28.4711 20.8914H33.7306L30.1139 1.28495H21.3987ZM113.904 17.0705L109.286 1.28495H102.011V20.687H106.824L106.544 4.39644L111.503 20.687H118.481V1.28495H113.636L113.904 17.0705ZM69.3832 6.3876C69.2961 6.00039 69.3213 5.58902 69.3663 5.37402C69.3791 5.31696 69.3941 5.25943 69.4119 5.20199L69.4407 5.11597C69.6363 4.57242 70.0939 4.06185 71.1432 4.06185C72.2756 4.06185 72.9395 4.76778 72.9395 5.82718V7.02606H77.7733V5.65951C77.7733 2.57562 75.755 1.38932 73.5983 0.973529L73.4208 0.941066L73.2429 0.911935L73.0648 0.885995L72.8868 0.863109L72.7091 0.843136L72.5319 0.825939C72.473 0.820653 72.4141 0.815807 72.3555 0.811377L72.1801 0.799311L72.006 0.789603L71.8333 0.782114L71.6622 0.776704L71.4932 0.773235L71.2437 0.771365L71.1337 0.771753L70.915 0.774873C70.8787 0.775656 70.8425 0.776571 70.8064 0.777619L70.5905 0.785515C70.5189 0.788685 70.4476 0.792397 70.3767 0.796659L70.165 0.811104C67.2161 1.03668 64.9148 2.24798 64.4545 5.08852C64.3183 5.95357 64.2846 6.72143 64.5013 7.70128C64.8425 9.31142 66.1839 10.4572 67.7236 11.4182L67.9619 11.5647C68.0019 11.5888 68.0419 11.6129 68.0821 11.6369L68.3239 11.7793L68.5672 11.9195L68.8114 12.0575L69.1778 12.261L70.1408 12.7887L70.3747 12.9184L70.6046 13.0477L70.8299 13.1768L71.0499 13.3059C72.0993 13.9305 72.9401 14.5638 73.2427 15.321C73.4101 15.7708 73.3735 16.3379 73.2925 16.6997L73.2787 16.758C73.2586 16.845 73.2335 16.9321 73.2019 17.0176L73.168 17.1026C72.9453 17.6229 72.4585 18.0664 71.3889 18.0664C70.1689 18.0664 69.4345 17.365 69.4345 16.3079L69.433 14.4263H64.2302V15.922C64.2302 19.4325 66.4575 20.9575 69.2469 21.4102L69.4546 21.4418C69.5936 21.4616 69.734 21.4788 69.8754 21.4935L70.0883 21.5139C70.3375 21.5355 70.5898 21.5497 70.8439 21.5572L71.0622 21.562C71.0986 21.5626 71.1351 21.563 71.1716 21.5632L71.2812 21.5636C71.3541 21.5636 71.4268 21.5631 71.4993 21.5621L71.7156 21.5573C71.7515 21.5563 71.7874 21.5551 71.8231 21.5538L72.0368 21.5442C72.1077 21.5405 72.1783 21.5362 72.2485 21.5314L72.4582 21.5152C72.5973 21.5033 72.7349 21.4892 72.871 21.4727L73.0741 21.4463L73.2746 21.4164C73.3411 21.4058 73.4071 21.3947 73.4727 21.3829L73.6681 21.3459C76.0294 20.8727 77.7863 19.5899 78.1391 17.1234C78.1877 16.7555 78.2176 16.4157 78.2337 16.1052L78.2424 15.9024C78.2435 15.8694 78.2445 15.8367 78.2453 15.8044L78.2486 15.6147V15.4339L78.2456 15.262L78.2399 15.099L78.232 14.9451C78.2306 14.9201 78.229 14.8956 78.2273 14.8715L78.2166 14.7311L78.2044 14.6L78.191 14.4781L78.1695 14.3127L78.1472 14.1686L78.1181 14.0097L78.1046 13.9446C77.7641 12.2373 76.2694 11.0313 74.6088 10.0386L74.3705 9.89823L74.1307 9.76056L73.8898 9.62541L73.5281 9.42702L73.0484 9.16961L72.2304 8.73449L71.8937 8.55236C71.8569 8.53223 71.8204 8.51214 71.784 8.49206L71.5686 8.37194L71.3593 8.25228C70.3289 7.65489 69.5502 7.06833 69.3832 6.3876ZM5.61949 6.33951C5.53051 5.96896 5.54442 5.57915 5.59007 5.35264L5.60896 5.26783L5.63041 5.18391C5.79371 4.59517 6.24017 3.98834 7.39414 3.98834C8.5409 3.98834 9.21611 4.70107 9.21611 5.76903V6.98251H14.1065V5.60513C14.1065 2.66225 12.2758 1.42633 10.23 0.94287L10.0516 0.902703C9.90256 0.870773 9.75263 0.842648 9.60243 0.817966L9.42211 0.789977L9.24176 0.765154L9.06163 0.743356L8.88194 0.724445C8.82215 0.718607 8.76247 0.713227 8.70295 0.708281L8.52488 0.694725L8.34796 0.683637L8.17244 0.674878L7.99856 0.668308L7.82654 0.663788L7.57253 0.660339H7.48905C7.41573 0.660339 7.3427 0.660852 7.26996 0.661885L7.05266 0.666554C6.90841 0.67072 6.76541 0.677001 6.6238 0.685465L6.41243 0.699806C6.37738 0.702472 6.34242 0.705276 6.30755 0.708219L6.09947 0.727564C6.03048 0.734576 5.96189 0.742154 5.89369 0.750306L5.69032 0.776496C5.52187 0.799772 5.35602 0.826691 5.19301 0.857383L4.99879 0.896033L4.8074 0.938354L4.61893 0.984397C4.5566 1.00037 4.49478 1.01697 4.43348 1.03421L4.25114 1.08785C2.35321 1.67126 0.985467 2.89485 0.640203 5.01803C0.497707 5.89692 0.473287 6.67007 0.679225 7.66074C1.04179 9.37271 2.52051 10.5649 4.17484 11.5667L4.41808 11.712C4.4588 11.736 4.49959 11.7599 4.54044 11.7837L4.78621 11.9253L5.1563 12.1338L5.64898 12.4056L6.37568 12.8038L6.7287 13.0003L7.07189 13.1962L7.29413 13.3267C7.33069 13.3485 7.36699 13.3702 7.40304 13.392L7.61601 13.5231C8.52425 14.0919 9.23559 14.6779 9.51017 15.3648C9.69 15.8115 9.64795 16.3785 9.56297 16.752L9.54844 16.8124C9.52745 16.8984 9.50168 16.9845 9.46981 17.0692L9.43587 17.1533C9.20741 17.6828 8.71711 18.1369 7.63356 18.1369C6.40875 18.1369 5.67613 17.4234 5.67613 16.3517L5.66934 14.465H0.408081V15.9643C0.408081 20.1725 3.58097 21.5557 7.09482 21.6596L7.31486 21.6645L7.53562 21.6661L7.75392 21.6645C7.86265 21.663 7.97074 21.6603 8.07814 21.6563L8.29198 21.6469C8.39843 21.6414 8.50414 21.6346 8.60907 21.6266L8.81787 21.609L9.02449 21.588C9.09299 21.5805 9.16111 21.5724 9.22883 21.5637L9.43079 21.5358C9.49771 21.526 9.56421 21.5156 9.63029 21.5045L9.82722 21.4697C12.2725 21.0118 14.0948 19.7147 14.4618 17.1777C14.5123 16.8153 14.5439 16.48 14.5616 16.1727L14.5713 15.972L14.5773 15.7797C14.5787 15.717 14.5795 15.6557 14.5798 15.5958L14.5791 15.4204L14.5757 15.2536L14.5697 15.0953L14.5617 14.9457L14.5518 14.8049L14.5404 14.6728L14.5213 14.4913L14.5007 14.3299L14.4728 14.1463L14.4411 13.9683C14.1018 12.2812 12.6517 11.0809 11.0201 10.0936L10.7802 9.95066C10.74 9.92707 10.6997 9.9036 10.6594 9.88025L10.4168 9.74147L10.1732 9.60526L9.92928 9.47142L9.68569 9.33977L8.61087 8.76925L8.26716 8.58504L8.04396 8.46333L7.82625 8.34229L7.6147 8.22171C7.57999 8.20164 7.54556 8.18158 7.51143 8.16154L7.31031 8.0413C6.42228 7.50037 5.77019 6.95917 5.61949 6.33951Z"
fill="#1428A0"
/>
</svg>
</div>
<div style="display: flex; align-items: flex-end">
<svg
width="11"
height="15"
viewBox="0 0 11 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M2.95509 14.412C1.92638 14.4142 0.976049 13.8627 0.467567 12.9685C-0.0335867 12.0798 -0.00353456 10.987 0.545709 10.1272L5.66835 2.08289C6.20213 1.20271 7.1682 0.677796 8.19711 0.708889C9.22528 0.733528 10.1605 1.31 10.6445 2.21746C11.122 3.12044 11.0623 4.20683 10.4904 5.05445L5.37098 13.0987C4.84335 13.9209 3.93201 14.4163 2.95509 14.412Z"
fill="#F62B54"
/>
</svg>
<svg
width="12"
height="15"
viewBox="0 0 12 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.74191 14.4116C2.70869 14.4116 1.75797 13.8592 1.25873 12.9714C0.758684 12.0851 0.78874 10.9951 1.33687 10.1377L6.44974 2.11183C6.97581 1.21902 7.94475 0.68179 8.98067 0.708535C10.0226 0.731326 10.9668 1.31413 11.4443 2.22579C11.9186 3.13745 11.8491 4.23035 11.2598 5.0758L6.14803 13.1016C5.62207 13.9203 4.71493 14.4141 3.74191 14.4116Z"
fill="#FFCC00"
/>
</svg>
<svg
width="6"
height="6"
viewBox="0 0 6 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M3.33199 5.47986C4.78853 5.47986 5.96929 4.32389 5.96929 2.89792C5.96929 1.47195 4.78853 0.315979 3.33199 0.315979C1.87546 0.315979 0.694702 1.47195 0.694702 2.89792C0.694702 4.32389 1.87546 5.47986 3.33199 5.47986Z"
fill="#00CA72"
/>
</svg>
<svg
width="88"
height="26"
viewBox="0 0 88 26"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M87.5522 7.36333H83.6983L80.997 14.3277L78.3098 7.36333H74.4559L79.1411 18.3683L76.2271 25.6442H80.0528L87.5522 7.36333ZM64.114 13.4845C64.114 15.2426 65.6508 16.3996 67.1604 16.3996C68.644 16.3996 70.1016 15.323 70.1016 13.4834C70.1016 11.6438 68.644 10.5661 67.1604 10.5661C65.6508 10.5661 64.114 11.7241 64.114 13.4834V13.4845ZM70.1016 19.6295V18.237C69.3202 19.42 67.4969 19.8671 66.5613 19.8671C63.4639 19.8671 60.3653 17.4252 60.3653 13.4834C60.3653 9.54262 63.4628 7.10069 66.5613 7.10069C67.3417 7.10069 69.165 7.36116 70.1016 8.72865V7.36767H73.694V19.6316L70.1016 19.6305V19.6295ZM59.343 19.6295H55.7506V18.1057C55.1504 19.2344 53.695 19.8921 52.1843 19.8921C49.0597 19.8921 46.2998 17.397 46.2998 13.5333C46.2998 9.59689 49.0597 7.09852 52.1843 7.09852C53.6929 7.09852 55.1526 7.72799 55.7506 8.8578V0.68219H59.343V19.6295ZM55.6725 13.4562C55.6725 11.6177 54.3451 10.54 52.8615 10.54C51.3247 10.54 50.0484 11.6959 50.0484 13.4562C50.0484 15.273 51.3247 16.4235 52.8604 16.4235C54.3723 16.4256 55.6725 15.2166 55.6725 13.4562ZM37.4176 13.1393C37.4176 11.2748 38.3814 10.6442 39.6566 10.6442C40.8798 10.6442 41.7654 11.4582 41.7654 13.0861V19.6273H45.3838V12.2993C45.3838 8.80679 43.6647 7.09852 40.9308 7.09852C39.4993 7.09852 38.0677 7.9125 37.4165 9.14757V7.36333H33.8003V19.6273H37.4176V13.1393ZM26.4528 19.8378C23.0167 19.8378 20.1504 17.3167 20.1504 13.4552C20.1504 9.59146 23.0135 7.09526 26.4528 7.09526C29.8921 7.09526 32.7801 9.59146 32.7801 13.4552C32.7801 17.3188 29.8889 19.8389 26.4528 19.8389V19.8378ZM26.4528 16.2672C27.9614 16.2672 29.2127 15.1623 29.2127 13.4562C29.2127 11.8011 27.9625 10.6713 26.4528 10.6713C25.7182 10.6598 25.0111 10.9506 24.4971 11.4756C23.9802 12.0032 23.6994 12.7179 23.7189 13.4562C23.72 15.1645 24.9692 16.2672 26.4528 16.2672ZM13.6636 10.6453C14.7304 10.6453 15.6681 11.4864 15.6681 13.0872V19.6295H19.2605V12.664C19.2605 8.9609 17.46 7.09635 14.5741 7.09635C13.7167 7.09635 12.1018 7.35682 10.9297 9.27564C10.2524 7.85714 8.95115 7.12131 7.02799 7.12131C5.66428 7.11437 4.42247 7.90546 3.85239 9.14432V7.36442H0.231812V19.6284H3.84914V13.1393C3.84914 11.2748 4.86498 10.6442 5.95788 10.6442C6.99978 10.6442 7.93531 11.4582 7.96244 13.008V19.6284H11.5809V13.1393C11.5809 11.3562 12.5186 10.6464 13.6636 10.6464V10.6453Z"
fill="#333333"
/>
</svg>
<svg
style="display: flow-root"
width="26"
height="9"
viewBox="0 0 26 7"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22.9029 1.46454C23.6996 1.46454 24.176 2.03106 24.176 2.959V6.13895H25.2581V2.88629C25.2581 1.30825 24.5146 0.39334 23.1168 0.39334C22.5698 0.39334 21.7015 0.543111 21.1838 1.54919C20.9388 0.944586 20.3813 0.523502 19.7328 0.453031C19.5324 0.416339 19.3283 0.404311 19.125 0.417216C18.68 0.453031 17.8877 0.729784 17.5915 1.35709V0.513808H16.5083V6.13895H17.5915V3.10335C17.5915 1.92253 18.3642 1.46454 19.138 1.46454C19.863 1.46454 20.3395 2.01913 20.3395 2.94706V6.13895H21.4161V3.10335C21.4161 2.16347 21.9804 1.45368 22.9029 1.46454ZM12.5329 5.19907C13.0278 5.20993 13.5053 5.0124 13.8515 4.65425C14.1988 4.2961 14.3833 3.8088 14.3649 3.30847C14.3649 2.17541 13.5313 1.46454 12.5329 1.46454C11.5333 1.46454 10.7009 2.17541 10.7009 3.30847C10.6813 3.80771 10.8658 4.29393 11.211 4.65099C11.5561 5.00914 12.0314 5.20776 12.5242 5.19907H12.5329ZM12.5329 6.25399C10.9505 6.25399 9.62966 5.08511 9.62966 3.30196C9.62966 1.5188 10.9505 0.386827 12.5329 0.386827C14.1152 0.386827 15.4469 1.5188 15.4469 3.30196C15.4469 5.08511 14.1076 6.25941 12.5253 6.25941L12.5329 6.25399ZM4.05662 3.30196L4.04576 3.30847C4.04576 1.52531 5.40131 0.393339 6.99454 0.386827C7.80395 0.371167 8.58206 0.699294 9.13585 1.2898L8.31536 1.98874C7.96335 1.64309 7.48783 1.45241 6.99454 1.45911C5.99606 1.45911 5.12782 2.16998 5.12782 3.30196C5.12782 4.0671 5.58256 4.75627 6.28041 5.0493C6.97826 5.34233 7.78139 5.17954 8.31536 4.63906L9.14778 5.33799C8.59222 5.93459 7.80965 6.2675 6.99454 6.25399C5.41325 6.25399 4.05662 5.08511 4.05662 3.30196ZM0.591238 5.05907C0.588921 4.86045 0.665603 4.66905 0.804416 4.52698C0.94323 4.38491 1.1328 4.30381 1.33141 4.30153C1.53003 4.30381 1.7196 4.38491 1.85841 4.52698C1.99722 4.66905 2.07391 4.86045 2.0716 5.05907C2.05154 5.45441 1.72725 5.76586 1.33141 5.76994C0.935579 5.76586 0.611296 5.45441 0.591238 5.05907Z"
fill="#333333"
/>
</svg>
</div>
<div>
<svg
width="138"
height="29"
viewBox="0 0 138 29"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M25.5601 15.1637L25.5783 15.1652L27.474 15.3633C27.6071 15.3777 27.7293 15.4426 27.8156 15.5442L27.8297 15.5614L27.8117 15.5704C27.9003 15.6822 27.9394 15.8253 27.9197 15.9666C27.5056 19.2594 25.9449 22.3011 23.5116 24.5578C20.9869 26.8994 17.6706 28.2005 14.227 28.2005C12.5545 28.2032 10.8962 27.8953 9.33654 27.2926L9.25157 27.2594C9.12391 27.2122 9.02134 27.1152 8.96704 26.9911L8.95887 26.9713C8.90569 26.8477 8.90274 26.7087 8.95 26.5834L9.69826 24.7579C9.79965 24.4998 10.087 24.3698 10.3465 24.4613L10.3637 24.4677C14.1884 25.9445 18.5202 25.1127 21.5259 22.3245C23.4391 20.5665 24.6728 18.1915 25.011 15.6154C25.0468 15.3494 25.2776 15.1559 25.542 15.1629L25.5601 15.1637ZM70.3307 7.41604C71.9471 7.41604 73.2111 7.9092 74.0184 8.85632L74.0455 8.88842V8.08693C74.0563 7.86322 74.2295 7.68242 74.4506 7.66058L74.4687 7.65916H76.6255C76.8474 7.6745 77.0239 7.84916 77.0431 8.06901L77.0443 8.08693V20.0596C77.114 21.7479 76.5951 23.4079 75.5764 24.7559C74.4146 26.1698 72.6496 26.8857 70.3307 26.8857C67.1068 26.8857 64.5627 24.846 64.144 21.9327C64.1232 21.7224 64.2513 21.5268 64.4504 21.4609L64.4682 21.4554L66.5755 20.9601C66.5864 20.9577 66.5975 20.9556 66.6086 20.9539C66.8399 20.92 67.0548 21.0801 67.0887 21.3114C67.2812 22.9455 68.6857 24.1647 70.3307 24.1255C72.8225 24.1255 73.9949 22.859 74.0181 20.2122L74.0184 20.1316V19.0825C73.0843 20.1301 71.7335 20.7091 70.3307 20.6629C66.7465 20.6629 64.1485 17.8803 64.1485 14.053C64.1157 12.331 64.722 10.6578 65.8505 9.35666C66.9967 8.09744 68.6281 7.39079 70.3307 7.41604ZM5.42027 21.9777L5.447 21.9775L5.47382 21.9777C6.33415 21.9876 7.02685 22.6832 7.0362 23.5404L7.03627 23.5672C7.03627 23.5761 7.03617 23.5851 7.03601 23.594C7.02103 24.4717 6.29747 25.1711 5.41976 25.1562C4.54205 25.1412 3.84266 24.4177 3.85749 23.54C3.87216 22.6802 4.56679 21.9914 5.42027 21.9777ZM107.665 7.24945L107.776 7.25027C111.629 7.30348 114.016 9.98542 114.016 14.2781C114.016 14.5052 114.003 14.7322 113.98 14.958C113.96 15.1657 113.79 15.3259 113.583 15.3357L113.566 15.3362H104.407C104.463 17.2598 106.054 18.7817 107.978 18.7538C109.469 18.8475 110.829 17.8991 111.256 16.4665C111.334 16.2608 111.556 16.1502 111.765 16.2092L111.782 16.2143L113.61 16.8582C113.711 16.8907 113.794 16.9623 113.841 17.0564L113.849 17.0743C113.899 17.1735 113.908 17.2887 113.872 17.394C113.023 19.908 110.63 21.5715 107.978 21.4915C106.239 21.5088 104.565 20.8294 103.331 19.6048C101.984 18.1872 101.265 16.2865 101.336 14.3322C101.336 9.94138 104.492 7.30259 107.573 7.25025L107.665 7.24945ZM55.841 7.24946H55.8455C59.7674 7.24946 62.2034 9.94206 62.2034 14.2781C62.203 14.5052 62.191 14.7322 62.1673 14.958C62.1491 15.1668 61.9781 15.3281 61.7704 15.3359L61.753 15.3362H52.5946C52.651 17.2651 54.2494 18.7892 56.1787 18.7538C57.6712 18.8492 59.0312 17.9001 59.4567 16.4665C59.5329 16.2591 59.7564 16.1477 59.9665 16.209L59.9835 16.2143L61.8116 16.8582C61.9185 16.8927 62.0053 16.9714 62.0502 17.0743C62.093 17.1766 62.093 17.2917 62.0502 17.394C61.2018 19.9064 58.8114 21.5695 56.1607 21.4915C54.4188 21.5112 52.7417 20.8316 51.5049 19.6048C50.1594 18.1861 49.4406 16.2862 49.5102 14.3322C49.5102 9.89703 52.7296 7.24946 55.841 7.24946ZM41.9727 7.2449C43.7332 7.2449 45.1561 7.67268 46.2097 8.51463C46.9222 9.08242 47.4502 9.84861 47.7271 10.7165L47.728 10.72C47.7641 10.8696 47.6762 11.0203 47.5303 11.0637L47.5155 11.0677L45.3317 11.7881C45.2348 11.8265 45.1269 11.8265 45.03 11.7881C44.9473 11.7495 44.8851 11.6774 44.8589 11.5901L44.8473 11.5471C44.6483 10.836 43.9981 9.69438 41.9727 9.69438C40.5318 9.69438 39.6673 10.5229 39.6673 11.3244L39.6676 11.3561C39.6785 11.8773 39.9618 12.5315 41.2045 12.7802L41.2433 12.7877L43.6477 13.238C46.3044 13.7729 47.8358 15.2169 47.8662 17.2293L47.8667 17.2904L47.8577 17.2545L47.8571 17.3155C47.8185 19.3328 45.8673 21.4554 42.2743 21.4554C38.0643 21.4554 36.4119 19.0735 36.1057 17.6687C36.0857 17.5217 36.1753 17.3829 36.3156 17.3397L36.3308 17.3354L38.5822 16.633C38.6224 16.6265 38.6635 16.6265 38.7037 16.633C38.761 16.632 38.8176 16.6442 38.8692 16.6684L38.8883 16.6781C38.971 16.7177 39.032 16.7919 39.0549 16.8806C39.3386 18.2315 40.5588 19.0375 42.3149 19.0375C43.9494 19.0375 44.6923 18.182 44.6923 17.4075C44.6923 16.6416 44.0448 16.0738 42.9286 15.8393L42.8912 15.8316L40.3652 15.3408C38.0103 14.895 36.5425 13.4316 36.5425 11.527C36.5425 9.20807 39.0324 7.2449 41.9727 7.2449ZM132.783 3.49419H134.751C134.983 3.50812 135.165 3.69642 135.174 3.92706L135.174 3.94443V7.64117H137.542C137.773 7.65736 137.952 7.84482 137.961 8.07373L137.962 8.09141V10.0546L137.961 10.0717C137.955 10.2918 137.78 10.4706 137.56 10.4818L137.542 10.4824H135.174V17.0518C135.174 18.1414 135.606 18.5917 136.718 18.5917C136.943 18.5878 137.169 18.5707 137.391 18.5406L137.475 18.5286C137.598 18.5079 137.723 18.5425 137.817 18.6232C137.902 18.7021 137.953 18.8105 137.961 18.9258L137.962 18.9475V20.798C137.963 20.9866 137.84 21.1537 137.66 21.2078C137.141 21.353 136.605 21.4258 136.067 21.4245L135.994 21.4239C133.644 21.4239 132.178 19.9278 132.149 17.5081L132.149 17.4345V10.5094H130.1C129.876 10.4962 129.697 10.321 129.678 10.0997L129.676 10.0816V8.10941C129.676 7.87674 129.853 7.6831 130.082 7.66053L130.1 7.65916L130.65 7.65909L130.709 7.65805C131.352 7.63958 132.34 7.37899 132.36 5.94378L132.36 5.89856V3.94443C132.359 3.71176 132.536 3.51813 132.766 3.49556L132.783 3.49419ZM94.5396 7.24746L94.5911 7.24946H94.5865C96.9047 7.24946 99.2448 8.86458 99.2914 12.392L99.2921 12.4995V20.8386C99.2816 21.0623 99.1078 21.243 98.8869 21.2649L98.8689 21.2663H96.7119C96.4885 21.2531 96.3099 21.0779 96.2899 20.8566L96.2886 20.8386V12.7697L96.2882 12.7076C96.2751 11.6795 95.9257 10.0276 93.808 10.0276C92.243 10.0276 91.1283 11.2456 91.1061 13.0175L91.1058 13.0714V20.8386C91.0953 21.0623 90.9222 21.243 90.7006 21.2649L90.6826 21.2663H88.4993C88.2752 21.2531 88.0965 21.0779 88.0773 20.8566L88.0761 20.8386V12.7697L88.0757 12.7076C88.0626 11.6795 87.7131 10.0276 85.5947 10.0276C83.9677 10.0276 82.866 11.2367 82.8441 13.0435L82.8438 13.0984V20.8386C82.8325 21.0623 82.6594 21.243 82.4386 21.2649L82.4206 21.2663H80.2636C80.0417 21.251 79.8653 21.0763 79.8462 20.8565L79.845 20.8386V8.0599C79.8555 7.83777 80.0264 7.65759 80.2457 7.63372L80.2636 7.63213H82.3395C82.5628 7.64529 82.7422 7.82055 82.7615 8.04186L82.7627 8.0599V8.82988C83.6964 7.80613 85.024 7.23092 86.4095 7.24946C88.0143 7.20243 89.5118 8.05087 90.2957 9.45119C91.2292 8.02481 92.8387 7.19034 94.5396 7.24746ZM126.835 8.83884C127.661 9.92742 128.087 11.2663 128.044 12.631L128.041 12.6886V20.8386C128.031 21.0607 127.86 21.2409 127.641 21.2648L127.623 21.2663H125.44C125.216 21.2531 125.037 21.0779 125.017 20.8566L125.016 20.8386V13.1254C125.016 11.1082 124.066 10.0816 122.265 10.0816C121.469 10.0559 120.709 10.4103 120.216 11.0362C119.739 11.7232 119.493 12.5431 119.512 13.378L119.514 13.4271V20.8386C119.503 21.0623 119.329 21.243 119.109 21.2649L119.091 21.2663H116.911C116.688 21.2531 116.508 21.0779 116.489 20.8566L116.488 20.8386V8.05087C116.498 7.82716 116.672 7.64642 116.893 7.62452L116.911 7.62309H119.041C119.263 7.63843 119.439 7.81317 119.459 8.03295L119.46 8.05087V8.95144C120.373 7.84459 121.744 7.21741 123.179 7.24946C124.577 7.18968 125.925 7.77578 126.835 8.83884ZM1.3358 15.71H16.8386C17.1235 15.7124 17.3537 15.9405 17.3608 16.2232L17.361 16.2413V18.182C17.3634 18.4669 17.1391 18.7009 16.8567 18.7128L16.8386 18.7133H1.3358C1.05086 18.7109 0.82079 18.4827 0.813477 18.2001V18.182V16.2413V16.2232C0.820637 15.9467 1.04103 15.7224 1.3173 15.7105L1.3358 15.71ZM70.7044 10.1086C68.5792 10.1086 67.2284 11.6216 67.2284 14.053C67.2284 16.4845 68.5611 17.9928 70.7044 17.9928C72.7486 17.9928 74.1265 16.4079 74.1265 14.053C74.1265 11.6935 72.7486 10.1086 70.7044 10.1086ZM52.6904 12.7394L52.6846 12.7877H59.0919C58.936 11.076 57.7296 10.0086 55.9229 9.9874L55.868 9.98708C54.276 9.96119 52.9204 11.1256 52.6968 12.6918L52.6904 12.7394ZM104.521 12.7394L104.515 12.7877H110.923C110.767 11.076 109.56 10.0086 107.753 9.9874L107.698 9.98708C106.107 9.96119 104.751 11.1256 104.527 12.6918L104.521 12.7394ZM18.7793 0.900594C18.9135 0.949017 19.0223 1.04972 19.0809 1.17978C19.1348 1.31107 19.1348 1.45827 19.0809 1.58948L18.4056 3.39062C18.3119 3.65768 18.0199 3.79862 17.7527 3.70579C14.2143 2.47105 10.2881 3.1726 7.39644 5.55636C5.5943 7.0648 4.31468 9.10404 3.74025 11.3828C3.68079 11.613 3.47358 11.7739 3.23595 11.7746H3.11887L1.26374 11.3289C1.12543 11.2963 1.00665 11.2084 0.935055 11.0857H0.926019C0.850952 10.963 0.829791 10.8148 0.867556 10.676C1.60425 7.75886 3.25263 5.15299 5.57283 3.23748C9.26222 0.200125 14.2716 -0.686313 18.7793 0.900594ZM11.9127 8.68129H27.4154C27.6933 8.68356 27.9204 8.9009 27.937 9.17612L27.9378 9.19456V11.1353C27.9401 11.4202 27.7161 11.6542 27.4335 11.6661L27.4154 11.6666H11.9127C11.6296 11.6617 11.4021 11.4345 11.395 11.1536L11.3948 11.1353V9.21255C11.3923 8.92948 11.6137 8.69635 11.8943 8.68192L11.9127 8.68129ZM22.6746 2.76017L22.7013 2.75996L22.7282 2.7602C23.5885 2.77006 24.2812 3.46572 24.2905 4.32282L24.2906 4.34965C24.2906 4.35861 24.2905 4.36757 24.2903 4.37645C24.2754 5.25416 23.5518 5.95355 22.6741 5.93865C21.7964 5.92374 21.097 5.2001 21.1119 4.32247C21.1265 3.4626 21.8212 2.77391 22.6746 2.76017Z"
fill="#4FB58B"
/>
</svg>
</div>
</div>
<br /><br /><br />
<div class="text-center" style="align-items: center">
<h2 class="card-title font-weight-bold">
Believing neglected so so allowance
</h2>
<p class="fs-6">
We so opinion friends me message as delight. Whole front do of
</p>
<p class="fs-6">
plate heard oh ought. His defective nor convinced residence own.
</p>
<a
href="#"
class="btn col-3"
style="background-color: #3734a9; color: white"
>We so opinion friends me message as delight.</a
>
</div>
<br /><br />
<div class="container">
<div class="row justify-content-md-center">
<div class="col col-lg-4 p-5" style="font-size: 0rem">
<img src="bulb.png" alt="" style="height: 50px; width: 50px; margin-left: 2rem; margin-bottom: 2rem;">
<h4>Led Ask Possible Mistress</h4>
<h6 style="font-weight: 100">
Connection has put impossible own apartments boisterous. At
jointure ladyship an insisted so humanity he. Friendly bachelor
entrance to on by.
</h6>
</div>
<div class="col-lg-4 p-5">
<img src="pen.png" alt="" style="height: 50px; width: 50px; margin-left: 2rem; margin-bottom: 2rem;">
<h4>Elegance Eat Likewise</h4>
<h6 style="font-weight: 100">
From they fine john he give of rich he. They age and draw mrs
like. Improving end distrusts may instantly was household
applauded incommode.
</h6>
</div>
<div class="col col-lg-4 p-5">
<img src="download.png" alt="" style="height: 50px; width: 50px; margin-left: 2rem; margin-bottom: 2rem; opacity: 0.5;">
<h4>Message Oram Nothing</h4>
<h6 style="font-weight: 100">
Why kept very ever home mrs. Considered sympathize ten uncommonly
occasional assistance sufficient not. Letter of on become he
tended active enable to.
</h6>
</div>
</div>
</div>
<!-- one -->
<div
class="card w-50"
style="margin-left: 400px; background-color: #f4f6f8; border: 1px solid #dfdfdf;
box-shadow: 0px 64px 194px rgba(0, 0, 0, 0.1);
border-radius: 22px; margin-top: 10%;"
>
<div class="card-body" style="display: flex">
<h3 class="card-title">
Track your crypto portfolio on the <br />
best way Possible.
</h3>
<a
href="#"
class="btn btn-primary"
style="
margin-left: 300px;
height: 50px;
margin-top: 15px;
background-color: #3734a9;
"
>Check it out</a
>
</div>
</div>
<!-- two -->
<div class="boxes">
<div class="b1">
<div class="b2">
<h4 style="margin-left: 15%;">100+ varified users</h4>
<hr>
<div style="display: flex;">
<img src="Ellipse 1872.png" alt="" srcset="" style="height: 60px; width: 60px;">
<div style="margin-left: 8%; margin-top: 5%;">
<h4>Theresa Web</h4>
<p>Mentor of web design</p>
</div>
</div>
<div style="display: flex;">
<img src="Ellipse 1870.png" alt="" srcset="" style="height: 60px; width: 60px;">
<div style="margin-left: 8%; margin-top: 5%;">
<h4>Albert Florex</h4>
<p>Mentor of web development</p>
</div>
</div>
<div style="display: flex;">
<img src="Ellipse 1868.png" alt="" srcset="" style="height: 60px; width: 60px;">
<div style="margin-left: 8%; margin-top: 5%;">
<h4>Robert Fox</h4>
<p>Mentor of web UI/UX</p>
</div>
</div>
<p style="color: red;">see more</p>
</div>
<div class="b2 overlay" >
<div style="justify-content: center; align-items: center; margin-left: 22%; margin-top: 10%;">
<img src="Ellipse 1866.png" alt="" srcset="" style="margin-left:10%;">
<h4 style="margin-left:10%;">AR Shakir</h4>
<p>Mentor of web development</p>
<button type="submit" style="background-color: rgb(74, 74, 236); color: #ffffff; margin-left:10%; border: none; border-radius: 5px;">CONTACT</button>
</div>
</div>
</div>
<!-- three -->
<div class="card" style="width: 25rem; border: none">
<div class="card-body">
<h6 style="color: blue">why choose us</h6>
<h2 class="card-title">
Third party to remove plenty regard you summer though.
</h2>
<p class="card-text">
The its enable direct men depend highly.Ham windows sixteen who
inquiry fortune demands.
</p>
<hr />
<div style="display: flex">
<img
src="check.png"
alt="img"
style="
width: 20px;
height: 20px;
border-radius: 15px;
margin: 2px;
"
/>
<p>Get Overview at a glance.</p>
</div>
<div style="display: flex">
<img
src="check.png"
alt="img"
style="
width: 20px;
height: 20px;
border-radius: 15px;
margin: 2px;
"
/>
<p>Deposits funds easily, security</p>
</div>
<div style="display: flex">
<img
src="check.png"
alt="img"
style="
width: 20px;
height: 20px;
border-radius: 15px;
margin: 2px;
"
/>
<p>Get live Support</p>
</div>
</div>
</div>
</div>
<!-- three -->
<div class="four" style="margin-top: 50px">
<div class="text-center" style="align-items: center; margin-top: 7%">
<h2 class="card-title font-weight-bold">
Push your code to product with ease.
</h2>
Led ask possible mistress relation elegance eat likewise debating.
<p class="fs-6">By message or am nothing amongst chiefly address.</p>
</div>
<div
class="row"
style="
align-items: center;
margin-left: 18%;
justify-content: space-between;
margin: 0 auto;
width: 900px;
"
>
<div class="card" style="width: 18rem" id="card1">
<div class="card-body" style=" background: #ffffff;
border: 1px solid #dfdfdf;
box-shadow: 0px 64px 194px rgba(0, 0, 0, 0.1);
">
<h5 class="card-title">Do believing oh disposing to supported</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<a href="#" class="card-link"
style=" color: rgb(85, 211, 85);
text-decoration: none;
font-weight: 500 ;
">Read More <i class="fas fa-arrow-right"></i
></a>
</div>
</div>
<div class="card" style="width: 18rem" id="card1">
<div class="card-body" style=" background: #ffffff;
border: 1px solid #dfdfdf;
box-shadow: 0px 64px 194px rgba(0, 0, 0, 0.1);
">
<h5 class="card-title">Do believing oh disposing to supported</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<a href="#" class="card-link"
style=" color: rgb(85, 211, 85);
text-decoration: none;
font-weight: 500 ;
">Read More <i class="fas fa-arrow-right"></i
></a>
</div>
</div>
<div class="card" style="width: 18rem" id="card1">
<div class="card-body" style=" background: #ffffff;
border: 1px solid #dfdfdf;
box-shadow: 0px 64px 194px rgba(0, 0, 0, 0.1);
">
<h5 class="card-title">Do believing oh disposing to supported</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<a href="#" class="card-link"
style=" color: rgb(85, 211, 85);
text-decoration: none;
font-weight: 500 ;
">Read More <i class="fas fa-arrow-right"></i
></a>
</div>
</div>
</div>
<br /><br />
<a
href="#"
class="btn col-2 fs-6"
style=" height:3rem;background-color: #3734a9; color: white; margin-left: 40%"
>More about Plateform</a
>
</div>
<!-- four -->
<div>
<div class="five" style="margin-top: 5%; margin-left: 13%">
<div
class="card"
style="
box-sizing: border-box;
position: absolute;
width: 1000px;
height: 170px;
left: 20%;
background: #ffffff;
border: 1px solid #dfdfdf;
box-shadow: 0px 64px 194px rgba(0, 0, 0, 0.1);
border-radius: 22px;
"
>
<div
class="card-body"
style="
display: flex;
justify-content: space-between;
text-align: center;
margin: 2%;
"
>
<h4>Preference connect <br />Astonished</h4>
<div class="row">
<svg
width="36"
height="34"
viewBox="0 0 36 34"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M18.8 0.199951C12.2952 0.199951 6.39362 3.95151 3.61882 9.79995H1.20006C0.923495 9.79995 0.665698 9.9437 0.520378 10.1796C0.375066 10.4156 0.361003 10.7093 0.484441 10.9578L3.68444 17.3578C3.82038 17.6281 4.09692 17.8 4.40008 17.8C4.70324 17.8 4.97976 17.6281 5.11572 17.3578L8.31572 10.9578C8.43916 10.7093 8.42666 10.4156 8.27978 10.1796C8.13447 9.9437 7.87666 9.79995 7.6001 9.79995H5.41418C8.04854 4.90315 13.1734 1.79995 18.8002 1.79995C27.1814 1.79995 34.0002 8.61875 34.0002 16.9999C34.0002 25.3811 27.1814 32.1999 18.8002 32.1999C12.5754 32.1999 7.04218 28.4687 4.70658 22.6935C4.54096 22.2842 4.0769 22.0873 3.66438 22.2513C3.25502 22.417 3.05658 22.8826 3.22218 23.2935C5.80498 29.6763 11.919 33.7999 18.8002 33.7999C28.0642 33.7999 35.6002 26.2639 35.6002 16.9999C35.6002 7.73595 28.0642 0.199951 18.8002 0.199951H18.8ZM4.40002 15.2107L2.49378 11.3998H6.3047L4.40002 15.2107ZM22 18.5998C22 19.9233 20.9235 20.9998 19.6 20.9998V22.1998C19.6 22.642 19.2422 22.9998 18.8 22.9998C18.3578 22.9998 18 22.642 18 22.1998V20.9998H16.8C16.3578 20.9998 16 20.642 16 20.1998C16 19.7576 16.3578 19.3998 16.8 19.3998H19.6C20.0407 19.3998 20.4 19.0405 20.4 18.5998C20.4 18.1592 20.0406 17.7998 19.6 17.7998H18C16.6766 17.7998 15.6 16.7233 15.6 15.3998C15.6 14.0764 16.6766 12.9998 18 12.9998V11.7998C18 11.3576 18.3578 10.9998 18.8 10.9998C19.2422 10.9998 19.6 11.3576 19.6 11.7998V12.9998H20.8C21.2422 12.9998 21.6 13.3576 21.6 13.7998C21.6 14.242 21.2422 14.5998 20.8 14.5998H18C17.5594 14.5998 17.2 14.9592 17.2 15.3998C17.2 15.8405 17.5594 16.1998 18 16.1998H19.6C20.9235 16.1998 22 17.2764 22 18.5998ZM18.8 26.1998C13.7264 26.1998 9.60002 22.0734 9.60002 16.9998C9.60002 11.9262 13.7264 7.79983 18.8 7.79983C23.8736 7.79983 28 11.9262 28 16.9998C28 22.0734 23.8736 26.1998 18.8 26.1998ZM18.8 9.39983C14.6092 9.39983 11.2 12.8092 11.2 16.9998C11.2 21.1905 14.6094 24.5998 18.8 24.5998C22.9907 24.5998 26.4 21.1905 26.4 16.9998C26.4 12.8092 22.9907 9.39983 18.8 9.39983Z"
fill="black"
/>
</svg>
<p>Removed <br />Enjoyed explain</p>
</div>
<div class="row">
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.9968 10.0829L13.428 12.1797C13.3983 13.9141 13.3233 15.6125 13.253 17.3189C13.2186 18.1033 13.1889 18.8955 13.1593 19.6627L13.153 19.7502C13.1061 20.9564 13.0483 22.5502 13.4639 23.6049C13.6389 24.0564 13.9327 24.4783 14.2671 24.8642C14.6249 25.2736 15.0343 25.6486 15.4327 25.9955C16.8327 27.208 18.4327 28.3627 19.9907 29.4705C21.5548 28.3627 23.1548 27.2142 24.5487 25.9955C24.9471 25.6502 25.3565 25.2752 25.7143 24.8642C26.0534 24.4783 26.3409 24.0564 26.5175 23.6049C26.9331 22.544 26.8753 20.9502 26.8284 19.7502L26.8221 19.6627C26.7925 18.9018 26.7581 18.1096 26.7284 17.3189C26.6581 15.6143 26.5815 13.9143 26.5534 12.1797L19.9846 10.0829H19.9968ZM12.6264 11.1251L19.8044 8.83442C19.9216 8.7938 20.056 8.7938 20.1857 8.83442L27.3513 11.1188C27.6091 11.1891 27.8028 11.4297 27.8075 11.711C27.8309 13.5501 27.9122 15.4016 27.9887 17.2658C28.0231 18.033 28.0528 18.8064 28.0825 19.6158L28.0887 19.7033C28.1419 21.022 28.2059 22.7674 27.6903 24.0625C27.4559 24.6547 27.0872 25.1937 26.6653 25.6797C26.2606 26.1484 25.8044 26.564 25.37 26.939C23.8231 28.2812 22.0715 29.5281 20.378 30.7234L20.367 30.7343C20.1561 30.8922 19.8639 30.9047 19.6343 30.7406L19.6108 30.7234C17.9171 29.5218 16.1655 28.2796 14.6188 26.939C14.186 26.564 13.7345 26.1484 13.3235 25.6797C12.9016 25.1938 12.5329 24.6547 12.2985 24.0625C11.7891 22.7672 11.8532 21.0218 11.9063 19.7033L11.9126 19.6158C11.9422 18.8127 11.9766 18.0392 12.0063 17.2658C12.0876 15.4033 12.1641 13.5564 12.1876 11.711C12.1938 11.4469 12.3579 11.2079 12.6204 11.1251H12.6264Z"
fill="black"
/>
<path
d="M20.1907 5.66566L30.0627 8.81722C30.3268 8.89847 30.4955 9.14534 30.4955 9.40942C30.4955 12.8141 30.6237 15.4158 30.7237 17.5002C31.1565 26.3938 31.1627 26.5238 20.3533 34.2518C20.1251 34.4096 19.8314 34.3987 19.6205 34.2456C8.82847 26.5236 8.83447 26.4004 9.26127 17.5064C9.36127 15.4142 9.4894 12.8128 9.4894 9.41557C9.4894 9.11713 9.70033 8.86557 9.9816 8.80621L19.8064 5.67185C19.9345 5.63123 20.0705 5.63747 20.1876 5.67185L20.1907 5.66566ZM29.2547 9.86086L20.0031 6.90774L10.7515 9.86086C10.7406 13.0077 10.6172 15.5201 10.5172 17.5593C10.125 25.6921 10.1125 25.9029 20.0032 32.9749C29.894 25.8969 29.8812 25.6857 29.4892 17.5593C29.3892 15.5202 29.2673 13.0061 29.2548 9.86086H29.2547Z"
fill="black"
/>
<path
d="M24.5608 16.6625C24.8061 16.4172 25.1998 16.4172 25.4451 16.6625C25.6904 16.9078 25.6904 17.3016 25.4451 17.5469L18.9359 24.0561C18.6906 24.3014 18.2968 24.3014 18.0516 24.0561L14.5531 20.5576C14.3078 20.3123 14.3078 19.9185 14.5531 19.6733C14.7984 19.4279 15.1922 19.4279 15.4375 19.6733L18.4953 22.7311L24.5657 16.6607L24.5608 16.6625Z"
fill="black"
/>
<path
d="M9.80796 21.9249C10.1533 21.9249 10.4345 22.2061 10.4345 22.5514C10.4345 22.8968 10.1533 23.178 9.80796 23.178H4.99717C4.65185 23.178 4.37061 22.8968 4.37061 22.5514V13.125C4.37061 12.7797 4.65185 12.4985 4.99717 12.4985H9.95356C10.2989 12.4985 10.5801 12.7797 10.5801 13.125C10.5801 13.4704 10.2989 13.7516 9.95356 13.7516H5.62397V21.9252L9.80796 21.9249ZM30.0392 13.7513C29.6939 13.7513 29.4126 13.47 29.4126 13.1247C29.4126 12.7794 29.6939 12.4982 30.0392 12.4982H34.9956C35.3409 12.4982 35.6221 12.7794 35.6221 13.1247V22.5511C35.6221 22.8964 35.3409 23.1777 34.9956 23.1777H30.1848C29.8395 23.1777 29.5582 22.8964 29.5582 22.5511C29.5582 22.2058 29.8395 21.9246 30.1848 21.9246H34.3676V13.751H30.038L30.0392 13.7513Z"
fill="black"
/>
</svg>
<p>
Supported <br />
Allowance
</p>
</div>
<div class="row">
<svg
width="40"
height="25"
viewBox="0 0 40 25"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.38771 13.9351H9.08771L10.2324 23.3075C10.2771 23.7475 10.6277 24.0552 11.0677 24.0999H11.1124C11.5077 24.0999 11.86 23.8352 11.9477 23.4399L16.3477 6.41234L21.0126 21.8572C21.1449 22.2525 21.4973 22.5172 21.9373 22.4725C22.3326 22.4278 22.6849 22.1202 22.7296 21.6802L23.6543 13.4953H31.5743C32.059 13.4953 32.4543 13.1 32.4543 12.6153V12.5706C32.4543 12.5259 32.4543 12.4383 32.4096 12.3953C32.4096 12.3506 32.4096 12.3506 32.365 12.3076C32.365 12.2629 32.3203 12.22 32.3203 12.1753C32.3203 12.1753 32.3203 12.1306 32.2756 12.1306C32.2309 12.0859 32.1879 12.0429 32.1432 11.9553L32.0986 11.9106C32.0539 11.8659 32.0109 11.8659 31.9662 11.8229H31.9215C29.5015 10.5476 25.9366 7.42294 25.4966 4.82782C25.3643 3.94782 25.5843 3.15547 26.2443 2.49547C27.6519 1.00018 29.6319 1.96782 31.0394 3.02312C31.3471 3.24312 31.7871 3.24312 32.0947 3.02312C33.5024 1.96782 35.4394 1.04312 36.8471 2.53841C37.3748 3.11077 37.6395 3.72606 37.6395 4.47371C37.5948 5.88136 36.5395 7.59841 34.6471 9.35859C34.2948 9.71093 34.2518 10.2386 34.6025 10.5909C34.9548 10.9433 35.4825 10.9863 35.8348 10.6356C37.4195 9.18328 39.3101 6.89563 39.3995 4.52051C39.4442 3.33286 39.0042 2.23286 38.1242 1.35286C36.4519 -0.407139 34.0766 -0.407138 31.5691 1.30818C29.0167 -0.407121 26.6415 -0.364177 24.9691 1.35286C23.9568 2.40816 23.5168 3.77286 23.7815 5.18051C24.1768 7.5558 26.3767 10.0654 28.6215 11.7805H22.9477C22.5077 11.7805 22.1124 12.1329 22.0677 12.5729L21.54 17.3253L17.1847 2.93774C17.0524 2.54243 16.7447 2.32245 16.3047 2.32245C15.9094 2.32245 15.5571 2.58713 15.4694 2.98245L11.4647 18.5576L10.76 12.9682C10.7153 12.5282 10.32 12.1759 9.88001 12.1759H1.38757C0.902864 12.1759 0.507568 12.5712 0.507568 13.0559C0.507568 13.5406 0.904598 13.9359 1.38757 13.9359L1.38771 13.9351Z"
fill="black"
/>
</svg>
<p>
Stable Work & <br />
Lightweight
</p>
</div>
</div>
</div>
</div>
</div>
<!-- five -->
<div class="container" style="margin-top: 30%; margin-bottom: 10%">
<div class="row">
<div class="col" style="top: 40px">
<img
src="image 4.png"
alt=""
srcset=""
style="width: 25rem; height: 15rem"
/>
<!-- <img src="left-arrow.png" alt="" srcset="" style="height:20px; width: 20px;"> -->
</div>
<div class="col">
<svg
width="37"
height="27"
viewBox="0 0 37 27"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M36.5415 0.26625L35.6193 5.88921C33.7749 5.75768 32.2764 6.02075 31.1236 6.6784C29.9709 7.30318 29.164 8.2239 28.7029 9.44056C28.2802 10.6243 28.2034 12.0054 28.4724 13.5838H36.5415V27H20.8644V13.5838C20.8644 8.84867 22.1516 5.26444 24.726 2.83111C27.3004 0.3649 31.2389 -0.490055 36.5415 0.26625ZM15.6771 0.26625L14.7549 5.88921C12.9105 5.75768 11.412 6.02075 10.2593 6.6784C9.10655 7.30318 8.29964 8.2239 7.83854 9.44056C7.41588 10.6243 7.33903 12.0054 7.608 13.5838H15.6771V27H0V13.5838C0 8.84867 1.28721 5.26444 3.86164 2.83111C6.43606 0.3649 10.3745 -0.490055 15.6771 0.26625Z"
fill="#FF7F5C"
/>
</svg>
<h2>Save Time Managing Social Media For Your Business</h2>
<p>
Is be upon sang fond must shew. Really boy law county she unable
her sister. Feet you off its like like six. Among sex are leave
law built now. In built table in an rapid blush. Merits behind on
afraid or warmly.
<br />
Believing neglected so so allowance existence departure in. In
design active temper be uneasy.
</p>
<div class="row">
<svg
width="15"
height="13"
viewBox="0 0 15 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.08558 1.43824C6.4136 0.581797 7.62526 0.581797 7.95328 1.43824L9.02292 4.23102C9.17109 4.6179 9.54248 4.87336 9.95677 4.87336L13.0202 4.87336C14.0282 4.87336 14.403 6.19577 13.5449 6.72464L11.3648 8.06838C10.9556 8.32063 10.7837 8.82839 10.9557 9.27733L11.8519 11.6173C12.1939 12.5104 11.2075 13.3281 10.3933 12.8263L7.54413 11.0701C7.22243 10.8718 6.81643 10.8718 6.49473 11.0701L3.64554 12.8263C2.83139 13.3281 1.84492 12.5104 2.18699 11.6173L3.0832 9.27733C3.25515 8.82839 3.0833 8.32063 2.67405 8.06838L0.493947 6.72464C-0.364109 6.19577 0.0106978 4.87336 1.01865 4.87336L4.08209 4.87336C4.49638 4.87336 4.86777 4.6179 5.01594 4.23102L6.08558 1.43824Z"
fill="#F9896B"
/>
</svg>
<svg
width="15"
height="13"
viewBox="0 0 15 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.08558 1.43824C6.4136 0.581797 7.62526 0.581797 7.95328 1.43824L9.02292 4.23102C9.17109 4.6179 9.54248 4.87336 9.95677 4.87336L13.0202 4.87336C14.0282 4.87336 14.403 6.19577 13.5449 6.72464L11.3648 8.06838C10.9556 8.32063 10.7837 8.82839 10.9557 9.27733L11.8519 11.6173C12.1939 12.5104 11.2075 13.3281 10.3933 12.8263L7.54413 11.0701C7.22243 10.8718 6.81643 10.8718 6.49473 11.0701L3.64554 12.8263C2.83139 13.3281 1.84492 12.5104 2.18699 11.6173L3.0832 9.27733C3.25515 8.82839 3.0833 8.32063 2.67405 8.06838L0.493947 6.72464C-0.364109 6.19577 0.0106978 4.87336 1.01865 4.87336L4.08209 4.87336C4.49638 4.87336 4.86777 4.6179 5.01594 4.23102L6.08558 1.43824Z"
fill="#F9896B"
/>
</svg>
<svg
width="15"
height="13"
viewBox="0 0 15 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.08558 1.43824C6.4136 0.581797 7.62526 0.581797 7.95328 1.43824L9.02292 4.23102C9.17109 4.6179 9.54248 4.87336 9.95677 4.87336L13.0202 4.87336C14.0282 4.87336 14.403 6.19577 13.5449 6.72464L11.3648 8.06838C10.9556 8.32063 10.7837 8.82839 10.9557 9.27733L11.8519 11.6173C12.1939 12.5104 11.2075 13.3281 10.3933 12.8263L7.54413 11.0701C7.22243 10.8718 6.81643 10.8718 6.49473 11.0701L3.64554 12.8263C2.83139 13.3281 1.84492 12.5104 2.18699 11.6173L3.0832 9.27733C3.25515 8.82839 3.0833 8.32063 2.67405 8.06838L0.493947 6.72464C-0.364109 6.19577 0.0106978 4.87336 1.01865 4.87336L4.08209 4.87336C4.49638 4.87336 4.86777 4.6179 5.01594 4.23102L6.08558 1.43824Z"
fill="#F9896B"
/>
</svg>
<svg
width="15"
height="13"
viewBox="0 0 15 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.08558 1.43824C6.4136 0.581797 7.62526 0.581797 7.95328 1.43824L9.02292 4.23102C9.17109 4.6179 9.54248 4.87336 9.95677 4.87336L13.0202 4.87336C14.0282 4.87336 14.403 6.19577 13.5449 6.72464L11.3648 8.06838C10.9556 8.32063 10.7837 8.82839 10.9557 9.27733L11.8519 11.6173C12.1939 12.5104 11.2075 13.3281 10.3933 12.8263L7.54413 11.0701C7.22243 10.8718 6.81643 10.8718 6.49473 11.0701L3.64554 12.8263C2.83139 13.3281 1.84492 12.5104 2.18699 11.6173L3.0832 9.27733C3.25515 8.82839 3.0833 8.32063 2.67405 8.06838L0.493947 6.72464C-0.364109 6.19577 0.0106978 4.87336 1.01865 4.87336L4.08209 4.87336C4.49638 4.87336 4.86777 4.6179 5.01594 4.23102L6.08558 1.43824Z"
fill="#F9896B"
/>
</svg>
<svg
width="15"
height="13"
viewBox="0 0 15 13"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.08558 1.43824C6.4136 0.581797 7.62526 0.581797 7.95328 1.43824L9.02292 4.23102C9.17109 4.6179 9.54248 4.87336 9.95677 4.87336L13.0202 4.87336C14.0282 4.87336 14.403 6.19577 13.5449 6.72464L11.3648 8.06838C10.9556 8.32063 10.7837 8.82839 10.9557 9.27733L11.8519 11.6173C12.1939 12.5104 11.2075 13.3281 10.3933 12.8263L7.54413 11.0701C7.22243 10.8718 6.81643 10.8718 6.49473 11.0701L3.64554 12.8263C2.83139 13.3281 1.84492 12.5104 2.18699 11.6173L3.0832 9.27733C3.25515 8.82839 3.0833 8.32063 2.67405 8.06838L0.493947 6.72464C-0.364109 6.19577 0.0106978 4.87336 1.01865 4.87336L4.08209 4.87336C4.49638 4.87336 4.86777 4.6179 5.01594 4.23102L6.08558 1.43824Z"
fill="#F9896B"
/>
</svg>
</div>
<h5>AR Shakir</h5>
CEO GetNextDesign
</div>
</div>
</div>
<!-- six -->
<div style="display: flex; margin-bottom: 5%;">
<h1 style="margin-left: 5%;">Our latest blog posts</h1>
<button style="background-color: #3734a9; color: #ffffff; border-radius: 10px; border: none; width:18rem; margin-left: 50rem;">See all blog post</button>
</div>
<div class="card-group">
<div
class="card"
style="width: 300px; height: 300px; border-radius: 10px; left: 115px"
>
<img
src="Rectangle 177 (1).png"
class="card-img-top"
alt="..."
style="width: 378; height: 270"
/>
<div class="card-body">
<h2 class="card-title">
Believing neglected so so allowance <br />existence departure
</h2>
<p class="card-text">
End-to-end payments and financial management in a single solution.
Meet the right platform to help realize.
</p>
</div>
</div>
<div
class="card"
style="width: 300px; height: 300px; border-radius: 10px; left: 115px"
>
<img
src="Rectangle 177.png"
class="card-img-top"
alt="..."
style="width: 378; height: 270"
/>
<div class="card-body">
<h2 class="card-title">
In design active temper be uneasy. Thirty for remove plenty regard
you.
</h2>
<p class="card-text">
End-to-end payments and financial management in a single solution.
Meet the right platform to help realize.
</p>
</div>
</div>
<!-- small cards -->
<div
class="col"
style="
width: 300px;
height: 600px;
display: flex;
border-radius: 10px;
margin-left: 6%;
flex-direction: column;
align-content: center;
"
>
<!-- sm1 -->
<div class="card" style="width: 30rem; height: 8rem">
<div class="card-body" style="display: flex">
<img
src="Rectangle 177 (00).png"
alt=""
srcset=""
style="width: 8rem; height: 8remx"
/>
<div style="margin-left: 5px">
<h6 class="card-title">08-11-2021 Category</h6>
<h6 class="card-text" style="font-weight: 800">
Partiality on or continuing in <br />
particular principles
</h6>
</div>
</div>
</div>
<!-- sm 2 -->
<div class="card" style="width: 30rem; height: 8rem">
<div class="card-body" style="display: flex">
<img
src="Rectangle 177 (01).png"
alt=""
srcset=""
style="width: 8rem; height: 8remx"
/>
<div style="margin-left: 5px">
<h6 class="card-title">08-11-2021 Category</h6>
<h6 class="card-text" style="font-weight: 800">
Do believing oh disposing to <br />
supported allowance we.
</h6>
</div>
</div>
</div>
<!-- sm 3 -->
<div class="card" style="width: 30rem; height: 8rem">
<div class="card-body" style="display: flex">
<img
src="Rectangle 177 (02).png"
alt=""
srcset=""
style="width: 8rem; height: 8remx"
/>
<div style="margin-left: 5px">
<h6 class="card-title">08-11-2021 Category</h6>
<h6 class="card-text" style="font-weight: 800">
Village did removed enjoyed <br />
explain not harm saw.
</h6>
</div>
</div>
</div>
<!-- sm4 -->
<div class="card" style="width: 30rem; height: 8rem">
<div class="card-body" style="display: flex">
<img
src="Rectangle 177 (03).png"
alt=""
srcset=""
style="width: 8rem; height: 8remx"
/>
<div style="margin-left: 5px">
<h6 class="card-title">08-11-2021 Category</h6>
<h6 class="card-text" style="font-weight: 800">
Securing as informed <br />
declayerd or margaret
</h6>
</div>
</div>
</div>
</div>
</div>
<!-- seven -->
<div
class="row"
style="
background-color: #3734a9;
color: white;
width: 100%;
margin-top: 15%;
height: 400px;
"
>
<div class="col" style="margin-left: 10%; margin-top:5%;">
<p class="col-lg-4">WHY CHOOSE US</p>
<h1>Partiality on or continue in the particular principles</h1>
<p class="col-lg-8">
End-to-end payments and financial management in a single solution.
Meet the right platform to help realize.
</p>
</div>
<div class="col">
<form style="width: 50%; left: 30%; margin-top:5%;">
<p class="font-weight-bold" style="color: #3734a9">
Get Started for Free
</p>
<div class="mb-4" style="background-color: transparent">
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Email address"
/>
</div>
<div class="mb-3">
<input
type="password"
class="form-control"
id="exampleInputPassword1"
placeholder="Password"
/>
<br />
<button
type="submit"
class="col-12"
style="border: none; background-color: #ff7f5c; color: white"
>
Get Started
</button>
</div>
</form>
</div>
</div>
<!-- footer -->
<footer>
<div class="container my-">
<footer
class="text-center text-lg-start border border-white mt-xl-5 pt-4"
>
<!-- Grid container -->
<div class="container p-4">
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div
class="col-lg-3 col-md-6 mb-4 mb-lg-0"
style="color: black"
>
<h3 class="text-uppercase mb-4">AR SHAKIR</h3>
<p style="color: #3734a9;">Finance help companies <br> manage payments easily.</p>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
<h3 class="text-uppercase mb-4">Company</h3>
<ul class="list-unstyled">
<li>
<a href="#!" class="text-white">About Us</a>
</li>
<li>
<a href="#!" class="text-white">Careers</a>
</li>
<li>
<a href="#!" class="text-white">Blog</a>
</li>
<li>
<a href="#!" class="text-white">Pricing</a>
</li>
</ul>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
<h3 class="text-uppercase mb-4">Resources</h3>
<ul class="list-unstyled">
<li>
<a href="#!" class="text-white">Proposal Template</a>
</li>
<li>
<a href="#!" class="text-white">Invoice Template</a>
</li>
<li>
<a href="#!" class="text-white">Tutorial</a>
</li>
<li>
<a href="#!" class="text-white">How to write a contract</a>
</li>
</ul>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
<h5 class="text-uppercase mb-4">Sign up to our newsletter</h5>